@charset "UTF-8";
/* ----------共通スタイル---------- */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=Zen+Kaku+Gothic+New:wght@300&display=swap");
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  --title-fontsize: 25rem;
  --side-margin: 10vw;
  --top-maring: 10vh;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: lighter;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  opacity: .5;
}

li {
  list-style: none;
}

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 8rem;
  background-color: #FFF;
}

.hm_open {
  display: none;
}

.header_left {
  width: 20%;
}

.logo_company {
  width: 20rem;
  padding: 3rem 2rem 2rem;
  margin-left: auto;
}

.header_middle {
  width: 70%;
}

.middle_navigation {
  display: flex;
  padding-top: 3.6rem;
  justify-content: flex-start;
  gap: 5rem;
  font-size: 1.4rem;
  list-style: none;
}

.middle_navigation li {
  position: relative;
}

.has_child::before {
  content:'';
  position: absolute;
  left: 32px;
  top: 5px;
  width:6px;
  height:6px;
  border-top: 2px solid #999;
  border-right:2px solid #999;
  transform: rotate(135deg);
}

.has_child ul {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 4;
  background:#FFF;
  width: 120px;
  padding: 18px 24px;
  border: 1px solid #CCC;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

.has_child ul li:not(:last-child) {
  padding-bottom: 16px;
}

.has_child:hover > ul,
.has_child ul li:hover > ul,
.has_child:active > ul,
.has_child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

.header_right {
  width: 10%;
}

.header_right-navigation {
  display: flex;
  justify-content: flex-start;
  padding-top: 3rem;
}

.lens {
  width: 2rem;
  margin-right: 2rem;
}

.mail {
  width: 2rem;
}

@media screen and (max-width: 960px) {
  .header {
    display: block;
  }
  .hm_open {
    position: relative;
    z-index: 9999;
    top: -0.8rem;
    display: inline-block;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
  }
  .hm_open span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #333;
    width: 60%;
  }
  .hm_open span:nth-of-type(1) {
    top: 15px;
  }
  .hm_open span:nth-of-type(2) {
    top: 23px;
  }
  .hm_open span:nth-of-type(3) {
    top: 31px;
  }
  .hm_open.active span {
    background: #333;
  }
  .hm_open.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
  }
  .hm_open.active span:nth-of-type(2) {
    opacity: 0;
  }
  .hm_open.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
  }
  .has_child ul {
    position: inherit;
    left: 0;
    top: 0;
    z-index: 0;
    background:#FFF;
    padding: 18px 24px;
    border: none;
    visibility: inherit;
    opacity: 1;
    transition: none;
  }
  .has_child::before {
    left: 40px;
    top: 6px;
  }
  .header_left {
    display: inline-block;
    width: 80%;
  }
  .header_left h1 {
    margin: 0 auto;
  }
  .header_middle {
    position: fixed;
    z-index: 99;
    top: 0;
    left: -120%;
    width: 40%;
    height: 100vh;
    background: #FFF;
    transition: all 0.6s;
  }
  .header_middle.panelactive {
    left: 0;
  }
  .middle_navigation {
    display: block;
    padding: 10rem 5rem;
    font-size: 1.6rem;
  }
  .middle_navigation li:not(:last-child) {
    padding-bottom: 3rem;
  }
  .header_right {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 2rem;
  }
}
@media screen and (max-width: 520px) {
  .header_left {
    width: 74%;
  }
  .header_middle {
    width: 80%;
  }

  .header_right {
    width: 6rem;
  }
  .lens {
    height: auto;
  }
  .lens img {
    width: 100%;
  }
  .mail img {
    width: 100%;
  }
}
.products_fv {
  width: 100%;
  background-image: url(assets/img/fv_jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.products_fv img {
  width: 100%;
  height: 90rem;
  object-fit: cover;
}
@media screen and (max-width: 900px) {
  .products_fv img {
    object-position: -50rem 0;
  }
}
@media screen and (max-width: 520px) {
  .products_fv img {
    object-position: -80rem 0;
  }
}
.products_wrapper {
  width: 90%;
  margin: 5rem 0;
}
.products_title {
  height: 16rem;
  padding: 0 4rem;
  font-size: 5rem;
}
.products_contents {
  display: flex;
  width: 100%;
  height: 6rem;
  padding: 1.5rem 4rem;
}
.products_contents-sp {
  display: none;
}
.products_select {
  display: flex;
  width: 50%;
  margin: auto;
}
.products_select div {
  font-size: 1.5rem;
  padding-right: 5rem;
}
.products_kinds {
  display: flex;
  width: 50%;
  margin: auto;
}
.products_kinds div {
  font-size: 1.5rem;
  padding-right: 5rem;
}
.products_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 0 6rem;
  margin: 6rem auto;
  width: 100%;
  max-width: 1440px;
}
.products_bx {
  width: 30rem;
  height: 45rem;
}
.products_bx img {
  width: 100%;
}
.products_bx h3 {
  font-size: 1.3rem;
}
.products_bx div {
  padding-top: 1rem;
  font-size: 2rem;
}
.products_recommend {
  width: 100%;
  max-height: 60rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0 8rem;
  margin: 8rem 0;
}
.products_recommend img {
  width: 50%;
  object-fit: cover;
}
.explanation {
  width: 50%;
  padding: 4rem;
}
.explanation h2 {
  font-size: 2.5rem;
  padding-bottom: 4rem;
}
.explanation div {
  font-size: 1.2rem;
  padding-bottom: 6rem;
  line-height: 2;
}
.explanation a {
  padding: 2rem 5rem;
  background-color: gray;
  color: #fff;
  font-size: 1.3rem;
}
@media screen and (max-width: 800px) {
  .products_wrapper {
    margin: 5rem 0 0;
  }
  .products_title {
    height: 10rem;
    font-size: 3rem;
  }
  .products_contents {
    display: none;
  }
  .products_contents-sp {
    position: relative;
    display: block;
    padding: 0 6rem;
  }
  .products_contents-sp::before {
    content: url(../img/adjustments_icon.svg);
    position: absolute;
    top: 0;
    left: 3.5rem;
    width: 2rem;
    height: 2rem;
  }
  .products_contents-sp p {
    font-size: 1.6rem;
  }
  .products_inner {
    margin: 0;
  }
  .products_bx {
    width: 50%;
    height: auto;
    padding-bottom: 5rem;
  }
  .products_bx div {
    font-size: 1.4rem;
  }
  .products_recommend {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 700px) {
  .products_recommend {
    flex-direction: column;
    max-height: 100rem;
  }
  .products_recommend img {
    width: 100%;
  }
  .explanation {
    width: 100%;
    padding: 4rem 0;
  }
}

.footer {
  width: 100%;
  margin-top: 4.8rem;
  padding: 3.6rem 0;
}

.footer_nav-links{
  display: flex;
  justify-content: space-between;
  width: 83%;
  margin: 0 auto;
}

.footer_nav-left{
  line-height: 3rem;
}

.quick_links-title p{
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
}

.footer_nav-left ul{
  list-style: none;
}

.footer_nav-left ul li {
  padding-bottom: 1rem ;
}

.info_title p{
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.footer_nav-midddle ul{
  list-style: none;
}

.footer_nav-midddle ul li{
  padding-bottom: 1rem;
}

.our-mission_title p{
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.emails_box{
  margin: 0 auto;
  width: 83%;
  height: 10rem;
}

.emails_title p{
  margin: 3rem 0;
  font-size: 1.8rem;
  font-weight: 500;
}

.emails_button p{
  border:solid 1px ;
  width: 30rem;
  padding: 1rem 0 1rem 1rem;
}

.footer_logo{
  height: 3rem;
  width: 20rem;
  margin: 5rem auto 0;
}

.footer_copyright{
  text-align: center;
  height: 3rem;
}

@media screen  and (max-width: 960px) {
  .footer {
      padding: 3.6rem 5rem;
  }
  .footer_nav-links {
      gap: 8rem;
      margin: 0;
      padding-left: 0;
  }
  .emails_box {
      margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav-links {
      flex-direction: column;
      gap: 5rem;
  }
  .emails_box {
      margin-top: 4rem;
  }
}
@media screen and (max-width: 520px) {
  .emails_button p {
      width: 24rem;
  }
}

/*# sourceMappingURL=style.css.map */