@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色設定 */
/* フォントサイズ */
/* 行間 */
/* 文字間隔 */
/* スタイル調整 */
/* transition */
/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 3.7333333333vw;
  }
}

body {
  color: #4B4949;
  background-color: #fff;
  font-family: "Overpass", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", sans-serif, serif;
  font-weight: 300;
  line-height: 1.6;
  width: 100%;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  position: relative;
  text-decoration: none;
  color: #4B4949;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

picture {
  display: block;
  max-width: 100%;
  height: auto;
}

li {
  list-style: none;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

span {
  display: inline-block;
}

/* レイアウト */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 81px;
  border-bottom: solid 1px #959595;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 77px;
    border-bottom: solid 1px #DADADA;
    padding: 0 20px;
  }
}

.l-hamburger__button {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-hamburger__button {
    display: block;
    z-index: 10;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
  }
  .l-hamburger__button div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background: #707070;
  }
  .l-hamburger__button div:nth-of-type(1) {
    transform: translate(-50%, -10px);
  }
  .l-hamburger__button div:nth-of-type(2) {
    transform: translate(-50%, -50%);
  }
  .l-hamburger__button div:nth-of-type(3) {
    transform: translate(-50%, 8px);
  }
}

.l-hamburger__menu {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100vw;
  max-height: 90vh;
  overflow-y: scroll;
  padding: 0 30px 40px;
}

.l-menu-lists {
  padding-left: 20px;
}

.l-menu-list__contents {
  padding-left: 7px;
}

.l-main {
  padding: 80px 0;
  border-bottom: solid 1px #CBCBCB;
}
@media screen and (max-width: 1200px) {
  .l-main {
    padding: 6.666vw 0;
  }
}
@media screen and (max-width: 768px) {
  .l-main {
    padding: 65px 0 60px;
  }
}

.l-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.l-container__adjust {
  padding-left: 4.6667vw;
  padding-right: 4.6667vw;
}

.l-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.l-footer-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .l-footer-inner {
    padding: 0 1.6666vw;
  }
}

.l-slide__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1099px) {
  .l-slide__inner {
    width: 90vw;
  }
}
@media screen and (max-width: 767px) {
  .l-slide__inner {
    width: 88.5333vw;
  }
}

.l-search-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.l-search-inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 60px 0;
}

.l-search-container {
  max-width: 630px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 10px 60px 60px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .l-search-container {
    padding: 20px;
  }
}

.l-color-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}

.l-color-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 80vw;
  background: #fff;
  padding: 9.8667vw 9.86667vw;
}

/* コンポーネント */
.c-font-400 {
  font-weight: 400;
}

.c-font-500 {
  font-weight: 500;
}

.c-font-600 {
  font-weight: 600;
}

.c-font-700 {
  font-weight: 700;
}

.c-font-bold {
  font-weight: bold;
}

.c-dark-gray {
  color: #595756;
}

.c-gray {
  color: #818080;
}

.c-gray2 {
  color: #818181;
}

.c-green1 {
  color: #1EA693;
}

.c-dark-red {
  color: #4B4949;
}

.c-orange2 {
  color: #604C3F;
}

.c-white {
  color: #fff;
}

.c-ph1 {
  color: #886a5a;
}

.c-ph2 {
  color: #DD2A1B;
}

.c-bd2 {
  color: #5a5756;
}

.c-bg-white {
  background: #fff;
}

.c-bg-cyan {
  background-color: #C5AD97;
}

.c-bg-light-gray {
  background: #F6F6F6;
}

.c-bg1 {
  background: #F2F0EE;
}

.c-bg2 {
  background: #FDF5F4;
}

.c-navi__ex {
  position: relative;
}
.c-navi__ex::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3px;
  content: "";
  background: url(../images/ico_plus.svg) no-repeat 50% 50%;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin: auto 0;
}

.c-navi__detail {
  position: relative;
}
.c-navi__detail::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  background: url(../images/icon_detailarrow.svg) no-repeat 50% 50%;
  background-size: contain;
  width: 17px;
  height: 20px;
  margin: auto 0;
}

.c-drop-down__menu {
  position: relative;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  background: #fff;
}

.c-menu-list {
  line-height: 1;
  margin-bottom: 25px;
}

.c-menu-list__title {
  border-top: 1px solid #DADADA;
  padding: 20px 0;
}

