#header .header-top {
  height: 100px;
  background-color: #fff;
  color: #413835;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1366px;
  width: 100%;
  margin: auto;
  z-index: 7;
}
#header .header-top a {
  color: #413835;
}
#header .header-wrap {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
}
#header .header-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22.41%;
          flex: 0 0 22.41%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #dcdcdc;
}
#header .header-logo-img {
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
}
#header .header-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header .header-nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 63.68%;
          flex: 0 0 63.68%;
}
#header .header-nav-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #dcdcdc;
}
#header .header-nav-top-link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14.2857%;
          flex: 0 0 14.2857%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}
#header .header-nav-top-link a {
  height: 70px;
  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;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header .header-nav-top-link:not(:last-child) {
  border-right: 1px solid #dcdcdc;
}
#header .header-nav-btm {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 0 20px;
}
#header .header-search {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13.91%;
          flex: 0 0 13.91%;
  border-left: 1px solid #dcdcdc;
}
#header .header-nav-btm-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 14px;
}
#header .header-nav-btm-link::after {
  content: "";
  position: absolute;
  background-image: url(../img/header/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 6px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#header .header-search {
  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;
  height: 100px;
  border-bottom: 1px solid #dcdcdc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(../img/header/header-map-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#header .header-search-text {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 35px;
}
#header .header-search-text span {
  font-size: 13px;
  font-weight: 400;
}
#header .header-search-text::before {
  content: "";
  position: absolute;
  background-image: url(../img/header/header-map-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 26px;
  height: 34px;
  left: 0;
}
#header .menu-btn {
  display: none;
}
#header .header-top.active {
  z-index: 999;
  background-color: transparent;
}
@media (hover: hover) {
  #header .header-nav-top-link:hover a {
    background-color: #dff6fe;
  }
  #header .header-search:hover {
    background-color: #a1efff;
  }
}
@media screen and (max-width: 1200px) {
  #header .header-logo {
    padding: 20px;
  }
  #header .header-nav-top-link {
    font-size: 12px;
  }
}
@media screen and (max-width: 1100px) {
  #header .header-nav {
    display: none;
  }
  #header .header-top {
    border-bottom: unset;
    border-left: unset;
    border-right: unset;
  }
  #header .header-top.active::after {
    content: "";
    position: absolute;
    height: 100%;
    width: calc(100% - 375px);
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: -1;
  }
  #header .header-top.active .menu-btn-line span:first-child {
    top: 18px;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  #header .header-top.active .menu-btn-line span:last-child {
    bottom: 18px;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  #header .header-search {
    display: none;
  }
  #header .header-flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header .header-logo {
    padding: 10px;
  }
  #header .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    height: 58px;
    border: 1px solid #746d6a;
    border-right: unset;
    border-radius: 50px 0 0 50px;
    position: relative;
    z-index: 15;
    background-color: #fff;
  }
  #header .menu-btn-line {
    max-width: 70px;
    width: 100%;
    height: 38px;
    background-color: #746d6a;
    border-radius: 50px;
    margin-left: 10px;
    position: relative;
  }
  #header .menu-btn-line span {
    position: absolute;
    max-width: 32px;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    background-color: #fff;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #header .menu-btn-line span:first-child {
    top: 14px;
  }
  #header .menu-btn-line span:last-child {
    bottom: 14px;
  }
  #header .menu-btn-text {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  #header .header-top {
    height: 64px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #header .header-top.active::after {
    display: none;
  }
  #header .header-top.active .header-logo {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(7496%) hue-rotate(88deg) brightness(104%) contrast(114%);
            filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(7496%) hue-rotate(88deg) brightness(104%) contrast(114%);
  }
  #header .header-top.active .menu-btn-line span:first-child {
    top: 14px;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  #header .header-top.active .menu-btn-line span:last-child {
    bottom: 14px;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  #header .header-logo {
    border-right: unset;
    padding: 0 0 0 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    height: 64px;
  }
  #header .header-logo-img {
    max-width: 205px;
  }
  #header .menu-btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    height: 39px;
  }
  #header .menu-btn-line {
    max-width: 54px;
    height: 29px;
    margin-left: 4px;
  }
  #header .menu-btn-line span {
    height: 1px;
  }
  #header .menu-btn-line span:first-child {
    top: 10px;
  }
  #header .menu-btn-line span:last-child {
    bottom: 10px;
  }
  #header .menu-btn-text {
    font-size: 10px;
  }
}

