@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

body,
html {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  color: #393939;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  background-color: #fff;
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

dl,
dd,
dt {
  padding: 0;
  margin: 0;
}

.title-wrap {
  text-align: center;
}

.util-title {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 95.56px;
  padding-right: 95.56px;
}
@media screen and (max-width: 767px) {
  .util-title {
    padding-left: 65px;
    padding-right: 65px;
    font-size: 20px;
    line-height: 1.4;
  }
}
.util-title::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 67.56px;
  height: 17.71px;
  background: url(../img/title-deco.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .util-title::before {
    width: 50px;
    height: 12px;
  }
}
.util-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 67.56px;
  height: 17.71px;
  background: url(../img/title-deco.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .util-title::after {
    width: 50px;
    height: 12px;
  }
}

.wrap {
  overflow: hidden;
}

/* ヘッダー
----------------------------------------------*/
header {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: #fff;
}

.header__container {
  max-width: 1280px;
  margin: 0 auto;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .header__container {
    height: 60px;
  }
}

.header__logo {
  width: 270px;
  height: 31px;
}
@media screen and (max-width: 374px) {
  .header__logo {
    max-width: 240px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  height: inherit;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .header__nav {
    display: none;
  }
}

.header__nav-item {
  position: relative;
  height: inherit;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-item:hover {
  color: #1391e6;
}
.header__nav-item:hover .icon1,
.header__nav-item:hover .icon2,
.header__nav-item:hover .icon3,
.header__nav-item:hover .icon4,
.header__nav-item:hover .icon5,
.header__nav-item:hover .icon7 {
  background: #1391e6;
}
.header__nav-item.is-show::after {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 20px;
  height: 2px;
  background-color: #1391e6;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header__nav-item a {
  position: relative;
  -webkit-transition: 0.3 ease;
  transition: 0.3 ease;
}
.header__nav-item a::after {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  content: "";
  position: absolute;
  bottom: 7px;
  width: 20px;
  height: 2px;
  background-color: #1391e6;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0, 1);
          transform: translateX(-50%) scale(0, 1);
}
.header__nav-item a:hover:after {
  -webkit-transform: translateX(-50%) scale(1, 1);
          transform: translateX(-50%) scale(1, 1);
}
.header__nav-item a img {
  width: 24px;
  height: 24px;
}
.header__nav-item a span {
  font-size: 11px;
  display: block;
  white-space: nowrap;
  margin-top: 6px;
  font-weight: bold;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__nav-item {
    display: none;
  }
}
.header__nav-item:nth-child(2) {
  margin-left: 24px;
  position: relative;
}
.header__nav-item:nth-child(3) {
  margin-left: 24px;
  position: relative;
}
.header__nav-item:nth-child(4) {
  margin-left: 24px;
  position: relative;
}
.header__nav-item:nth-child(5) {
  margin-left: 24px;
  position: relative;
}
.header__nav-item:nth-child(6) {
  margin-left: 24px;
  position: relative;
}
.header__nav-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.icon1 {
  width: 24px;
  height: 24px;
  -webkit-mask: url(../img/icon-01.png);
          mask: url(../img/icon-01.png);
  background: black;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.icon2 {
  width: 24px;
  height: 24px;
  -webkit-mask: url(../img/icon-02.png);
          mask: url(../img/icon-02.png);
  background: black;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.icon3 {
  width: 24px;
  height: 24px;
  -webkit-mask: url(../img/icon-03.png);
          mask: url(../img/icon-03.png);
  background: black;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.icon4 {
  width: 24px;
  height: 24px;
  -webkit-mask: url(../img/icon-04.png);
          mask: url(../img/icon-04.png);
  background: black;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.icon5 {
  width: 24px;
  height: 24px;
  -webkit-mask: url(../img/icon-05.png);
          mask: url(../img/icon-05.png);
  background: black;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.icon7 {
  width: 24px;
  height: 24px;
  -webkit-mask: url(../img/icon-07.png);
          mask: url(../img/icon-07.png);
  background: black;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header__right-box {
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .header__right-box {
    display: none;
  }
}

.header__address {
  font-size: 12px;
  font-weight: 500;
}

.header__tel {
  font-size: 32px;
  color: #1391e6;
  font-weight: bold;
  position: relative;
}
.header__tel:after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  background: url(../img/icon_tel.png) no-repeat center;
  background-size: cover;
  left: -32px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* ハンバーガメニュー
----------------------------------------------*/
/*menu*/
.menu {
  height: 20px;
  position: fixed;
  right: 23px;
  top: 31px;
  width: 28px;
  z-index: 99;
  display: block;
}
@media screen and (max-width: 767px) {
  .menu {
    top: 19px;
  }
}
@media screen and (max-width: 374px) {
  .menu {
    right: 18px;
  }
}
@media screen and (min-width: 1201px) {
  .menu {
    display: none;
  }
}

.menu__line {
  background: #1391e6;
  display: block;
  height: 3px;
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
}

.menu__line--center {
  top: 8px;
}

.menu__line--bottom {
  bottom: 0;
}

.menu__line--top.active {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
}

.menu__line--center.active {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.menu__line--bottom.active {
  bottom: 10px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  background: #fff;
}

/* フルスクリーンナビゲーション
----------------------------------------------*/
/*gnav*/
.gnav {
  background: #0060a0;
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 98;
  left: 0;
}

.drawer-logo {
  width: 267px;
  margin-top: 15px;
  margin-left: 20px;
}
@media screen and (max-width: 374px) {
  .drawer-logo {
    max-width: 240px;
  }
}

.gnav__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 75%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 255px;
}

.gnav__menu {
  width: 100%;
}

.gnav__menu__item {
  margin: 0;
  position: relative;
  border-bottom: 1px dashed #fff;
}
.gnav__menu__item:first-child {
  border-top: 1px dashed #fff;
}
.gnav__menu__item:first-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/home.svg) no-repeat center;
  background-size: cover;
}
.gnav__menu__item:nth-child(2)::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon-02.svg) no-repeat center;
  background-size: cover;
}
.gnav__menu__item:nth-child(3)::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon-03.svg) no-repeat center;
  background-size: cover;
}
.gnav__menu__item:nth-child(4)::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon-04.svg) no-repeat center;
  background-size: cover;
}
.gnav__menu__item:nth-child(5)::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon-05.svg) no-repeat center;
  background-size: cover;
}
.gnav__menu__item:nth-child(6)::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon-07.svg) no-repeat center;
  background-size: cover;
}
.gnav__menu__item::after {
  position: absolute;
  content: "";
  background: url(../img/icon-right.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  display: block;
}

.gnav__menu__item a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 16px;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  padding-left: 38px;
}

