@charset "UTF-8";
/* 基本白 */
/* 基本黒 */
/* サブ黒：背景グレー*/
/* サブ黒：薄グレー(lineで使用する程度の薄さ)  */
/* メイン */
/* サブ（背景）水色 */
/* サブ（背景）緑 */
html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #323130;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

ul {
  padding-left: 0;
  list-style: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #323130;
  cursor: pointer;
}

a:hover {
  opacity: 0.6;
  -webkit-transition: ease 0.6s;
  transition: ease 0.6s;
  text-decoration: none;
}

.article {
  width: 100vw;
  margin: 0 auto;
  overflow: hidden;
}

.container {
  width: auto;
}

section {
  margin: 100px auto 160px;
  position: relative;
  max-width: 1440px;
  padding: 0 80px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  section {
    margin: 80px auto;
    padding: 0 20px;
  }
}

@media screen and (max-width: 481px) {
  section {
    width: 90%;
    padding: 0;
    margin: 60px auto;
  }
}

section .text .btn {
  margin-top: 2em;
}

h2 {
  border-top: none;
  border-bottom: none;
  font-weight: bold;
}

h3 {
  border-bottom: none;
}

dt,
dd {
  border-left: none;
}

.pc_none {
  display: none !important;
}

@media screen and (max-width: 481px) {
  .pc_none {
    display: block !important;
  }
}

.sp_none {
  display: block !important;
}

@media screen and (max-width: 481px) {
  .sp_none {
    display: none !important;
  }
}

br.sp_none,
span.sp_none {
  display: inline-block !important;
}

@media screen and (max-width: 481px) {
  br.sp_none,
  span.sp_none {
    display: none !important;
  }
}

.pc_only {
  display: block;
}

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

.tb_on {
  display: none !important;
}

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

.section__ttl {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 481px) {
  .section__ttl {
    margin-bottom: 40px;
  }
}

.section__ttl .ttl {
  line-height: 1;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: #323130;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .section__ttl .ttl {
    font-size: 1.2rem;
  }
}

.section__ttl .ttl-sub {
  font-size: 5rem;
  color: #0068b7;
  letter-spacing: 2px;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .section__ttl .ttl-sub {
    font-size: 3.6rem;
  }
}

.txt-st {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #ffffff));
  background: linear-gradient(transparent 60%, #ffffff 40%);
}

.txt-l {
  font-size: 1.4em;
}

@media screen and (max-width: 481px) {
  .txt-l {
    font-size: 1.2em;
  }
}

.wrap_half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.wrap_half > div {
  margin: 0 auto;
  width: calc(50% - 32px);
}

@media screen and (max-width: 768px) {
  .wrap_half > div {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .wrap_half.__half > div {
    width: calc(50% - 32px);
  }
}

@media screen and (max-width: 768px) and (max-width: 481px) {
  .wrap_half.__half > div {
    width: 100%;
  }
}

.__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.__column {
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.__flex {
  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;
}

.text_wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.text_wrap span {
  white-space: nowrap;
}

.__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

@media screen and (max-width: 768px) {
  .__container {
    width: 90%;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #00a0e9;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 0;
  }
  #g-nav.panelactive {
    right: 0;
  }
  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: block;
  }
  #g-nav ul li {
    margin: 20px auto;
    list-style: none;
    text-align: center;
  }
  #g-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 1.2em;
  }
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 64px;
    right: 40px;
    background: #ffffff;
    border-radius: 60px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .openbtn {
    top: calc((75px / 2) - 25px);
    right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #323130;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .header .hd_logo.menu_top {
    background: white;
    width: 100vw;
    padding: 0 calc(50vw - 50%);
    margin: 0 calc(50% - 50vw);
  }
  .header .hd_logo.menu_top img {
    margin: 10px 0;
  }
}

.header {
  margin: 0 auto;
  border-bottom: 1px solid #e6e6e6;
  width: 100vw;
  padding: 20px calc(50vw - 50%);
  margin: 0 calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 5% 0;
    position: relative;
  }
}

.header .hd_logo {
  width: 30%;
  max-width: 300px;
}

