@charset "UTF-8";
/* img
--------------------------------------------------*/
img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 681px) {
  .over:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a:hover img {
  opacity: initial;
}

/* ==================================================
  Slickスライダー 共通コアスタイル & プラグインCSS
================================================== */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: 0;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track::after, .slick-track::before {
  display: table;
  content: "";
}
.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* --------------------------------------------------
  スライダー共通：左右矢印ボタン（PC / SP連動）
-------------------------------------------------- */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: 0;
  background: transparent no-repeat center center/cover;
  z-index: 1;
}
@media screen and (max-width: 680px) {
  .slick-prev,
  .slick-next {
    width: 7.69vw;
    height: 7.69vw;
  }
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  display: none !important;
}

.slick-prev {
  left: 0;
  background-image: url("../../img/nav_top_prev.svg");
}

.slick-next {
  right: 0;
  background-image: url("../../img/nav_top_next.svg");
}

/* --------------------------------------------------
  スライダー共通：ドットナビゲーション（PC / SP連動）
-------------------------------------------------- */
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  width: 6px;
  height: 6px;
  margin: 0 2.5px;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 680px) {
  .slick-dots li {
    width: 1.54vw;
    height: 1.54vw;
    margin: 0 0.64vw;
  }
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 6px;
  height: 6px;
  cursor: pointer;
  border: 1px solid #000000;
  border-radius: 100%;
  background: #000000;
  padding: 0;
  opacity: 0.1;
}
@media screen and (max-width: 680px) {
  .slick-dots li button {
    width: 1.54vw;
    height: 1.54vw;
  }
}
.slick-dots li.slick-active button {
  opacity: 1;
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 680px) {
  .u-pc {
    display: none !important;
  }
}
@media screen and (min-width: 681px) {
  .u-sp {
    display: none !important;
  }
}
/* --------------------------------------------------
layout (1100px 中央寄せ)
-------------------------------------------------- */
.l-inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 680px) {
  .l-inner {
    padding: 0 3.8461538462vw;
  }
}

/* --------------------------------------------------
trim
-------------------------------------------------- */
.u-trim {
  text-box-trim: both;
  text-box-edge: cap alphabetic;
}

/* --------------------------------------------------
ボタン
-------------------------------------------------- */
.u-btn {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 270px;
  height: 62px;
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 31px;
  color: #000000;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 680px) {
  .u-btn {
    max-width: 69.2307692308vw;
    height: 15.8974358974vw;
    border-radius: 7.9487179487vw;
    font-size: 3.3333333333vw;
  }
  .u-btn.u-pc {
    display: none !important;
  }
}
@media screen and (min-width: 681px) {
  .u-btn.u-sp {
    display: none !important;
  }
}
.u-btn::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 10px;
  background: url("/sw/beautyinfo/img/link__btn-arrow.svg") no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
}
@media screen and (max-width: 680px) {
  .u-btn::after {
    right: 5.1282051282vw;
    width: 1.5384615385vw;
    height: 2.8205128205vw;
  }
}
.u-btn:hover {
  opacity: 0.7;
}

/* --------------------------------------------------
ホバー
-------------------------------------------------- */
.u-hoverShadow {
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.u-hoverShadow:hover {
  -webkit-box-shadow: 10px 10px 14px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 10px 10px 14px 0px rgba(0, 0, 0, 0.07);
}

body {
  min-width: 1130px;
  color: #000000;
  font-size: 0;
}
@media screen and (max-width: 680px) {
  body {
    min-width: 100%;
  }
}
body.is-modalOpen {
  overflow: hidden !important;
  -ms-scroll-chaining: none !important;
      overscroll-behavior: none !important;
}
body.is-modalOpen::-webkit-scrollbar {
  display: none !important;
}
body.is-modalOpen {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
body html.is-modalOpen {
  overflow: hidden !important;
  -ms-scroll-chaining: none !important;
      overscroll-behavior: none !important;
}
body .c-modal {
  -ms-scroll-chaining: none !important;
      overscroll-behavior: contain !important;
}

html {
  font-size: 100% !important;
}

#top .c-secTitle {
  font-family: "Futura", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000000;
  text-box-trim: both;
  text-box-edge: cap alphabetic;
}
@media screen and (max-width: 680px) {
  #top .c-secTitle {
    font-size: 12.3076923077vw;
  }
}
#top .c-gradientThumb {
  background: linear-gradient(225deg, rgba(230, 122, 122, 0.4) 0%, rgba(252, 192, 192, 0.4) 40%, rgba(153, 211, 211, 0.4) 59.5%, rgba(150, 224, 220, 0.4) 80%, rgba(109, 208, 208, 0.4) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
}
#top .c-gradientThumb img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
#top a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#top a:hover {
  opacity: 0.8;
}
#top {
  /* --------------------------------------------------
  pageHead（最上部のメディア紹介テキスト）
  -------------------------------------------------- */
}
#top .pageHead {
  text-align: center;
  padding: 15px 0;
  border-bottom: solid 1px #D9D9D9;
  line-height: 1;
  font-size: 12px;
  color: #444444;
  font-family: Futura, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (max-width: 680px) {
  #top .pageHead {
    padding: 2.56vw 0;
    font-size: 3.59vw;
  }
}
#top {
  /* --------------------------------------------------
    TOPページ MV
  -------------------------------------------------- */
}
#top .mainVisual {
  position: relative;
  padding: 70px 0 70px;
  background: #EEEEEE;
}
@media screen and (max-width: 680px) {
  #top .mainVisual {
    padding: 10.2564102564vw 0 7.6923076923vw;
    overflow: hidden;
  }
}
#top .mainVisual__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
#top .mainVisual__link:hover {
  opacity: 1;
}
#top .mainVisual__link:hover picture img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
#top .mainVisual:before, #top .mainVisual:after {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 0;
}
@media screen and (max-width: 680px) {
  #top .mainVisual:before, #top .mainVisual:after {
    width: 20.5128205128vw;
    height: 20.5128205128vw;
  }
}
#top .mainVisual:before {
  top: 0;
  left: 0;
  background: url("../../img/topCarouselArea__decorate01.png") no-repeat center center/cover;
}
#top .mainVisual:after {
  bottom: 0;
  right: 0;
  background: url("../../img/topCarouselArea__decorate02.png") no-repeat center center/cover;
}
#top .mainVisual__inner {
  max-width: 1100px;
  padding-left: 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}
