@charset "UTF-8";
/*------------------------------

	media query

------------------------------*/
/* 変数の定義
--------------------------------------------------*/
/*------------------------------
	共通
------------------------------*/
body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #000;
  background-color: #fff;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media screen and (min-width: 450px) {
  body {
    font-size: 15px;
  }
}
@media screen and (min-width: 769px) {
  body {
    font-size: 18px;
  }
}
body a {
  color: #000;
}

p {
  font-family: "Noto Sans JP", sans-serif;
  color: #72554a;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 背景カラー */
  z-index: 999999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値 : 透過状態 */
  /* アニメーション時間は 0.8秒 */
  transition: opacity 0.8s ease;
}

body.fadeout::after {
  opacity: 1;
}

button {
  font-family: "Noto Sans JP", sans-serif;
  outline: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

img {
  max-width: 100%;
  height: auto;
}

.pc_br {
  display: block;
}

.sp_br {
  display: none;
}

.x80 {
  font-size: 80%;
}

@media all and (max-width: 768px) {
  .pc_br {
    display: none;
  }
  .sp_br {
    display: block;
  }
}
.sp-view {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp-view {
    display: none;
  }
}

.sm-view {
  display: block;
}
@media screen and (min-width: 450px) {
  .sm-view {
    display: none;
  }
}

.pc-view {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc-view {
    display: block;
  }
}

.sp-txt {
  display: none;
}
@media all and (max-width: 768px) {
  .sp-txt {
    display: block;
  }
}
@media all and (max-width: 469px) {
  .sp-txt {
    display: none;
  }
}

.sm-txt {
  display: none;
}
@media all and (max-width: 469px) {
  .sm-txt {
    display: block;
  }
}

.pc-txt {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc-txt {
    display: block;
  }
}

br.sp-view {
  display: block;
}
@media screen and (min-width: 769px) {
  br.sp-view {
    display: none;
  }
}
br.pc-view {
  display: none;
}
@media screen and (min-width: 769px) {
  br.pc-view {
    display: block;
  }
}

.pc_img {
  display: block;
}

.sp_img {
  display: none;
}

.se_none {
  display: none;
}

.fadein {
  opacity: 0;
  transition: all 0.7s;
  transform: scale(1.02, 1.02);
  transform: translateY(-10px);
  transition-timing-function: ease-out;
}

.fadein.scrollin {
  opacity: 1;
  transform: translateY(0px);
  transform: scale(1, 1);
}

@media all and (max-width: 768px) {
  .pc_img {
    display: none;
  }
  .sp_img {
    display: block;
  }
}
@media all and (max-width: 380px) {
  .se_br {
    display: none !important;
  }
}
@media all and (max-width: 350px) {
  .se_none {
    display: block;
  }
}
/* === header === */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  transition-duration: 1s;
}

#header.stickyadd {
  background-color: #fff;
}

header h1 {
  display: block;
  height: 100%;
  text-align: center;
  padding: 0;
}
@media screen and (min-width: 769px) {
  header h1 {
    display: none;
    padding: 20px 0 0;
  }
}
header h1 img {
  width: 64px;
}
@media screen and (min-width: 769px) {
  header h1 img {
    width: 87px;
  }
}

