@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
}
.header-new {
  position: relative;
  z-index: 5001;
  background-color: #fff;
}
.header-container {
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.left-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.left-logo {
  display: flex;
  align-items: center;
}
.left-logo img {
  width: 180px;
}
.left-logo p {
  margin-left: 20px;
}
.left-wrapper .hamburger-button {
  display: none;
}
.phone-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}
.phone-contact span {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #4a4a4a;
  color: white;
  border-radius: 50%;
}
.phone-contact span i {
  font-size: 20px;
}
.phone-contact p {
  font-size: 23px;
  font-weight: bold;
  color: #4a4a4a;
}
.right-wrapper {
  display: flex;
  gap: 61px;
  justify-content: flex-end;
}
.right-wrapper.lp {
  align-items: center;
}
.right-wrapper .content-tel {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.right-wrapper .text_time {
  font-size: 12px;
}
.list-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 100%;
  min-width: 70px;
}
.list-button a {
  font-size: 12px;
  color: #0c82bc;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: 0.4s;
  gap: 5px;
}
.list-button a span {
  color: #0c82bc;
  font-size: 12px;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #0c82bc;
  transition: 0.4s;
}
.list-button a span i {
  color: white;
  font-size: 10px;
}

.list-button a:hover,
.list-button a:focus {
  gap: 2px;
  color: #1a469d;
}
.list-button a:hover span {
  background: #1a469d;
  color: #1a469d;
}
.list-button .btn-doc {
  width: 140px;
  height: 45px;
  border-radius: 25px;
  background: #1a469d;
  color: white;
  font-weight: bold;
  font-size: 16px;
  transition: 0.4s;
  box-shadow: rgb(0 0 0 / 26%) 0px 3px 6px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: inherit;
}

.list-button .btn-doc:hover {
  color: #fff;
  background: #0c3381;
}
/* nav-bar */

