@charset "utf-8";

#js-hamburger {
  display: none;
}
.SPp-header-flex {
  display: none;
}
/* SPnav -----------------------------------------------------------------------*/
.p-header {
  width: calc( 98% - 60px);
  height: 70px;
  /* padding: 10px;
  box-sizing: border-box; */
  margin: 0 auto;
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒のことで0.15は色が15%出た状態。*/
	background: linear-gradient(#fff, rgba(255,255,255));	
}
.p-header-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.p-header-flex ul {
  display: flex;
  gap: 0 10px;
  align-items: center;
  justify-content: flex-end;
  margin-right: 0;
}
.p-header__inner {
  padding: 0 30px;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  height: inherit;
  position: relative;
}
.p-header__title {
  z-index: 997;
}
.p-header__title a {
  text-decoration: none;
  color: #FFFFFF;
}
.p-header__nav {
  position: absolute;
  left: 0; /* ← ここを変更 */
  top: 80px;
  /* width: calc( 100vw - 40px ); */
  width: 100%;
  /* margin: 20px; */
  max-width: 520px;
  height: calc( 100vh - 100px );
  box-sizing: border-box;
  border-radius: 20px;
  transform: translateX(-110%); /* ← ここを変更 */
  background-color: #00BAFF;
  color: #fff;
  transition: ease .4s;
  z-index: 999;
}
.p-header-ft {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
}
.p-header__nav.active {
  transform: translateX(0);
}
/* .p-header-title a img {
  height: 50px;
  width: auto;
} */
.p-header__nav-items {
  padding-top: 200px;
}
.p-header__nav-item {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
/* .p-header__nav-item a {
  color: #FFFFFF;
  display: inline-block;
  text-align: center;
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
} */
.p-header__nav-item:last-child a {
  margin-bottom: 0;
}

.p-header__hamburger {
  /* width: 24px; */
  width: 40px;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
}
.hamburger span {
  width: 36px;
  height: 3px;
  /* width: 24px; */
  /* height: 1px; */
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  /* margin: 8px 0; */
  margin: 10px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.p-header__nav.active {
  transform: translateX(0);
}
/* .hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
} */
 /* ☓マークに変化するときの調整 */
.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
  background-color: #FFFFFF;
}

.hamburger.active span:nth-child(2) {
  opacity: 0; /* 中央のバーを消す */
}

.hamburger.active span:nth-child(3) {
  top: -17px;
  transform: rotate(-45deg);
  background-color: #FFFFFF;
}
.p-header__nav-box-mask.active {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: rgba(0,0,0,0.55);
  transition: ease .4s;
}

.logo img {
  width: 120px;
  margin-left: 60px;
}

/*リストのレイアウト設定*/
  /*ナビゲーション*/
#js-nav ul {
  width: 100%;
  max-width: 300px;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#js-nav li{
  list-style: none;
    text-align: center; 
    box-sizing: border-box;
}
#js-nav li a {
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: auto;
  /* height: 50px; */
  padding:10px;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  text-transform: uppercase;
  letter-spacing: 0px;
  font-weight: bold;
  box-sizing: border-box;
}
.nav_logo {
  height: 45px;
  display: flex;
  justify-content: end;
  align-items: end;
}
.nav_logo img{
  width: 100px;
  height: auto;
}
.botline_out {
  position: relative;
  width: 60%;
  display: flex;
  align-items: center;
  border-bottom: 0.5px solid #fff;
}
.vew_acce {
  position: absolute;
  bottom: 2px;
  right: 0;
  font-size: 12px;
  white-space: nowrap;
  padding: 2px 5px;
  color: rgb(253, 173, 35);
  background-color: #fff;
}
.header-icon {
  position:fixed;
  top:10px;
  right: 10px;
  width: 50px;
  height:50px;
}
@media screen and (max-width:1000px) {
#js-hamburger {
  margin-left: auto;
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  background-color: #0071BC;
}
.SPp-header-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
  .p-header-flex {
    display: none;
  }
    .hamburger span {
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: ease .4s;
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  .hamburger span:nth-child(3) {
    top: 0;
  }
  .hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    top: -10px;
    transform: rotate(-45deg);
  }
  }
@media screen and (max-width:768px) {
  .p-header {
    width: calc( 98% - 10px);
  }
  .logo img {
      width: 120px;
      margin-left: 0px;
  }
}


/*フッター
---------------------------------------------------------------------------*/
/*フッターブロック*/
.footer {
  margin-top: 120px;
    color: #fff;
    background-color: #29ABE2;
    padding: 40px 0 0;
    box-sizing: border-box;
}
.footer_flex {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto 60px;
  max-width: 1200px;
}
.copyright {
  width: 100%;
  background-color: #2E3192;
  padding: 0 0 10px;
  box-sizing: border-box;
}
.copyright p {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}
.footer_btn {
  display: flex;
}
.footer_flex002 {
  display: flex;
  margin-bottom: 20px;
}
.logo_menu {
  width: 260px;
  font-size: 14px;
}
.client_co {
  font-size: 18px;
  font-weight: 700;
  color: #FFCB43;
}
.client_style {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  font-size: 12px;
}
.half-box {
  display: contents;
}
.client_name {
  width: 200px;
}
.footer_menu {
    /* margin-left: 10%; */
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 0px;
    line-height: 2.4rem;
}
@media screen and (max-width: 1400px) {
  .client_style {
    width: 400px;
  }
  .client_style {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  font-size: 12px;
}
  .half-box {
  display: flex;
}
}
@media screen and (max-width: 800px) {
  .footer {
  margin-top: 80px;
  }
  .footer_flex {
    display: flex;
    flex-direction: column;
    font-size: 12px
  }
}

@media screen and (max-width: 500px) {
.half-box {
  display: contents;
}
  .client_style {
    width: 100%;
    gap: 10px;
}
  .client_name {
    width: 100%;
}
}