.c-correct {
  padding: 21px 0;
}

.c-navi__drawer {
  position: fixed;
  top: 81px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  padding: 40px;
}
.c-navi__drawer .c-drawer__title {
  font-size: 14px;
  padding: 0 80px;
}
.c-navi__drawer .c-drawer__contents {
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 30px;
  width: 780px;
}
.c-navi__drawer .c-drawer__contents .c-drawer__content {
  height: 100%;
  position: relative;
}
.c-navi__drawer .c-drawer__contents .c-drawer__content::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background: url(../images/icon_detailarrow.svg) no-repeat 100% 2px/contain;
  width: 17px;
  height: 20px;
}
.c-navi__drawer .c-drawer__contents .c-drawer__content a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  border-bottom: solid 1px #CBCBCB;
  padding-bottom: 15px;
}

.c-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.c-section-title .c-section-title__sub {
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1400px) {
  .c-section-title .c-section-title__sub {
    font-size: 1.1429vw;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title .c-section-title__sub {
    letter-spacing: 0.01em;
  }
}

.c-pagetop {
  position: fixed;
  bottom: 50px;
  left: 45px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    bottom: 20px;
    left: 15px;
  }
}

/* 製品検索 */
.c-search__button {
  position: fixed;
  bottom: 45px;
  right: 45px;
  width: 87px;
  height: 87px;
  background: #4B4949;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-search__button {
    bottom: 30px;
    right: 10px;
    width: 70px;
    height: 70px;
  }
}
.c-search__button img {
  width: auto;
}

.c-close__button {
  position: absolute;
  top: -30px;
  right: -540px;
  width: 50px;
  height: 50px;
  color: #fff;
  background: #4B4949;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-close__button {
    top: -40px;
    right: -580px;
  }
}
.c-close__button::before, .c-close__button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: #fff;
  width: 2px;
  height: 22px;
  border-radius: 4px;
}
.c-close__button::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-close__button::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-search__title {
  font-size: 14px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-search__title {
    text-align: center;
    margin-top: -50px;
  }
}

.c-search__form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  border: solid 1px #bbb;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-search__form {
    height: 45px;
  }
}
.c-search__form label {
  width: 100%;
  height: 100%;
}
.c-search__form label input {
  width: 100%;
  height: 100%;
  font-size: 12px;
  vertical-align: middle;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .c-search__form label input {
    padding: 11px 15px;
  }
}
.c-search__form label input::-moz-placeholder {
  color: #4B4949;
}
.c-search__form label input::placeholder {
  color: #4B4949;
}
.c-search__form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.c-search__form button::after {
  content: "";
  width: 22.5px;
  height: 22.5px;
  background: url(../images/ico_mushimegane.svg) no-repeat 50% 50%/100% auto;
}

.c-search__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 39px;
}
@media screen and (max-width: 767px) {
  .c-search__lists {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-bottom: 20px;
  }
}
.c-search__lists .c-search__list a {
  font-size: 14px;
  border-bottom: solid 1px #CBCBCB;
  padding: 17.2px 0;
}

.c-search-keyword__title {
  font-size: 14px;
  margin-bottom: 10px;
}

.c-keyword__taglist {
  margin-bottom: 20px;
}
.c-keyword__taglist .c-keyword__tag {
  display: inline-block;
  margin-right: 3.5px;
  margin-bottom: 5px;
}
.c-keyword__taglist .c-keyword__tag a {
  display: block;
  font-size: 14px;
  line-height: 1;
  background: #EDEDED;
  border-radius: 16px;
  padding: 9px 10px;
}

.c-search__attention .c-attention__text {
  font-size: 12px;
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
}

/* mainvisual */
.c-slide__bg {
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 1400px) {
  .c-slide__bg {
    margin-top: 2.8571vw;
  }
}
@media screen and (max-width: 767px) {
  .c-slide__bg {
    margin-top: 35px;
  }
}
.c-slide__bg::before, .c-slide__bg::after {
  position: absolute;
  bottom: -76.5px;
  z-index: 100;
  height: 50px;
  content: "";
}
@media screen and (max-width: 1099px) {
  .c-slide__bg::before, .c-slide__bg::after {
    bottom: -5.8vw;
    height: 3.5705vw;
  }
}
@media screen and (max-width: 767px) {
  .c-slide__bg::before, .c-slide__bg::after {
    bottom: -9.1vw;
    height: 6.6667vw;
  }
}
.c-slide__bg::before {
  left: 0;
  background: url(../images/red-orange.svg) no-repeat 0 50%/contain;
  width: 226px;
}
@media screen and (max-width: 767px) {
  .c-slide__bg::before {
    width: 32vw;
  }
}
.c-slide__bg::after {
  right: 0;
  background: url(../images/mauve-beige.svg) no-repeat 100% 50%/contain;
  width: 256px;
}
@media screen and (max-width: 767px) {
  .c-slide__bg::after {
    width: 39vw;
  }
}

