@charset "UTF-8";
/* CSS Document */
/*
-----------------------------------------------
▼header
----------------------------------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  background-color: #ffffff;
  padding-left: 24px;
  padding-right: 24px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.header__nav {
  display: flex;
  width: 80%;
  justify-content: flex-end;
  align-items: center;
  column-gap: 8%;
}
.nav__list {
  display: flex;
  column-gap: 7%;
  width: 70%;
  justify-content: flex-end;
}
.header_logo {
  width: 328px;
  transition: all 0.3s ease;
}
.header_logo:hover {
  opacity: 0.7;
}
.header_logo img {
  width: 100%;
}
.nav__list a {
  color: transparent;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 500;
  background: linear-gradient(to right, #0a82d2 50%, #000 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.3s;
}
.nav__list a:hover {
  background-position: 0 100%;
}
.btn01 a {
  background-color: #333333;
  border: solid 1px #333333;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.4rem;
  display: flex;
  column-gap: 3%;
  width: 154px;
  height: 38px;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.btn03 a {
  background-color: #425aa6;
  border: solid 1px #425aa6;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.4rem;
  display: flex;
  width: 154px;
  height: 38px;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  padding-left: 20px;
  padding-right: 40px;
}
.fa-envelope {
  font-size: 2rem;
}
.fa-user {
  font-size: 2rem;
}
.btn01 a:hover {
  background-color: #ffffff;
  color: #333333;
}
.btn03 a:hover{
	background-color: #ffffff;
	color: #425aa6;
}
.btn_contact_con {
  display: flex;
  column-gap: 20px;
}
@media screen and (max-width: 1150px) {
  .menu {
    display: none;
    flex-direction: column;
  }
  .header__nav {
    display: flex;
    z-index: 10;
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    background: transparent;
    font-weight: 700;
    opacity: 0;
    transition: 0.6s;
  }
  .nav__list {
    display: block;
    width: 70%;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .nav {
    padding-top: 70px;
  }
  .nav__item {
    position: relative;
    width: 100%;
  }
  .nav__list a {
    text-align: left;
  }
  .nav__link::after {
    content: url("../img/common/arrow03_black.png");
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  .nav__link:hover::after {
    content: url("../img/common/arrow01_blue.png");
  }
  .nav__link {
    color: #535353;
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
    border-bottom: solid 1px #333333;
  }
  .header__hamburger {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 999;
  }
  .hamburger {
    position: fixed;
    width: inherit;
    height: inherit;
    margin: 0;
    cursor: pointer;
    background-color: transparent;
  }
  .hamburger::after {
    content: "MENU";
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #333333;
  }
  .hamburger span {
    display: block;
    position: absolute;
    left: 50%;
    width: 30px;
    height: 2px;
    transform: translateX(-50%);
    background: #333333;
    transition: all 0.4s;
  }
  .hamburger span:nth-of-type(1) {
    top: 20%;
  }
  .hamburger span:nth-of-type(2) {
    top: 35%;
  }
  .hamburger span:nth-of-type(3) {
    top: 51%;
  }
  .hamburger.is-active span:nth-of-type(1) {
    top: 20px;
    transform: translateX(-50%) rotate(225deg);
  }
  .hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-of-type(3) {
    top: 20px;
    transform: translateX(-50%) rotate(-225deg);
  }
  .hamburger.is-active::after {
    content: "CLOSE";
  }
  /* ハンバーガーメニューが開いた時 */
  .header__nav.is-active {
    position: fixed;
    top: 0;
    right: 0;
    background: #ffffff;
    opacity: 1;
    transition: 1s;
  }
  .header__nav.is-active .js-btn01 {
    display: block;
  }
}
@media screen and (max-width: 530px) {
  header {
    height: 70px;
    padding-right: 0;
  }
  .header_logo {
    width: 250px;
  }
  .nav__list {
    width: 90%;
  }
}