@charset "UTF-8";
/*==============================================================*/
/*      header      */
/*==============================================================*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  /* z-index: 1000; */
  z-index: 10;/*chabotより下に来るよう調整　20260521*/
  transform: translate(-50%, 0);
  width: 100%;
  height: 73px;
  background-color: #fff;
  align-items: center;
}
@media (min-width: 750px) {
  .header {
    height: 93px;
  }
}
.header .inner {
  display: flex;
  margin: 0 auto;
  width: 95%;
  height: 95px;
  align-items: center;
}
.header .inner .logo_link {
  display: block;
  height: 100%;
  width: 70px;
}
.header .inner .logo_link .company_name {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  margin: 21px auto;
  font-family: "M PLUS 2", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  /* ボックスの高さと同一 */
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #1877BE;
}
@media (min-width: 750px) {
  .header .inner .logo_link .company_name {
    margin: 31px auto;
  }
}
.header .inner .nav {
  position: relative;
  z-index: 20;
  margin-left: auto;
  height: 100%;
  display: none;
}
@media (min-width: 1270px) {
  .header .inner .nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header .inner .nav .link {
  margin-right: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .inner .nav .link .child {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
}
.header .inner .nav .link .child .icon {
  width: 17px;
  height: 17px;
}
.header .inner .nav .link .child .title {
  display: block;
  font-family: "M PLUS 2";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #1877BE;
  white-space: nowrap;
  transition: 0.3s;
}
.header .inner .nav .link:hover .child .title {
  color: #86bbe3;
}
.header .inner .nav .tel_box {
  margin-right: 12px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.header .inner .nav .tel_box .link {
  margin-right: 0;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
}
.header .inner .nav .tel_box .link .icon {
  width: 17px;
  height: 17px;
}
.header .inner .nav .tel_box .link .tel_number {
  display: block;
  margin-left: 3px;
  font-family: "M PLUS 2";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.06em;
  color: #1877BE;
  white-space: nowrap;
}
.header .inner .nav .tel_box .link:hover .tel_number {
  color: #86bbe3;
}
.header .inner .nav .tel_box .jikan {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  font-family: "M PLUS 2";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #1877BE;
}
.header .inner .nav .button {
  width: 150px;
  margin-top: 0;
  margin-left: 10px;
}
.header .inner .nav .button .button_link {
  background-color: rgba(255, 255, 255, 0);
}

.header .inner .nav .button02 {
  width: 150px;
  margin-top: 0;
  margin-left: 10px;
}
.header .inner .nav .button02 .button_link {
  background-color: rgba(255, 255, 255, 0);
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 2000;
  right: 5%;
  margin: 12px 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 1270px) {
  .hamburger {
    display: none;
  }
}
.hamburger .span {
  display: block;
  position: absolute;
  width: 40px;
  height: 3px;
  margin-top: -10px;
  background: #333333;
  transition: 0.3s ease-in-out;
}
.hamburger .span:nth-child(1) {
  top: 6px;
}
.hamburger .span:nth-child(2) {
  top: 19px;
}
.hamburger .span:nth-child(3) {
  top: 32px;
}
@media (min-width: 750px) {
  .hamburger .span {
    margin-top: 0;
  }
}
.hamburger.active .span:nth-child(1) {
  top: 20px;
  left: 1px;
  transform: rotate(-45deg);
}
.hamburger.active .span:nth-child(2),
.hamburger.active .span:nth-child(3) {
  top: 20px;
  transform: rotate(45deg);
}

.globalMenuSp {
  position: fixed;
  z-index: 1500;
  top: 73px;
  left: 0;
  color: #333333;
  background: #fff;
  text-align: center;
  transform: translateX(110%);
  transition: all 0.6s;
  width: 100%;
}
@media (min-width: 750px) {
  .globalMenuSp {
    top: 93px;
  }
}
@media (min-width: 1270px) {
  .globalMenuSp {
    display: none;
  }
}
.globalMenuSp .ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.globalMenuSp .ul .li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid rgb(108, 108, 108);
}
.globalMenuSp .ul .li:hover {
  background: #EEF8FC;
}
.globalMenuSp .ul .li:hover > .link > .title, .globalMenuSp .ul .li:hover > .link > .flex > .title {
  color: #86bbe3;
}
.globalMenuSp .ul .li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.globalMenuSp .ul .li .link {
  display: block;
  color: #1877BE;
  padding: 1em 0;
  text-decoration: none;
}
.globalMenuSp .ul .li .link .title {
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #1877BE;
}
.globalMenuSp .ul .li .link .title_sub {
  color: #333333;
  font-family: "M PLUS 2", sans-serif;
  display: block;
  font-style: normal;
  text-align: center;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
.globalMenuSp .ul .li .link .flex {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
  margin: 0 auto;
}
.globalMenuSp .ul .li .link .flex .title,
.globalMenuSp .ul .li .link .flex .icon {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.globalMenuSp.active {
  transform: translateX(0%);
}