@media screen and (max-width: 768px) {
  .header .hd_logo {
    max-width: initial;
    width: 100%;
    margin: 0 auto;
  }
  .header .hd_logo img {
    max-width: 240px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) and (max-width: 481px) {
  .header .hd_logo img {
    -moz-force-broken-image-icon: 18px;
  }
}

.header .hd_info {
  width: 60%;
  max-width: 730px;
}

@media screen and (max-width: 768px) {
  .header .hd_info {
    width: 100%;
    margin: 0 auto;
  }
}

.header .hd_info .main_nav {
  background: white;
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  .header .hd_info .main_nav {
    padding: 0 20px 10px;
    font-size: 16px;
  }
}

.header .hd_info .main_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 500px;
  min-width: 410px;
  margin: 0 0 0 auto;
  list-style: none;
}

.header .hd_info .main_nav ul li {
  min-width: 5em;
  margin: 0 0 0 40px;
}

.header .__sp {
  font-size: 12px;
  line-height: 1.6em;
  margin-top: 10px;
}

@media screen and (max-width: 481px) {
  .header .__container {
    width: 100%;
  }
}

.info__add {
  color: #00a0e9;
  font-size: 14px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .info__add {
    position: absolute;
    top: -40px;
    right: 30px;
    margin: 10px auto 0;
    font-size: 14px;
  }
}

@media screen and (max-width: 481px) {
  .info__add {
    position: initial;
    width: 100%;
    right: 0;
    left: 0;
  }
}

.info__add p {
  display: inline;
  margin-right: 10px;
}

@media screen and (max-width: 481px) {
  .info__add p {
    font-size: 14px;
  }
}