#header.general .header-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.47%;
          flex: 0 0 31.47%;
  padding-left: 20px;
}
#header.general .header-nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 54.53%;
          flex: 0 0 54.53%;
}
#header.general .header-logo-img {
  margin: unset;
}
#header.general .header-nav-top {
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}
#header.general .header-nav-top-link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666%;
          flex: 0 0 16.6666%;
}

@media screen and (max-width: 767px) {
  #header.general .header-logo {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    padding-left: 15px;
  }
}
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -10;
  background: -webkit-gradient(linear, left top, right top, from(#00aadc), to(#00aadc)), repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 4px, transparent 4px, transparent 8px);
  background: linear-gradient(to right, #00aadc, #00aadc), repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 4px, transparent 4px, transparent 8px);
  background-size: 100% 100%, 12px 12px;
  background-blend-mode: overlay;
  display: none;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.nav-menu.active {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 1;
  visibility: visible;
  z-index: 10;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav-contact.flow {
  display: none;
}

@media screen and (max-width: 1100px) {
  .nav-menu {
    display: block;
    padding-top: 100px;
    max-width: 375px;
    width: 100%;
    height: 100vh;
  }
  .nav-menu .nav-menu-wrap {
    padding: 0 20px;
  }
  .nav-menu .nav-menu-link-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .nav-menu .nav-menu-link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47.16%;
            flex: 0 0 47.16%;
    border-bottom: 1px solid #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.07em;
    padding: 25px 0 25px 15px;
    position: relative;
  }
  .nav-menu .nav-menu-link a {
    color: #fff;
  }
  .nav-menu .nav-menu-link:first-child, .nav-menu .nav-menu-link:nth-child(2) {
    border-top: 1px solid #fff;
  }
  .nav-menu .nav-menu-link::after {
    content: "";
    position: absolute;
    background-image: url(../img/header/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 6px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(7496%) hue-rotate(88deg) brightness(104%) contrast(114%);
            filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(7496%) hue-rotate(88deg) brightness(104%) contrast(114%);
  }
  .nav-menu .nav-menu-sub-link-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px 10px;
    margin-bottom: 65px;
  }
  .nav-menu .nav-menu-sub-link {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.015em;
    line-height: 1;
    font-weight: 500;
    padding: 15px 16px;
  }
  .nav-menu .nav-contact {
    max-width: 352px;
    width: 100%;
    height: 72px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 2px solid #053864;
    background-color: #fff;
    border-radius: 50px;
  }
  .nav-menu .nav-contact-line {
    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;
    gap: 6px;
    height: 68px;
    background-color: #06c755;
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1019607843), rgba(255, 255, 255, 0.1019607843) 2px, transparent 2px, transparent 4px);
    background-size: 100% 100%, 6px 6px;
    background-blend-mode: overlay;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(24.898% + 40px);
            flex: 0 0 calc(24.898% + 40px);
    border-radius: 50px;
    border: 3px solid #fff;
    border-right: unset;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
  }
  .nav-menu .nav-contact-line:after {
    content: "";
    display: block;
    background-image: url(../img/header/fukidashi-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 64px;
    height: 21px;
    position: absolute;
    top: 10px;
    right: 34px;
  }
  .nav-menu .nav-contact-line-icon {
    max-width: 30px;
    width: 100%;
  }
  .nav-menu .nav-contact-line-text {
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
  }
  .nav-menu .nav-contact-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav-menu .nav-contact-tel,
  .nav-menu .nav-contact-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .nav-menu .nav-contact-tel {
    padding-right: 8px;
    background-image: radial-gradient(circle, #053864 0.75px, transparent 0.75px);
    background-position: right top;
    background-repeat: repeat-y;
    background-size: 1.5px 3px;
  }
  .nav-menu .nav-contact-search {
    padding-left: 8px;
  }
  .nav-menu .nav-contact-tel-icon {
    max-width: 30px;
    width: 100%;
  }
  .nav-menu .nav-contact-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .nav-menu .nav-contact-map-icon {
    max-width: 26px;
    width: 100%;
  }
  .nav-menu .nav-contact-tel-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #053864;
  }
  .nav-menu .nav-contact-search-icon {
    max-width: 18px;
    width: 100%;
  }
  .nav-contact {
    max-width: 352px;
    width: 100%;
    height: 72px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 2px solid #053864;
    background-color: #fff;
    border-radius: 50px;
  }
  .nav-contact .nav-contact-line {
    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;
    gap: 6px;
    height: 68px;
    background-color: #06c755;
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1019607843), rgba(255, 255, 255, 0.1019607843) 2px, transparent 2px, transparent 4px);
    background-size: 100% 100%, 6px 6px;
    background-blend-mode: overlay;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(24.898% + 40px);
            flex: 0 0 calc(24.898% + 40px);
    border-radius: 50px;
    border: 5px solid #fff;
    border-right: unset;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
  }
  .nav-contact .nav-contact-line:after {
    content: "";
    display: block;
    background-image: url(../img/header/fukidashi-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 64px;
    height: 21px;
    position: absolute;
    top: 8px;
    right: 34px;
  }
  .nav-contact .nav-contact-line-icon {
    max-width: 30px;
    width: 100%;
  }
  .nav-contact .nav-contact-line-text {
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
  }
  .nav-contact .nav-contact-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    left: -4px;
  }
  .nav-contact .nav-contact-flex:has(.nav-contact-tel) {
    left: 0;
  }
  .nav-contact .nav-contact-tel,
  .nav-contact .nav-contact-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .nav-contact .nav-contact-tel {
    padding-right: 8px;
    background-image: radial-gradient(circle, #053864 0.75px, transparent 0.75px);
    background-position: right top;
    background-repeat: repeat-y;
    background-size: 1.5px 3px;
  }
  .nav-contact .nav-contact-search {
    padding-left: 8px;
  }
  .nav-contact .nav-contact-tel-icon {
    max-width: 30px;
    width: 100%;
  }
  .nav-contact .nav-contact-tel-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #053864;
  }
  .nav-contact .nav-contact-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .nav-contact .nav-contact-map-icon {
    max-width: 26px;
    width: 100%;
  }
  .nav-contact .nav-contact-search-icon {
    max-width: 18px;
    width: 100%;
  }
  .nav-contact-header {
    max-width: 352px;
    width: 100%;
    height: 72px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7px;
    border: 2px solid #053864;
    background-color: #fff;
    border-radius: 35px;
  }
  .nav-contact-header.flow .nav-contact-line {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64%;
            flex: 0 0 64%;
  }
  .nav-contact-header.flow .nav-contact-line-text {
    font-size: 16px;
    line-height: 1.375;
    letter-spacing: -0.05em;
  }
  .nav-contact-header.flow .nav-contact-tel {
    background-image: unset;
    gap: 8px;
  }
  .nav-contact-header .nav-contact-line {
    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;
    gap: 6px;
    height: 68px;
    background-color: #06c755;
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1019607843), rgba(255, 255, 255, 0.1019607843) 2px, transparent 2px, transparent 4px);
    background-size: 100% 100%, 6px 6px;
    background-blend-mode: overlay;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(24.898% + 40px);
            flex: 0 0 calc(24.898% + 40px);
    border-radius: 50px;
    border: 5px solid #fff;
    border-right: unset;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
  }
  .nav-contact-header .nav-contact-line:after {
    content: "";
    display: block;
    background-image: url(../img/header/fukidashi-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 64px;
    height: 21px;
    position: absolute;
    top: 10px;
    right: 34px;
  }
  .nav-contact-header .nav-contact-line-icon {
    max-width: 30px;
    width: 100%;
  }
  .nav-contact-header .nav-contact-line-text {
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
  }
  .nav-contact-header .nav-contact-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    left: -5px;
  }
  .nav-contact-header .nav-contact-flex:has(.nav-contact-tel) {
    left: 0;
  }
  .nav-contact-header .nav-contact-tel,
  .nav-contact-header .nav-contact-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .nav-contact-header .nav-contact-tel {
    padding-right: 8px;
    background-image: radial-gradient(circle, #053864 0.75px, transparent 0.75px);
    background-position: right top;
    background-repeat: repeat-y;
    background-size: 1.5px 3px;
  }
  .nav-contact-header .nav-contact-search {
    padding-left: 8px;
  }
  .nav-contact-header .nav-contact-tel-icon {
    max-width: 30px;
    width: 100%;
  }
  .nav-contact-header .nav-contact-tel-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #053864;
  }
  .nav-contact-header .nav-contact-search-icon {
    max-width: 18px;
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .nav-contact.flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 10;
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .nav-contact.flow.active {
    opacity: 0;
  }
  .nav-contact.flow .nav-contact-line {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 63%;
            flex: 0 0 63%;
  }
  .nav-contact.flow .nav-contact-tel {
    background-image: unset;
    gap: 8px;
  }
  .nav-contact.flow .nav-contact-line-text {
    font-size: 16px;
    line-height: 1.375;
    letter-spacing: -0.05em;
  }
  .nav-contact.flow .nav-contact-tel-text {
    font-size: 16px;
  }
  .nav-contact-header.flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 10;
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .nav-contact-header.flow.active {
    opacity: 0;
  }
  .nav-contact-header.flow .nav-contact-tel {
    background-image: unset;
    gap: 8px;
  }
  .nav-contact-header.flow .nav-contact-tel-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .nav-menu {
    max-width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#00aadc), to(#00aadc)), repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 1px, transparent 1px, transparent 3px);
    background: linear-gradient(to right, #00aadc, #00aadc), repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 1px, transparent 1px, transparent 3px);
    background-size: 100% 100%, 4px 4px;
  }
  .nav-menu .nav-menu-wrap {
    margin-top: -10px;
  }
  .nav-contact.flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 15px;
    right: 0;
    left: 0;
    margin: auto;
  }
  .nav-contact-header.flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 10px;
    right: 0;
    left: 0;
    margin: auto;
  }
  .search-link {
    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;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    width: 100%;
    max-width: 213px;
    height: 46px;
    border: 1px solid #fff;
    border-radius: 30px;
    margin: 0 auto 30px auto;
    padding-left: 18px;
    position: relative;
  }
  .search-link::before {
    content: "";
    display: block;
    background-image: url(../img/header/sarch-icon-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 45px;
  }
}
#header.area .tab-link a,
#header.clinic .tab-link a {
  padding-top: 20px;
  background-image: url(../img/header/new-tab-icon.png);
  background-repeat: no-repeat;
  background-size: 18px 14px;
  background-position: top 17px center;
}

@media screen and (max-width: 1100px) {
  #nav.area .tab-link a,
  #nav.clinic .tab-link a {
    position: relative;
  }
  #nav.area .tab-link a:after,
  #nav.clinic .tab-link a:after {
    content: "";
    position: absolute;
    background-image: url(../img/header/new-tab-icon-sp.png);
    background-repeat: no-repeat;
    background-size: 16px 13px;
    width: 16px;
    height: 13px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -22px;
    margin: auto;
  }
}