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

.header-btm {
  height: 70px;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  background-color: #fff;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  max-width: 1366px;
  width: 100%;
  margin: auto;
  z-index: 5;
}

.header-btm-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 67.35%;
          flex: 0 0 67.35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-image: url(../img/header/header-btm-info-bg.png);
  background-size: cover;
  border-radius: 0 50px 50px 0;
  padding: 0 8px 0 40px;
  height: 70px;
}

.header-btm-name {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.header-btm-name-add {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.header-btm-name-ttl {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.header-btm-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}

.header-btm-nav-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
}
.header-btm-nav-link a {
  background-color: #fff;
  color: #053864;
  border-radius: 50px;
  padding: 13px 15.5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-btm-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(32.65% - 2px);
          flex: 0 0 calc(32.65% - 2px);
}

.header-btm-tel {
  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;
  gap: 15px;
  background: -webkit-gradient(linear, left top, right top, from(#053864), to(#053864)), repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.0509803922), rgba(255, 255, 255, 0.0509803922) 2px, transparent 2px, transparent 4px);
  background: linear-gradient(to right, #053864, #053864), repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.0509803922), rgba(255, 255, 255, 0.0509803922) 2px, transparent 2px, transparent 4px);
  background-size: 100% 100%, 12px 12px;
  background-blend-mode: overlay;
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 76%;
          flex: 0 0 76%;
  border-radius: 50px 0 0 50px;
  padding-right: 20px;
}

.header-tel-icon {
  max-width: 32px;
  width: 100%;
  position: relative;
  top: 2px;
}

.header-btm-tel-sub {
  text-align: center;
  font-size: 10px;
  margin-bottom: 2px;
}

.header-btm-tel-text {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}

.header-btm-line {
  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;
  gap: 6px;
  margin-left: -40px;
  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%, 12px 12px;
  background-blend-mode: overlay;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(24% + 40px);
          flex: 0 0 calc(24% + 40px);
  border-radius: 50px 0 0 50px;
  border: 6px solid #fff;
  border-right: unset;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-btm-line-img {
  max-width: 32px;
  width: 100%;
}

.header-btm-line-text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (hover: hover) {
  .header-btm-nav-link:hover a {
    background-color: #dff6fe;
  }
  .header-btm-line:hover {
    background-color: #42d47e;
  }
}
@media screen and (max-width: 1300px) {
  .header-btm-info {
    padding: 0 8px 0 10px;
  }
  .header-btm-tel {
    padding-right: 20px;
  }
  .header-btm-nav-link {
    font-size: 12px;
  }
  .header-btm-tel-text {
    font-size: 26px;
  }
  .header-btm-name-add {
    font-size: 15px;
  }
  .header-btm-name-ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 1100px) {
  .header-btm {
    border-top: 1px solid #dcdcdc;
  }
  .header-btm-name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header-btm-name-ttl {
    font-size: 24px;
  }
  .header-btm-name-add {
    font-size: 13px;
  }
  .header-btm-nav-link {
    font-size: 11px;
  }
  .header-btm-nav-link a {
    padding: 10px 11.5px;
  }
  .header-btm-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 61.35%;
            flex: 0 0 61.35%;
  }
  .header-btm-link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(38.65% - 2px);
            flex: 0 0 calc(38.65% - 2px);
  }
}
@media screen and (max-width: 900px) {
  .header-btm-link {
    display: none;
  }
  .header-btm-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .header-btm {
    border-top: unset;
    top: 64px;
    height: 69px;
  }
  .header-btm-info {
    padding: 0 7px 0 15px;
    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;
  }
  .header-btm-name-add {
    font-size: 12px;
  }
  .header-btm-name-ttl {
    font-size: 25px;
  }
  .header-btm-nav {
    gap: 5px;
  }
  .header-btm-nav-link {
    font-size: 10px;
    letter-spacing: 0.01em;
  }
  .header-btm-nav-link a {
    color: #053864;
    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;
    gap: 4px;
    height: 35px;
    padding: 0 12.5px;
  }
  .header-btm-nav-link a::before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .header-btm-nav-link:first-child a::before {
    background-image: url(../img/header/access-logo.png);
    width: 11px;
    height: 15px;
  }
  .header-btm-nav-link:last-child a::before {
    background-image: url(../img/header/time-logo.png);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 360px) {
  .header-btm-name-ttl {
    font-size: 20px;
  }
}