/*----------------------------------*/
/* wrapper */
/*----------------------------------*/
.wrapper {
  position: relative;
  background: #fff;
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media all and (max-width: 768px) {
  .wrapper {
    min-width: auto;
  }
}

/*スクロールダウン*/
a.next_scroll {
  position: absolute;
  right: 25px;
  top: -85px;
  display: block;
}

@media all and (max-width: 480px) {
  a.next_scroll {
    right: 14px;
  }
}
@media all and (min-width: 769px) {
  a.next_scroll {
    right: 5%;
  }
}
a.next_scroll span {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #050001;
  margin-left: -5px;
  -webkit-animation: sdb 3s infinite;
  animation: sdb 3s infinite;
  box-sizing: border-box;
  border-radius: 6.5px;
}

@media all and (max-width: 480px) {
  a.next_scroll span {
    top: 60px;
    width: 6px;
    height: 6px;
    margin-left: -2.5px;
  }
}
a.next_scroll::after {
  content: "";
  display: block;
  border-left: 1px #050001 solid;
  height: 150px;
  width: 1px;
  position: absolute;
  left: 50%;
  top: 15px;
}

@media all and (max-width: 480px) {
  a.next_scroll::after {
    height: 80px;
    top: 45px;
  }
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 150px);
    opacity: 0;
  }
}
@media all and (max-width: 480px) {
  @-webkit-keyframes sdb {
    0% {
      -webkit-transform: translate(0, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(0, 80px);
      opacity: 0;
    }
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 150px);
    opacity: 0;
  }
}
@media all and (max-width: 480px) {
  @-webkit-keyframes sdb {
    0% {
      transform: translate(0, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translate(0, 80px);
      opacity: 0;
    }
  }
  @keyframes sdb {
    0% {
      transform: translate(0, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translate(0, 80px);
      opacity: 0;
    }
  }
}
@-webkit-keyframes sdb2 {
  0% {
    transform: translate(10px, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(150px, 0);
    opacity: 0;
  }
}
@keyframes sdb2 {
  0% {
    transform: translate(10px, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(150px, 0);
    opacity: 0;
  }
}
@media all and (max-width: 768px) {
  @-webkit-keyframes sdb2 {
    0% {
      transform: translate(50px, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translate(190px, 0);
      opacity: 0;
    }
  }
  @keyframes sdb2 {
    0% {
      transform: translate(50px, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translate(190px, 0);
      opacity: 0;
    }
  }
}
/*------------------------------
  ドロワーメニュー
------------------------------*/
/* ボタン */
.menu-btn {
  width: 2rem;
  padding: 20px 17px 30px;
  background-color: transparent;
  border: none;
  box-sizing: content-box;
  font-size: 40px;
  outline: none;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 10000;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}
@media all and (max-width: 768px) {
  .menu-btn {
    display: block;
    top: 5px;
  }
}
@media screen and (max-width: 449px) {
  .menu-btn {
    width: 1.5rem;
    padding: 10px 15px 10px;
  }
}

.pushy-open-right .menu-btn { /* メニューopen時 */
  position: fixed;
}

.menu-btn .drawer-hamburger-icon {
  margin-top: 10px;
  display: block;
  position: relative;
}

.menu-btn .drawer-hamburger-icon,
.menu-btn .drawer-hamburger-icon:before,
.menu-btn .drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  background-color: #72554a;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
}
@media screen and (max-width: 449px) {
  .drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
    top: -8px;
  }
}

.drawer-hamburger-icon:after {
  top: 10px;
}
@media screen and (max-width: 449px) {
  .drawer-hamburger-icon:after {
    top: 8px;
  }
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  background-color: #ad3f2b;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.pushy-open-right .drawer-hamburger-icon {
  background-color: transparent;
}

.pushy-open-right .drawer-hamburger-icon:before {
  top: 0;
  transform: rotate(45deg);
}

.pushy-open-right .drawer-hamburger-icon:after {
  top: 0;
  transform: rotate(-45deg);
}

.pushy-open-right .menu-btn { /* メニューopen時 */
  position: fixed;
}
.pushy-open-right .drawer-hamburger-icon {
  background-color: transparent;
}
.pushy-open-right .drawer-hamburger-icon:before {
  top: 0;
  background-color: #72554a;
  transform: rotate(45deg);
}
.pushy-open-right .drawer-hamburger-icon:after {
  top: 0;
  background-color: #72554a;
  transform: rotate(-45deg);
}

/* ドロワーメニュー内 */
.wrapper .pushy {
  background: linear-gradient(to bottom, #fcf8f7, #e9dfe0);
  display: block;
  text-align: left;
}
.wrapper .pushy .menu_01,
.wrapper .pushy .menu_02,
.wrapper .pushy .menu_03,
.wrapper .pushy .menu_04 {
  width: 250px;
  margin: auto auto 50px;
}
@media all and (max-width: 768px) {
  .wrapper .pushy .menu_01,
.wrapper .pushy .menu_02,
.wrapper .pushy .menu_03,
.wrapper .pushy .menu_04 {
    width: 80%;
    margin: auto auto auto auto;
  }
}
.wrapper .pushy .pushy-content {
  padding: 120px 0;
}
@media all and (max-width: 768px) {
  .wrapper .pushy .pushy-content {
    padding: 100px 0;
  }
}
.wrapper .pushy .pushy-content p {
  font-size: 22px;
}
@media all and (max-width: 768px) {
  .wrapper .pushy .pushy-content p {
    font-size: 15px;
  }
}
.wrapper .pushy .pushy-link {
  color: #72554a;
  font-size: 22px;
  position: relative;
}
@media all and (max-width: 768px) {
  .wrapper .pushy .pushy-link {
    font-size: 15px;
  }
}
.wrapper .pushy .pushy-link.pushy_h {
  margin-bottom: 40px;
  font-weight: bold;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media all and (max-width: 580px) {
  .wrapper .pushy .pushy-link.pushy_h {
    margin-bottom: 20px;
  }
}
.wrapper .pushy .pushy-link a, .wrapper .pushy .pushy-link p {
  padding: 0;
  color: #72554a;
  text-align: left;
  line-height: 1.5em;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.wrapper .pushy .makeup_nav {
  margin: 40px auto;
}
.wrapper .pushy .makeup_nav li {
  margin-left: 30px;
  font-size: 18px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
@media all and (max-width: 768px) {
  .wrapper .pushy .makeup_nav li {
    font-size: 13px;
  }
}
.wrapper .pushy .makeup_nav li:last-of-type {
  margin-bottom: 0;
}
.wrapper .pushy .makeup_nav li::before {
  border-top: 2px solid #72554a;
  content: "";
  flex-grow: 1;
  margin-right: 15px;
  width: 20px;
}
@media all and (max-width: 768px) {
  .wrapper .pushy .makeup_nav li::before {
    width: 10px;
    margin-right: 10px;
  }
}

.pushy-content .logo {
  top: 0;
}

/*----------------------------------*/
/* header */
/*----------------------------------*/
header {
  width: 1200px;
  position: relative;
}
@media all and (max-width: 768px) {
  header {
    width: 100%;
  }
}

.header_fixed {
  width: 1200px;
  z-index: 99;
  position: fixed;
  transition-duration: 1s;
}
@media all and (max-width: 768px) {
  .header_fixed {
    width: 100%;
  }
}

header .logo {
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  z-index: 10;
  text-align: center;
}
@media screen and (min-width: 450px) {
  header .logo {
    top: 15px;
  }
}

header a img {
  height: auto;
  width: 87px;
}

@media all and (max-width: 768px) {
  header a img {
    height: 25px;
    width: auto;
  }
}
@media all and (max-width: 450px) {
  header a img {
    height: 18px;
    width: auto;
  }
}
/*--------------------------------------------------*/
/* sec_mv
--------------------------------------------------*/
#sec_mv {
  overflow: hidden;
  padding-bottom: 50px;
}
#sec_mv .mv-wrap {
  position: relative;
}

/* PC KV 購入はこちらボタン */
.palette_btn {
  position: absolute;
  bottom: 120px;
  z-index: 10;
  right: 114px;
}
.palette_btn a {
  font-size: 16px;
  color: #fff;
  background-color: #f2b5b2;
  display: inline-block;
  width: 410px;
  text-align: center;
  padding: 20px 0;
  border: solid 1px #f2b5b2;
}
.palette_btn a:hover {
  background-color: #fff;
  color: #f2b5b2;
}
@media screen and (max-width: 768px) {
  .palette_btn {
    position: static;
    text-align: center;
  }
  .palette_btn a {
    width: 80%;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 449px) {
  .palette_btn a {
    width: 90%;
    min-width: 300px;
    font-size: 14px;
  }
}

/* スクロール　ライン */
.scroll_line {
  display: inline-block;
  position: absolute;
  left: 150px;
  bottom: -50px;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  /*アニメーション*/
}
@media all and (max-width: 768px) {
  .scroll_line {
    left: 10%;
    bottom: -40px;
  }
}
.scroll_line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #72554a;
}
.scroll_line::after {
  -webkit-animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@-webkit-keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*--------------------------------------------------*/
/* product
--------------------------------------------------*/
#product {
  padding-top: 20px;
  position: relative;
}
#product .video_wrapper {
  z-index: 10;
  width: 400px;
  height: auto;
  margin: auto 100px auto auto;
}
#product .video_wrapper video {
  width: 400px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #product .video_wrapper {
    width: 100%;
    margin: auto;
    text-align: right;
    background-image: url(../img/sp/bg_product.jpg);
    background-size: cover;
  }
  #product .video_wrapper video {
    width: 65%;
    height: 65%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#product .video_wrapper h2 {
  margin-top: 60px;
  margin-left: 5%;
  padding-bottom: 20px;
}
#product .video_wrapper h2 img {
  width: 80%;
}
#product .product_inner {
  background-image: url(../img/pc/bg_product.jpg);
  background-size: cover;
  padding: 120px 0 60px;
  margin-top: -325px;
}
#product .product_inner h2 {
  margin-top: 60px;
  margin-left: 100px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #product .product_inner {
    margin-top: 0;
    padding: 0 0;
    background-image: none;
  }
}
#product .product_inner .product_block {
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  #product .product_inner .product_block {
    display: block;
    margin-top: 0;
  }
}
#product .product_inner .product_block li:first-of-type {
  margin-left: 0;
  width: 600px;
}
@media screen and (max-width: 768px) {
  #product .product_inner .product_block li:first-of-type {
    width: 100%;
    margin: auto;
  }
}
#product .product_inner .product_block li:last-of-type {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  #product .product_inner .product_block li:last-of-type {
    margin-left: auto;
    background-image: url(../img/sp/bg_product_02.jpg);
    background-size: cover;
  }
  #product .product_inner .product_block li:last-of-type div {
    padding: 50px 0;
    margin: 0 auto 0;
    width: 90%;
  }
}
#product .product_inner .product_block li:last-of-type h3 {
  font-size: 20px;
  font-weight: 500;
  color: #d39299;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #product .product_inner .product_block li:last-of-type h3 {
    font-size: 18px;
  }
}
#product .product_inner .product_block li:last-of-type h3 span {
  padding: 0 7px;
  background-color: #fff;
}
#product .product_inner .product_block li:last-of-type p {
  color: #d39299;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  padding: 7px;
}
@media screen and (max-width: 768px) {
  #product .product_inner .product_block li:last-of-type p {
    font-size: 14px;
    padding: 10px;
  }
}

