@charset "UTF-8";
/* 基本 */
.l-container {
  width: 1240px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: 100%;
    padding: 0;
  }
}

/* 小さい幅 */
.l-container-small {
  width: 1050px;
  margin: 0 auto;
  padding: 0;
}

/* 左右の余白　40px */
.l-inner {
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 10px;
  }
}

/* Header */
header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin: auto;
  padding: 0;
  background-color: #fff;
  z-index: 778;
}
@media screen and (max-width: 767px) {
  header {
    position: sticky;
    height: 60px;
    border-bottom: 3px solid var(--main-color);
  }
}

/* IE 用 */
@media all and (-ms-high-contrast: none) {
  header {
    position: relative;
  }
}
/* 1段目 */
.l-header-area01 {
  border-bottom: 2px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .l-header-area01 {
    display: none;
  }
}
.l-header-area01__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  padding: 40px 0 15px;
}
.l-header-area01__left {
  width: calc(50% - 80px);
  margin: 0;
}
.l-header-area01__brand {
  position: relative;
  top: -6px;
  color: #767676;
  font-weight: normal;
  font-size: 13px;
  line-height: 1;
}
.l-header-area01__brand > a:hover {
  text-decoration: underline;
  opacity: 1;
}
.l-header-area01__center {
  position: relative;
  top: 30px;
  z-index: 2;
  width: 160px;
}
.l-header-area01__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  width: calc(50% - 80px);
  padding: 0;
}
.l-header-area01__about {
  margin: 0;
  color: #767676;
  font-size: 13px;
  line-height: 1;
}
.l-header-area01__about > a:hover {
  text-decoration: underline;
  opacity: 1;
}
.l-header-area01__login {
  margin: 0 0 0 30px;
}
.l-header-area01__login > a {
  display: block;
  height: 23px;
  padding: 5px 0 0 27px;
  background: url("../img/login.png") no-repeat 0 0;
  background-size: 23px 23px;
  color: #767676;
  font-size: 13px;
  line-height: 1;
}
.l-header-area01__to-medical {
  margin: 0 0 0 30px;
}
.l-header-area01__to-medical a {
  display: block;
  position: relative;
  top: 7px;
  padding: 10px 15px 12px;
  margin-top: -13px;
  height: auto;
  background-color: var(--btn-blue);
  color: #fff;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  border-radius: 3px;
}

/* 2段目 */
.l-nav-area {
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  border-bottom: 8px solid #339ecc;
  background-color: #fff;
  z-index: 777;
}
@media screen and (max-width: 767px) {
  .l-nav-area {
    display: none;
  }
}
.l-nav-area__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.l-nav-area__inner--front {
  justify-content: center;
}
.l-nav-area__inner--front.is-scroll {
  justify-content: space-between;
}
.l-nav-area__logo--front {
  display: none;
}
.l-nav-area__logo--front.is-show {
  display: block;
}