#top .mainVisual__slider {
  position: relative;
  width: 580px;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__slider {
    width: calc(100% - 10.2564102564vw);
    padding: 0;
    margin-left: 10.2564102564vw;
    margin-right: 0;
    margin-bottom: 5.1282051282vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #top .mainVisual__slider .slick-list {
    padding-left: 0;
    padding-right: 10.2564102564vw;
    overflow: hidden !important;
  }
}
#top .mainVisual__slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  width: 30px;
  height: 30px;
}
#top .mainVisual__slider .slick-next {
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
}
@media screen and (max-width: 680px) {
  #top .mainVisual__slider .slick-next {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 6.4102564103vw;
  }
}
#top .mainVisual__slider .slick-prev {
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  display: none !important;
}
#top .mainVisual__title {
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  width: 36px;
  margin: 0;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__title {
    top: 0;
    left: -3.0769230769vw;
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    width: 60.7692307692vw;
    height: auto;
  }
}
#top .mainVisual__info {
  position: absolute;
  bottom: 30px;
  left: 45px;
  z-index: 2;
  color: #FFFFFF;
  width: 480px;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__info {
    bottom: 7.1794871795vw;
    left: 5.1282051282vw;
    right: 8.9743589744vw;
    width: 69.2307692308vw;
  }
}
#top .mainVisual__infoLabel {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__infoLabel {
    font-size: 3.5897435897vw;
  }
}
#top .mainVisual__infoTitle {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-box-trim: both;
  text-box-edge: cap alphabetic;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__infoTitle {
    margin: 2.5641025641vw 0 0;
    font-size: 5.1282051282vw;
  }
}
#top .mainVisual__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#top .mainVisual__list:not(.slick-initialized) {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  overflow: hidden !important;
}
#top .mainVisual__list:not(.slick-initialized) .mainVisual__item {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}
#top .mainVisual__item {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__item {
    width: 83.3333333333vw;
    padding-right: 3.8461538462vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #top .mainVisual__item a {
    overflow: hidden;
  }
}
#top .mainVisual__item::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__item::after {
    height: 35.8974358974vw;
    width: calc(100% - 3.8461538462vw);
  }
}
#top .mainVisual__item picture img {
  width: 100%;
  height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 680px) {
  #top .mainVisual__item picture img {
    height: 97.4358974359vw;
  }
}
#top .mainVisual__nav {
  width: 460px;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__nav {
    padding: 0 3.8461538462vw;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
#top .mainVisual__navList {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4px 1fr 4px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
#top .mainVisual__navList.--count7 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4px 1fr 4px 1fr 4px 1fr 4px 1fr 4px 1fr 4px 1fr 4px 1fr 4px 1fr 4px 1fr 4px 1fr 4px 1fr;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}
#top .mainVisual__navList.--count7 .mainVisual__navItem {
  width: 100%;
}
#top .mainVisual__navList.--count7 .mainVisual__navItem.u-sp {
  display: none;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__navList.--count7 .mainVisual__navItem.u-sp {
    display: block;
  }
}
#top .mainVisual__navList.--count7 .mainVisual__navItem:nth-child(-n+3) {
  -ms-grid-column-span: 4;
  grid-column: span 4;
}
#top .mainVisual__navList.--count7 .mainVisual__navItem:nth-child(n+5) {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__navList.--count7 .mainVisual__navItem:nth-child(n) {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
}
@media screen and (max-width: 680px) {
  #top .mainVisual__navList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.2820512821vw;
    margin-bottom: 0;
  }
}
#top .mainVisual__navItem {
  width: 100%;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
#top .mainVisual__navItem:hover {
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
#top .mainVisual__navItem:hover a {
  opacity: 1;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__navItem {
    width: calc((100% - 3.8461538462vw) / 4);
  }
  #top .mainVisual__navItem:nth-child(-n+4) .mainVisual__navLink {
    min-height: 17.9487179487vw;
    height: 17.9487179487vw;
  }
  #top .mainVisual__navItem:nth-child(n+5) .mainVisual__navLink {
    min-height: 12.8205128205vw;
    height: 12.8205128205vw;
  }
}
#top .mainVisual__navLink {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 68px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #C7C7C7;
  color: #000000;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 3px;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__navLink {
    padding: 0;
    height: 100%;
    font-size: 3.0769230769vw;
    border-radius: 2.5641025641vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5384615385vw;
  }
}
#top .mainVisual__navLink::after {
  content: "";
  display: inline-block;
  margin-left: 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__navLink::after {
    margin: 0;
  }
}
#top .mainVisual__navLink.--search {
  border-color: #83CECE;
}
#top .mainVisual__navLink.--search::after {
  background-image: url("../../img/icon_search.svg");
  width: 19px;
  height: 21px;
}
#top .mainVisual__navLink.--column {
  border-color: #ECA8B6;
}
#top .mainVisual__navLink.--column::after {
  background-image: url("../../img/icon_column.svg");
  width: 30px;
  height: 22px;
}
#top .mainVisual__navLink.--contents {
  border-color: #DDBC64;
}
#top .mainVisual__navLink.--contents::after {
  background-image: url("../../img/icon_contents.svg");
  width: 18px;
  height: 25px;
}
#top .mainVisual__navLink.--fortune {
  border-color: #8DBBE2;
}
#top .mainVisual__navLink.--fortune::after {
  background-image: url("../../img/icon_fortune.svg");
  width: 22px;
  height: 22px;
}
#top .mainVisual__navLink.--howto::after {
  display: none;
}
#top .mainVisual__navLink.--color::after {
  display: none;
}
#top .mainVisual__navLink.--mens::after {
  display: none;
}
#top .mainVisual__fortune {
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .mainVisual__fortune {
    display: none;
  }
}
#top .mainVisual__fortuneLead {
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  margin: 0 0 20px;
}
#top .mainVisual__fortuneBanner {
  width: 100%;
}
#top .mainVisual__fortuneBanner img {
  width: 100%;
  height: auto;
  display: block;
}
#top {
  /* --------------------------------------------------
  TOPページ WHAT'S NEW
  -------------------------------------------------- */
}
#top .whatsNew {
  padding: 40px 0;
  background: #FFFFFF;
}
@media screen and (max-width: 680px) {
  #top .whatsNew {
    padding: 12.8205128205vw 0;
  }
  #top .whatsNew .u-btn.u-sp {
    margin: 7.6923076923vw auto 0;
  }
}
#top .whatsNew__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #top .whatsNew__inner {
    display: block;
  }
}
#top .whatsNew__heading {
  text-align: right;
}
@media screen and (max-width: 680px) {
  #top .whatsNew__heading {
    position: relative;
    margin-bottom: -3.8461538462vw;
    margin-right: 3.8461538462vw;
    z-index: 9;
    margin-left: auto;
    width: 187px;
  }
  #top .whatsNew__heading img {
    width: 100%;
  }
}
#top .whatsNew__list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 820px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 680px) {
  #top .whatsNew__list {
    width: 100%;
    -ms-grid-columns: 1fr 4.1025641026vw 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.1025641026vw;
  }
}
#top .whatsNew__item {
  width: 100%;
}
#top .whatsNew__link {
  display: block;
  text-decoration: none !important;
  color: #000000;
  height: 100%;
  background: #F5F5F5;
}
#top .whatsNew__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
#top .whatsNew__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#top .whatsNew__body {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #top .whatsNew__body {
    padding: 5.1282051282vw;
  }
}
#top .whatsNew__text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media screen and (max-width: 680px) {
  #top .whatsNew__text {
    font-size: 3.5897435897vw;
  }
}
#top .whatsNew__meta {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 680px) {
  #top .whatsNew__meta {
    margin-top: 2.5641025641vw;
    gap: 2.5641025641vw;
  }
}
#top .whatsNew__date {
  font-size: 10px;
  color: #858585;
}
@media screen and (max-width: 680px) {
  #top .whatsNew__date {
    font-size: 2.5641025641vw;
  }
}
#top .whatsNew__label {
  font-size: 10px;
  font-weight: 500;
  color: #FFFFFF;
  background: #DB8684;
  padding: 4px 2.5px;
  line-height: 1;
}
@media screen and (max-width: 680px) {
  #top .whatsNew__label {
    font-size: 2.5641025641vw;
    padding: 1.0256410256vw 0.641025641vw;
  }
}
#top .whatsNew__side {
  width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
