.fv {
  position: relative;
  width: 100%;
  height: 750px;
  background-color: #a5e1ff;
}
.fv::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 150px;
  background-image: url(../img/home/bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fv_container {
  position: relative;
  padding-top: 180px;
}
.fv_flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.fv_ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
  margin-left: auto;
}
.fv_ttl p {
  font-size: 1.9rem;
  padding-left: 5px;
  margin-bottom: 0;
  color: #0076de;
}
.fv_ttl h2 {
  font-size: 3.4rem;
  color: #fff;
  letter-spacing: 1.9px;
  margin-bottom: 20px;
}
.fv_ttl h2 span {
  display: inline-block;
  padding: 7px 30px 7px 10px;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#0076d5),
    color-stop(50%),
    to(#27acf6)
  );
  background: linear-gradient(to right bottom, #0076d5, 50%, #27acf6);
}
.fv_list {
  margin-top: 40px;
  display: inline-block;
  z-index: 10;
}
.fv_list div p {
  font-size: 2.8rem;
  padding: 5px 15px;
  margin-bottom: 3px;
  color: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#0076d5),
    color-stop(50%),
    to(#27acf6)
  );
  background: linear-gradient(to right bottom, #0076d5, 50%, #27acf6);
  border-radius: 25px;
}
.fv_list div span {
  display: block;
  font-size: 1.2rem;
  text-align: right;
}
.fv_img {
  width: 57%;
  margin-top: 75px;
  margin-left: -40px;
  margin-right: auto;
  z-index: 10;
}
.header {
  position: fixed;
  width: 100%;
  height: 70px;
  z-index: 500;
  background-color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.header_left {
  margin-left: 25px;
}
.header_left h1 img {
  width: 210px;
}
.header_right {
  margin-right: 25px;
}
.header_nav nav ul li {
  margin-right: 35px;
}
.header_nav nav ul li:last-of-type {
  margin-right: 0;
}
.header_nav nav ul li a {
  display: block;
}
.header_mb {
  display: none;
}
.header_mb .hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.header_mb .hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header_mb .hamburger span:nth-child(1) {
  top: 10px;
}
.header_mb .hamburger span:nth-child(2) {
  top: 20px;
}
.header_mb .hamburger span:nth-child(3) {
  top: 30px;
}
.header_mb .hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header_mb .hamburger.active span:nth-child(2),
.header_mb .hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header_mb .globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #000;
  -webkit-transform: translateX(180%);
  transform: translateX(180%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
}
.header_mb .globalMenuSp ul {
  background: #fff;
  margin: 0 0 0 auto;
  padding: 50px 4vw 10vw;
  width: 80%;
  height: 100vh;
}
.header_mb .globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.header_mb .globalMenuSp ul li a {
  display: block;
  padding: 1em 0;
}
.header_mb .globalMenuSp.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.header_mb .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
  opacity: 0;
}
.header_mb .overlay.active {
  position: fixed;
  background: #000;
  opacity: 0.6;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}
@media (max-width: 1200px) {
  .fv_img {
    width: 42%;
    margin-left: auto;
  }
}
@media (max-width: 1024px) {
  .fv_img {
    margin-left: -30px;
  }
  .header_left h1 img {
    width: 185px;
  }
  .header_nav nav ul li {
    margin-right: 25px;
  }
  .fv {
    overflow: hidden;
  }
}
@media (max-width: 900px) {
  .fv_container {
    position: relative;
    padding-top: 130px;
  }
  .fv_img {
    width: 50%;
    margin-top: 0;
    margin-left: 0;
  }
  .fv_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .fv_list div p {
    display: table;
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .fv {
    height: auto;
  }
  .fv::before {
    height: 90px;
  }
  .fv_ttl {
    margin-left: 0;
  }
  .fv_ttl h2 {
    font-size: 5.6vw;
    margin-bottom: 20px;
  }
  .fv_ttl p {
    font-size: 1.7rem;
  }
  .fv_list {
    margin-top: 30px;
  }
  .fv_list div p {
    font-size: 2.2rem;
  }
  .fv_img {
    width: 55%;
    margin-left: auto;
    margin-right: inherit;
  }
  .header_nav {
    display: none;
  }
  .header_mb {
    display: block;
  }
  .header_left {
    margin-left: 2.5%;
  }
}
@media (max-width: 430px) {
  .fv_container {
    padding-top: 100px;
  }
  .header {
    height: 55px;
  }
  .header_left h1 img {
    width: 150px;
  }
  .fv_ttl h2 {
    margin-bottom: 10px;
  }
  .fv_ttl p {
    font-size: 1.5rem;
    line-height: 1.5em;
    margin-bottom: 0;
  }
  .fv_list {
    margin-bottom: 35px;
  }
  .fv_list div p {
    font-size: 1.8rem;
  }
  .fv_img {
    width: 70%;
  }
  .header_mb .hamburger {
    top: 7px;
  }
  .fv_list div span {
    font-size: 1.1rem;
  }
}