/*--------------------------------------------------*/
/* item
--------------------------------------------------*/
#item {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  #item {
    padding-top: 0;
    margin-bottom: 80px;
  }
}
#item h2 {
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  #item h2 {
    margin-top: 60px;
    margin-left: 5%;
    padding-bottom: 20px;
  }
  #item h2 img {
    width: 65%;
  }
}
#item .swiper-container img {
  margin: auto;
}
#item .slide_wrapper {
  position: relative;
}
#item .slide_wrapper .makeup_btn {
  position: absolute;
  bottom: 40px;
  right: 360px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #item .slide_wrapper .makeup_btn {
    bottom: 7%;
    right: 7%;
    width: 28%;
  }
}
#item .video_item_wrapper {
  margin-top: 60px;
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #item .video_item_wrapper {
    padding-bottom: 0;
  }
}
#item .video_item_wrapper::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75%;
  background-image: url(../img/pc/bg_item_peachgerbera.jpg);
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #item .video_item_wrapper::before {
    background-image: none;
  }
}
#item .video_item_wrapper .video_item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #item .video_item_wrapper .video_item {
    display: block;
  }
}
#item .video_item_wrapper .video_item li {
  position: relative;
  z-index: 2;
}
#item .video_item_wrapper .video_item li:first-of-type {
  display: flex;
  align-items: flex-end;
  /*縦書き*/
}
@media screen and (max-width: 768px) {
  #item .video_item_wrapper .video_item li:first-of-type {
    display: block;
    position: relative;
    padding-bottom: 60px;
  }
  #item .video_item_wrapper .video_item li:first-of-type::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 75%;
    background-size: cover;
    z-index: 1;
  }
}
#item .video_item_wrapper .video_item li:first-of-type .vertical {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-size: 30px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #item .video_item_wrapper .video_item li:first-of-type .vertical {
    font-size: 15px;
    position: absolute;
    bottom: 62px;
    z-index: 2;
  }
}
@media screen and (max-width: 449px) {
  #item .video_item_wrapper .video_item li:first-of-type .vertical {
    font-size: 12px;
  }
}
#item .video_item_wrapper .video_item li:first-of-type .video_wrapper {
  height: auto;
  margin: auto 10px auto 0;
}
#item .video_item_wrapper .video_item li:first-of-type .video_wrapper video {
  width: 500px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #item .video_item_wrapper .video_item li:first-of-type .video_wrapper {
    margin: auto;
    text-align: left;
    position: relative;
    z-index: 2;
  }
  #item .video_item_wrapper .video_item li:first-of-type .video_wrapper video {
    width: 65%;
    height: 65%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#item .video_item_wrapper .video_item li:last-of-type {
  margin-left: 130px;
}
@media screen and (max-width: 768px) {
  #item .video_item_wrapper .video_item li:last-of-type {
    margin: 60px auto 0;
  }
  #item .video_item_wrapper .video_item li:last-of-type .ph {
    width: 70%;
    margin: 0 auto 5px;
    min-width: 280px;
    text-align: center;
  }
}
#item .video_item_wrapper .video_item li:last-of-type .txt p {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #item .video_item_wrapper .video_item li:last-of-type .txt p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
#item .video_item_wrapper .video_item li:last-of-type .item_btn a {
  font-size: 18px;
  color: #fff;
  background-color: #f2b5b2;
  width: 350px;
  padding: 20px 0;
  display: block;
  text-align: center;
  line-height: 1;
  margin: auto;
  border: solid 1px #f2b5b2;
}
#item .video_item_wrapper .video_item li:last-of-type .item_btn a:hover {
  background-color: #fff;
  color: #f2b5b2;
}
@media screen and (max-width: 768px) {
  #item .video_item_wrapper .video_item li:last-of-type .item_btn a {
    font-size: 15px;
    width: 60%;
    min-width: 280px;
    margin-top: 20px;
  }
}
#item .slider-item-sp {
  width: 90%;
  margin: auto;
}