.gnav__menu__item a:hover {
  color: #666;
}

/*===================================================
# footer
=================================================== */
.footer {
  width: 100%;
  padding-top: 88px;
  background-color: #dff1fd;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 999px) {
  .footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 13.75px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.footer::before {
  position: absolute;
  content: "";
  left: 0;
  top: -32px;
  height: 32px;
  width: 100%;
  background: url(../img/wave.png) no-repeat center;
  background-position: top center;
  background-size: cover;
}

.footer__box {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .footer__box {
    padding: 32px 10px 20px 10px;
  }
}

.footer__box-container {
  max-width: 902px;
  margin: 0 auto;
}

.footer__box-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .footer__box-flex {
    display: block;
  }
}

.footer__logo {
  max-width: 403px;
}
@media screen and (max-width: 999px) {
  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__schedule-image {
  max-width: 385px;
}

@media screen and (max-width: 767px) {
  .pc-schedule {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-schedule {
    display: none;
  }
}

.footer__address {
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__address {
    margin-top: 11px;
  }
}

.footer__tel-wrapper {
  margin-top: 25px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__tel-wrapper {
    margin-top: 20px;
  }
}

.footer__tel {
  display: inline-block;
  font-size: 32px;
  color: #1391e6;
  font-weight: bold;
  position: relative;
}

.footer__tel:after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  background: url(../img/icon_tel.png) no-repeat center;
  background-size: cover;
  left: -32px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer__tel:before {
  content: "(年中無休 AM9:00〜PM22:00)";
  width: 100%;
  display: block;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #1391e6;
  font-size: 12px;
}

.footer__btn-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
}
@media screen and (max-width: 999px) {
  .footer__btn-flex {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__btn-wrapper {
  text-align: center;
}

.footer__btn1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  height: 56px;
  font-size: 16px;
  color: #1391e6;
  font-weight: bold;
  position: relative;
  background-color: #1391e6;
  color: #fff;
  border-radius: 30px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__btn1:hover {
  background: #0060a0;
}
@media screen and (max-width: 767px) {
  .footer__btn1 {
    width: 150px;
    height: 38px;
    font-size: 14px;
  }
}
.footer__btn1::after {
  position: absolute;
  content: "";
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 12px;
  height: 12px;
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer__btn1 span {
  position: relative;
  padding-left: 33px;
}
.footer__btn1 span:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon-pc.svg) no-repeat center;
  background-size: cover;
}

.footer__btn2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  height: 56px;
  font-size: 16px;
  color: #1391e6;
  font-weight: bold;
  position: relative;
  border: 1px solid #1391e6;
  background-color: #fff;
  border-radius: 30px;
  margin-left: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__btn2:hover {
  background-color: #1391e6;
  color: #fff;
}
.footer__btn2:hover span:before {
  background-color: #fff;
}
.footer__btn2 span {
  position: relative;
  padding-left: 32px;
}
.footer__btn2 span:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon-mail.svg) no-repeat center;
          mask: url(../img/icon-mail.svg) no-repeat center;
  background: #1391e6;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .footer__btn2 {
    margin-left: 15px;
    width: 150px;
    height: 38px;
    font-size: 14px;
  }
}
.footer__btn2::after {
  position: absolute;
  content: "";
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 12px;
  height: 12px;
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__schedule-image {
  max-width: 477px;
  margin-top: 20px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
}
@media screen and (max-width: 999px) {
  .footer__schedule-image {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__map {
  margin-left: 40px;
  aspect-ratio: 1/1;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .footer__map {
    max-width: 477px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__map {
    margin-top: 20px;
  }
}
.footer__map > iframe {
  width: 100%;
  height: 100%;
}

/*===================================================
# footer__under
=================================================== */
.footer__under {
  padding-top: 40px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer__under {
    padding-top: 55px;
    font-weight: 500;
  }
}

.footer__under-container {
  max-width: 832.17px;
  margin: 0 auto;
}

.footer__nav-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 999px) {
  .footer__nav-flex {
    display: block;
    padding-left: 10px;
  }
}

.footer__nav-list {
  white-space: nowrap;
}
@media screen and (max-width: 999px) {
  .footer__nav-list {
    display: block;
    padding-left: 10px;
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .footer__nav-list {
    width: 90%;
  }
}
@media screen and (max-width: 999px) {
  .footer__nav-list:first-child {
    margin-bottom: 27px;
  }
}
.footer__nav-list .top-list {
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .footer__nav-list .top-list {
    margin-bottom: 5px;
  }
}
.footer__nav-list li {
  white-space: nowrap;
  line-height: 2.25;
}
.footer__nav-list li + .footer__nav-list li {
  margin-top: 20px;
}
.footer__nav-list:nth-child(2) {
  margin-left: 40.17px;
}
@media screen and (max-width: 999px) {
  .footer__nav-list:nth-child(2) {
    margin-left: 0%;
  }
}
.footer__nav-list:nth-child(3) {
  margin-left: 35px;
}
@media screen and (max-width: 999px) {
  .footer__nav-list:nth-child(3) {
    margin-top: 40px;
    margin-left: 0;
  }
}
.footer__nav-list:nth-child(4) {
  margin-left: 39.83px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
  .footer__nav-list:nth-child(4) {
    margin-top: 35px;
    margin-left: 0;
  }
}
.footer__nav-list:nth-child(4) .top-list {
  width: 100%;
}
.footer__nav-list:nth-child(4) li {
  width: calc(50% - 10px);
}
.footer__nav-list:nth-child(4) .sub-list:nth-child(even) {
  margin-left: 0;
}
@media screen and (max-width: 999px) {
  .footer__nav-list:nth-child(4) .sub-list:nth-child(even) {
    margin-left: 0;
  }
}
.footer__nav-list:nth-child(5) {
  margin-left: 40.17px;
}
@media screen and (max-width: 999px) {
  .footer__nav-list:nth-child(5) {
    margin-top: 35px;
    margin-left: 0%;
  }
}

.sub-list {
  position: relative;
  padding-left: 12px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sub-list:hover {
  opacity: 0.7;
}
.sub-list:before {
  position: absolute;
  left: 0;
  content: "";
  background: url(../img/icon-arrow-blue.png) no-repeat center;
  background-size: cover;
  width: 6px;
  height: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__bottom {
  height: 55px;
  background-color: #1391e6;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .footer__bottom {
    height: 115px;
    -webkit-box-align: normal;
    -webkit-align-items: normal;
        -ms-flex-align: normal;
            align-items: normal;
    padding-top: 19px;
  }
}

.go-top {
  position: fixed;
  width: 52px;
  height: 52px;
  right: 25px;
  bottom: 37px;
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  z-index: 30;
}
@media screen and (max-width: 1200px) {
  .go-top {
    bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .go-top {
    right: 10px;
  }
}
.go-top.is-show {
  opacity: 1;
  visibility: visible;
}

/*===================================================
# 右横の追従web予約ボタン
=================================================== */
.reserve-fixed {
  padding-top: 21px;
  padding-bottom: 21.4px;
  width: 92px;
  height: 120px;
  border-radius: 20px 0 0 20px;
  background-color: #1391e6;
  color: #fff;
  position: fixed;
  top: 176px;
  right: 0;
  padding-left: 17px;
  padding-right: 17px;
  z-index: 30;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .reserve-fixed {
    display: none;
  }
}
.reserve-fixed:hover {
  background: #0060a0;
}

.icon-tel {
  width: 49px;
  height: 29px;
  margin-right: auto;
  margin-left: auto;
}

.reserve-this {
  margin-top: 12px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
}

/*===================================================
# /右横の追従web予約ボタン
=================================================== */
/*===================================================
# footerの追従メニュー(max-width: 1200px以下で出現)
=================================================== */
.footer-sticky {
  display: none;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  height: 60px;
  padding-top: 7px;
  padding-bottom: 6px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .footer-sticky {
    display: block;
  }
}

.footer-sticky__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 320px;
  margin: 0 auto;
}

.footer-sticky__tel {
  font-size: 20px;
  color: #1391e6;
  font-weight: bold;
  position: relative;
  padding-left: 26px;
  white-space: nowrap;
}
.footer-sticky__tel::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  background: url(../img/icon_tel.png) no-repeat center;
  background-size: cover;
  left: 0px;
  position: absolute;
  top: 5px;
}
.footer-sticky__tel::after {
  content: "(年中無休 AM9:00〜PM22:00)";
  font-size: 10px;
  position: absolute;
  position: absolute;
  bottom: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 100%;
  color: #393939;
  padding-left: 16px;
}

.footer-sticky__btn {
  width: 157px;
  height: 47px;
  border-radius: 8px;
  background-color: #1391e6;
  margin-left: 11px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3;
  position: relative;
  padding-left: 54px;
}
.footer-sticky__btn span {
  font-size: 12px;
}
.footer-sticky__btn::before {
  position: absolute;
  top: 50%;
  left: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background: url(../img/icon-pc.svg) no-repeat center;
  background-size: cover;
  width: 43.5px;
  height: 25.5px;
  display: block;
}

.footer.is-footer {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .footer.is-footer {
    margin-top: 100px;
  }
}

/*===================================================
# メインビジュアル
=================================================== */
.wrap {
  overflow: hidden;
}

main {
  display: block;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 60px;
  }
}

.main-visual__container {
  max-width: 1920px;
  width: 90.625%;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .main-visual__container {
    padding: 0 18px;
  }
}

.main-visual__picture {
  margin-top: 40.2px;
  background: url(../img/archive_top.png) no-repeat center;
  background-size: cover;
  height: 340px;
  position: relative;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .main-visual__picture {
    height: 188px;
  }
}
.main-visual__picture::before {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .main-visual__picture::before {
    border-radius: 12px;
  }
}
@media screen and (max-width: 767px) {
  .main-visual__picture {
    background: url(../img/archive_top-sp.png) no-repeat center;
    margin-top: 20px;
    background-size: cover;
    padding-bottom: 56.1194%;
    border-radius: 12px;
  }
}

.main-visual__title-group {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .main-visual__title-group {
    width: 100%;
  }
}

.main-visual__title {
  font-size: 32px;
  line-height: 1.125;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .main-visual__title {
    font-size: 26px;
    line-height: 1.5;
  }
}

.main-visual__sub-title {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .main-visual__sub-title {
    margin-top: 13px;
  }
}

/*===================================================
# パンくずリスト
=================================================== */
.breadcrumb {
  max-width: 1920px;
  margin: 14px auto 0;
  font-size: 12px;
  font-weight: 500;
  padding-left: 28px;
  width: 90.625%;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding-left: 5px;
  }
}

/*===================================================
# ブログコンテンツ
=================================================== */
.blog {
  padding-top: 80px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .blog {
    padding-top: 60px;
    padding-bottom: 110px;
  }
}

.blog__container {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .blog__container {
    display: block;
  }
}

.blog-area {
  width: calc(100% - 300px - 30px);
}
@media screen and (max-width: 767px) {
  .blog-area {
    width: 100%;
  }
}

.blog__contents-image {
  margin-bottom: 0;
  margin-top: 20px;
  padding-top: 62.7%;
  position: relative;
}
.blog__contents-image > img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.blog__title {
  font-size: 28px;
  line-height: 1.4285714286;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .blog__title {
    font-size: 20px;
    line-height: 1.6;
  }
}

.entry-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 18px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-time {
  font-size: 16px;
  font-weight: bold;
  color: #1391e6;
  padding-left: 20px;
  position: relative;
}
.blog-time::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../img/icon-time.png) no-repeat center;
  background-size: cover;
}

