/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーjQuery */

.link_top_jq {
  opacity: 0;
  transition: all 300ms;
  /* transform: translateX(-180px); */
}
.link_top_jq.scrollin {
  opacity: 1;
  /* transform: translateX(0px); */
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーヘッダー */
.header {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 600px;
  background-image: url(../image/common/mv.jpg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
.header::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  content: '';
}
.header_logo {
  padding: 0 2%;
  min-width: 200px;
  width: 300px;
  background-color: rgba(255, 255, 255, .9);
}
.header_logo img {
  display: block;
  margin: 0 auto;
  margin-top: 250px;
}
.header_right {
  max-width: 1000px;
  width: 100%;
  height: 600px;
}
.header_nav {
  padding-top: 35px;
  width: 100%;
  height: 85px;
}
.nav_box {
  justify-content: flex-end;
}
.nav_box li {
  margin-left: 4%;
}
.nav_box a {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  transition: .3s;
}
.nav_box a:hover {
  color: #ff8c00;
}
.nav_box a::after {
  display: block;
  width: 0;
  height: 2px;
  background: #ff8c00;
  content: '';
  transition: .3s;
}
.nav_box a:hover::after {
  width: 100%;
}
.main_copy {
  padding-top: 150px;
  padding-left: 5%;
  width: 100%;
  height: 515px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: calc(2.5rem + ((1vw - .6rem) * 1.7857));
}
.main_copy p + p {
  margin-top: 20px;
}

.link_top {
  position: fixed;
  right: 1%;
  bottom: 1.5%;
  z-index: 13;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーフッター */
.footer {
  background-color: rgb(0, 0, 0);
  color: #fff;
}
.fot_left {
  margin-top: 45px;
  width: 170px;
  height: 150px;
}
.fot_logo {
  min-width: 130px;
}
.fot_sns {
  padding-top: 30px;

  justify-content: space-around;
}
.fot_sns a {
  color: #fff;
  font-size: 40px;
  line-height: 0;
}
.fot_sns a:hover {
  color: #ff8c00;
}
.fot_nav {
  margin-top: 40px;
}
.fot_nav_list li {
  margin: 8px 0;
}
.fot_nav_list a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}
.fot_nav_list a:hover {
  color: #ff8c00;
}
.fot_nav_list a::after {
  display: block;
  width: 0;
  height: 2px;
  background: #ff8c00;
  content: '';
  transition: .3s;
}
.fot_nav_list a:hover::after {
  width: 100%;
}
.address_box {
  margin: 40px 0 40px 0;
  padding-left: 2%;
  border-left: 3px solid #fff;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2;
}
.address_box span {
  font-weight: bold;
}
.address_box a {
  color: #fff;
  text-decoration: none;
}
.address_box a:hover {
  color: #ff8c00;
}
.copy {
  padding: 10px 0;
  background-color: #fff;
  color: #333;
  text-align: center;
  font-size: 13px;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーRESPONSIVE
--------------------------------------------------*/
@media screen and (min-width:1440px) {
  /* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーヘッダー */
  .main_copy {
    font-size: 4rem;
  }
}

@media screen and (max-width:950px) {
  /* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーヘッダー */
  /* .header {
    overflow: hidden;
  } */
  .header_nav {
    position: fixed;
    top: 12%;
    right: 0;
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    transition: .3s;
    transform: translateX(100%);
    z-index: 15;
    }
  .header_nav.active {
    transform: translateY(0);
  }
  .nav_box {
    display: block;
  /* z-index: 3; */
  }
  main {
    /* z-index: -1; */
  }
  .header_nav li {
    margin-left: 0;
  }
  .header_nav li + li {
    border-top: 1px solid rgba(255, 255, 255, .8);
  }
  .header_nav li a {
    display: block;
    background: rgba(0, 0, 0, .9);
    text-align: center;
    font-size: 2rem;
    line-height: 70px;
  }
  .header_nav a:hover::after {
    width: 0;
  }
  .header_navbtn {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    margin-left: auto;
    padding: 15px 15px;
    width: 70px;
    background-color: rgba(255, 255, 255, .6);
    z-index: 16;
  }
  .header_navbtn:hover {
    cursor: pointer;
  }
  .header_navbtn span {
    display: block;
    width: 100%;
    height: 4px;
    background: rgb(0, 0, 0);
    transition: .3s;
  }
  .header_navbtn span + span {
    margin-top: 8px;
  }
  .header_navbtn.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }
  .header_navbtn.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
  .header_navbtn.active span:nth-child(2) {
    opacity: 0;
  }
  .main_copy {
    padding-top: 240px;
  }

  /* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーフッター */
  .footer_box {
    flex-wrap: wrap;
  }
  .fot_left {
    width: 100%;
  }

  .fot_logo {
    text-align: center;
  }
  .fot_sns {
    justify-content: center;
  }
  .fot_sns li {
    margin: 0 2%;
  }
  .fot_nav {
    margin-right: 5%;
    margin-left: 5%;
  }
}

@media screen and (max-width:560px) {
  /* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーヘッダー */
  .header {
    height: 380px;
    background-image: url(../image/common/mv.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 65px;
  }
  .header_box {
    display: block;
    width: 100%;
  }
  .header_logo {
    /* margin-top: 65px; */
    padding: 20px 10px;
    width: 100%;
  }
  .header_logo img {
    margin-top: 0;
  }
  .main_copy {
    padding: 50px 5% 0 5%;
    font-size: 1.3em;
  }
  .main_copy p + p {
    margin-top: 8px;
    margin-left: 4%;
  }
  /* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーフッター */
  .fot_nav {
    margin-top: 20px;
    width: 100%;
  }
  .fot_nav_list {
    display: flex;

    justify-content: center;
    flex-wrap: wrap;
  }

  .fot_nav_list li {
    margin: 5% 2%;
  }
  .address_box {
    margin-top: 30px;
  }
}