.nav-bar {
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  height: 65px;
  background: #68a9d1;
  align-items: center;
}
.main-nav {
  display: flex;
  width: 1120px;
  max-width: 1120px;
  height: 100%;
  justify-content: center;
}
.nav-bar .list-item {
  display: flex;
  justify-content: center;
}
.nav-bar .list-item li {
  min-width: 138px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.nav-bar .list-item li.active {
  background: white;
}
.nav-bar .list-item li.active a {
  color: #68a9d1;
}

.nav-bar .list-item li a {
  color: white;
  font-size: 17px;
  font-weight: bold;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.nav-bar .list-item li a i {
  margin-left: 5px;
}

.nav-bar .list-item li:hover {
  background: white;
}
.nav-bar .list-item li:hover a {
  color: #68a9d1;
}
li.has-submenu {
  position: relative;
}

.nav-bar .list-item li.menu-mobile {
  display: none;
}

li.has-submenu ul {
  position: absolute;
  top: 65px;
  left: 0;
  background: #fff;
  width: 100%;
  height: auto;
  box-shadow: rgb(12 130 188 / 60%) 0px 0px 6px 0px;
  z-index: 10;
  display: none;
}
.nav-bar .list-item li.has-submenu ul li a {
  padding: 10px;
}
li.has-submenu:hover ul {
  display: block;
}
li.has-submenu ul li + li {
  border-top: 1px solid #e9f1f5;
}

li.has-submenu ul li:hover {
  background: #68a9d1 !important;
}
li.has-submenu ul li:hover a {
  color: white !important;
}

.button-wrapper {
  display: none;
}
.button-wrapper a {
  width: 140px;
  height: 45px;
  border-radius: 4px;
  background: #1a469d;
  color: white;
  font-weight: bold;
  font-size: 15px;
  transition: 0.4s;
  box-shadow: rgb(0 0 0 / 26%) 0px 3px 6px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-wrapper a:hover {
  background: #0c3381;
}

.button-scroll {
  display: none;
}
.info-mobile {
  display: none;
}

/* scroll */
.nav-bar.scroll {
  background: #5fa1ca;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 7px 0px;
}
.nav-bar.scroll .list-item li:hover {
  background: #5fa1ca;
}

.nav-bar.scroll .list-item li:hover a {
  background: white;
  color: #68a9d1;
}
.nav-bar.scroll .list-item li a {
  color: #fff;
}
.nav-bar.scroll .list-item li.active {
  background: #469cc7;
}
.nav-bar.scroll .list-item li.active a {
  background: #fff;
  color: #68a9d1;
}
.nav-bar.scroll .list-item li.has-submenu ul li {
  background: white;
}
.nav-bar.scroll .list-item li.has-submenu ul li:hover {
  background: #469cc7 !important;
}
.nav-bar.scroll .list-item li.has-submenu ul li:hover a {
  color: white;
}
.nav-bar.scroll .list-item li.has-submenu ul li a {
  color: #469cc7;
}
.nav-bar .list-item li.button-wrapper a {
  height: auto;
  border-radius: 50px;
}
.nav-bar .list-item li.button-wrapper {
  display: none;
}
.nav-bar.scroll .list-item li.button-wrapper {
  display: flex;
}
@media (min-width: 992px) and (max-width: 1025px) {
  #l-wrapper {
    min-width: 1024px !important;
  }
  .main-nav {
    width: auto;
    max-width: 1000px;
  }
  .nav-bar .list-item li {
    min-width: 120px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  #l-wrapper {
    width: 100vw;
    min-width: 100% !important;
  }
  .header-container {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    padding: 0 20px;
  }
  .right-wrapper {
    gap: 30px;
  }
  .main-nav {
    padding: 0 20px;
  }
  .nav-bar .list-item li {
    min-width: auto;
  }
  .nav-bar .list-item li a {
    font-size: 12px;
    padding: 14px;
  }
  .left-wrapper {
    width: 50%;
  }
}

/* #scroll */
@media (max-width: 1000px) {
  .header-new {
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    box-shadow: rgb(0 0 0 / 10%) 0px 5px 7px -3px,
      rgb(0 0 0 / 5%) 0px -12px 2px -2px;
  }
  .nav-bar.scroll .list-item li.button-wrapper {
    display: none;
  }
  .header-container {
    height: 50px;
  }
  .left-wrapper img {
    height: 25px !important;
    width: auto;
    padding-left: 16px;
  }
  .left-wrapper p {
    display: none;
  }
  .right-wrapper {
    display: none;
  }
  .left-wrapper .hamburger-button {
    position: absolute;
    z-index: 11;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1a469d;
  }
  .hamburger-button .content-hamburger {
    color: white;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
  }
  .bar1,
  .bar2,
  .bar3 {
    width: 24px;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
  }
  .hamburger-button.change .bar1 {
    transform: translate(0, 9px) rotate(-45deg);
  }
  .hamburger-button.change .bar2 {
    opacity: 0;
  }
  .hamburger-button.change .bar3 {
    transform: translate(0, -7px) rotate(45deg);
  }

  /* nav-bar */
  .nav-bar,
  .nav-bar.scroll {
    width: 100%;
    height: calc(100% - 50px);
    position: fixed;
    z-index: 999;
    top: -100vh;
    left: 0;
    background: #60a1ca;
    transition: 0.4s;
  }
  .nav-bar.show-navbar {
    top: 50px;
  }

  /* scroll */
  .nav-bar.scroll .list-item li a {
    color: white;
    width: 100%;
  }
  .nav-bar.scroll .list-item li:nth-child(1) {
    background: transparent;
  }
  .nav-bar.scroll .list-item li:nth-child(1) a {
    color: white;
    background: transparent;
  }
  .nav-bar.scroll .main-nav .list-item li.menu-mobile ul li {
    background: transparent;
  }

  .nav-bar .main-nav {
    flex-direction: column;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    justify-content: flex-start;
    overflow-y: scroll;
  }
  .nav-bar .list-item {
    flex-direction: column;
  }
  .nav-bar .list-item li {
    margin: 0 20px;
    border-top: 1px solid rgb(255 255 255 / 50%);
    justify-content: flex-start;
    padding: 18px 0;
  }
  .nav-bar .list-item li:hover,
  .nav-bar .list-item li:focus {
    background: transparent;
  }
  .nav-bar .list-item li:hover a,
  .nav-bar .list-item li:focus a {
    color: white;
  }
  .nav-bar .list-item li:last-child {
    border-bottom: 1px solid rgb(255 255 255 / 50%);
  }
  .nav-bar .list-item li a {
    font-size: 20px;
    font-weight: bold;
    padding: 0;
    justify-content: flex-start;
  }
  .nav-bar .list-item li.active {
    background: transparent;
  }
  .nav-bar .list-item li.active a {
    color: white;
  }
  .nav-bar .list-item li.menu-pc {
    display: none;
  }
  .nav-bar .list-item li.menu-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  .nav-bar .list-item li.menu-mobile span {
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 10px 0;
    width: 100%;
  }
  .nav-bar .list-item li.menu-mobile ul {
    width: 100%;
    display: none;
  }
  .nav-bar .list-item li.menu-mobile ul.show {
    display: block;
  }
  .nav-bar .list-item li.menu-mobile ul li {
    margin: 0;
    width: 100%;
    margin-left: 0 !important;
    padding-left: 20px;
  }
  .nav-bar .list-item li.menu-mobile ul li:nth-child(3) {
    border-bottom: none !important;
  }

  /* button */
  .button-wrapper {
    margin-top: 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  .button-wrapper .button-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffd700;
    width: 300px;
    height: 60px;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
      rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  }
  .button-wrapper .button-scroll span {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    gap: 5px;
  }
  .button-wrapper .button-scroll span i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid black;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
  }
  .button-wrapper a {
    width: 300px;
    height: 60px;
    border-radius: 25px;
  }
  .info-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-top: 20px;
    width: 100%;
  }
  .info-mobile p,
  .info-mobile a {
    text-align: center;
    color: white;
    font-weight: bold;
  }
  .info-mobile a.tel-phone {
    font-size: 23px;
    display: flex;
    gap: 5px;
    justify-content: center;
  }
  .info-mobile a.tel-phone span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background: white;
    color: white;
  }
  .info-mobile a.tel-phone span i {
    color: rgb(12 130 188 / 90%);
    font-size: 18px !important;
  }
  .info-mobile p {
    font-size: 15px;
  }

  .info-mobile a.outline {
    font-size: 16px;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    position: relative;
  }
  .info-mobile a.outline ::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    background: white;
    left: 50%;
    bottom: -2px;
    transform: translate(-50%, 0);
  }
  .info-mobile a.outline span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background: white;
    color: white;
  }
  .info-mobile a.outline span i {
    color: rgb(12 130 188 / 90%);
    font-size: 8px;
  }
}
