@charset "UTF-8";
.main_area {
  margin-top: 80px;
  padding: 0 2.5%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .main_area {
    padding: 0;
  }
}
.main_area .col_2 {
  width: 50%;
  height: calc(100vh - 120px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .main_area .col_2 {
    width: 100%;
    height: 28vh;
  }
}
.main_area .col_2 h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.main_area .wax_area {
  background: url(https://waxkanazawa.com/colorme/images/bg_wax.jpg) center no-repeat;
  background-size: cover;
}
.main_area .wax_area h1 {
  width: 35%;
}
.main_area .waynt_area {
  background: url(https://waxkanazawa.com/colorme/images/bg_waynt.jpg) center no-repeat;
  background-size: cover;
}
.main_area .waynt_area h1 {
  width: 35%;
}

.category_list {
  max-width: 980px;
  margin: 120px auto;
}
@media screen and (max-width: 767px) {
  .category_list {
    display: none;
  }
}
.category_list ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.category_list ul li {
  width: 20%;
  margin: 5px 0;
}
.category_list ul li a {
  font-size: 1.4rem;
}
.category_list ul li a:hover {
  opacity: 0.4;
}

.top_product_section {
  padding: 120px 0;
  background: #FAFAFA;
}
@media screen and (max-width: 767px) {
  .top_product_section {
    padding: 60px 0;
  }
}
.top_product_section .top_product_section_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 45px;
  padding: 0 2.5%;
}
@media screen and (max-width: 767px) {
  .top_product_section .top_product_section_title {
    padding: 0 5.5%;
  }
}
.top_product_section .top_product_section_title h2 {
  font-size: 1.8rem;
}
.top_product_section .top_product_section_title a {
  display: flex;
  align-items: center;
}
.top_product_section .top_product_section_title a:after {
  content: "";
  display: block;
  vertical-align: middle;
  color: #000000;
  line-height: 1;
  width: 9px;
  height: 9px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 10px;
  transition-property: all;
  transition-duration: 0.7s;
}
.top_product_section .top_product_section_title a:hover:after {
  margin-left: 20px;
}
.top_product_section .top_product_list {
  position: relative;
  margin-left: 60px;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .top_product_section .top_product_list {
    margin-left: 20px;
    padding-bottom: 60px;
  }
}
.top_product_section .top_product_list .product_card {
  width: 28%;
}
@media screen and (max-width: 1023px) {
  .top_product_section .top_product_list .product_card {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .top_product_section .top_product_list .product_card {
    width: 80%;
  }
}
.top_product_section .top_product_list .product_card h3 {
  font-size: 1.4rem;
}
.top_product_section .top_product_list .product_card p {
  font-size: 1.2rem;
}
.top_product_section .swiper_nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.top_product_section .swiper_nav .swiper-scrollbar {
  width: 50%;
  background: #E3E3E3;
  height: 5px;
}
.top_product_section .swiper_nav .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #000000;
}
.top_product_section .swiper_nav .arrow {
  width: 50%;
  position: relative;
  /* 次へ矢印をカスタマイズ */
  /* 前へ矢印をカスタマイズ */
}
.top_product_section .swiper_nav .arrow .swiper-button-next,
.top_product_section .swiper_nav .arrow .swiper-button-prev {
  position: absolute;
  top: 50%;
}
.top_product_section .swiper_nav .arrow .swiper-button-next:after,
.top_product_section .swiper_nav .arrow .swiper-button-prev:after {
  position: absolute;
  content: "";
  /* 空指定してデフォルトの矢印を消す */
  width: 0;
  height: 0;
  border-style: solid;
  top: -50%;
}
.top_product_section .swiper_nav .arrow .swiper-button-next {
  right: 0;
  bottom: 0;
}
.top_product_section .swiper_nav .arrow .swiper-button-next::after {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.top_product_section .swiper_nav .arrow .swiper-button-prev {
  left: 0;
  bottom: 0;
}
.top_product_section .swiper_nav .arrow .swiper-button-prev::after {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
}
.top_product_section .swiper_nav .arrow .swiper-slide img {
  width: 100%;
  height: auto;
}

.product_card {
  text-align: center;
}
.product_card a {
  display: block;
}
.product_card a .inr {
  transition-property: all;
  transition-duration: 0.7s;
}
.product_card a:hover .inr {
  opacity: 0.6;
}
.product_card a .thum {
  margin-bottom: 2em;
  overflow: hidden;
}
.product_card a .thum img {
  transition-property: all;
  transition-duration: 0.7s;
}
.product_card a .thum img:hover {
  transform: scale(1.1, 1.1);
}

.top_section {
  margin: 120px auto;
  padding: 0 2.5%;
}
@media screen and (max-width: 767px) {
  .top_section {
    margin: 60px auto;
    padding: 0;
  }
}
.top_section .top_section_title {
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 45px;
}

.look_list {
  position: relative;
  padding: 0 2.5%;
  /* 次へ矢印をカスタマイズ */
  /* 前へ矢印をカスタマイズ */
}
.look_list .swiper-button-next,
.look_list .swiper-button-prev {
  position: absolute;
  top: 50%;
}
.look_list .swiper-button-next:after,
.look_list .swiper-button-prev:after {
  position: absolute;
  content: "";
  /* 空指定してデフォルトの矢印を消す */
  width: 0;
  height: 0;
  border-style: solid;
  top: -50%;
}
.look_list .swiper-button-next {
  right: 0;
}
.look_list .swiper-button-next::after {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.look_list .swiper-button-prev {
  left: 0;
}
.look_list .swiper-button-prev::after {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
}
.look_list .swiper-slide img {
  width: 100%;
  height: auto;
}