.info__add .map {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00a0e9;
  font-family: "Josefin Sans", sans-serif;
  border: 1px solid #00a0e9;
  padding: 2px 10px;
  border-radius: 60px;
  font-size: 0.9em;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.info__add .map img {
  height: 1em;
  margin-left: 5px;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  padding: 0 calc(50vw - 50%);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 80vh;
  min-height: 900px;
  background: radial-gradient(#00a0e9, #0068b7);
}

@media screen and (max-width: 481px) {
  .main {
    min-height: 740px;
    max-height: initial;
    padding: 5vh 0 10vh;
  }
}

.main .main_des {
  text-align: center;
  font-size: 20px;
  color: #00a0e9;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 481px) {
  .main .main_des {
    font-size: 16px;
    height: 60px;
  }
}

.main .main_des span {
  margin: 0 8px;
}

.main .fv {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 1200px;
}

@media screen and (max-width: 768px) {
  .main .fv {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 481px) {
  .main .fv {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.main .fv .fv_logo {
  max-width: 500px;
}

@media screen and (max-width: 768px) {
  .main .fv .fv_logo {
    width: 100%;
    max-width: 340px;
    width: 80%;
    margin-bottom: 20px;
  }
}

.main .fv .fv_des {
  text-align: center;
  width: 100%;
  margin: 10px auto 40px;
}

.main .fv .fv_des .day {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: lighter;
}

.main .fv .fv_des .txt {
  width: 100%;
  margin-bottom: 50px;
  font-weight: 600;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  margin: 20px 0;
  line-height: 1;
  letter-spacing: 5px;
  color: #ffffff;
}

.main .fv .fv_des .sub {
  font-weight: normal;
  color: #00a0e9;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin: 0;
  color: white;
}

@media screen and (max-width: 768px) {
  .main .fv .fv_des {
    margin: 0;
    min-width: initial;
  }
  .main .fv .fv_des .day {
    font-size: 1.2rem;
  }
  .main .fv .fv_des .txt {
    margin: 20px 0 40px;
  }
  .main .fv .fv_des .sub {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 481px) {
  .main .fv .fv_des {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .main .fv.wrap_half {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main .fv.wrap_half > div {
    width: 100%;
  }
  .main .fv .__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main .fv .__flex > span {
    width: 100%;
  }
}

.main .fv_sub {
  margin: 40px auto 0;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .main .fv_sub {
    font-size: 16px;
  }
}

@media screen and (max-width: 481px) {
  .main .fv_sub {
    text-align: left;
    margin-top: 30px;
  }
}

.main .fv_sub .__flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 8px;
  font-size: 1.2rem;
  margin-bottom: 0;
  font-weight: normal;
  border: 1px solid #ffffff;
  line-height: 1;
  margin: 0px 0 20px 0;
  color: #ffffff;
}

@media screen and (max-width: 481px) {
  .main .fv_sub .__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#greeting {
  background: #EAF7FD;
  max-width: initial;
  padding: 120px calc(50vw - 50%);
  margin: 0 calc(50% - 50vw) 60px;
  width: 100vw;
}

@media screen and (max-width: 768px) {
  #greeting {
    width: 100%;
    padding: 60px 0px;
  }
}

.greeting {
  margin-bottom: 0;
}

.greeting .content {
  margin-bottom: 60px;
}

@media screen and (max-width: 481px) {
  .greeting .content {
    padding: 0;
    margin-bottom: 40px;
    border: none;
    text-align: left;
  }
}

.greeting .content p {
  margin: 32px 0;
}

@media screen and (max-width: 481px) {
  .greeting .content p {
    margin: 16px 0;
  }
}

.greeting .content .name {
  font-weight: bold;
  margin: 24px 0 0;
  font-size: 0.9rem;
  text-align: center;
}

@media screen and (max-width: 481px) {
  .greeting .content .name {
    font-size: 0.8rem;
    text-align: left;
    letter-spacing: 0;
  }
}

.greeting .content .txt_st {
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 481px) {
  .greeting__doc {
    margin-bottom: 20px;
  }
}

.greeting__doc .__column {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.greeting__doc .wrap_half + div {
  margin-top: 12px;
}

.greeting__doc .wrap_half > div {
  margin: initial;
}

@media screen and (max-width: 768px) {
  .greeting__doc .wrap_half > div {
    margin: 0 auto;
  }
}

.greeting__doc .wrap_half > div:first-of-type {
  margin-bottom: 12px;
}

.greeting__doc h3 {
  background-color: #00a0e9;
  padding: 8px 0;
  text-align: center;
  margin-bottom: 32px;
  color: #ffffff;
}

.greeting__doc h3 + div > div {
  margin-bottom: 32px;
  font-size: 16px;
}

.greeting__doc .box {
  padding: 0 24px;
}

@media screen and (max-width: 481px) {
  .greeting__doc .box {
    padding: 0;
  }
}

.greeting__doc h4 {
  color: #00a0e9;
  padding-left: 16px;
  border-left: 3px solid #00a0e9;
  line-height: 24px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.greeting__doc h4 ~ p,
.greeting__doc h4 ~ div {
  padding-left: 16px;
}

.greeting__doc .work > div p:first-of-type {
  line-height: 1.4;
}

.greeting__doc .work > div p:not(:first-of-type) {
  font-size: 14px;
}

.greeting__doc .work > div p {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.greeting__doc .work.his > div {
  margin-bottom: 8px;
}

.greeting__doc .work.his > div p:not(:first-of-type) {
  color: initial;
  font-size: 14px;
  display: inline-block;
  margin-left: 1em;
}

.greeting__doc .work.his > div p:not(:first-of-type)::before {
  content: "-";
  margin-right: 0.5em;
  font-size: 1rem;
}

@media screen and (max-width: 481px) {
  .greeting__doc .work.his h4 ~ p {
    margin-bottom: 8px;
  }
}



.attention {
    text-align: center;
}
.attention_inner {
    border: 1px solid #00a0e9;
    padding: 30px;
    max-width: 600px;
    margin: auto;
}
.attention h4:nth-child(n+2) {
    margin-top: 20px;
}


#clinic {
  background: url(../img/bg_dot.svg);
  background-size: 20px 20px;
  max-width: initial;
  padding: 80px calc(50vw - 50%);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

@media screen and (max-width: 768px) {
  #clinic {
    width: 100%;
    padding: 60px 0px;
  }
}

.clinic .__wrap {
  max-width: 1000px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 auto 60px;
}

@media screen and (max-width: 768px) {
  .clinic .__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }
}

.clinic .clinic_info {
  width: 100%;
  margin: 0 auto 60px;
  max-width: 660px;
}

@media screen and (max-width: 768px) {
  .clinic .clinic_info {
    width: 100%;
    max-width: initial;
  }
}

.clinic .doc_img {
  width: 100%;
  margin-top: 0;
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  .clinic .doc_img {
    width: 100%;
  }
}

.clinic .clinic_name {
  text-align: center;
  font-weight: normal;
  margin: 0 0 20px;
  font-size: 1.4rem;
}

@media screen and (max-width: 481px) {
  .clinic .clinic_name {
    font-size: 1.2rem;
  }
}

.clinic .clinic_logo img {
  width: 100%;
  max-width: 460px;
  margin-bottom: 30px;
}

.clinic dl {
  font-size: 16px;
  text-align: justify;
}

.clinic dl dt {
  width: 6em;
  display: inline-block;
  font-weight: bold;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .clinic dl dt {
    font-weight: bold;
  }
}

@media screen and (max-width: 481px) {
  .clinic dl dt {
    width: 100%;
  }
}

.clinic dl dt.sp_none {
  display: inline-block !important;
}

@media screen and (max-width: 768px) {
  .clinic dl dt.sp_none {
    display: none !important;
  }
}

.clinic dl dd {
  margin: 0 0 8px 0;
  width: calc(100% - 6em - 12px);
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .clinic dl dd {
    max-width: 100%;
    -ms-flex-wrap: initial;
        flex-wrap: initial;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 481px) {
  .clinic dl dd {
    width: 100%;
  }
}

.clinic .wrap_half {
  padding: 0;
}

@media screen and (max-width: 768px) {
  .clinic .wrap_half {
    -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;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.clinic .wrap_half > div {
  margin: 0;
}

@media screen and (max-width: 1200px) {
  .clinic .wrap_half > div {
    width: 100%;
  }
}

.clinic .wrap_half > div:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: initial;
}

@media screen and (max-width: 768px) {
  .clinic .wrap_half > div:nth-child(2) {
    margin-top: 20px;
  }
}

.clinic .address_wrap {
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
}

@media screen and (max-width: 768px) {
  .clinic .address_wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.hours_table {
  margin: 0 auto;
  width: 100%;
  max-width: 660px;
  font-size: 16px;
  line-height: 1;
  border-collapse: collapse;
  border-spacing: 0;
  position: relative;
}

@media screen and (max-width: 481px) {
  .hours_table {
    font-size: 13px;
  }
}

.hours_table th {
  width: 10%;
  padding: 18px 0;
  text-align: center;
  padding: 20px 0;
  font-weight: normal;
}

@media screen and (max-width: 481px) {
  .hours_table th {
    padding: 10px 0;
    line-height: 1.6;
  }
}

.hours_table th:nth-child(1) {
  width: 30%;
}

.hours_table td {
  padding: 18px 0;
  text-align: center;
}

.hours_table thead {
  color: #fff;
}

.hours_table thead th {
  padding-top: 30px;
}

.hours_table thead tr,
.hours_table tbody {
  background-color: #00a0e9;
  color: #fff;
}

.hours_table tbody tr:last-of-type th,
.hours_table tbody tr:last-of-type td {
  padding-bottom: 40px;
}

.hours_table tr th:last-of-type,
.hours_table tr td:last-of-type {
  padding-right: 30px;
}

@media screen and (max-width: 768px) {
  .hours_table tr th:last-of-type,
  .hours_table tr td:last-of-type {
    padding-right: 10px;
  }
}

.hours_note {
  margin-top: auto;
  font-size: 1rem;
  letter-spacing: 2px;
  text-align: center;
  background-color: #E6E6E6;
  color: #00a0e9;
  font-weight: bold;
  width: 100%;
  padding: 12px 0;
}

.medical__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .medical__wrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.medical__wrap.__ttl {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.medical__wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.medical__wrap ul li {
  min-width: 310px;
  color: #323130;
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media screen and (max-width: 768px) {
  .medical__wrap ul li {
    padding: 8px 0;
    width: 48%;
    min-width: initial;
  }
}

.medical__wrap ul li:before {
  content: "";
  background: #88c2e1;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  margin-right: 1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.medical__wrap ul li.air {
  background: transparent;
  height: 0;
  padding: 0;
  margin: 0 10px 0 0;
  padding: 0 24px;
}

.googlemap iframe {
  width: 100%;
  height: 40vh;
  max-height: 570px;
  min-height: 300px;
  border-radius: 5px;
}

@media screen and (max-width: 481px) {
  .googlemap iframe {
    margin: 0 auto 40px;
    height: 400px !important;
  }
}

.googlemap .info__add {
  text-align: initial;
  position: initial;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .googlemap .info__add {
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 481px) {
  .googlemap .info__add {
    width: 100%;
    right: 0;
    left: 0;
  }
}

.googlemap .info__add .map {
  color: #00a0e9;
}

.googlemap .map__wrap {
  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-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer {
  background-color: #00a0e9;
  padding: 80px 0 40px;
}

.footer .container {
  background: transparent;
}

.footer .footer_nav {
  margin-bottom: 80px;
}

.footer .footer_nav ul {
  text-align: center;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 750px;
  color: #ffffff;
  width: 100%;
  max-width: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .footer .footer_nav ul {
    width: 90%;
  }
}

.footer .footer_nav ul a {
  color: #ffffff;
}

.footer .copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer .container {
  margin-left: 0;
}

/*リンクの形状*/
#page-top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #00a0e9;
  border-radius: 50px;
  width: 80px;
  height: 80px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  font-family: "Josefin Sans", sans-serif;
}

#page-top a:hover {
  opacity: 0.6;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

/*アコーディオン全体*/
.accordion-area {
  margin: 0 auto;
  /*アコーディオンタイトル*/
  /*アコーディオンで現れるエリア*/
}

.accordion-area li {
  margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

.accordion-area .title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 6% 3% 3%;
  background: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
}

.accordion-area .title::before, .accordion-area .title::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 2px;
  background-color: #ffffff;
}

.accordion-area .title::before {
  top: 48%;
  right: 3%;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.accordion-area .title::after {
  top: 48%;
  right: 3%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.accordion-area .title.close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.accordion-area .title.close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.accordion-area .box {
  display: none;
  /*はじめは非表示*/
  margin: 0 auto;
}

.accordion-area .box > div {
  padding: 3%;
  background: #f3f3f3;
  font-size: 1rem;
}

.accordion-area .box > div > p {
  margin-top: 12px;
}

.accordion-area .box > div > p:first-of-type {
  margin: 0;
}

.accordion-area .box > div > p .sub {
  display: block;
  color: #0068b7;
  font-weight: bold;
}

.sp_accordion-area .title {
  pointer-events: none;
}

.low_accordion-area .accordion-area li {
  margin: 20px 0;
}

.low_accordion-area .accordion-area li:first-of-type {
  margin-top: 0;
}

.low_accordion-area .accordion-area li .title {
  padding: 0 0 0 16px;
  font-weight: bold;
}

.low_accordion-area .accordion-area .box {
  padding: 0;
}

.low_accordion-area .accordion-area .box > div {
  background: #f3f3f3;
  padding: 5%;
  margin: 0;
}

.low_accordion-area .accordion-area .box p {
  margin: 0;
  font-size: 0.85em;
}

.low_accordion-area .accordion-area .box h5 {
  font-size: 0.85em;
  margin-top: 16px;
}

.low_accordion-area .accordion-area .box h5:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 481px) {
  .sp_accordion-area {
    margin: 0 auto;
    /*アコーディオンタイトル*/
    /*アコーディオンで現れるエリア*/
  }
  .sp_accordion-area section {
    border: 1px solid #ccc;
  }
  .sp_accordion-area .title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    pointer-events: all;
    cursor: pointer;
    font-size: 1rem;
    padding: 20px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-bottom: 0;
    /*アイコンの＋と×*/
    /*　closeというクラスがついたら形状変化　*/
  }
  .sp_accordion-area .title::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 10%;
    display: block;
    width: 8px;
    height: 8px;
    border-top: #ffffff 2px solid;
    border-right: #ffffff 2px solid;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    position: absolute;
    margin: auto;
    border-left: initial;
    border-bottom: initial;
  }
  .sp_accordion-area .title.close::after {
    transform: rotate(-45deg);
    border-top: #ffffff 2px solid;
    border-right: #ffffff 2px solid;
    border-left: initial;
    border-bottom: initial;
    -webkit-transform: rotate(-45deg);
  }
  .sp_accordion-area .title:not(:first-child) {
    margin-top: 24px;
  }
  .sp_accordion-area .box {
    display: none;
    /*はじめは非表示*/
  }
  .sp_accordion-area .box > div {
    background: #f3f3f3;
    margin: 0 auto;
    padding: 5%;
    font-size: 1rem;
  }
  .low_accordion-area .box > div {
    padding: 0 5%;
  }
  .low_accordion-area .accordion-area li {
    margin: 0 0 16px;
  }
}

.accordion-area .des_none p {
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 6% 3% 3%;
  background: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*tabの形状*/
.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tab li {
  width: calc((100% / 3) - 4px);
  height: 100px;
  background: #ffffff;
  border: 4px solid #E6E6E6;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  display: block;
  padding: 10px 20px;
  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;
  line-height: 1.4;
  font-size: 1rem;
  margin: 0;
}

.tab li.resp-tab-active {
  font-size: 1rem;
  margin: 0;
  color: #00a0e9;
  background: #E6E6E6;
  border: 4px solid #E6E6E6 !important;
}

.tab li.resp-tab-active .line {
  position: relative;
}

.tab li.resp-tab-active .line:after {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #00a0e9;
  display: block;
  content: "";
  bottom: -4px;
}

.resp-tabs-container h2.resp-accordion {
  border: none;
  font-size: initial;
  padding: 20px;
  background: #E6E6E6;
  margin-bottom: 20px;
  text-align: center;
}

.resp-tabs-container h2.resp-accordion.resp-tab-active {
  border: none !important;
  padding: 20px !important;
  color: #00a0e9;
}

.resp-tabs-container .resp-tab-active {
  border: none;
}

.resp-tab-content {
  border: none;
  padding: 0;
}

.area {
  padding: 80px;
  border-radius: 0 0 20px 20px;
  border: 4px solid #E6E6E6;
}

.area h3 {
  margin-bottom: 20px;
  border-bottom: 4px solid #E6E6E6;
  padding-bottom: 20px;
  line-height: 1;
  font-size: 1.4rem;
}

@media screen and (max-width: 769px) {
  .resp-tabs-container h2.resp-accordion {
    position: relative;
  }
  .resp-tabs-container .margin_box:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .area {
    padding: 40px 20px;
    border: none;
  }
}

@media screen and (max-width: 769px) and (max-width: 481px) {
  .area {
    padding: 20px 0;
  }
}

@media screen and (max-width: 769px) {
  .area h3 {
    text-align: center;
    border-bottom: none;
  }
  .resp-arrow {
    display: block;
    width: 8px;
    height: 8px;
    border-top: #00a0e9 2px solid;
    border-right: #00a0e9 2px solid;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    position: absolute;
    right: 5%;
    top: 0;
    margin: auto;
    border-left: initial;
    border-bottom: initial;
    bottom: 0;
  }
  h2.resp-tab-active span.resp-arrow {
    border-top: #00a0e9 2px solid;
    border-right: #00a0e9 2px solid;
    border-left: initial;
    border-bottom: initial;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.txt_inbox {
  font-size: 0.8em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: rgba(0, 160, 233, 0.1);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 8px;
  margin-right: 8px;
  line-height: 1;
}

.hours_table + .note {
  max-width: 1000px;
  text-align: right;
  margin: 12px auto 0;
}

@media screen and (max-width: 481px) {
  .hours_table + .note {
    text-align: initial;
  }
}
/*# sourceMappingURL=pre_style.css.map */