#top {
  /* --------------------------------------------------
    EXPERT BEAUTY TIPS セクション
  -------------------------------------------------- */
}
#top .expertBeautyTips {
  margin-top: 40px;
  position: relative;
  padding: 40px 0;
  background: linear-gradient(293.88deg, rgba(224, 206, 250, 0.3) 19.31%, rgba(206, 242, 244, 0.3) 80.69%);
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips {
    margin-top: 12.8205128205vw;
    padding: 12.8205128205vw 0;
  }
}
#top .expertBeautyTips::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../img/ebt_decorate.png) no-repeat center center;
  background-size: 100%;
  z-index: 9;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips::after {
    width: 30.7692307692vw;
    height: 30.7692307692vw;
  }
}
#top .expertBeautyTips__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__inner {
    padding-left: 3.8461538462vw;
  }
}
#top .expertBeautyTips__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#top .expertBeautyTips__headBlock {
  width: 304px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 30px;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__headBlock {
    width: 100%;
    display: block;
    margin: 11.2820512821vw 0 5.1282051282vw;
    margin-left: 7.6923076923vw;
  }
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__headWrap {
    width: 84.6153846154vw;
  }
}
#top .expertBeautyTips__ttl {
  width: 246px;
  margin: 0 0 30px 0;
}
#top .expertBeautyTips__ttl img {
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__ttl {
    width: 39.4871794872vw;
    margin-bottom: 5.641025641vw;
  }
}
#top .expertBeautyTips__subttl {
  font-size: 14px;
  line-height: 2;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__subttl {
    font-size: 3.5897435897vw;
    line-height: 1.5;
  }
}
#top .expertBeautyTips__illust {
  margin-left: 26px;
  width: 210px;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__illust {
    position: absolute;
    top: -5.3846153846vw;
    right: 7.6923076923vw;
    margin-left: 0;
    width: 37.1794871795vw;
  }
}
#top .expertBeautyTips__illust img {
  width: 100%;
  height: auto;
  display: block;
}
#top .expertBeautyTips__contentBlock {
  width: 760px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__contentBlock {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10.2564102564vw;
  }
}
#top .expertBeautyTips__category {
  width: 360px !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__category {
    width: 100% !important;
  }
}
#top .expertBeautyTips__categoryHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__categoryHeader {
    margin: 0 7.6923076923vw 2.5641025641vw 5.1282051282vw;
  }
}
#top .expertBeautyTips__categoryTtl {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__categoryTtl {
    font-size: 5.1282051282vw;
  }
}
#top .expertBeautyTips__author {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__author {
    gap: 2.5641025641vw;
  }
}
#top .expertBeautyTips__authorImg {
  margin: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#top .expertBeautyTips__authorImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top .expertBeautyTips__authorName {
  font-size: 14px;
  color: #4A72B2;
  text-decoration: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__authorName {
    font-size: 3.5897435897vw;
    text-underline-offset: 1.5384615385vw;
  }
}
#top .expertBeautyTips__sliderWrap {
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
#top .expertBeautyTips__sliderWrap .slick-arrow {
  position: absolute;
  top: 86px;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__sliderWrap .slick-arrow {
    top: 34.6153846154vw;
  }
}
#top .expertBeautyTips__sliderWrap .slick-prev {
  left: -9px;
  display: none !important;
}
#top .expertBeautyTips__sliderWrap .slick-next {
  right: -9px;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__sliderWrap .slick-next {
    right: 3.8461538462vw;
  }
}
#top .expertBeautyTips__slider {
  margin: 0 -8px !important;
  display: none;
}
#top .expertBeautyTips__slider.slick-initialized {
  display: block;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__slider {
    margin: 0 !important;
  }
}
#top .expertBeautyTips__card {
  overflow: hidden;
  margin: 0 8px !important;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__card {
    width: 69.2307692308vw !important;
    margin: 0 !important;
    padding-right: 3.8461538462vw;
  }
}
#top .expertBeautyTips__card a {
  text-decoration: none;
  display: block;
  width: 100%;
}
#top .expertBeautyTips__cardThumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
}
#top .expertBeautyTips__cardThumb img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
#top .expertBeautyTips__cardBody {
  padding: 20px 20px 24px;
  border: 1px solid #D9D9D9;
  background: #FFFFFF;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__cardBody {
    padding: 5.3846153846vw 5.1282051282vw;
  }
}
#top .expertBeautyTips__cardTitle {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  height: 6em;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__cardTitle {
    font-size: 3.5897435897vw;
  }
}
#top .expertBeautyTips__cardDate {
  margin-top: 15px;
  font-size: 10px;
  color: #A7A7A7;
  display: block;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__cardDate {
    margin-top: 3.8461538462vw;
    font-size: 2.5641025641vw;
  }
}
#top .expertBeautyTips__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
#top .expertBeautyTips__btn .u-btn {
  max-width: 313px;
}
@media screen and (max-width: 680px) {
  #top .expertBeautyTips__btn .u-btn {
    max-width: 80.2564102564vw;
  }
}
#top {
  /* --------------------------------------------------
    BEAUTY COLUMN セクション
  -------------------------------------------------- */
}
#top .beautyColumn {
  position: relative;
  margin-top: 40px;
  padding: 40px 0;
  background: #F5F5F5;
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn {
    margin-top: 12.8205128205vw;
    padding: 12.8205128205vw 0;
  }
}
#top .beautyColumn::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../../img/beauty_column_decorate.png) no-repeat center center;
  background-size: 100%;
  z-index: 9;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn::after {
    right: auto;
    left: 0;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    width: 20.5128205128vw;
    height: 20.5128205128vw;
  }
}
#top .beautyColumn__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__inner {
    padding-left: 3.8461538462vw;
  }
}
#top .beautyColumn__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#top .beautyColumn__headBlock {
  width: 240px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__headBlock {
    width: 100%;
    display: block;
    margin: 0 0 10.2564102564vw 7.6923076923vw;
  }
}
#top .beautyColumn__ttl {
  width: 220px;
  text-align: right;
}
#top .beautyColumn__ttl img {
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__ttl {
    width: 56.1538461538vw;
    margin-bottom: 0;
    text-align: initial;
  }
}
#top .beautyColumn__contentBlock {
  width: 810px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__contentBlock {
    width: 100%;
    gap: 10.2564102564vw;
  }
}
#top .beautyColumn__category {
  width: 100%;
}
#top .beautyColumn__categoryTtl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__categoryTtl {
    font-size: 5.1282051282vw;
    margin-bottom: 5.1282051282vw;
    margin-left: 2.5641025641vw;
  }
}
#top .beautyColumn__sliderWrap {
  width: 100%;
  position: relative;
}
#top .beautyColumn__sliderWrap .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
#top .beautyColumn__sliderWrap .slick-prev {
  left: -5px;
  display: none !important;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__sliderWrap .slick-prev {
    left: 0;
  }
}
#top .beautyColumn__sliderWrap .slick-next {
  right: -5px;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__sliderWrap .slick-next {
    right: 3.8461538462vw;
  }
}
#top .beautyColumn__slider {
  margin: 0 -10px !important;
  display: none;
}
#top .beautyColumn__slider.slick-initialized {
  display: block;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__slider {
    margin: 0 !important;
  }
}
#top .beautyColumn__card {
  overflow: hidden;
  padding: 0 10px;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__card {
    width: 80.7692307692vw !important;
    margin: 0 !important;
    padding: 0;
    padding-right: 3.8461538462vw;
    border: none;
    background: transparent;
  }
}
#top .beautyColumn__card a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  text-decoration: none;
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__card a {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
  }
}
#top .beautyColumn__cardThumb {
  width: 145px;
  height: 145px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__cardThumb {
    width: 33.3333333333vw;
    height: 33.3333333333vw;
  }
}
#top .beautyColumn__cardThumb img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
#top .beautyColumn__cardBody {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
  border: 1px solid #D9D9D9;
  background-color: #ffffff;
  border-left: none;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__cardBody {
    padding: 2.5641025641vw 5.1282051282vw;
  }
}
#top .beautyColumn__cardTitle {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 4.5em;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__cardTitle {
    font-size: 3.5897435897vw;
    -webkit-line-clamp: 4;
    height: 6em;
  }
}
#top .beautyColumn__cardDate {
  margin-top: 15px;
  font-size: 10px;
  color: #A7A7A7;
  display: block;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__cardDate {
    margin-top: 2.0512820513vw;
    font-size: 2.5641025641vw;
  }
}
#top .beautyColumn__btn {
  width: 100%;
}
#top .beautyColumn__btn .u-btn {
  max-width: 240px;
}
@media screen and (max-width: 680px) {
  #top .beautyColumn__btn .u-btn {
    max-width: 69.2307692308vw;
    margin: 10.2564102564vw auto 0;
  }
}
#top {
  /* --------------------------------------------------
    BEAUTY TIPS セクション
  -------------------------------------------------- */
}
#top .beautyTips {
  position: relative;
  padding: 63px 0 40px;
  background: linear-gradient(293.88deg, rgba(224, 206, 250, 0.2) 19.31%, rgba(251, 179, 181, 0.2) 80.69%);
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .beautyTips {
    padding: 24.1025641026vw 0 11.5384615385vw;
  }
}
#top .beautyTips::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../img/beautytips_decorate.png) no-repeat center center;
  background-size: 100%;
  z-index: 9;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 680px) {
  #top .beautyTips::after {
    width: 30.7692307692vw;
    height: 30.7692307692vw;
  }
}
#top .beautyTips__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#top .beautyTips__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 480px 550px;
  grid-template-columns: 480px 550px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