.item_blushedrose {
  margin-top: 40px;
}
.item_blushedrose .vertical {
  color: #e1b2bc;
}
@media screen and (max-width: 768px) {
  .item_blushedrose .vertical {
    right: 67%;
  }
}
.item_blushedrose .video_item_wrapper::before {
  background-image: url(../img/pc/bg_item_blushedrose.jpg) !important;
}
@media screen and (max-width: 768px) {
  .item_blushedrose .video_item_wrapper::before {
    background-image: none !important;
  }
}
.item_blushedrose .video_item {
  flex-direction: row-reverse;
}
.item_blushedrose .video_item li:last-of-type {
  margin-left: auto;
  margin-right: 130px;
}
.item_blushedrose .video_wrapper {
  margin: auto 0 auto 10px !important;
}
@media screen and (max-width: 768px) {
  .item_blushedrose .video_wrapper {
    text-align: right !important;
    margin: auto !important;
  }
}

.item_peachgerbera {
  margin-top: 80px;
}
.item_peachgerbera .vertical {
  color: #e6d8d4;
}
@media screen and (max-width: 768px) {
  .item_peachgerbera .vertical {
    left: 67%;
  }
}
@media screen and (max-width: 768px) {
  .item_peachgerbera {
    margin-top: 80px;
  }
}

