@charset "UTF-8";
/***********************共通設定************************/
/*----------------------------------------------------
loader 共通
----------------------------------------------------*/
#loaderBg {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 10000;
  -webkit-animation: fadeOut 1s ease 1 forwards;
          animation: fadeOut 1s ease 1 forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.load_wrap {
  width: 100%;
  height: 100%;
  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;
}

.load_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 40px;
  margin-top: -20px;
  margin-left: -150px;
}

/*----------------------------------------------------
loader　TOP
----------------------------------------------------*/
.load_logo_top {
  margin: 10px 0;
  width: 240px;
}

.js-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  visibility: visible;
  opacity: 1;
  background: #fff;
  -webkit-transition: opacity 0.8s, visibility 0.8s;
  transition: opacity 0.8s, visibility 0.8s;
  z-index: 10000;
}
.is-loaded .js-loader {
  visibility: hidden;
  opacity: 0;
}

.js-loader-progress {
  position: fixed;
  top: -10%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 40%;
  height: 4px;
  max-width: 240px;
}
.is-loaded .js-loader-progress {
  visibility: hidden;
  opacity: 0;
}
@media all and (max-width: 1315px) {
  .js-loader-progress {
    top: -7%;
    width: 50%;
  }
}

.js-loader-progress-bar {
  background: #4B8E78;
  height: 2px;
  width: 0;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
  top: 5px;
  position: relative;
}

.js-loader-progress-number {
  text-align: center;
  font-size: 0px;
  width: 100%;
  margin-top: 10px;
}

/*----------------------------------------------------
ヘッダーロゴ
----------------------------------------------------*/
.header_logo {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 185px;
  padding: 0 0 0 20px;
}
@media all and (min-width: 1316px) {
  .header_logo {
    padding: 0 0 0 25px;
    width: 270px;
  }
}

/*----------------------------------------------------
ヘッダーメニュー
----------------------------------------------------*/
.header_wrap {
  position: fixed;
  width: 100%;
  z-index: 10;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header_wrap_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 1316px) {
  .header_wrap_flex {
    margin-left: calc((100vw - 1300px) / 2);
  }
}
.header_wrap_flex.menu_appear {
  top: 0;
}