/* item */
.c-ingredients__items {
  width: 640px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 32px;
  margin-left: -21px;
}
@media screen and (max-width: 1400px) {
  .c-ingredients__items {
    width: 45.7143vw;
    row-gap: 2.25vw;
    margin-left: -1.5vw;
  }
}
@media screen and (max-width: 1200px) {
  .c-ingredients__items {
    row-gap: 2.45vw;
  }
}
.c-ingredients__items .c-ingredients__item {
  width: 125px;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .c-ingredients__items .c-ingredients__item {
    width: 9.2857vw;
  }
}
.c-ingredients__items .c-ingredients__item img {
  width: 80px;
}
@media screen and (max-width: 1400px) {
  .c-ingredients__items .c-ingredients__item img {
    width: 5.71429vw;
  }
}
.c-ingredients__items .c-ingredients__item .c-item__name {
  font-size: 12px;
  line-height: 1.2;
  padding-top: 9px;
}
@media screen and (max-width: 1400px) {
  .c-ingredients__items .c-ingredients__item .c-item__name {
    font-size: 0.8571vw;
    padding-top: 0.6429vw;
  }
}
@media screen and (max-width: 767px) {
  .c-ingredients__items .c-ingredients__item .c-item__name {
    font-size: 2.6667vw;
    padding-top: 2.6667vw;
  }
}
.c-ingredients__items .c-ingredients__item .c-item__name span {
  font-size: 9px;
  font-weight: 400;
}
@media screen and (max-width: 1400px) {
  .c-ingredients__items .c-ingredients__item .c-item__name span {
    font-size: 0.6429vw;
  }
}
@media screen and (max-width: 767px) {
  .c-ingredients__items .c-ingredients__item .c-item__name span {
    font-size: 2.1333vw;
  }
}
.c-ingredients__items .c-ingredients__item .c-item__component {
  font-size: 9px;
  line-height: 1.2;
}
@media screen and (max-width: 1400px) {
  .c-ingredients__items .c-ingredients__item .c-item__component {
    font-size: 0.6429vw;
  }
}
@media screen and (max-width: 767px) {
  .c-ingredients__items .c-ingredients__item .c-item__component {
    font-size: 2.1333vw;
  }
}

.c-ingredients_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-ingredients_sp {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border: solid 1px #604C3F;
  }
  .c-ingredients_sp .p-ingredients__title_sp {
    width: 100%;
    height: 15.2vw;
    position: relative;
    padding-top: 5vw;
    padding-left: 6.1333vw;
  }
  .c-ingredients_sp .p-ingredients__title_sp img {
    width: 54.9333vw;
  }
  .c-ingredients_sp .p-ingredients__title_sp::after {
    position: absolute;
    top: 50%;
    right: 5.3333vw;
    transform: translateY(-50%);
    z-index: 1;
    content: "";
    background: url(../images/plus.svg) no-repeat 50% 50%/contain;
    width: 4.26667vw;
    aspect-ratio: 1;
  }
}

.c-ingredients__drop-menu {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
}
.c-ingredients__drop-menu .c-drop-menu__contents {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  row-gap: 6.1333vw;
  padding: 8.5333vw 2.5vw 4.8vw;
}
.c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item01, .c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item02, .c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item03 {
  width: 33.333%;
}
.c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item01 img, .c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item02 img, .c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item03 img {
  width: 21.3333vw;
}
.c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item04, .c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item05 {
  width: 36%;
}
.c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item04 img, .c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item05 img {
  width: 21.3333vw;
}
.c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item06, .c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item07 {
  width: 53.333%;
}
.c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item06 img, .c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item07 img {
  width: 100%;
}
.c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item .c-item__name_sp {
  font-size: 2.6667vw;
  font-weight: 700;
  line-height: 1.2;
}
.c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item .c-item__name_sp span {
  font-size: 2.1333vw;
  font-weight: 400;
  line-height: 1.5;
}
.c-ingredients__drop-menu .c-drop-menu__contents .c-drop-menu__item img {
  padding-bottom: 2.6667vw;
  margin: 0 auto;
}