.item_nudemilktea {
  margin-top: 80px;
}
.item_nudemilktea .vertical {
  color: #e5c6b7;
}
@media screen and (max-width: 768px) {
  .item_nudemilktea .vertical {
    right: 67%;
  }
}
.item_nudemilktea .video_item_wrapper::before {
  background-image: url(../img/pc/bg_item_nudemilktea.jpg) !important;
}
@media screen and (max-width: 768px) {
  .item_nudemilktea .video_item_wrapper::before {
    background-image: none !important;
  }
}
.item_nudemilktea .video_item {
  flex-direction: row-reverse;
}
.item_nudemilktea .video_item li:last-of-type {
  margin-left: auto;
  margin-right: 130px;
}
.item_nudemilktea .video_wrapper {
  margin: auto 0 auto 10px !important;
}
@media screen and (max-width: 768px) {
  .item_nudemilktea .video_wrapper {
    text-align: right !important;
    margin: auto !important;
  }
}

.item_cashmeremauve {
  margin-top: 80px;
}
.item_cashmeremauve .vertical {
  color: #cebec0;
}
@media screen and (max-width: 768px) {
  .item_cashmeremauve .vertical {
    left: 67%;
  }
}
.item_cashmeremauve .video_item_wrapper::before {
  background-image: url(../img/pc/bg_item_cashmeremauve.jpg) !important;
}
@media screen and (max-width: 768px) {
  .item_cashmeremauve .video_item_wrapper::before {
    background-image: none !important;
  }
}