.blog-category {
  font-size: 11px;
  font-weight: 500;
  width: 75px;
  height: 28px;
  border-radius: 12px;
  background-color: #1391e6;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 32px;
}

.entry-body {
  margin-top: 57px;
}
.entry-body p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7142857143;
  font-weight: 500;
}
.entry-body h2 {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 57px;
  font-size: 24px;
  color: #1391e6;
  font-weight: bold;
  padding-left: 28px;
  position: relative;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .entry-body h2 {
    font-size: 18px;
    padding-left: 22px;
  }
}
.entry-body h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 52px;
  display: block;
  background-color: #1391e6;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .entry-body h2::before {
    width: 6px;
    height: 40px;
  }
}
.entry-body h3 {
  margin-top: 36px;
  font-size: 20px;
  line-height: 1.6;
  color: #1391e6;
  font-weight: bold;
  border-bottom: 1px solid #1391e6;
}
@media screen and (max-width: 767px) {
  .entry-body h3 {
    font-size: 16px;
    line-height: 2;
  }
}
.entry-body h4 {
  margin-top: 36px;
  font-size: 16px;
  color: #1391e6;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .entry-body h4 {
    font-size: 14px;
    line-height: 1.8;
  }
}

.wp-block-image {
  margin-top: 40px !important;
}