#top .beautyTips__leftBlock {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__leftBlock {
    padding: 0 3.8461538462vw;
    margin-bottom: 12.8205128205vw;
  }
}
#top .beautyTips__headBlock {
  position: relative;
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__headBlock {
    position: initial;
    padding: 0 7.6923076923vw;
    margin-bottom: 7.6923076923vw;
  }
}
#top .beautyTips__ttl {
  width: 194px;
  margin: 0 0 10px 0;
}
#top .beautyTips__ttl img {
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__ttl {
    width: 32.8205128205vw;
    margin-bottom: 5.1282051282vw;
  }
}
#top .beautyTips__subttl {
  font-size: 14px;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__subttl {
    font-size: 3.5897435897vw;
    line-height: 1.5;
  }
}
#top .beautyTips__illust {
  position: absolute;
  top: -51px;
  right: 0;
  width: 190px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__illust {
    width: 38.4615384615vw;
    top: -1.7948717949vw;
    right: 7.6923076923vw;
  }
}
#top .beautyTips__illust img {
  width: 100%;
  height: auto;
  display: block;
}
#top .beautyTips__rightContent {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
  width: 100%;
  margin-top: 30px;
  min-width: 0;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__rightContent {
    margin-top: 0;
  }
}
#top .beautyTips__sliderWrap {
  width: 100%;
  margin-bottom: 40px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 0;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__sliderWrap {
    padding: 0 3.8461538462vw;
  }
}
#top .beautyTips__sliderWrap .slick-arrow {
  position: absolute;
  top: 86px;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__sliderWrap .slick-arrow {
    width: 7.6923076923vw;
    height: 7.6923076923vw;
    top: 22.0512820513vw;
  }
}
#top .beautyTips__sliderWrap .slick-prev {
  left: -10px;
  display: none !important;
}
#top .beautyTips__sliderWrap .slick-next {
  right: -10px;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__sliderWrap .slick-next {
    right: 0.7692307692vw;
  }
}
@media screen and (max-width: 680px) {
  #top .beautyTips__sliderWrap {
    margin-bottom: 10.2564102564vw;
  }
}
#top .beautyTips__slider {
  margin: 0 -8px !important;
  display: none;
}
#top .beautyTips__slider.slick-initialized {
  display: block;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__slider {
    margin: 0 -2.0512820513vw !important;
  }
}
#top .beautyTips__card {
  overflow: hidden;
  margin: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__card {
    margin: 0 !important;
    padding: 0;
    padding: 0 2.0512820513vw;
    border: none;
    background: transparent;
  }
}
#top .beautyTips__card a {
  display: block;
  width: 100%;
  text-decoration: none;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__card a {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
  }
}
#top .beautyTips__cardThumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
}
#top .beautyTips__cardThumb img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
#top .beautyTips__cardBody {
  padding: 15px 20px 20px;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__cardBody {
    padding: 5.1282051282vw;
  }
}
#top .beautyTips__cardTitle {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px 0;
  font-weight: 300;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  height: 6em;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__cardTitle {
    font-size: 3.5897435897vw;
  }
}
#top .beautyTips__cardDate {
  font-size: 10px;
  color: #A7A7A7;
  display: block;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__cardDate {
    font-size: 2.5641025641vw;
  }
}
#top .beautyTips__staffWrap {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#top .beautyTips__staffWrap #search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
  letter-spacing: normal;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__staffWrap #search {
    gap: 4.1025641026vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 3.8461538462vw;
    padding-right: 3.8461538462vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #top .beautyTips__staffWrap #search::-webkit-scrollbar {
    display: none;
  }
}
#top .beautyTips__staffWrap #search .PersonalBeautyPartner__item {
  width: 83px;
  letter-spacing: normal;
  display: block;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__staffWrap #search .PersonalBeautyPartner__item {
    width: 30.7692307692vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
#top .beautyTips__staffWrap #search .PersonalBeautyPartner__item .group {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  background: transparent;
}
#top .beautyTips__staffWrap #search .PersonalBeautyPartner__item figure {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__staffWrap #search .PersonalBeautyPartner__item figure {
    width: 30.7692307692vw;
    height: 30.7692307692vw;
    margin-bottom: 2.5641025641vw;
  }
}
#top .beautyTips__staffWrap #search .PersonalBeautyPartner__item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top .beautyTips__staffWrap #search .PersonalBeautyPartner__item .name {
  font-size: 14px;
  color: #45443E;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__staffWrap #search .PersonalBeautyPartner__item .name {
    font-size: 3.5897435897vw;
  }
}
#top .beautyTips__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__btn {
    margin-top: 8.9743589744vw;
  }
}
#top .beautyTips__btn .u-btn {
  max-width: 270px;
}
@media screen and (max-width: 680px) {
  #top .beautyTips__btn .u-btn {
    max-width: 69.2307692308vw;
  }
}
#top {
  /* ==========================================
     visumo 10枚表示
  ========================================== */
}
#top .visumoContainer {
  width: 100%;
  overflow: visible !important;
}
#top .visumoContainer .hacobune-gallery,
#top .visumoContainer .hacobune-app-container {
  overflow: visible !important;
}
#top .visumoContainer .hacobune-discovery-card {
  height: 100%;
}
#top .visumoContainer .hacobune-app-container {
  padding: 0 !important;
}
#top .visumoContainer .hacobune-app-container .hacobune-discovery-group {
  -ms-grid-columns: 1fr 4px 1fr 4px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