.item_woodbrick {
  margin-top: 80px;
}
.item_woodbrick .vertical {
  color: #d8b6a6;
}
@media screen and (max-width: 768px) {
  .item_woodbrick .vertical {
    right: 67%;
  }
}
.item_woodbrick .video_item_wrapper::before {
  background-image: url(../img/pc/bg_item_woodbrick.jpg) !important;
}
@media screen and (max-width: 768px) {
  .item_woodbrick .video_item_wrapper::before {
    background-image: none !important;
  }
}
.item_woodbrick .video_item {
  flex-direction: row-reverse;
}
.item_woodbrick .video_item li:last-of-type {
  margin-left: auto;
  margin-right: 130px;
}
.item_woodbrick .video_wrapper {
  margin: auto 0 auto 10px !important;
}
@media screen and (max-width: 768px) {
  .item_woodbrick .video_wrapper {
    text-align: right !important;
    margin: auto !important;
  }
}

/* SP　背景　*/
@media screen and (max-width: 768px) {
  .video_blushedrose::before {
    background-image: url(../img/sp/bg_item_blushedrose.jpg);
  }
}

@media screen and (max-width: 768px) {
  .video_peachgerbera::before {
    background-image: url(../img/sp/bg_item_peachgerbera.jpg);
  }
}

@media screen and (max-width: 768px) {
  .video_nudemilktea::before {
    background-image: url(../img/sp/bg_item_nudemilktea.jpg);
  }
}

@media screen and (max-width: 768px) {
  .video_cashmeremauve::before {
    background-image: url(../img/sp/bg_item_cashmeremauve.jpg);
  }
}

@media screen and (max-width: 768px) {
  .video_woodbrick::before {
    background-image: url(../img/sp/bg_item_woodbrick.jpg);
  }
}