/* new color */
.c-new-color__content {
  position: relative;
  display: flex;
}
.c-new-color__content .c-content__img-block img {
  width: auto;
}
.c-new-color__content .c-content__img-block .c-color__detail {
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.005em;
  font-feature-settings: "palt";
  padding-left: 0.8rem;
}
@media screen and (max-width: 1400px) {
  .c-new-color__content .c-content__img-block .c-color__detail {
    font-size: 0.6429vw;
    padding-left: 0.58vw;
  }
}
@media screen and (max-width: 767px) {
  .c-new-color__content .c-content__img-block .c-color__detail {
    display: none;
  }
}
.c-new-color__content .c-content__img-block_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-new-color__content .c-content__img-block_sp {
    display: block;
    width: 97.8vw;
    margin-left: -4.6666vw;
  }
}
.c-new-color__content .c-content__title-block .c-content__title img {
  width: auto;
}
.c-new-color__content .c-content__title-block .c-content__text {
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 1400px) {
  .c-new-color__content .c-content__title-block .c-content__text {
    font-size: 1.0714vw;
  }
}
@media screen and (max-width: 767px) {
  .c-new-color__content .c-content__title-block .c-content__text {
    display: none;
  }
}
.c-new-color__content .c-content__title-block .c-content__text img {
  margin-bottom: 29.5px;
}
@media screen and (max-width: 1400px) {
  .c-new-color__content .c-content__title-block .c-content__text img {
    margin-bottom: 2.1vw;
  }
}
.c-new-color__content .c-content__text_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-new-color__content .c-content__text_sp {
    display: block;
    font-size: 3.46677vw;
    line-height: 1.5;
  }
  .c-new-color__content .c-content__text_sp .c-text-block_sp {
    display: flex;
    flex-direction: column;
    border-left: solid 1px #886a5a;
    row-gap: 5.3vw;
    padding-left: 17px;
    margin-top: 5.9vw;
  }
}
.c-new-color__content .c-content__phrase {
  position: absolute;
  font-size: 2.7rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
}
@media screen and (max-width: 1400px) {
  .c-new-color__content .c-content__phrase {
    font-size: 1.9286vw;
  }
}
@media screen and (max-width: 767px) {
  .c-new-color__content .c-content__phrase {
    font-size: 6.6667vw;
    font-weight: 600;
  }
}
.c-new-color__content .c-recipe__button {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-new-color__content .c-recipe__button {
    position: absolute;
    width: 43.2vw;
    height: 6.9333vw;
    font-size: 3.2vw;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #886a5a;
    padding-top: 0.8vw;
  }
  .c-new-color__content .c-recipe__button::after {
    position: absolute;
    top: 50%;
    right: -0.15vw;
    transform: translateY(-50%);
    content: "";
    background: url(../images/arrow1.svg) no-repeat 50% 50%/contain;
    width: 6.5vw;
    aspect-ratio: 2;
  }
}

.c-color-close__button {
  position: absolute;
  top: 4vw;
  right: 4vw;
  width: 4.26667vw;
}

.c-color__title {
  margin-bottom: 4vw;
}
.c-color__title img {
  width: auto;
  height: auto;
}

.c-mauve-title {
  width: 55.2vw;
}

.c-red-title {
  width: 50.1333vw;
}

.c-color__img {
  width: 100%;
  margin-bottom: 5.3333vw;
}

.c-color__detail {
  font-size: 3.2vw;
  line-height: 1.5;
  font-feature-settings: "palt";
}