#top .visumoContainer .hacobune-app-container .hacobune-discovery-list-item {
  margin: 0;
}
#top .visumoContainer .hacobune-app-container .hacobune-discovery-list-item + .hacobune-discovery-list-item {
  margin: 4px 0 0;
}
#top .visumoContainer .hacobune-app-container .hacobune-discovery-group-item.hacobune-discovery-group-item-wide {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
#top .visumoContainer .hacobune-app-container .hacobune-discovery-group-item.hacobune-discovery-group-item-wide .hacobune-discovery-player {
  padding-bottom: 0;
  height: 100%;
}
#top .visumoContainer .hacobune-app-container .hacobune-layout-base .hacobune-logo {
  padding: 0;
  height: 0;
  overflow: hidden;
}
#top .visumoContainer .hacobune-discovery-list-item:nth-child(n+3) {
  display: none !important;
}
#top .visumoContainer .hacobune-infinite-loading {
  display: block !important;
  height: 1px !important;
  margin-top: -1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
#top .visumoContainer .hacobune-logo,
#top .visumoContainer .hacobune-discovery-search,
#top .visumoContainer .hacobune-video-icon {
  display: none !important;
}
#top .section__inner {
  padding: 40px 0;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid #D9D9D9;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240px 40px 720px;
  grid-template-columns: 240px 720px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 40px;
}
@media screen and (max-width: 680px) {
  #top .section__inner {
    display: block;
    padding: 0;
    border-bottom: none;
  }
}
#top .section__inner .u-btn {
  width: 100%;
}
#top .section__leftBlock {
  width: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 680px) {
  #top .section__leftBlock {
    width: 100%;
    display: block;
    text-align: center;
  }
}
#top .section__title {
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 680px) {
  #top .section__title {
    font-size: 5.1282051282vw;
  }
}
#top {
  /* --------------------------------------------------
    MOVIE セクション
  -------------------------------------------------- */
}
#top .beautyVideo {
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .beautyVideo {
    margin-top: 12.8205128205vw;
  }
}
#top .beautyVideo__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 21px 1fr 21px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}
@media screen and (max-width: 680px) {
  #top .beautyVideo__container {
    margin-top: 7.6923076923vw;
    margin-left: 3.8461538462vw;
    display: block;
  }
  #top .beautyVideo__container:not(.slick-initialized) {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    overflow: hidden !important;
  }
  #top .beautyVideo__container:not(.slick-initialized) .beautyVideo__card {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
}
#top .beautyVideo__card {
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .beautyVideo__card {
    width: 38.4615384615vw !important;
    padding-right: 3.8461538462vw;
  }
}
#top .beautyVideo__card a {
  text-decoration: none;
  display: block;
  color: #000;
}
#top .beautyVideo__cardThumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
#top .beautyVideo__cardThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top .beautyVideo__cardBody {
  padding: 20px;
  background-color: #F5F5F5;
  border: 1px solid #E8E8E8;
  border-top: none;
}
@media screen and (max-width: 680px) {
  #top .beautyVideo__cardBody {
    padding: 4.6153846154vw;
  }
}
#top .beautyVideo__cardTitle {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 10px;
  height: 4.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 680px) {
  #top .beautyVideo__cardTitle {
    font-size: 3.5897435897vw;
    margin-bottom: 2.5641025641vw;
    height: 6em;
    -webkit-line-clamp: 4;
  }
}
#top .beautyVideo__cardDate {
  margin: 0;
  font-size: 10px;
  color: #858585;
}
@media screen and (max-width: 680px) {
  #top .beautyVideo__cardDate {
    font-size: 2.5641025641vw;
  }
}
#top .beautyVideo__btn {
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .beautyVideo__btn {
    margin-top: 10.2564102564vw;
  }
  #top .beautyVideo__btn .u-btn {
    margin: auto;
  }
}
#top .beautyVideo .slick-prev {
  display: none !important;
}
@media screen and (max-width: 680px) {
  #top .beautyVideo .slick-next {
    right: 3.8461538462vw;
    top: 6.9230769231vw;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#top {
  /* --------------------------------------------------
    NEWS セクション
  -------------------------------------------------- */
}
@media screen and (max-width: 680px) {
  #top .beautyNews {
    margin-top: 12.8205128205vw;
    padding: 0 3.8461538462vw;
  }
}
#top .beautyNews__btn {
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__btn {
    margin-top: 10.2564102564vw;
  }
  #top .beautyNews__btn .u-btn {
    margin: auto;
  }
}
#top .beautyNews__list {
  list-style: none;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__list {
    margin-top: 7.6923076923vw;
  }
}
#top .beautyNews__item + .beautyNews__item {
  border-top: 1px solid #D9D9D9;
}
#top .beautyNews__item + .beautyNews__item .beautyNews__link {
  padding-top: 30px;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__item + .beautyNews__item .beautyNews__link {
    padding-top: 5.1282051282vw;
  }
}
#top .beautyNews__item:last-child .beautyNews__link {
  padding-bottom: 0;
}
#top .beautyNews__link {
  padding-bottom: 30px;
  text-decoration: none;
  display: block;
  color: #000;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__link {
    padding-bottom: 5.1282051282vw;
  }
}
#top .beautyNews__link[target=_blank] .beautyNews__itemTitle::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  margin-bottom: 2px;
  background: url("../../img/article_linkrightblank_gray.png") no-repeat center;
  background-size: cover;
  vertical-align: middle;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__link[target=_blank] .beautyNews__itemTitle::after {
    width: 3.5897435897vw;
    height: 3.5897435897vw;
    margin-left: 2.0512820513vw;
    margin-bottom: 0.5128205128vw;
  }
}
#top .beautyNews__itemTitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__itemTitle {
    font-size: 3.5897435897vw;
    margin-bottom: 2.5641025641vw;
  }
}
#top .beautyNews__itemBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__itemBody {
    gap: 5.1282051282vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#top .beautyNews__itemThumb {
  width: 130px;
  height: 130px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__itemThumb {
    width: 25.641025641vw;
    height: 25.641025641vw;
  }
}
#top .beautyNews__itemThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top .beautyNews__itemTextWrap {
  padding: 0;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__itemTextWrap {
    padding: 0;
  }
}
#top .beautyNews__itemText {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__itemText {
    font-size: 3.0769230769vw;
    margin-bottom: 2.5641025641vw;
  }
}
#top .beautyNews__itemMeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__itemMeta {
    gap: 2.5641025641vw;
  }
}
#top .beautyNews__itemDate {
  font-size: 10px;
  color: #A7A7A7;
  border-right: 1px solid #D9D9D9;
  padding-right: 10px;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__itemDate {
    padding-right: 2.5641025641vw;
    font-size: 2.5641025641vw;
  }
}
#top .beautyNews__itemLabel {
  font-size: 11px;
  color: #000000;
}
@media screen and (max-width: 680px) {
  #top .beautyNews__itemLabel {
    font-size: 2.8205128205vw;
  }
}
#top {
  /* --------------------------------------------------
    BEAUTY PICKUP セクション
  -------------------------------------------------- */
}
@media screen and (max-width: 680px) {
  #top .beautyPickup {
    margin-top: 12.8205128205vw;
    padding: 0 3.8461538462vw;
  }
}
@media screen and (max-width: 680px) {
  #top .beautyPickup__rightContent {
    margin-top: 7.6923076923vw;
  }
}
#top .beautyPickup__list {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 680px) {
  #top .beautyPickup__list {
    gap: 4.1025641026vw;
    -ms-grid-columns: 1fr 4.1025641026vw 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