/*--------------------------------------------------*/
/* footer
--------------------------------------------------*/
footer.wrapper {
  background-color: #cebec0;
  padding: 30px 0;
  z-index: 0;
}
footer .footer-wrap .top {
  text-align: center;
}
footer .footer-wrap .top a {
  position: relative;
  font-weight: 500;
  color: #fff;
}
footer .footer-wrap .top a::before {
  position: absolute;
  content: "";
  background-image: url(../img/arrow_t.png);
  top: -10px;
  left: 50%;
  transform: translatex(-50%);
  width: 17px;
  height: 10px;
}
footer .footer-wrap .sns-list {
  width: calc(100% - 50px);
  padding: 20px 25px;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
@media screen and (min-width: 450px) {
  footer .footer-wrap .sns-list {
    width: 100%;
    max-width: 400px;
    padding: 30px 25px 25px;
    justify-content: space-between;
  }
}
footer .footer-wrap .sns-list li {
  width: 100%;
  max-width: 50px;
  padding: 0 5px;
}
@media screen and (min-width: 450px) {
  footer .footer-wrap .sns-list li {
    padding: 0;
  }
}
footer .footer-wrap .sns-list li a.sp-view {
  display: block;
}
@media screen and (min-width: 769px) {
  footer .footer-wrap .sns-list li a.sp-view {
    display: none;
  }
}
footer .footer-wrap .sns-list li a.pc-view {
  display: none;
}
@media screen and (min-width: 769px) {
  footer .footer-wrap .sns-list li a.pc-view {
    display: block;
  }
}
footer .footer-wrap .logo {
  text-align: center;
}
footer .footer-wrap .logo img {
  width: 100%;
  max-width: 90px;
}

/*--------------------------------------------------*/
/* makeup
--------------------------------------------------*/
/*  eyeshadow_cheek  */
#eyeshadow_cheek {
  margin-top: 60px;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, #ffffff, #e6d8d4);
}
#eyeshadow_cheek h2 {
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  #eyeshadow_cheek h2 {
    margin-left: 5%;
  }
  #eyeshadow_cheek h2 img {
    width: 90%;
    max-width: 600px;
  }
}
#eyeshadow_cheek .makeup_palette_btn {
  text-align: center;
}
#eyeshadow_cheek .makeup_palette_btn a {
  font-size: 16px;
  color: #fff;
  background-color: #f2b5b2;
  display: inline-block;
  width: 410px;
  text-align: center;
  padding: 20px 0;
  border: solid 1px #f2b5b2;
}
#eyeshadow_cheek .makeup_palette_btn a:hover {
  background-color: #fff;
  color: #f2b5b2;
}
@media screen and (max-width: 768px) {
  #eyeshadow_cheek .makeup_palette_btn a {
    width: 80%;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 449px) {
  #eyeshadow_cheek .makeup_palette_btn a {
    width: 90%;
    min-width: 300px;
    font-size: 14px;
  }
}
#eyeshadow_cheek .pc_palette_detail {
  display: flex;
  width: 1000px;
  margin: 30px auto 0;
  align-items: center;
}
#eyeshadow_cheek .pc_palette_detail li {
  margin-left: 50px;
}
#eyeshadow_cheek .pc_palette_detail .ph p {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
}
#eyeshadow_cheek .palette_name {
  color: #72554a;
}
@media screen and (max-width: 768px) {
  #eyeshadow_cheek .palette_name {
    width: 80%;
    margin: 20px auto 40px;
  }
}
@media screen and (max-width: 449px) {
  #eyeshadow_cheek .palette_name {
    width: 85%;
  }
}
#eyeshadow_cheek .palette_name .f_white {
  color: #fff;
}
#eyeshadow_cheek .palette_name dl {
  display: flex;
  font-size: 18px;
  margin-bottom: 30px;
}
#eyeshadow_cheek .palette_name dl:last-of-type {
  margin-bottom: 0;
}
#eyeshadow_cheek .palette_name dl dd {
  margin-left: 15px;
  padding: 0 7px;
}
#eyeshadow_cheek .palette_name dl dd span {
  display: inline-block;
  padding: 0 7px;
}
#eyeshadow_cheek .palette_name dl dd .top {
  margin-bottom: 20px;
}
@media screen and (max-width: 449px) {
  #eyeshadow_cheek .palette_name dl dd .top {
    margin-bottom: 10px;
  }
}
#eyeshadow_cheek .sp_palette_detail .ph {
  width: 70%;
  margin: 0 auto 5px;
  min-width: 280px;
}
#eyeshadow_cheek .sp_palette_detail .ph img {
  margin: auto;
}
#eyeshadow_cheek .sp_palette_detail dl {
  font-size: 2.6vw;
  margin-bottom: 20px;
}
@media screen and (max-width: 449px) {
  #eyeshadow_cheek .sp_palette_detail dl {
    margin-bottom: 10px;
  }
}
#eyeshadow_cheek .sp_palette_detail dl dd {
  margin-left: 2.6vw;
  padding: 0 0.65vw;
}
#eyeshadow_cheek .sp_palette_detail dl dd span {
  padding: 0 0.65vw;
  display: inline-block;
}
#eyeshadow_cheek .sp_palette_detail .txt p {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: center;
}

/*  その他アイテム  */
/*  other_item  ---------------------------------------*/
#other_item {
  margin-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #other_item {
    margin-top: 60px;
    padding-bottom: 0;
  }
}
#other_item ul {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #other_item ul {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #other_item ul .baseitem h2 {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  #other_item ul .mascaraitem h2 {
    width: 270px;
  }
}
@media screen and (max-width: 768px) {
  #other_item ul .lipitem h2 {
    width: 210px;
  }
}
@media screen and (max-width: 768px) {
  #other_item ul li {
    margin: 60px 5%;
  }
}
#other_item ul li h2 {
  height: 85px;
  width: auto;
}
#other_item ul li .txt p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #other_item ul li .txt p {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
#other_item ul li .ph {
  margin: 10px auto 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #other_item ul li .ph {
    width: 80%;
    margin: 0 auto 20px;
  }
}
#other_item ul li .item_btn {
  margin-top: 20px;
  text-align: center;
}
#other_item ul li .item_btn a {
  font-size: 16px;
  color: #fff;
  background-color: #f2b5b2;
  display: inline-block;
  width: 290px;
  text-align: center;
  padding: 15px 0;
  border: solid 1px #f2b5b2;
}
#other_item ul li .item_btn a:hover {
  background-color: #fff;
  color: #f2b5b2;
}/*# sourceMappingURL=style.css.map */