/*===================================================
# ページ送り(とりあえずCSSで一応書いてあるやつ)
=================================================== */
.pagenavi-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 378px;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .pagenavi-flex {
    margin-top: 41px;
  }
}

.prev-post,
.next-post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 124px;
  height: 36px;
  font-weight: 500;
  font-size: 14px;
  background-color: #1391e6;
  color: #fff;
  border-radius: 4px;
  position: relative;
}

.prev-post {
  padding-left: 15px;
}
.prev-post::before {
  content: "";
  background: url(../img/icon-circle-left.png) no-repeat center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 50%;
  left: 7px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.next-post {
  padding-right: 15px;
}
.next-post::after {
  content: "";
  background: url(../img/icon-circle-right.png) no-repeat center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 50%;
  right: 7px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.post-archive {
  width: 90px;
  margin-left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 41px;
  background-color: #fff;
  color: #1391e6;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #1391e6;
}

.next-post {
  margin-left: 20px;
}

/*===================================================
# ページナビ
=================================================== */
/*===================================================
# wp-pagenaviの本来のcssを、こちらでオリジナルにカスタマイズ
=================================================== */
.wp-pagenavi {
  margin-top: 109px;
}
@media screen and (max-width: 1200px) {
  .wp-pagenavi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 55px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.wp-pagenavi a,
.wp-pagenavi span {
  width: 50px;
  height: 50px;
  background-color: #1391e6;
  border-color: #1391e6;
  color: white;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 34px;
    height: 34px;
  }
}

.wp-pagenavi span.current {
  background-color: #1391e6;
  border-color: #1391e6;
  color: white;
}

.larger,
.extend,
.current,
.smaller,
.last {
  margin-left: 19px !important;
}
@media screen and (max-width: 1200px) {
  .larger,
  .extend,
  .current,
  .smaller,
  .last {
    margin-left: 15px !important;
  }
}
@media screen and (max-width: 767px) {
  .larger,
  .extend,
  .current,
  .smaller,
  .last {
    margin-left: 9px !important;
  }
}

.previouspostslink {
  display: none !important;
}

.nextpostslink {
  display: none !important;
}

/*===================================================
# サイドバー
=================================================== */
.sidebar {
  max-width: 300px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .sidebar {
    padding-top: 100px;
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
  }
}

.sidebar__top-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 2.5;
  border-bottom: 1px solid gray;
  padding-left: 34px;
  position: relative;
}
.sidebar__top-title::before {
  content: "";
  background: url(../img/icon-02.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
}

.sidebar__top-image {
  margin-top: 20px;
}

.clinic-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

.clinic-text {
  font-size: 14px;
  line-height: 1.7142857143;
  font-weight: 500;
  margin-top: 14px;
}

.sidebar__clinic-link {
  margin-top: 14px;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7142857143;
  color: #1391e6;
}

.sidebar__posts {
  margin-top: 61px;
}

.sidebar__top-title2 {
  font-size: 16px;
  font-weight: bold;
  line-height: 2.5;
  border-bottom: 1px solid gray;
  padding-left: 34px;
  position: relative;
}
.sidebar__top-title2::before {
  content: "";
  background: url(../img/sidebar-icon_02.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
}

.sidebar__post {
  margin-top: 20px;
}
.sidebar__post:first-of-type {
  margin-top: 30px;
}

.sidebar__post-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.sidebar__post-image {
  max-width: 120px;
  height: 91.13px;
}
@media screen and (max-width: 767px) {
  .sidebar__post-image {
    max-width: 133px;
    height: 101px;
  }
}
.sidebar__post-image img {
  height: 100%;
}

.sidebar__post-description {
  margin-left: 10px;
  max-width: 170px;
}

.mini-category {
  padding: 4px 8px;
  display: inline-block !important;
  border-radius: 10px;
  color: #fff;
  background-color: #1391e6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 10px;
}

.sidebar__post-title {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: bold;
}

.sidebar__post-time {
  margin-top: 4px;
  font-size: 11px;
  color: #888;
  font-weight: 500;
}

.sidebar__categories {
  margin-top: 60px;
}

.sidebar__top-title3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 2.5;
  border-bottom: 1px solid gray;
  padding-left: 34px;
  position: relative;
}
.sidebar__top-title3::before {
  content: "";
  background: url(../img/icon-side.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
}

.cat-item {
  display: block;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
  line-height: 1.3;
  margin-top: 15px;
  position: relative;
  padding-left: 12px;
}
.cat-item:first-of-type {
  margin-top: 20px;
}
.cat-item:before {
  position: absolute;
  left: 0;
  content: "";
  background: url(../img/icon-arrow-blue.png) no-repeat center;
  background-size: cover;
  width: 6px;
  height: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}