#top .beautyPickup__item {
  width: 100%;
}
#top .beautyPickup__link {
  display: block;
  text-decoration: none;
  color: #000;
}
#top .beautyPickup__thumb {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
#top .beautyPickup__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top .beautyPickup__body {
  padding: 20px;
  background-color: #F5F5F5;
  border: 1px solid #E8E8E8;
  border-top: none;
}
@media screen and (max-width: 680px) {
  #top .beautyPickup__body {
    padding: 5.1282051282vw;
  }
}
#top .beautyPickup__text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
  height: 6em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
@media screen and (max-width: 680px) {
  #top .beautyPickup__text {
    font-size: 3.5897435897vw;
    margin-bottom: 2.5641025641vw;
  }
}
#top .beautyPickup__date {
  margin: 0;
  font-size: 10px;
  color: #858585;
}
@media screen and (max-width: 680px) {
  #top .beautyPickup__date {
    font-size: 2.5641025641vw;
  }
}
#top {
  /* --------------------------------------------------
    keywords セクション
  -------------------------------------------------- */
}
@media screen and (max-width: 680px) {
  #top .keywords {
    margin-top: 12.8205128205vw;
  }
}
#top .keywords__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px 0;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid #D9D9D9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  gap: 46px;
}
@media screen and (max-width: 680px) {
  #top .keywords__inner {
    display: block;
    padding: 0 3.8461538462vw;
    border-bottom: none;
  }
}
#top .keywords__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 15px;
}
@media screen and (max-width: 680px) {
  #top .keywords__title {
    font-size: 5.1282051282vw;
    margin-bottom: 2.5641025641vw;
  }
}
#top .keywords__desc {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  margin: 0 0 20px;
}
@media screen and (max-width: 680px) {
  #top .keywords__desc {
    line-height: 1.5;
    font-size: 3.5897435897vw;
    margin-bottom: 6.4102564103vw;
  }
}
#top .keywords__hotWord {
  width: 450px;
}
@media screen and (max-width: 680px) {
  #top .keywords__hotWord {
    width: 100%;
  }
}
#top .keywords__tagList {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 680px) {
  #top .keywords__tagList {
    gap: 2.5641025641vw;
  }
}
#top .keywords__tag {
  display: block;
  padding: 0 20px;
  height: 40px;
  min-height: 40px;
  border-radius: 20px;
  background: #EEEEEE;
  text-decoration: none;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 680px) {
  #top .keywords__tag {
    padding: 0 5.1282051282vw;
    height: 10.2564102564vw;
    border-radius: 5.1282051282vw;
    font-size: 3.5897435897vw;
  }
}
#top .keywords__search {
  width: 360px;
}
@media screen and (max-width: 680px) {
  #top .keywords__search {
    margin-top: 12.8205128205vw;
    width: 100%;
  }
}
#top .keywords__search .mf_finder_searchBox {
  margin: 0;
}
#top {
  /* --------------------------------------------------
  brand セクション
  -------------------------------------------------- */
}
#top .brand {
  padding: 60px 0 0;
}
#top .brand .section__title {
  text-align: center;
}
#top .brand__hr {
  padding: 60px 0 0;
  width: 1100px;
  margin: auto;
  border-bottom: solid 1px #D9D9D9;
}
@media screen and (max-width: 680px) {
  #top .brand__hr {
    display: none;
  }
}
#top .brandSlider-wrapper {
  margin-top: 30px;
  overflow: hidden;
  padding-bottom: 15px;
  margin-bottom: -15px;
}
@media screen and (min-width: 1130px) {
  #top .brandSlider-wrapper {
    margin-left: calc((100vw - 1100px) / 2);
    width: calc(100vw - (100vw - 1100px) / 2);
  }
}
@media screen and (max-width: 1129px) {
  #top .brandSlider-wrapper {
    margin-left: 15px;
    width: 1115px;
  }
}
@media screen and (max-width: 680px) {
  #top .brandSlider-wrapper {
    margin-top: 7.6923076923vw;
    margin-left: 3.8461538462vw;
    width: calc(100vw - 20px);
  }
}
#top .brandSlider-wrapper .slick-prev {
  display: none !important;
}
@media screen and (min-width: 1130px) {
  #top .brandSlider-wrapper .slick-next {
    right: calc((100vw - 1100px) / 2 + 45px);
  }
}
@media screen and (max-width: 1129px) {
  #top .brandSlider-wrapper .slick-next {
    right: 60px;
  }
}
@media screen and (max-width: 680px) {
  #top .brandSlider-wrapper .slick-next {
    right: 3.8461538462vw;
  }
}
#top .brandSlider {
  padding: 0;
  margin: 0;
  width: 100%;
}
#top .brandSlider:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
#top .brandSlider .slick-list {
  overflow: visible !important;
}
@media screen and (max-width: 680px) {
  #top .brandSlider {
    width: calc(100vw - 20px);
  }
}
#top .brandSlider__item {
  width: 130px !important;
  margin-right: 20px !important;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