.header_nav_wrap {
  position: relative;
  height: 60px;
}
@media all and (min-width: 1316px) {
  .header_nav_wrap {
    height: 164px;
    margin: 0 20px;
    width: 100%;
  }
}
.header_nav_wrap ul.header_nav_list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media all and (max-width: 1315px) {
  .header_nav_wrap ul.header_nav_list {
    display: none;
  }
}
.header_nav_wrap ul.header_nav_list li {
  margin: 0 3% 0 0;
  /* サブメニューがあるli */
}
@media screen and (min-width: 1316px) and (max-width: 1420px) {
  .header_nav_wrap ul.header_nav_list li {
    margin: 0 3% 0 0;
  }
}
.header_nav_wrap ul.header_nav_list li:last-child {
  margin: 0;
}
.header_nav_wrap ul.header_nav_list li a {
  color: #303030;
  font-weight: bold;
  font-size: 16px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 103px;
  position: relative;
}
.header_nav_wrap ul.header_nav_list li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  background: #2BB06B;
  left: 0;
  bottom: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
}
.header_nav_wrap ul.header_nav_list li a:hover {
  color: #2BB06B;
}
.header_nav_wrap ul.header_nav_list li a:hover::after {
  width: 100%;
}
.header_nav_wrap ul.header_nav_list li a span {
  color: #62CC93;
  font-size: 12px;
  font-weight: normal;
  display: block;
  margin: 0 0 5px;
}
.header_nav_wrap ul.header_nav_list li.active_list {
  position: relative;
  /* 治療プログラム */
}
.header_nav_wrap ul.header_nav_list li.active_list .active_list_nav {
  cursor: pointer;
  color: #303030;
  font-weight: bold;
  font-size: 16px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 103px;
  position: relative;
}
.header_nav_wrap ul.header_nav_list li.active_list .active_list_nav::after {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  background: #2BB06B;
  left: 0;
  bottom: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
}
.header_nav_wrap ul.header_nav_list li.active_list .active_list_nav:hover {
  color: #2BB06B;
}
.header_nav_wrap ul.header_nav_list li.active_list .active_list_nav:hover::after {
  width: 100%;
}
.header_nav_wrap ul.header_nav_list li.active_list .active_list_nav.active {
  color: #2BB06B;
}
.header_nav_wrap ul.header_nav_list li.active_list .active_list_nav.active::after {
  width: 100%;
}
.header_nav_wrap ul.header_nav_list li.active_list .active_list_nav span {
  color: #62CC93;
  font-size: 12px;
  font-weight: normal;
  display: block;
  margin: 0 0 5px;
}
.header_nav_wrap ul.header_nav_list li.active_list.program a::after {
  right: -20px;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  position: fixed;
  left: 0;
  background: #FFFBF5;
  width: 100vw;
  top: 164px;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_text {
  width: calc(100% - 246px);
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu {
  margin: 0 auto;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul {
  padding: 30px 30px 10px 30px;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li {
  text-align: left;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li > span {
  color: #007E3D;
  font-weight: bold;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li.nolink {
  padding: 0;
  pointer-events: none;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li.nolink::before {
  display: none;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li.nolink a span {
  color: #707070;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li.nolink a span::after {
  content: none;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li a {
  color: #007E3D;
  font-weight: bold;
  font-weight: normal;
  padding: 0 0 0 20px;
  position: relative;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li a::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #007E3D;
  left: 0;
  top: 50%;
  margin: -4px 0 0;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li a::after {
  content: none;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li a span {
  color: #007E3D;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  display: block;
  position: relative;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li a span::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #007E3D;
  left: 0;
  bottom: 0;
  top: unset;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list .sub_menu_list_menu ul li a:hover span::after {
  width: 100%;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list li {
  margin: 10px 40px 10px 10px;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list li a {
  height: unset;
  font-size: 15px;
  position: relative;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_tit_wrap {
  background: #fff;
  width: 246px;
  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;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_tit_wrap .sub_menu_tit .sub_menu_tit_image {
  width: 106px;
  margin: 0 auto;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_tit_wrap .sub_menu_tit .sub_menu_tit_text {
  font-size: 24px;
  font-weight: bold;
  color: #007E3D;
  white-space: nowrap;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_list.active {
  opacity: 1;
  pointer-events: unset;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_close {
  cursor: pointer;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0 0 20px;
  margin: 10px auto 20px;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_close::before, .header_nav_wrap ul.header_nav_list li.active_list .sub_menu_close::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background: #303030;
  left: 0;
  top: 10px;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_close span {
  position: relative;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_close span::after {
  position: absolute;
  content: "";
  height: 1px;
  background: #303030;
  left: 0;
  bottom: 0;
  width: 0%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_nav_wrap ul.header_nav_list li.active_list .sub_menu_close:hover span::after {
  width: 100%;
}
.header_nav_wrap ul.header_sub_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin: 20px 0;
  font-size: 14px;
}
@media all and (max-width: 1315px) {
  .header_nav_wrap ul.header_sub_list {
    display: none;
  }
}
.header_nav_wrap ul.header_sub_list li a {
  color: #303030;
  padding: 0 18px 0 0;
  position: relative;
  margin: 0 0 0 35px;
}
.header_nav_wrap ul.header_sub_list li a::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/nav_arr.png);
  width: 9px;
  height: 13px;
  right: 0;
  top: 50%;
  background-size: cover;
  margin: -6px 0 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_nav_wrap ul.header_sub_list li a:hover::after {
  right: -5px;
}
.header_nav_wrap ul.header_sub_list li.nolink {
  opacity: 0.5;
}
.header_nav_wrap ul.header_sub_list li.nolink a {
  pointer-events: none;
}
.header_nav_wrap ul.header_sub_list li.nolink a::before, .header_nav_wrap ul.header_sub_list li.nolink a::after {
  content: none;
}

.header_reserve {
  background: #5DB41B;
  color: #fff;
  width: 194px;
  height: 164px;
  font-size: 11px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (max-width: 1315px) {
  .header_reserve {
    display: none;
  }
}
.header_reserve span {
  font-weight: bold;
  margin: 5px 0;
  display: block;
  font-size: 12px;
}
.header_reserve span a {
  color: #fff;
}
.header_reserve .header_reserve_text {
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.header_reserve .header_reserve_text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: 0;
}
.header_reserve .header_reserve_text_s {
  font-size: 11px;
}
.header_reserve .header_reserve_btn a {
  font-size: 12px;
  color: #fff;
  background: #FFA103;
  padding: 8px 10px;
  border-radius: 20px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_reserve .header_reserve_btn a:hover {
  background: #fff;
  color: #FFA103;
}

.header_reserve_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (min-width: 1316px) {
  .header_reserve_wrap {
    width: calc(100% - 400px);
  }
}

@media all and (min-width: 1316px) {
  .header_reserve_sp {
    display: none;
  }
}
.header_reserve_sp a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFA103;
  height: 60px;
  font-size: 11px;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
}

/*----------------------------------------------------
ハンバーガーメニュー
----------------------------------------------------*/
.menu {
  z-index: 99;
  cursor: pointer;
  position: relative;
  background: #5EB41C;
  width: 60px;
  height: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 1316px) {
  .menu {
    display: none;
  }
}
.menu span {
  display: block;
  position: absolute;
  background: #fff;
  height: 2px;
  width: 23px;
  right: 18px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu span:nth-child(1) {
  top: 21px;
}
.menu span:nth-child(2) {
  top: 30px;
}
.menu span:nth-child(3) {
  top: 39px;
}
.menu.open span:nth-child(1) {
  top: 30px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #fff;
}
.menu.open span:nth-child(2) {
  display: none;
}
.menu.open span:nth-child(3) {
  top: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------
ハンバーガーメニューの内部
----------------------------------------------------*/
#gNav {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 62;
  opacity: 0;
  pointer-events: none;
  overflow: auto;
  position: fixed;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}
@media all and (min-width: 1316px) {
  #gNav {
    display: none;
  }
}
#gNav.open {
  opacity: 1;
  pointer-events: all;
}
@media all and (min-width: 1316px) {
  #gNav {
    display: none;
  }
}

.gNav_inner {
  padding: 60px 20px 220px 20px;
}
.gNav_inner ul.gNav_main_list li {
  text-align: left;
  position: relative;
  line-height: 1;
}
.gNav_inner ul.gNav_main_list li:last-child {
  margin: 0;
}
.gNav_inner ul.gNav_main_list li a {
  color: #303030;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 26px 10px;
  width: 100%;
}
.gNav_inner ul.gNav_main_list li a::after {
  content: none;
}
.gNav_inner ul.gNav_main_list li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #E6E6E6;
  left: 0;
  bottom: 0;
}
.gNav_inner ul.gNav_main_list li.active::after {
  background: #2BB06B;
}
.gNav_inner ul.gNav_main_list li.active_list_sp {
  position: relative;
  /* サブメニュー表示 */
}
.gNav_inner ul.gNav_main_list li.active_list_sp::before {
  content: "";
  position: absolute;
  background: url(../images/top/nav_active_list_arr.svg);
  width: 11px;
  height: 8px;
  left: auto;
  top: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gNav_inner ul.gNav_main_list li.active_list_sp .sub_menu_list_sp {
  display: none;
}
.gNav_inner ul.gNav_main_list li.active_list_sp .sub_menu_list_sp li a {
  font-size: 13px;
  padding: 13px 10px;
}
.gNav_inner ul.gNav_main_list li.active_list_sp .sub_menu_list_sp li span {
  font-size: 13px;
  padding: 43px 10px 13px;
  display: block;
}
.gNav_inner ul.gNav_main_list li.active_list_sp .sub_menu_list_sp li.nolink a {
  pointer-events: none;
  color: #cbcbcb;
}
.gNav_inner ul.gNav_main_list li.active_list_sp.sub_menu {
  position: relative;
}
.gNav_inner ul.gNav_main_list li.active_list_sp.sub_menu::before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.gNav_inner ul.gNav_main_list li.active_list_sp.sub_menu .sub_menu_list li:first-child {
  position: relative;
}
.gNav_inner ul.gNav_main_list li.active_list_sp.sub_menu .sub_menu_list li:first-child::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #E6E6E6;
  top: 0;
  left: 0;
}
@media (hover: hover) {
  .gNav_inner ul.gNav_main_list li.active_list_sp:hover::before {
    bottom: 13%;
  }
}
.gNav_inner ul.gNav_sub_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 30px;
}
.gNav_inner ul.gNav_sub_list li a {
  color: #303030;
  padding: 0 18px 0 0;
  position: relative;
  margin: 0 20px 0 10px;
}
.gNav_inner ul.gNav_sub_list li a::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/nav_arr.png);
  width: 9px;
  height: 13px;
  right: 0;
  top: 50%;
  background-size: cover;
  margin: -6px 0 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gNav_inner ul.gNav_sub_list li a.nolink {
  pointer-events: none;
  color: #cbcbcb;
}
.gNav_inner ul.gNav_sub_list li a.nolink::after {
  display: none;
}
.gNav_inner ul.gNav_sub_list li a:hover::after {
  right: -5px;
}
.gNav_inner .gNav_reserve_text span {
  font-size: 22px;
  font-weight: bold;
  color: #007E3D;
}
.gNav_inner .gNav_reserve_text span a {
  color: #007E3D;
}
.gNav_inner p.gNav_reserve_text_s {
  margin: 5px 0 30px;
}
.gNav_inner .gNav_reserve_btn a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 196, 97)), to(rgb(255, 161, 3)));
  background-image: linear-gradient(180deg, rgb(255, 196, 97), rgb(255, 161, 3));
  outline: 3px solid #E38F00;
  border: 1px solid #fff;
  width: 100%;
}

footer {
  margin: 80px 0 0;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  footer {
    margin: 40px 0 0;
  }
}
footer .copy {
  font-size: 10px;
  margin: 0 calc(50% - 50vw);
  padding: 10px calc(50vw - 50%);
  background-color: #FFFCF8;
  width: min(1080px, 100%);
  /* 751以上 */
  /* 1001以上  */
}
@media all and (min-width: 751px) {
  footer .copy {
    padding: 15px calc(50vw - 50%);
  }
}
@media all and (min-width: 1001px) {
  footer .copy {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
footer .copy ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 1000以下  */
}
@media all and (max-width: 1000px) {
  footer .copy ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .copy ul li {
  margin: 0 40px 0 0;
  /* 1000以下  */
}
@media all and (max-width: 1000px) {
  footer .copy ul li {
    margin: 0 10px;
  }
}
footer .copy ul li a {
  color: #303030;
  position: relative;
}
footer .copy ul li a::after {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  background: #303030;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
footer .copy ul li a:hover::after {
  width: 100%;
}
footer .copy p {
  /* 1000以下  */
}
@media all and (max-width: 1000px) {
  footer .copy p {
    margin: 20px 0 0;
  }
}

.footer_wrap {
  padding: 20px 0;
  background: #2BB06B;
  display: none;
}

nav.footer_link {
  font-size: 10px;
  /* 1001以上  */
}
@media all and (min-width: 1001px) {
  nav.footer_link {
    padding: 0 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 12px;
  }
}
nav.footer_link li.nolink {
  opacity: 0.5;
}
nav.footer_link li.nolink a {
  pointer-events: none;
}
nav.footer_link li.nolink a::before, nav.footer_link li.nolink a::after {
  content: none;
}
nav.footer_link a {
  color: #fff;
  position: relative;
  line-height: 1.4;
  /* 1001以上  */
}
@media all and (min-width: 1001px) {
  nav.footer_link a {
    line-height: 3;
  }
}
nav.footer_link a::before, nav.footer_link a::after {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  background: #fff;
  left: 0;
  bottom: 0;
}
nav.footer_link a::before {
  width: 0%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
nav.footer_link a::after {
  width: 100%;
}
nav.footer_link a:hover::before {
  width: 100%;
}
nav.footer_link a:hover::after {
  width: 0%;
}
nav.footer_link > ul {
  text-align: left;
  /* 1000以下  */
}
@media all and (max-width: 1000px) {
  nav.footer_link > ul {
    margin: 0 0 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav.footer_link > ul li {
    margin: 0 10px 0 0;
  }
}
nav.footer_link .footer_link_hospital {
  /* 1000以下  */
  text-align: left;
}
@media all and (max-width: 1000px) {
  nav.footer_link .footer_link_hospital {
    margin: 20px 0;
  }
}
nav.footer_link .footer_link_hospital p {
  color: #fff;
  line-height: 1.4;
  /* 1001以上  */
}
@media all and (min-width: 1001px) {
  nav.footer_link .footer_link_hospital p {
    line-height: 3;
  }
}
nav.footer_link .footer_link_hospital .footer_link_sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  /* 1000以下  */
}
@media all and (max-width: 1000px) {
  nav.footer_link .footer_link_hospital .footer_link_sub {
    margin: 10px 0 0;
  }
}
nav.footer_link .footer_link_hospital .footer_link_sub ul li {
  /* 1000以下  */
}
@media all and (max-width: 1000px) {
  nav.footer_link .footer_link_hospital .footer_link_sub ul li {
    margin-bottom: 5px;
  }
}
nav.footer_link .footer_link_hospital .footer_link_sub ul li.nolink {
  opacity: 0.6;
  pointer-events: none;
}
nav.footer_link .footer_link_hospital .footer_link_sub ul li.nolink a::after {
  content: none;
}

.footer_link_sub {
  text-align: left;
}

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

body {
  /* for iOS */
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img {
  /* for Chrome */
  -webkit-backface-visibility: hidden;
}

body {
  position: relative;
  background-color: #fff;
  margin: 0;
  padding: 0;
  font-family: "メイリオ", "Meiryo", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  width: 100%;
  color: #303030;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

section {
  display: block;
}

a {
  outline: none;
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

a img {
  border: none;
}

ul, li {
  list-style: none;
}

input, label, select, textarea {
  vertical-align: middle;
}

/* 750以下  */
@media all and (max-width: 750px) {
  html,
  body {
    height: auto;
  }
}
/* 751以上 */
@media all and (min-width: 751px) {
  html,
  body {
    height: 100%;
    min-height: 100%;
    height: auto !important;
    overflow-x: hidden;
  }
}
.sp {
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sp {
    display: none;
  }
}

.pc {
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .pc {
    display: none;
  }
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  padding: 60px 0 0;
}
@media all and (min-width: 1316px) {
  main {
    padding: 164px 0 0;
  }
}

.btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 396px;
  height: 76px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 100px;
  color: #fff;
  z-index: 0;
  font-weight: bold;
  border: 1px solid #fff;
  -webkit-box-shadow: 3px 3px 20px rgba(255, 255, 255, 0.6);
          box-shadow: 3px 3px 20px rgba(255, 255, 255, 0.6);
}
.btn a::before, .btn a::after {
  position: absolute;
  content: "";
  font-size: 16px;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 100px;
}
.btn a::before {
  z-index: -1;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn a::after {
  z-index: -2;
}
.btn a:hover::before {
  opacity: 0;
}

.btn_motion {
  position: relative;
  width: 326px;
  height: 74px;
  margin: 0 auto;
}
.btn_motion a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.btn_motion span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  color: #007E3D;
}
.btn_motion svg {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
}
.btn_motion #circle,
.btn_motion #circle2,
.btn_motion #circle_01,
.btn_motion #circle_01_2,
.btn_motion #circle_02,
.btn_motion #circle_02_2,
.btn_motion #circle_03,
.btn_motion #circle_03_2,
.btn_motion #circle_04,
.btn_motion #circle_04_2,
.btn_motion #circle_05,
.btn_motion #circle_05_2 {
  opacity: 0; /* 初期状態で非表示にする */
  pointer-events: none; /* 初期状態でイベントを無効にする */
}
.btn_motion:hover #circle,
.btn_motion:hover #circle2,
.btn_motion:hover #circle_01,
.btn_motion:hover #circle_01_2,
.btn_motion:hover #circle_02,
.btn_motion:hover #circle_02_2,
.btn_motion:hover #circle_03,
.btn_motion:hover #circle_03_2,
.btn_motion:hover #circle_04,
.btn_motion:hover #circle_04_2,
.btn_motion:hover #circle_05,
.btn_motion:hover #circle_05_2 {
  opacity: 1; /* 初期状態で非表示にする */
}

@-webkit-keyframes move {
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /* ここに適切なアニメーションの定義を追加 */
  }
}

@keyframes move {
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /* ここに適切なアニメーションの定義を追加 */
  }
}
#circle circle, #circle2 circle {
  fill: #fff;
  r: 11;
}

#circle animateMotion, #circle2 animateMotion {
  -webkit-animation: move 2.7s infinite;
          animation: move 2.7s infinite;
}

#circle2 animateMotion {
  -webkit-animation-delay: -1.35s;
          animation-delay: -1.35s;
}

.btn_motion2 {
  position: relative;
  width: 600px; /* 変更点 */
  height: 74px; /* 高さはそのまま */
  margin: 0 auto;
}
.btn_motion2 a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.btn_motion2 span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  color: #007E3D;
}
.btn_motion2 svg {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%; /* SVGを親要素の幅に合わせる */
  height: 100%; /* SVGを親要素の高さに合わせる */
}
.btn_motion2 #circle, .btn_motion2 #circle2 {
  opacity: 0; /* 初期状態で非表示にする */
  pointer-events: none; /* 初期状態でイベントを無効にする */
}
.btn_motion2:hover #circle, .btn_motion2:hover #circle2 {
  opacity: 1; /* ホバー時に表示する */
}

@keyframes move {
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /* アニメーションの定義 */
  }
}
#circle circle, #circle2 circle {
  fill: #fff;
  r: 11;
}

#circle animateMotion, #circle2 animateMotion {
  -webkit-animation: move 2.7s infinite;
          animation: move 2.7s infinite;
}

#circle2 animateMotion {
  -webkit-animation-delay: -1.35s;
          animation-delay: -1.35s;
}

/* hoverでぐるぐる回るボタン サイズが大きい時のためのSP用 */
/* 750以下  */
@media all and (max-width: 750px) {
  .sp_btn {
    padding: 10px;
    display: block;
    border: 1px solid #007E3D;
    background: #fff;
    border-radius: 46px;
    font-weight: bold;
    color: #007E3D;
  }
}
/* 診療時間 */
@media all and (max-width: 889px) {
  .calendar {
    overflow-x: scroll;
  }
  .calendar::-webkit-scrollbar {
    height: 15px;
  }
  .calendar::-webkit-scrollbar-track {
    margin-top: 4px;
    margin-bottom: 4px;
    background-color: #EFEFEF;
    border-radius: 10px;
  }
  .calendar::-webkit-scrollbar-thumb {
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    background-clip: padding-box;
    background: #CCCCCC;
    border-radius: 10px;
  }
}
.calendar table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
  min-width: 800px;
}
.calendar table tr {
  background: #fff;
}
.calendar table tr th, .calendar table tr td {
  width: 6%;
}
.calendar table tr th {
  padding: 5px 10px;
  background: #70AD47;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .calendar table tr th {
    padding: 5px 15px;
    font-size: 24px;
  }
}
.calendar table tr td {
  padding: 10px;
  position: relative;
  border: 1px solid #B2D29C;
  border-top: none;
  color: #9BCA5C;
  font-size: 16px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .calendar table tr td {
    padding: 10px 15px;
    font-size: 20px;
  }
}
.calendar table tr td:not(:first-child, :last-child) {
  border-right: none;
}
.calendar table tr td.close::after {
  position: absolute;
  content: "";
  background: #B2D29C;
  width: 112%;
  height: 0.8px;
  top: 50%;
  left: -4px;
  width: 108%;
  -webkit-transform: translateY(-50%) rotate(-22deg);
          transform: translateY(-50%) rotate(-22deg);
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .calendar table tr td.close::after {
    width: 112%;
    -webkit-transform: translateY(-50%) rotate(-27deg);
            transform: translateY(-50%) rotate(-27deg);
    left: -6px;
  }
}
/*# sourceMappingURL=common.css.map */