/* Global Navigation */
.l-nav {
  position: relative;
  top: 2px;
  right: -13px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-nav {
    display: none;
  }
}
.l-nav__list {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.l-nav__list > li {
  position: relative;
  padding: 0 8px;
}
.l-nav__list > li > a {
  display: block;
  position: relative;
  padding: 10px 5px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 1250px) {
  .l-nav__list > li > a {
    padding: 10px 0;
  }
}
.l-nav__list > li > a:hover {
  color: var(--main-color);
  opacity: 1;
}

/* Navigation Menu SP */
/* sp ボタン  */
/*
.c-nav-button__wrap {
  display: none;
}

.c-nav-sp {
  display: none;
}

@include tb {
  .c-nav-button__wrap {
    display: block;
    position: absolute;
    top: 6px;
    right: 10px;
    width: 60px;
    height: 60px;
  }

  .c-nav-button {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 18px;
    border: none;
    background: none;

    span {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: $main-color;
      transition: 0.3s ease-in;

      &:nth-child(2) {
        top: 50%;
        width: 100%;
      }

      &:nth-child(3) {
        top: 100%;
      }
    }

    &.is-close span {
      top: 50%;
      transform: rotate(45deg);

      &:nth-child(2) {
        width: 0;
      }

      &:nth-child(3) {
        top: 50%;
        transform: rotate(-45deg);
      }
    }
  }

  .c-nav-button__text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    margin: auto;
    color: #fff;
    font-size: 11px;
    text-align: center;
  }


  .c-nav-sp {
    display: block;
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    height: calc(100% - 70px);
    z-index: 775;
    padding: 0 0 50px;
    background-color: #67babe;
    transition: all 0.2s ease-in;
    overflow-y: auto;

    &.is-open {
      transform: translateX(0%);
    }

    .menu {
      display: block;
      margin: 0;
      padding: 0;

      > li {
        position: relative;
        padding: 0;

        > a {
          display: block;
          position: relative;
          padding: 18px 20px 17px;
          color: #fff;
          font-size: 18px;
          text-align: center;
          text-decoration: none;
          letter-spacing: 0.2em;
          line-height: 1.6;

          & > span {
            display: block;
            font-size: 13px;
            font-family: $font;
            letter-spacing: 0.1em;
            color: $main-color;
          }
        }
      }

      .menu-item-has-children {
        position: relative;

        .sub-menu {
          display: none;
          list-style: none;
          padding-bottom: 5px;

          li a {
            display: block;
            padding: 10px;
            color: #fff;
            font-size: 16px;
            text-align: left;
          }
        }
      }

      .sub-menu-sp-btn {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        z-index: 666;

        &::after {
          content: "";
          position: absolute;
          top: 22px;
          right: 21px;
          width: 9px;
          height: 9px;
          border-top: 2px solid #fff;
          border-right: 2px solid #fff;
          transform: rotate(135deg);
          transition: 0.3s ease;
        }

        &.is-open {
          &::after {
            transform: rotate(315deg);
          }
        }
      }
    }
  }
}
  */
/* スマートフォン */
.l-header-sp {
  display: none;
  justify-content: center;
  align-items: center;
  height: 58px;
  padding: 10px;
  position: fixed;
}
@media screen and (max-width: 767px) {
  .l-header-sp {
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    transition: 1s;
  }
}
.l-header-sp__menu {
  position: absolute;
  inset: 5px 10px 0 auto;
  width: 30px;
  border: none;
  text-align: center;
  font-size: 9px;
  cursor: pointer;
}
.l-header-sp__menu img {
  display: block;
  margin-inline: auto;
  text-align: center;
}

.l-header-sp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  pointer-events: none;
}
.l-header-sp-overlay.is-show {
  visibility: visible;
  translate: 0% 0;
  opacity: 1;
  transition: 0.3s;
  pointer-events: auto;
}

.l-nav-sp-close {
  position: absolute;
  top: 10px;
  right: calc(85% + 10px);
  width: 40px;
  height: 40px;
  font-size: 14px;
  padding-left: 15px;
  border: none;
  font-weight: bold;
  background-color: #000;
  border-radius: 100px;
}
.l-nav-sp-close::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 2px;
  height: 18px;
  margin: auto;
  background-color: #fff;
  rotate: 45deg;
}
.l-nav-sp-close::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 2px;
  height: 18px;
  margin: auto;
  background-color: #fff;
  rotate: -45deg;
}

.l-nav-sp-area {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-nav-sp-area {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 100dvh;
    transition: 0.2s;
    visibility: hidden;
    opacity: 1;
    padding-bottom: 0;
    z-index: 778;
    translate: 100% 0;
  }
  .l-nav-sp-area.is-show {
    height: 100dvh;
    visibility: visible;
    translate: 0% 0;
    opacity: 1;
    transition: 0.2s;
  }
}
.l-nav-sp-area__head {
  display: flex;
  align-items: center;
  height: 58px;
  padding: 10px;
  border-bottom: 1px solid var(--border-gray);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0%;
  width: 100%;
}
.l-nav-sp-area__head-title {
  font-size: 14px;
  font-weight: bold;
}
.l-nav-sp-area__body {
  height: calc(100dvh - 58px);
  margin-top: 58px;
  overflow: hidden scroll;
  background-color: var(--gray-light);
}
.l-nav-sp-area__body-title {
  background-color: var(--gray-exlight);
  color: var(--gray-dark);
  font-size: 14px;
  padding: 10px;
}