#top .brandSlider__item:hover {
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}
#top .brandSlider__item:hover a {
  opacity: 1;
}
@media screen and (max-width: 680px) {
  #top .brandSlider__item {
    width: 25.641025641vw !important;
    margin-right: 3.8461538462vw !important;
  }
}
#top .brandSlider__item a, #top .brandSlider__item img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#top .brandSlider__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #ddd;
  aspect-ratio: 1/1;
  background: #fff;
  padding: 15px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#top .brandSlider__item a:hover {
  opacity: 0.7;
}
#top .brandSlider__item img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
#top {
  /* --------------------------------------------------
    usefulContent（お役立ちコンテンツ）セクション
  -------------------------------------------------- */
}
#top .usefulContent {
  padding: 60px 0 0;
  width: 100%;
}
#top .usefulContent__inner {
  padding: 0;
  border: none;
}
#top .usefulContent__btn {
  width: 100%;
}
@media screen and (max-width: 680px) {
  #top .usefulContent__btn {
    margin-top: 9.7435897436vw;
  }
}
#top .usefulContent__btn .u-btn a {
  line-height: 1.3;
}
@media screen and (max-width: 680px) {
  #top .usefulContent__btn .u-btn {
    margin: auto;
    text-align: center;
  }
}
#top .usefulContent__headBlock {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (max-width: 680px) {
  #top .usefulContent__headBlock {
    width: 100%;
  }
}
#top .usefulContent__desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 15px 0 0 0;
}
@media screen and (max-width: 680px) {
  #top .usefulContent__desc {
    font-size: 3.5897435897vw;
    margin-top: 2.5641025641vw;
  }
}
#top .usefulContent__contentBlock {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #top .usefulContent__contentBlock {
    margin-top: 7.6923076923vw;
    padding: 0 3.8461538462vw;
  }
}
#top .usefulContent__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 680px) {
  #top .usefulContent__list {
    -ms-grid-columns: 1fr 4.1025641026vw 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.1025641026vw;
  }
}
#top .usefulContent__item {
  width: 100%;
}
#top .usefulContent__card {
  display: block;
  text-decoration: none !important;
  background: #FFFFFF;
}
#top .usefulContent__cardThumb {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
}
#top .usefulContent__cardThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#top .usefulContent__cardBody {
  padding: 20px 17px;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-top: none;
}
@media screen and (max-width: 680px) {
  #top .usefulContent__cardBody {
    padding: 3.8461538462vw 2.5641025641vw;
  }
}
#top .usefulContent__cardTitle {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}
@media screen and (max-width: 680px) {
  #top .usefulContent__cardTitle {
    font-size: 3.3333333333vw;
  }
}
#top {
  /* --------------------------------------------------
    beautyjourney__sns（公式SNS）セクション
  -------------------------------------------------- */
}
#top .beautyjourney__sns {
  text-align: center;
  margin: 96px 0;
}
@media screen and (max-width: 680px) {
  #top .beautyjourney__sns {
    padding: 0;
    margin: 10.2564102564vw 0 10.5128205128vw;
  }
}
#top .beautyjourney__sns-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 680px) {
  #top .beautyjourney__sns-title {
    font-size: 4.27vw;
    margin-bottom: 6.67vw;
  }
}
#top .beautyjourney__sns ul {
  letter-spacing: -0.5em;
}
#top .beautyjourney__sns ul li {
  display: inline-block;
  letter-spacing: normal;
  margin: 0 13px;
  vertical-align: middle;
}
@media screen and (max-width: 680px) {
  #top .beautyjourney__sns ul li {
    margin: 0 3.47vw;
  }
}
#top {
  /* ==========================================
     記事を探すモーダルエリア
  ========================================== */
}
#top .c-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: 9999;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
#top .c-modal__topBar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, right top, left top, from(#E67A7A), color-stop(40%, #FCC0C0), color-stop(59.5%, #99D3D3), color-stop(80%, #96E0DC), to(#6DD0D0));
  background: linear-gradient(270deg, #E67A7A 0%, #FCC0C0 40%, #99D3D3 59.5%, #96E0DC 80%, #6DD0D0 100%);
  z-index: 11;
  margin-bottom: -4px;
}
@media screen and (max-width: 680px) {
  #top .c-modal__topBar {
    margin-bottom: 0;
  }
}
#top .c-modal__header {
  height: 74px;
  border-bottom: 1px solid #D9D9D9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 40px;
  position: sticky;
  top: 0;
  background: #FFFFFF;
  z-index: 10;
}
@media screen and (max-width: 680px) {
  #top .c-modal__header {
    height: 14.358974359vw;
    padding: 0 5.1282051282vw;
  }
}
#top .c-modal__logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 221px;
}
@media screen and (max-width: 680px) {
  #top .c-modal__logo {
    width: 43.5897435897vw;
  }
}
#top .c-modal__logo img {
  width: 100%;
  height: auto;
}
#top .c-modal__closeBtn {
  background: url(/sw/beautyinfo/common/img/btn_menu_close_pc.svg) no-repeat center center #fff;
  background-size: contain;
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90px;
  height: 19px;
  cursor: pointer;
  border: none;
  padding: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#top .c-modal__closeBtn:hover {
  opacity: 0.7 !important;
}
@media screen and (max-width: 680px) {
  #top .c-modal__closeBtn {
    background-image: url(/sw/beautyinfo/common/img/btn_menu_close.svg);
    right: 6.4102564103vw;
    width: 7.1794871795vw;
    height: 6.4102564103vw;
  }
}
#top .c-modal__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 0px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #top .c-modal__body {
    padding: 7.6923076923vw 3.8461538462vw 30px;
  }
}
@media screen and (max-width: 680px) {
  #top .c-modal.--search .c-modal__body {
    padding: 7.6923076923vw 0 30px;
  }
}
#top .c-modal__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1;
}
@media screen and (max-width: 680px) {
  #top .c-modal__title {
    font-size: 5.1282051282vw;
    margin-bottom: 7.6923076923vw;
  }
}
#top .c-modal__mainGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 680px) {
  #top .c-modal__mainGrid {
    display: block;
  }
}
#top .c-modal__section.--category {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 50px;
  border-left: 1px solid #D9D9D9;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 680px) {
  #top .c-modal__section.--category {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }
}
#top .c-modal {
  /* ------------------------------------------
     大見出し表記エリア（悩みから探す / カテゴリーから探す）
  ------------------------------------------ */
}
#top .c-modal__sectionTtl {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 30px 0;
  line-height: 1;
  border-bottom: none !important;
}
@media screen and (max-width: 680px) {
  #top .c-modal__sectionTtl {
    font-size: 4.1025641026vw;
    margin: 10.2564102564vw 0 5.1282051282vw 0;
    font-weight: bold;
    text-align: center;
    border: none;
    padding: 0;
    background: transparent;
    cursor: default;
    display: block;
  }
}
#top .c-modal__troubleGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 50px;
}
@media screen and (max-width: 680px) {
  #top .c-modal__troubleGrid {
    display: block;
    gap: 0;
    border-top: 1px solid #ececec;
  }
}
#top .c-modal__troubleCol {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#top .c-modal__troubleCol.--vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 680px) {
  #top .c-modal__troubleCol.--vertical {
    gap: 0;
  }
}
@media screen and (max-width: 680px) {
  #top .c-modal__troubleCol {
    width: 100%;
  }
}
#top .c-modal {
  /* ------------------------------------------
     アコーディオン外枠（通常時は白背景の直線システム）
  ------------------------------------------ */
}
@media screen and (max-width: 680px) {
  #top .c-modal__subBlock, #top .c-modal__categorySelectWrap {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ececec;
    border-radius: 0;
    overflow: hidden;
    background: #FFFFFF !important;
    margin-bottom: 0;
    position: relative;
  }
}
#top .c-modal {
  /* ------------------------------------------
     開いた時の親要素の境界線設定（二重border防止）
  ------------------------------------------ */
}
@media screen and (max-width: 680px) {
  #top .c-modal__subBlock.--open .c-modal__subTtl,
  #top .c-modal__subBlock.--open .c-modal__categorySelectTtl, #top .c-modal__categorySelectWrap.--open .c-modal__subTtl,
  #top .c-modal__categorySelectWrap.--open .c-modal__categorySelectTtl, #top .c-modal__section.--category.--open #top .c-modal__categorySelectWrap .c-modal__subTtl,
  #top .c-modal__section.--category.--open #top .c-modal__categorySelectWrap .c-modal__categorySelectTtl {
    border-bottom: 1px solid #ececec !important;
  }
}
@media screen and (max-width: 680px) {
  #top .c-modal__subTtl.--open, #top .c-modal__categorySelectTtl.--open {
    border-bottom: 1px solid #ececec !important;
  }
}
#top .c-modal {
  /* ------------------------------------------
     マイナスアイコン（ー）への切り替え
  ------------------------------------------ */
}
@media screen and (max-width: 680px) {
  #top .c-modal__subBlock.--open .c-modal__subTtl::after, #top .c-modal__categorySelectWrap.--open .c-modal__categorySelectTtl::after, #top .c-modal__subTtl.--open::after, #top .c-modal__categorySelectTtl.--open::after, #top .c-modal__section.--category.--open .c-modal__categorySelectTtl::after {
    background-image: url(../img/icon_minus.png) !important;
    background-size: 13px !important;
    content: "" !important;
    display: block !important;
  }
}
#top .c-modal {
  /* ------------------------------------------
     アコーディオン親ボタン
  ------------------------------------------ */
}
#top .c-modal__subTtl, #top .c-modal__categorySelectTtl {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 20px 0;
  line-height: 1;
}
@media screen and (max-width: 680px) {
  #top .c-modal__subTtl, #top .c-modal__categorySelectTtl {
    margin: 0;
    font-size: 4.1025641026vw;
    font-weight: normal;
    padding: 5.1282051282vw 6.4102564103vw;
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    background: #FFFFFF;
    position: relative;
    color: #434343;
    border-bottom: none;
  }
  #top .c-modal__subTtl::after, #top .c-modal__categorySelectTtl::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/icon_plus.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 6.4102564103vw;
    -webkit-transform: translateY(-50%) !important;
            transform: translateY(-50%) !important;
    -webkit-transition: none;
    transition: none;
  }
}
@media screen and (max-width: 680px) {
  #top .c-modal__categorySelectTtl {
    border-top: 1px solid #ececec;
  }
}
#top .c-modal {
  /* ------------------------------------------
     （悩み・カテゴリー共通グラデーション）
  ------------------------------------------ */
}
#top .c-modal__linkList, #top .c-modal__linkList.js-modalCategoryTarget, #top .c-modal__linkList.js-modalSubAccordionTarget, #top .c-modal__categoryList, #top .c-modal__categoryList.js-modalCategoryTarget, #top .c-modal__categoryList.js-modalSubAccordionTarget {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 680px) {
  #top .c-modal__linkList, #top .c-modal__linkList.js-modalCategoryTarget, #top .c-modal__linkList.js-modalSubAccordionTarget, #top .c-modal__categoryList, #top .c-modal__categoryList.js-modalCategoryTarget, #top .c-modal__categoryList.js-modalSubAccordionTarget {
    display: none;
    padding: 0 3.8461538462vw;
    margin: 0;
    border-top: none;
    background: linear-gradient(253.08deg, rgba(252, 192, 192, 0.2) 26.68%, rgba(153, 211, 211, 0.2) 63.99%, rgba(150, 224, 220, 0.2) 73.32%) !important;
  }
}
#top .c-modal__linkList li, #top .c-modal__categoryList li {
  margin-bottom: 9px;
}
@media screen and (max-width: 680px) {
  #top .c-modal__linkList li, #top .c-modal__categoryList li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid #ececec;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: transparent;
    display: block;
  }
}
@media screen and (max-width: 680px) {
  #top .c-modal__linkList li:last-child, #top .c-modal__categoryList li:last-child {
    border-bottom: none !important;
  }
}
#top .c-modal__linkList a, #top .c-modal__categoryList a {
  font-size: 14px;
  color: #000000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-underline-offset: 3px;
  text-decoration: underline;
}
#top .c-modal__linkList a:hover, #top .c-modal__categoryList a:hover {
  opacity: 1;
  text-decoration-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 680px) {
  #top .c-modal__linkList a, #top .c-modal__categoryList a {
    display: block;
    padding: 5.1282051282vw 3.8461538462vw;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 3.5897435897vw;
    color: #444444;
    text-decoration: none;
    position: relative;
    background: transparent;
  }
}
#top .c-modal__linkList a::after, #top .c-modal__categoryList a::after {
  content: "";
  display: block;
  width: 6.2px;
  height: 6.2px;
  border-top: 0.88px solid #000000;
  border-right: 0.88px solid #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 680px) {
  #top .c-modal__linkList a::after, #top .c-modal__categoryList a::after {
    width: 1.7948717949vw;
    height: 1.7948717949vw;
    border-top-width: 1px;
    border-right-width: 1px;
    position: absolute;
    right: 3.3333333333vw;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