/* color-chart */
.c-color-chart__button {
  width: 375px;
  height: 70px;
  border: solid 1px #5a5756;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .c-color-chart__button {
    width: 26.7857vw;
    height: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-color-chart__button {
    width: 72vw;
    height: 16.2667vw;
  }
}
.c-color-chart__button a {
  font-size: 18px;
  letter-spacing: 0.045em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 7px;
  padding-right: 30px;
  padding-bottom: 6px;
}
@media screen and (max-width: 1400px) {
  .c-color-chart__button a {
    font-size: 1.2857vw;
    padding-top: 0.4vw;
    padding-right: 2.1vw;
    padding-bottom: 0.4vw;
  }
}
@media screen and (max-width: 767px) {
  .c-color-chart__button a {
    font-size: 4.2667vw;
    padding-top: 1.8vw;
    padding-right: 8vw;
    padding-bottom: 1.6vw;
  }
}
.c-color-chart__button a::after {
  position: absolute;
  top: 50%;
  right: 75px;
  transform: translate(-50%, -50%);
  content: "";
  background: url(../images/icon-pdf.svg) no-repeat 50% 50%/cover;
  width: 24px;
  height: 24px;
  display: block;
}
@media screen and (max-width: 1400px) {
  .c-color-chart__button a::after {
    width: 1.7143vw;
    height: 1.7413vw;
    right: 5.35vw;
  }
}
@media screen and (max-width: 767px) {
  .c-color-chart__button a::after {
    width: 6.4vw;
    height: 6.4vw;
    right: 8.6vw;
  }
}

/* products */
.c-item__border {
  width: 72px;
  height: 18px;
  font-size: 12px;
  line-height: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #5a5756;
  margin-left: 10px;
}
@media screen and (max-width: 1400px) {
  .c-item__border {
    width: 5.1429vw;
    height: 1.2857vw;
    font-size: 0.8571vw;
    margin-left: 0.7143vw;
  }
}
@media screen and (max-width: 767px) {
  .c-item__border {
    width: 17.8667vw;
    height: 4.5333vw;
    font-size: 2.9333vw;
    margin-left: 0;
  }
}

/* フッター */
.c-row {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-row {
    display: flex;
    flex-direction: column;
  }
}

.c-footer__nav {
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
.c-footer__nav .c-nav__lists .c-nav__title {
  font-size: 14px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .c-footer__nav .c-nav__lists .c-nav__title {
    font-size: 1.1666vw;
  }
}
.c-footer__nav .c-nav__lists .c-nav__list {
  font-size: 13px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .c-footer__nav .c-nav__lists .c-nav__list {
    font-size: 1.0833vw;
  }
}

.c-footer__sns {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 767px) {
  .c-footer__sns {
    padding-right: 2vw;
    margin: 0 auto 30px;
  }
}

/* js */
.js-hamnav {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.js-hamnav.active {
  opacity: 1;
  visibility: visible;
}

.js-hamburger div {
  transition: 0.3s;
}

.js-hamburger.active div:nth-of-type(1) {
  transform: translate(-50%, -7px) rotate(45deg);
  transform-origin: 0% 50%;
}
.js-hamburger.active div:nth-of-type(2) {
  opacity: 0;
}
.js-hamburger.active div:nth-of-type(3) {
  transform: translate(-50%, 7px) rotate(-45deg);
  transform-origin: 0% 50%;
}

.js-minus::before {
  transition: 0.3s;
}

.js-minus.active::before {
  background: url(../images/ico_minus.svg) no-repeat 50% 50%;
}

.js-fadeup {
  transform: translateY(30px);
  opacity: 0;
  transition: 0.6s ease-out;
}

.js-fadeup.is-active {
  transform: translateY(0);
  opacity: 1;
}

.js-fadein {
  transform: translateY(30px) scale(1.07);
  opacity: 0;
  transition: 0.6s ease-out;
}

.js-fadein.is-active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.js-show {
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .js-show {
    opacity: 1;
  }
}

.js-show.show {
  opacity: 1;
}

.js-show.erase {
  opacity: 0;
}

.delay-change {
  transition-delay: 0.6s;
}

.delay-change2 {
  transition-delay: 1.2s;
}

/* 製品検索modal */
.js-modal {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.js-item_drop.active::after {
  background: url(../images/minus.svg) no-repeat 50% 50%/contain;
}

.js-color_modal, .js-mauve_modal, .js-red_modal {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.open {
  opacity: 1;
  visibility: visible;
}

body, .js-main, .js-footer {
  transition: 0.3s;
}

.dark {
  background: rgba(0, 0, 0, 0.5);
  filter: brightness(50%);
}

body.fixed {
  height: 100%;
  overflow: hidden;
}/*# sourceMappingURL=common.css.map */