.l-nav-sp {
  font-weight: bold;
}
.l-nav-sp__list01 {
  padding: 0;
  background-color: #fff;
}
.l-nav-sp__list01 > li {
  border-bottom: 1px solid var(--border-gray);
}
.l-nav-sp__list01 > li > a {
  display: flex;
  align-items: center;
  padding: 10px;
}
.l-nav-sp__list01-img {
  padding-right: 10px;
}
.l-nav-sp__list01-img img {
  width: 30px;
  height: auto;
}
.l-nav-sp__list02 {
  padding: 0;
  background-color: #fff;
}
.l-nav-sp__list02 > li {
  border-bottom: 1px solid var(--gray-light);
}
.l-nav-sp__list02 > li > a {
  display: flex;
  align-items: center;
  padding: 15px 10px;
}
.l-nav-sp__list03 {
  margin-bottom: 0;
  padding: 0;
}
.l-nav-sp__list03 > li {
  border-bottom: 1px solid var(--gray-dark);
  background-color: var(--gray-light);
}
.l-nav-sp__list03 > li:last-of-type {
  border-bottom: none;
}
.l-nav-sp__list03 > li > a {
  display: flex;
  align-items: center;
  padding: 15px 10px;
}

/* page */
/* 今回はブログ記事も同じ設定にする */
.l-main {
  position: relative;
  background: #f3f3f3;
  z-index: 1;
  min-height: calc(100vh - var(--main-min-height));
}
@media screen and (max-width: 767px) {
  .l-main {
    min-height: auto;
  }
}
.l-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  max-height: 100%;
  background-color: var(--main-color);
  z-index: -1;
}
.l-main--front::before {
  height: 1200px;
}
.l-main--sitemap::before {
  height: 100%;
}

.l-banner-bottom {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
  background-color: var(--footer-black01);
}
.l-banner-bottom__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .l-banner-bottom__item {
    max-width: 100%;
  }
}

.l-footer {
  position: relative;
}

.l-footer-nav {
  margin: 0;
  padding: 30px 10px;
  background-color: var(--main-color);
  line-height: 1;
}
.l-footer-nav__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 16px;
  width: 1000px;
  max-width: 100%;
  margin-inline: auto;
  padding: 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.l-footer-nav__list > li > a {
  display: block;
}
.l-footer-nav__list > li > a:hover {
  text-decoration: underline;
  opacity: 1;
}

.l-footer-bottom {
  padding: 30px 10px;
  background-color: var(--footer-black02);
  color: var(--footer-black01);
  text-align: center;
  line-height: 1;
}
.l-footer-bottom__navi {
  margin: 0 0 10px;
  padding: 0;
}
.l-footer-bottom__navi-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-inline: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 14px;
}
.l-footer-bottom__navi-list > li > a {
  display: block;
}
.l-footer-bottom__navi-list > li > a:hover {
  text-decoration: underline;
  opacity: 1;
}
.l-footer-bottom__copylight > small {
  font-size: 14px;
}

.l-pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100px;
  z-index: 777;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  cursor: pointer;
}
.l-pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
.l-pagetop::after {
  content: "";
  position: absolute;
  inset: 24px 0 auto;
  width: 16px;
  height: 16px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
.l-pagetop--search {
  bottom: 145px;
}

.l-fixed-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-fixed-sp {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    z-index: 600;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.l-fixed-sp__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-fixed-sp__item--01 {
  width: 20%;
}
.l-fixed-sp__item--02 {
  width: 20%;
}
.l-fixed-sp__item--03 {
  width: 60%;
}
.l-fixed-sp__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 100%;
  padding: 20px 5px;
  font-size: 14px;
}
.l-fixed-sp__link--01 {
  position: relative;
  background: url("/assets/img/icon-sp-tel-on.png") no-repeat 50% 50%;
  background-size: 23px auto;
}
.l-fixed-sp__link--01::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 1px;
  height: 35px;
  background-color: #b5c3c9;
}
.l-fixed-sp__link--01[href=""] {
  background: url("/assets/img/icon-sp-tel-off.png") no-repeat 50% 50%;
  background-size: 23px auto;
}
.l-fixed-sp__link--01[href=""]::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 1px;
  height: 35px;
  background-color: #b8b8b8;
}
.l-fixed-sp__link--02 {
  background: url("/assets/img/icon-sp-map-on.png") no-repeat 50% 50%;
  background-size: 40px auto;
}
.l-fixed-sp__link--02[href=""] {
  background: url("/assets/img/icon-sp-map-off.png") no-repeat 50% 50%;
  background-size: 40px auto;
}
.l-fixed-sp__link--03 {
  background: url("/assets/img/icon-sp-reseave.png") no-repeat 50% 50%;
  background-size: 185px auto;
  background-color: var(--btn-blue);
  border-radius: 5px;
}
.l-fixed-sp__link--03[href=""] {
  background-color: #b8b8b8;
}