#top .c-modal__border {
  border: none;
  border-top: 1px solid #D9D9D9;
  margin: 40px 0;
}
@media screen and (max-width: 680px) {
  #top .c-modal__border {
    display: none;
  }
}
#top .c-modal__keywordSection {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #top .c-modal__keywordSection {
    margin-top: 10.2564102564vw;
    padding: 0 3.8461538462vw;
  }
}
#top .c-modal__keywordMainTtl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 680px) {
  #top .c-modal__keywordMainTtl {
    font-size: 4.1025641026vw;
    margin-bottom: 5.1282051282vw;
  }
}
#top .c-modal__keywordGrid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 680px) {
  #top .c-modal__keywordGrid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10.2564102564vw;
  }
}
#top .c-modal__keywordGrid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  background: #D9D9D9;
}
@media screen and (max-width: 680px) {
  #top .c-modal__keywordGrid::after {
    display: none;
  }
}
#top .c-modal__searchBoxBlock {
  width: 325px;
}
@media screen and (max-width: 680px) {
  #top .c-modal__searchBoxBlock {
    width: 100%;
  }
}
#top .c-modal__searchDesc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 680px) {
  #top .c-modal__searchDesc {
    font-size: 3.5897435897vw;
  }
}
#top .c-modal .mf_finder_searchBox {
  margin: 20px 0;
}
#top .c-modal .mf_finder_searchBox_query_input:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: #C7C7C7 !important;
}
#top .c-modal__hotWordBlock {
  width: 325px;
}
@media screen and (max-width: 680px) {
  #top .c-modal__hotWordBlock {
    width: 100%;
  }
}
#top .c-modal__tagList {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 680px) {
  #top .c-modal__tagList {
    gap: 2.5641025641vw;
  }
}
#top .c-modal__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: initial;
  padding: 0 20px;
  height: 40px;
  border-radius: 20px;
  background: #EEEEEE;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#top .c-modal__tag:hover {
  opacity: 0.7 !important;
}
@media screen and (max-width: 680px) {
  #top .c-modal__tag {
    padding: 0 5.1282051282vw;
    height: 10.2564102564vw;
    border-radius: 5.1282051282vw;
    font-size: 3.5897435897vw;
  }
}
#top .c-modal__footer {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 680px) {
  #top .c-modal__footer {
    margin-top: 7.6923076923vw;
  }
}
#top .c-modal__bottomCloseBtn {
  width: 270px;
  height: 62px;
  border: 1px solid #000000;
  background: #FFFFFF;
  border-radius: 31px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#top .c-modal__bottomCloseBtn:hover {
  opacity: 0.7 !important;
}
@media screen and (max-width: 680px) {
  #top .c-modal__bottomCloseBtn {
    width: 69.2307692308vw;
    height: 15.8974358974vw;
    border-radius: 7.9487179487vw;
    font-size: 3.5897435897vw;
  }
}
#top .c-modal__bottomCloseBtn::before {
  content: "";
  display: inline-block;
  width: 17.5px;
  height: 10px;
  background: url(../../img/close-icon.svg) no-repeat center center !important;
  background-size: contain;
  margin-right: 8px;
}
@media screen and (max-width: 680px) {
  #top .c-modal__bottomCloseBtn::before {
    width: 4.4871794872vw;
    height: 2.5641025641vw;
    margin-right: 2.0512820513vw !important;
  }
}
#top {
  /* ==========================================
     💡 美容コラムモーダルエリア
  ========================================== */
}
#top .c-modal__columnGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 680px) {
  #top .c-modal__columnGrid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3.8461538462vw;
  }
}
#top .c-modal__columnItem {
  width: 100%;
}
#top .c-modal__columnItem a {
  display: block;
  width: 100%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#top .c-modal__columnItem a:hover {
  opacity: 0.7 !important;
}
#top .c-modal__columnItem img {
  width: 100%;
  height: auto;
  display: block;
}
/*# sourceMappingURL=top.css.map */