@charset "utf-8";

:root {
  --bg-color: #f5f5f5;
  --red: #E62E2E;
  --gray_01: #ececec;
  --br: 5px;
  --brown: #7b0c00;
  --gray: #D5D5D5;
  --bg: #7b0c00;
  --mizu: #58C2F5;
  --blue: #0089CB;
  --pink: #E62E77;
  --fcolor: #404040;
  --purple: #812DC1;
  --bg1: #f9f8f2;
  --bg2: #fffcf3;
  --family: "Lato", "Noto Sans JP", sans-serif;
  --border: 1px solid #E6E6E6;
  --regu: 400;
  --medi: 500;
  --semi: 600;
  --bold: 700;
}


.bg1 {
  background-color: var(--bg1);
}

.bg2 {
  background-color: var(--bg2);
}

.mizu {
  color: var(--mizu);
}

.blue {
  color: var(--blue);
}

.pink {
  color: var(--pink);
}

.purple {
  color: var(--purple);
}

.tac {
  text-align: center;
}

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

.Flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.jus {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.juc {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.alc {
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

body {
  font-family: var(--family);
  color: var(--fcolor);
  font-weight: var(--regu);
  background-color: var(--bg1);
}

html {
  scroll-behavior: smooth;
}


button {
  font-family: var(--family);
  font-weight: var(--regu);
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.mtb10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.mtb20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mb10 {
  margin-bottom: 30px;
}

.mtb30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.bg-black {
  background-color: #000;
}

.white {
  color: #fff;
}


.sp {
  display: none;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  width: 1200px;
}

.st-wrap {
  padding: 80px 0;
}

.pb0 {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .l-inner {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
  }
}

#wrapper {
  background-color: transparent;
}

/****************
header
****************/
.header_area .l-inner {
  max-width: 100%;
}

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

/* 上部バー */
.c-header-top {
  padding: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 14px;
  text-align: center;
}

.c-header-top__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.c-header-top__right a {
  position: relative;
  color: var(--fcolor);
  line-height: 1.28;
}

.c-header-top__right a + a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 1em;
  background-color: var(--fcolor);
}

/* ロゴ・アカウント・電話部分 */
.c-header-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.c-header-logo {
  width: 600px;
}

.c-header-logo__catch {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--blue);
  line-height: 1;
  width: 100%;
  font-weight: var(--regu);
}

.c-header-logo__mark {
  width: 293px;
}

.c-header-free-shipping {
  padding: 12px 8px;
  background: var(--bg2);
  color: var(--pink);
  font-size: 18px;
  font-weight: var(--bold);
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1;
  border-radius: var(--br);
}

.c-header-right {
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 16px;
}

.c-header-account {
  gap: 16px;
  font-size: 16px;
  width: 220px;
}

.c-header-account a {
  padding-left: 20px;
  display: block;
  color: var(--blue);
  background-position: center left;
  background-repeat: no-repeat;
  font-weight: var(--bold);
}

@media screen and (min-width: 769px) {
  .c-header-account a:nth-child(1) {
    background-image: url(../img/icon_user.png);
    background-size: 10px 11px;
  }

  .c-header-account a:nth-child(2) {
    background-image: url(../img/icon_history.png);
    background-size: 16px 16px;
  }

  .c-header-account a:nth-child(3) {
    background-image: url(../img/icon_heart.png);
    background-size: 13px 11px;
  }

  .c-header-account a:nth-child(4) {
    background-image: url(../img/icon_cart.png);
    background-size: 12px 12px;
  }
}

.c-header-tel {
  font-size: 14px;
  color: var(--blue);
  line-height: 1.5;
}

.c-header-tel__number {
  margin-bottom: 5px;
  font-size: 32px;
  line-height: 1;
  font-weight: var(--bold);
  color: var(--blue);
}

/* ナビゲーションバー */
.c-global-nav {
  margin: 20px 0 74px 0;
  background: var(--mizu);
}

.c-global-nav__inner {
  margin: 0 auto;
  padding: 0 10px;
}

.c-global-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.c-global-nav__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  text-align: center;
}

.c-global-nav__link {
  padding: 12px 6px;
  font-size: 16px;
  letter-spacing: .1em;
  font-weight: var(--bold);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
}

.c-global-nav__link span {
  color: #ffffff;
}

.c-global-nav__link:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* メガメニューの親に position: relative */
.c-mega-menu {
  position: relative;
}

@media screen and (min-width: 769px) {
  .c-mega-menu > a span:after {
    margin-left: 7px;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: .8em;
  }

  .c-mega-menu > a span:hover:after {
    content: "\f106";
  }

  .c-global-nav__item {
    position: relative;
  }

  .c-global-nav__item:not(:last-child):after {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 18px;
  }
}

/* メニュー（子）初期状態は非表示に */
.c-mega-menu .p-category__list {
  padding: 20px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #fff;
  transition: .3s;
  visibility: hidden;
  opacity: 0;

}

/* ホバー時に表示 */
.c-mega-menu:hover .p-category__list {
  visibility: visible;
  opacity: 1;
}

.c-mega-menu .p-category-item {
  width: 173px;
}

.c-mega-menu .p-category-item__thumb {
  margin-bottom: 5px;
  width: 100px;
  height: 100px;
}

.c-mega-menu .p-category-item__name {
  font-size: 14px;
}

.c-mega-menu .p-category__list {
  gap: 10px 24px;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 96px;
  }

  .c-header-right.pc,
  .c-header-top.pc {
    display: none;
  }

  .l-header {
    padding: 10px 15px;
    position: fixed;
    z-index: 149;
    left: 0;
    top: 0;
    width: 100%;
    height: 96px;
  }

  .c-header-logo {
    width: 200px;
  }

  #header-nav {
    position: relative;
    width: 40px;
    height: 40px;
  }

  .c-header-logo__catch {
    margin-bottom: 5px;
    font-size: 10px;
    line-height: 1.4;
  }

  .c-header-logo__mark {
    width: 100%;
  }

  #hNav ul#header-nav li#header-nav-drawer {
    border: none;
    right: 15px;
    top: 25px;
    width: 40px;
    z-index: 150;
  }

  #header-nav-drawer span,
  #header-nav-drawer span::before,
  #header-nav-drawer span::after {
    width: 100%;
    height: 3px;
    background: var(--blue);
    border-radius: 3px;
    left: auto;
    right: 0;
  }

  #header-nav-drawer:after {
    content: "MENU";
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    color: var(--blue);
    font-size: 13px;
    font-weight: var(--bold);
    letter-spacing: .01em;
  }

  #sub-column.spsDrawerOpen {
    padding: 100px 0;
    width: 100%;
    right: -100%;

  }

  .c-header-tel.sp {
    margin: 24px 0;
  }

  .c-header-account a {
    padding: 24px 0;
    display: block;
    width: 100%;
    border-top: 1px solid var(--blue);
  }

  .c-header-account {
    background: none;
    width: 100%;
  }

  .c-header-account a span {
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: center left;
  }

  .c-header-account a:nth-child(1) span {
    background-image: url(../img/icon_user.png);
    background-size: 10px 11px;
  }

  .c-header-account a:nth-child(2) span {
    background-image: url(../img/icon_history.png);
    background-size: 16px 16px;
  }

  .c-header-account a:nth-child(3) span {
    background-image: url(../img/icon_heart.png);
    background-size: 13px 11px;
  }

  .c-header-account a:nth-child(4) span {
    background-image: url(../img/icon_cart.png);
    background-size: 12px 12px;
  }

  .c-global-nav__item {
    width: 100%;
    border-left: none;
    border-bottom: 1px solid #fff;
  }

  .c-global-nav__list {
    display: block;
  }

  .is-hidden {
    display: none;
  }

  .c-global-nav__item-sp {
    margin: 20px;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: var(--br);
  }

  .p-sp-menu-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .c-global-nav__item a {
    display: block;
    width: 100%;
  }

  .c-global-nav__link {
    padding: 24px 6px;
  }

  #js-toggle--contents a {
    color: var(--blue);
    font-size: 14px;
    display: block;
    text-align: left;
  }

  #js-toggle--contents li:not(:last-child) {
    margin-bottom: 1em;
  }

  .c-global-nav__link-cl span:after {
    margin-left: 7px;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: .8em;
  }

  .c-global-nav__link-cl.is-open span:after {
    content: "\f106";
  }

  .d-menu-list a {
    padding: 24px 6px;
    display: block;
    text-align: center;
  }

  .d-menu-list a:not(:last-child) {
    border-bottom: var(--border);
  }

  .c-global-nav {
    margin: 0;
  }

}

/****************
top-slider
****************/
.p-slider {
  width: 100%;
  margin: 0 auto;
}

.js-slider {
  padding-right: 30px;
  /* 右にチラ見せ */
  padding-left: 30px;
  /* 左にチラ見せ */
}

.swiper-slide {
  background: #fff;
  overflow: hidden;
  border-radius: 12px;
}

.swiper-slide img {
  width: 100%;
  display: block;
}

.swiper-pagination {
  margin-top: 20px;
  position: static;

}

.swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  background: var(--gray);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--mizu);
}

@media screen and (max-width: 768px) {
  .js-slider {
    margin-top: 40px;
    padding-right: 0;
    padding-left: 0;
  }
}

/****************
商品別に探す
****************/
.p-category {
  text-align: center;
}

.c-title-en {
  margin-bottom: 14px;
  font-size: 20px;
  color: var(--blue);
  font-weight: var(--bold);
  text-align: center;
}

#main-column h2.c-title-ja,
.c-title-ja {
  padding: 0;
  margin-bottom: 32px;
  font-size: 28px;
  font-weight: var(--bold);
  color: var(--blue);
  line-height: 1.5;
  text-align: center;
}

.p-category__list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 27px 24px;
  justify-items: center;
}


.p-category-item {
  width: 180px;
}

.p-category-item__link {
  display: block;
  text-align: center;
  color: var(--blue);
}

.p-category-item__thumb {
  width: 180px;
  height: 180px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.p-category-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.p-category-item__name {
  font-size: 18px;
  line-height: 1.5;
  word-break: keep-all;
  font-weight: var(--bold);
  color: var(--blue);
}

.p-category-item__name span {
  display: block;
}

.p-category-item__link:hover .p-category-item__name {
  text-decoration: underline;
}

.freeAreaTitle {
  padding: 0;
  margin-bottom: 32px;
  font-size: 28px;
  font-weight: var(--bold);
  color: var(--blue);
  text-align: center;
}

@media screen and (max-width: 768px) {

  #main-column h2.c-title-ja,
  .c-title-ja {
    font-size: 26px;
  }

  .p-category__list {
    padding-left: 15px;
    padding-right: 15px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
  }


  .p-category-item__link {
    display: block;
    text-align: center;
    color: var(--blue);
  }

  .p-category-item__link:hover {
    -webkit-tap-highlight-color: transparent !important;
    outline: none;
    background: none;
    text-decoration: none;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent !important;
  }

  .p-category-item__link .p-category-item__name {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: none;
  }


  .p-category-item {
    width: 100%;
    /* カラム幅にフィットさせる */
  }

  .st-cat-wrap .p-category__list {
    padding-left: 0;
    padding-right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    justify-items: stretch;
    gap: 20px;
  }

  .st-cat-wrap .p-category-item {
    width: calc(50% - 10px);
  }

  .p-category-item__thumb {
    width: 100%;
    height: 100%;
  }

  .p-category-item__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
  }


  .freeAreaTitle {
    padding: 0;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: var(--bold);
    color: var(--blue);
    text-align: center;
  }

  #main-column {
    overflow-x: hidden;
  }

}

/****************
News
****************/
.st-news .l-inner {
  padding: 80px 112px;
  border-radius: var(--br);
}

.p-news-wrap {
  margin-bottom: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--blue);
  line-height: 1.5;
  font-size: 18px;
}

.c-btn1 a {
  padding: 17px 0;
  margin: 0 auto;
  display: block;
  width: 283px;
  color: #fff;
  background-color: var(--mizu);
  line-height: 1;
  font-size: 14px;
  font-weight: var(--bold);
  letter-spacing: .1em;
  position: relative;
  text-align: center;
  border-radius: var(--br);
}

.c-btn1 i {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-news-wrap dl {
  padding: 30px 0;
}

.p-news-wrap dl:first-child {
  padding-top: 0;
}

.p-news-wrap dt {
  margin-bottom: 4px;
  font-size: 14px;
}

.p-news-wrap dl:not(:last-child) {
  border-bottom: 2px dotted var(--mizu);
}

@media screen and (max-width: 768px) {
  .st-news {
    padding-bottom: 0;
  }

  .st-news .l-inner {
    padding: 80px 32px;
    border-bottom-left-radius: none;
    border-bottom-right-radius: none;
  }
}

/****************
About アンティアンについて 
****************/

.p-about__photo {
  width: 640px;
  height: 100%;
  overflow: hidden;
}

.p-about__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

/* 右：テキスト */
.p-about__body {
  padding-left: 40px;
  width: calc(100% - 640px);
}

.p-about__text {
  margin-bottom: 1.5em;
  font-size: 16px;
  line-height: 1.5;
  color: var(--fcolor);
}

.p-about .c-title-en,
#main-column .p-about h2.c-title-ja {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .p-about {
    padding-top: 0;
  }

  .p-about__photo {
    width: 100%;
  }

  .p-about__body {
    padding: 30px 30px 0 30px;
    width: 100%;
  }

  .p-about .c-title-en,
  #main-column .p-about h2.c-title-ja {
    text-align: center;
  }
}

/****************
Search（商品を探す）
****************/

.p-search {
  text-align: center;
}

#main-column h2.p-search__title {
  padding: 0;
  margin-bottom: 23px;
  color: var(--blue);
  font-weight: var(--bold);
  font-size: 20px;
}

.p-search .l-inner {
  padding: 65px 90px;
  border-radius: var(--br);
}

.p-search__title {
  font-size: 22px;
  font-weight: var(--bold);
  margin-bottom: 25px;
  color: var(--blue);
}

.p-search__form > .Flex {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.p-search__input {
  padding: 8px 12px;
  width: 304px;
  border: var(--border);
  border-radius: var(--br);
  height: 48px;
  line-height: 48px;
}

.p-search__btn {
  background: var(--mizu);
  border-radius: var(--br);
  cursor: pointer;
  border: none;
  width: 114px;
  height: 48px;
  line-height: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.p-search__btn img {
  width: 53px;
}

.p-search__desc {
  margin: 25px 0 10px 0;
  gap: 12px 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.p-search__desc + .p-search__desc {
  margin-top: 0;
}

.p-search__desc a {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fcolor);
}

.p-search__desc li a:after {
  margin: 0 8px;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: .8em;
}

.p-search__hot {
  padding-bottom: 20px;
  margin-bottom: 20px;
  gap: 8px;
  border-bottom: var(--border);
}

.p-search__hot-label {
  margin-right: 8px;
  font-size: 14px;
  color: var(--blue);
  font-weight: var(--bold);
}

.p-search__tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 18px;
  border-radius: 20px;
  border: var(--border);
  color: var(--fcolor);
}

.p-search__sub-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: var(--bold);
  color: var(--blue);
}

.p-search__tag-wrap {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 10px;
}

.p-search__tag-wrap a {
  background-color: #EAEAEA;
  border-color: #A0A0A0;
  color: #505050;
  font-weight: var(--bold);
}

.p-search__tag-wrap a:nth-child(1) {
  background-color: #EBD8EC;
  border-color: #C9A4C5;
  color: #791456;
}

.p-search__tag-wrap a:nth-child(2) {
  background-color: #E2E1FF;
  border-color: #9794E8;
  color: #5F51B8;
}

.p-search__tag-wrap a:nth-child(3) {
  background-color: #FBF2D5;
  border-color: #E4CB69;
  color: #BF8130;
}

.p-search__tag-wrap a:nth-child(4) {
  background-color: #FFCDDC;
  border-color: #FF9CC7;
  color: #D62B75;
}

.p-search__tag-wrap a:nth-child(5) {
  background-color: #FFE7E7;
  border-color: #CB7373;
  color: #E54F4F;
}

.p-search__tag-wrap a:nth-child(6) {
  background-color: #D9F1E3;
  border-color: #1C9257;
  color: #76B716;
}

@media screen and (max-width: 768px) {
  .p-search {
    padding-top: 0;
  }

  .p-search .l-inner {
    padding: 80px 16px;
  }

  .p-search__form > .Flex {
    gap: 4px;
  }

  .p-search__input {
    width: 65%;
  }

  .p-search__btn {
    width: calc(35% - 5px);
  }

  .p-search__desc {
    margin: 25px 0;
    gap: 24px 0;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .p-search__hot {
    padding-bottom: 20px;
    margin-bottom: 20px;
    gap: 8px;
    border-bottom: var(--border);
  }

  .p-search__hot-label {
    margin-right: 0;
    width: 100%;
  }

  .p-search__tag {
    display: inline-block;
    padding: 6px 16px;
  }

  .p-search__sub-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: var(--bold);
    color: var(--blue);
  }

  .p-search__tag-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 10px;
  }
}

/****************
バナー
****************/
.p-bnr_01 {
  padding-top: 0;
}

.p-bnr_01 ul {
  gap: 24px 0;
}

@media screen and (min-width: 769px) {
  .p-bnr_01 li:not(.w100) {
    width: 49%;
  }
}

@media screen and (max-width: 768px) {
  .p-bnr_01 {
    padding-left: 15px;
    padding-right: 15px;
  }

}

/****************
バナー2
****************/

.p-bnr_02 ul {
  gap: 24px 0;
}

.p-bnr_02 ul li {
  border-radius: 20px;
  overflow: hidden;
}


@media screen and (max-width: 768px) {

  .p-bnr_02 ul li {
    border-radius: 10px;
  }
}

/****************
Choice（迷ったらこれです）
****************/
.p-choice__item:not(:last-child) {
  margin-bottom: 8px;
}

.p-choice a {
  display: block;
}

.p--catch {
  margin-top: 8px;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: var(--fcolor);
}

@media screen and (max-width: 768px) {
  .p-choice {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-choice__item {
    margin-bottom: 16px;
  }

}

/****************
Recommend（おすすめ商品のご紹介）
****************/

.p-recommend__list {
  gap: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.p-recommend__item {
  width: calc(33.333% - 20px);
  transition: opacity .3s;
}

.p-recommend__item:hover {
  opacity: .85;
}


@media screen and (max-width: 768px) {
  .p-recommend {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-recommend__item {
    width: 100%;
  }

}

/****************
ランキング
****************/

.p-tabs__nav {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

.p-tabs__nav-item {
  margin-right: 8px;
  margin-bottom: 6px;
}

.p-tabs__btn {
  display: inline-block;
  padding: 12px 16px;
  font-size: 18px;
  border-radius: 20px;
  line-height: 1;
  border: 1px solid transparent;
  color: var(--blue);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.p-tabs__btn.is-active {
  background: #ffffff;
  border-color: var(--mizu);
  font-weight: var(--bold);
}

.p-tabs__panel {
  display: none;
}

.p-tabs__panel.is-active {
  display: block;
}

.p-tabs .swiper-slide {
  background-color: transparent;
  border-radius: 0;
}

.p-tabs .swiper-slide img {
  margin-bottom: 15px;
  border-radius: var(--br);
  aspect-ratio: 554 / 414;
  -o-object-fit: cover;
  object-fit: cover;
  border: var(--border);
}

.p-tabs .swiper-slide .selling_price {
  margin-top: 15px;
  text-align: right;
  display: block;
  font-size: 16px;
  color: var(--red) !important;
}

/* PCはSwiper無効化風レイアウト */
@media (min-width: 769px) {
  .p-tabs .swiper-wrapper {
    margin-bottom: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }

  .p-tabs .swiper-slide {
    margin-right: 16px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc(25% - 20px);
  }


}

.p-tabs .c-btn1 {
  margin-top: 30px;
}

/* スマホはSwiperを有効にして2枚表示・2枚目見切れ */
@media (max-width: 768px) {
  .p-tabs .swiper-slide {
    width: 70%;
    /* 2枚目が少し見切れる */
  }

  .p-tabs__nav {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-tabs__panel {
    padding-left: 15px;
  }

  .p-tabs .c-btn1 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {}

/****************
Skincare（季節のおすすめスキンケア）
****************/
@media screen and (min-width: 769px) {
  .p-skincare__steps .swiper-wrapper {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
  }
}

.p-skincare__item {
  width: calc(25% - 20px);
  text-align: left;
  background-color: transparent;
}

.p-skincare__step {
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 20px;
  border-bottom: 2px dotted var(--mizu);
  font-weight: var(--bold);
}

.p-skincare__step span {
  color: var(--blue);
  margin-left: 4px;
}

.p-skincare__img {
  margin-bottom: 15px;
}

.p-skincare__name {
  font-size: 16px;
  font-weight: var(--bold);
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1.5;
}

.p-skincare__text {
  font-size: 16px;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {

  .p-skincare__steps {
    padding-right: 16px;
  }

  .p-skincare__item {
    width: auto;
    /* スライド幅は中身に応じて */
  }

  .p-skincare__steps {
    padding-left: 15px;
  }

  .p-skincare__item {
    background-color: transparent;
  }
}

/****************
newItem
****************/

.newItem {
  background-color: var(--bg2);
  width: 100%;
}

#main-column .newItem h2 {
  padding: 0;
  margin-bottom: 32px;
  font-size: 28px;
  font-weight: var(--bold);
  color: var(--blue);
  line-height: 1.5;
  text-align: center;
  font-family: var(--family) !important;
  line-height: 1;
}

#main-column .newItem h2:before {
  content: "NewArrivals";
  margin-bottom: 14px;
  font-size: 20px;
  color: var(--blue);
  font-weight: var(--bold);
  text-align: center;
  display: block;
}

#main-column .newItem {
  padding: 80px 0 0 0;
  margin: 0 auto !important;
}

.newItem .column-set {
  margin: 0 auto;
  width: 1200px;
}

.item-list-span-img img {
  aspect-ratio: 277/207;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--br);
  border: var(--border);
}

p.price span.selling_price,
p.price span.taxin {
  font-size: 16px;
  color: var(--red) !important;
}

.column4 h3,
.column5 h3 {
  font-size: 16px;
  color: var(--fcolor);
}

.newItem .column4 {
  float: left;
  width: 23.5%;
  margin: 0 2% 20px 0;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.c-btn1.bg2 {
  padding-top: 32px;
  padding-bottom: 80px;
}

.newItem .column4:nth-child(4n+1) {
  clear: none;
}

.newItem .column4 {
  padding: 0 8px;
  margin: 0;
}

/* ドット全体の配置 */
.slick-dots {
  text-align: center;
  padding-top: 20px;
}

/* ドットの基本スタイル */
.newItem .slick-dots li {
  display: inline-block;
  margin: 0 4px;
}

.newItem .slick-dots li button {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: none;
  padding: 0;
  font-size: 0;
  /* テキストを非表示 */
  transition: background 0.3s ease;
  background-color: var(--gray);
}

/* アクティブ状態（現在のドット） */
.newItem .slick-dots li.slick-active button {
  background: var(--mizu);
  /* 明るいブルー */
}

@media screen and (max-width: 768px) {
  .newItem .column-set {
    padding-left: 7px;
    width: 100%;
  }

  .newItem .column4:nth-child(2n+1),
  .newItem .column5:nth-child(2n+1) {
    clear: none;
  }

  .newItem .slick-list {
    overflow: hidden;
    padding-left: 10px;
    /* 適切に調整して、左の切れを防ぐ */
  }

  .newItem .slick-list {
    padding: 0 30% 0 0 !important;
  }
}

/****************
Pickup 会員様限定
****************/

.p-pickup__label {
  font-size: 14px;
  color: var(--blue);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.p-pickup__title {
  font-size: 24px;
  font-weight: var(--bold);
  color: var(--blue);
  line-height: 1.6;
  margin-bottom: 40px;
}

.p-pickup__title span {
  display: block;
}

.p-pickup__list {
  gap: 2%;
}

.p-pickup-item {
  width: 49%;
}

.p-pickup-item__link {
  display: block;
}

@media screen and (max-width: 768px) {

  .p-pickup__list {
    padding-left: 15px;
    padding-right: 15px;
    gap: 24px 0;
  }

  .p-pickup-item {
    width: 100%;
  }
}

/****************
media
****************/
.p-media .l-inner {
  padding: 80px 114px;
  border-radius: var(--br);
}

.p-media__sub {
  padding: 16px 0;
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: var(--bold);
  color: var(--blue);
  text-align: center;
  border-top: dotted 2px var(--blue);
  border-bottom: dotted 2px var(--blue);
  letter-spacing: .1em;
}

.p-media-tv {
  margin-bottom: 32px;
  gap: 16px 0;
  text-align: center;
}

.p-media-tv__item {
  width: 49%;
}

.p-media-tv__logo {
  margin-bottom: 8px;
  text-align: center;
  display: block;
}

.p-media-tv__logo img {
  width: auto;
  max-width: 200px;
}

.p-media-tv__title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: var(--bold);
  color: var(--blue);
  line-height: 1.5;
}

.p-media-tv__text {
  font-size: 16px;
  line-height: 1.8;
}

.p-media__divider {
  border: none;
  border-top: 1px solid #e0e7f2;
  margin: 26px auto 20px;
  max-width: 90%;
}

/* ▼ 雑誌 Swiper */
.p-media-swiper .swiper-slide {
  width: 120px;
}

.p-media-swiper img {
  width: 100%;
  display: block;
  aspect-ratio: 182 / 249;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-media-swiper {
  margin-bottom: 32px;
}

.p-media-swiper .swiper-slide {
  border-radius: 0;
}

@media screen and (max-width: 768px) {
  .p-media .l-inner {
    padding: 80px 0;
  }

  .p-media__sub {
    margin: 0 15px 32px 15px;
  }

  .p-media-tv {
    padding-left: 15px;
    padding-right: 15px;
    gap: 32px 0;
  }

  .p-media-tv__item {
    margin: 0 15px;
    padding: 0 0 32px 0;
    width: calc(100% - 30px);
    border-bottom: dotted 2px var(--blue);
  }

  .p-media-tv__item:last-child {
    border-bottom: 0;
  }

  .p-media-tv__logo {
    margin-bottom: 8px;
  }

  .p-media-tv__title {
    margin-bottom: 8px;
  }

  .p-media-tv__text {
    text-align: left;
  }


  /* ▼ 雑誌 Swiper */
  .p-media-swiper {
    overflow: visible;
    /* 見切れ表示OKにする */
  }

}

/****************
review
****************/

.p-review .l-inner {
  padding: 80px 113px;
  border-radius: var(--br);
}

#main-column h2.c-title-ja.bb {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--blue);
}

.p-review-item {
  padding: 18px 10px 18px;
  border-top: var(--border);
}

.p-review-item:first-of-type {
  border-top: none;
}

.p-review-item__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  margin-bottom: 6px;
}

.p-review-item__rate {
  color: #FF9400;
  font-size: 16px;
}

.p-review-item__rate-label {
  margin-right: 4px;
  font-weight: var(--bold);
}

.p-review-item__rate-stars {
  font-size: 18px;
}

.p-review-item__meta {
  font-size: 16px;
  color: var(--fcolor);
}

.p-review-item__name {
  margin-left: 8px;
  color: var(--fcolor);
}

.p-review-item__product {
  margin-bottom: 8px;
  line-height: 1.7;
}

.p-review-item__product a {
  margin: 10px 0;
  color: var(--blue);
  display: block;
}

.p-review-item__body {
  line-height: 1.8;
}

.p-review__btn-wrap {
  text-align: center;
  margin-top: 26px;
}

#main-column .p-review h2.c-title-ja.bb {
  border-bottom: dotted 2px var(--blue);
}

@media screen and (max-width: 768px) {
  .p-review .l-inner {
    padding: 80px 15px;
  }

  .p-review-item {
    padding: 18px 10px 18px;
    border-top: var(--border);
  }

  .p-review-item__head {
    margin-bottom: 6px;
    display: block;
  }

  .p-review-item__name {
    margin: 10px 0;
    display: block;
    width: 100%;
  }

}

/****************
reason
****************/

.p-reason__head {
  text-align: center;
  margin-bottom: 40px;
}


/* 上段4つの理由 */
.p-reason-list {
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 32px;
}

@media (max-width: 960px) {
  .p-reason-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}

@media (max-width: 768px) {
  .p-reason-list {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

.p-reason-item {
  text-align: left;
  font-size: 20px;
}

.p-reason-item__circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: #e4e7eb;
  /* 画像を使う場合は background-image に変更 */
  background-size: cover;
  background-position: center;
}

.p-reason-item__title {
  padding-left: 1.5em;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: var(--bold);
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 8px;
  border-bottom: 2px dotted var(--blue);
  padding-bottom: 4px;
  height: 3em;
  position: relative;
}

.p-reason-item__num {
  font-weight: var(--bold);
  color: var(--fcolor);
  position: absolute;
  left: 0;
  top: 0;
}

.p-reason-item__text {
  line-height: 1.8;
  font-size: 16px;
}



@media screen and (max-width: 768px) {

  .p-reason-item {
    padding-left: 48px;
    padding-right: 48px;
  }

  .p-reason-item__title {
    padding-bottom: 16px;
    margin: 16px 0;
    height: auto;
  }


}

/****************
FAQ
****************/
.p-faq-column {}

/* Q&A部分 */
.p-faq-item {
  margin-bottom: 18px;
}

.p-faq {
  margin-bottom: 30px;
}

.p-faq-item__q {
  margin-bottom: 16px;
  padding-bottom: 16px;
  padding-left: 1.2em;
  font-weight: var(--bold);
  color: var(--blue);
  text-indent: -1em;
  font-size: 20px;
  letter-spacing: .1em;
  line-height: 1.3;
  border-bottom: 2px dotted var(--mizu);
}

.p-faq-item__q::before {
  content: "Q ";
}

.p-faq-item__a {
  line-height: 1.9;
  font-size: 16px;
}

.p-faq-column__btn-wrap {
  text-align: center;
  margin: 20px 0 30px;
}

.p-faq-column__divider {
  margin: 80px 0 0;
  display: block;
  border: none;
}

@media screen and (max-width: 768px) {
  .p-faq {
    padding-left: 17px;
    padding-right: 17px;
  }
}

/****************
column
****************
  /* コラム部分 */
.p-faq-column .l-inner {
  padding: 80px 112px;
  border-radius: var(--br);
}

.p-column-list {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 18px;
}

.p-column-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  text-decoration: none;
  color: inherit;
}

.p-column-item__thumb {
  overflow: hidden;
  width: 30%;
}

.p-column-item__thumb img {
  width: 100%;
  border: var(--border);
  border-radius: 8px;
  aspect-ratio: 120 / 90;
  display: block;
}

.p-column-item__body {
  padding: 0 10px 6px 10px;
  width: 70%;
}

.p-column-item__date {
  font-size: 12px;
  color: #999;
  margin-bottom: 2px;
}

.p-column-item__title {
  font-size: 18px;
  font-weight: var(--bold);
  color: var(--blue);
  margin-bottom: 4px;
  line-height: 1.5;
}

.p-column-item:hover {
  background: #f7fbff;
  border-color: #cddcf3;
}

.p-column__btn-wrap {
  text-align: center;
}

@media screen and (max-width: 768px) {

  .p-faq-column .l-inner {
    padding: 80px 15px;
  }

  .p-column-list {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }

  .p-column-item__body {
    padding: 0 10px 6px 10px;
    width: 70%;
  }

}

/****************
footer
****************/
footer {
  padding: 128px 0;
  background-color: #fff;
}


/* 上部２バナー */
.p-store-banner {
  gap: 24px;
  margin-bottom: 30px;
}

.p-store-banner__item a {
  display: block;
  width: 384px;
}

.p-store__left .c-title-en,
.p-store__left .c-title-ja {
  text-align: left;
}

.p-store__left .c-title-en,
.p-store__left .c-title-ja {
  margin-bottom: 10px;
}

.p-store__flex {
  margin: 80px 0;
  gap: 36px;
}

.p-store__left {
  width: 48%;
  font-size: 16px;
  line-height: 1.25;
}

.p-store__photo {
  margin-bottom: 16px;
}

.p-store__photo img {
  width: 100%;
  display: block;
}

.kome {
  margin: 10px 0 15px;
  padding-left: 1.2em;
  text-indent: -1em;
  color: #FF430C;
  font-size: 14px;
  line-height: 1.42;
}

.p-store__right {
  width: 48%;
}

.p-store__map iframe,
.p-store__map img {
  width: 100%;
  height: 476px;
  border: 0;
  display: block;
}

/* 上段フッターナビ */
.p-footer-nav-top {
  margin: 0 auto 80px auto;
  text-align: center;
  font-size: 16px;
}

.p-footer-nav-top a {
  color: var(--blue);
  text-decoration: none;
  margin: 0 4px;
}

.p-footer-nav-top a::after {
  content: "|";
  margin-left: 10px;
  color: var(--blue);
}

.p-footer-nav-top a:last-child::after {
  content: "";
}

/* 商品一覧＆インフォメーションの２カラム */
.p-footer-links {
  margin: 0 auto;
  width: 900px;
}

.p-footer-links__block-title {
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
  border-bottom: 1px solid var(--blue);
}

.p-footer-links__block1 .Flex {
  gap: 10px 20px;
}

.p-footer-links__block1 {
  width: 560px;
}

.p-footer-links__block2 {
  width: 250px;
}

.p-footer-links__block2 .Flex {
  gap: 10px;
}

.p-footer-links__block1 li {
  width: calc(50% - 20px);
}

.p-footer-links__block2 li {
  width: 100%;
}

.p-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-footer-links li {
  margin-bottom: 3px;
}

.p-footer-links a {
  padding-left: 1em;
  color: var(--blue);
  text-decoration: none;
  position: relative;
  display: block;
}

.p-footer-links a::before {
  margin-right: 4px;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: .8em;
  position: absolute;
  left: 0;
  top: 0;
}


/* ロゴ＋電話 */
.p-footer-bottom {
  margin-top: 80px;
  text-align: center;
  font-size: 12px;
  color: var(--blue);
}

.c-footer-logo__catch {
  color: var(--blue);
}

.p-footer-bottom__logo img {
  margin: 10px auto 20px auto;
  max-width: 279px;
  height: auto;
  display: block;
}

.p-footer-bottom__tel {
  margin: 0 0 10px 0;
  font-size: 36px;
  color: var(--blue);
  font-weight: var(--bold);
  line-height: 1.2;
}

#page-top a {
  background-color: var(--mizu);
}

#page-top a::before {
  content: "\f106";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  line-height: 39px;
}

#page-top a:hover {
  background-image: none;
  opacity: .7;
}

a:hover {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 80px 15px;
  }


  /* 上部２バナー */
  .p-store-banner {
    gap: 16px;
    margin-bottom: 80px;
  }

  .p-store-banner__item a {
    width: 100%;
  }

  .p-store__flex {
    margin: 80px 0;
    gap: 36px;
  }

  .p-store__left {
    width: 100%;
  }

  .p-store__right {
    width: 100%;
  }

  .p-store__map iframe,
  .p-store__map img {
    height: 260px;
  }


  /* 商品一覧＆インフォメーションの２カラム */
  .p-footer-links {
    margin: 0 auto;
    width: 100%;
  }

  .p-footer-links__block-title {
    font-size: 20px;
  }

  .p-footer-links__block1 {
    width: 100%;
  }

  .p-footer-links__block2 {
    width: 100%;
  }


}

/****************
category page
****************/
#main-column h2.c-title-ja.bb2 {
  border-bottom: 2px solid var(--blue);
}

.p-cat-main-img {
  margin-bottom: 45px;
  border-radius: 8px;
}

.p-cat-lead {
  color: var(--blue);
  font-size: 16px;
  line-height: 1.5;
}

.font18 {
  font-size: 18px;
}

.font20 {
  font-size: 20px;
}

.font21 {
  font-size: 21px;
}

.font22 {
  font-size: 22px;
}

.font23 {
  font-size: 23px;
}

.font24 {
  font-size: 24px;
}

.font25 {
  font-size: 25px;
}

.font26 {
  font-size: 26px;
}

.font27 {
  font-size: 27px;
}

.font28 {
  font-size: 28px;
}

.font29 {
  font-size: 29px;
}

.font30 {
  font-size: 30px;
}

.bold {
  font-weight: var(--bold);
}

.p-cat-sub-ttl_01 {
  margin: 16px 0 32px 0;
  padding: 20px 5px;
  color: var(--blue);
  line-height: 1.5;
  text-align: center;
  font-size: 28px;
  border-top: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
}

.p-cat-sub-ttl_01 span {
  padding-bottom: .5em;
  display: block;
  font-size: 18px;
}

.p-cat-sub-ttl_02 {
  margin: 32px 0 16px 0;
  padding: 25px;
  background-color: var(--blue);
  color: #fff;
  font-size: 24px;
  border-radius: var(--br);
  line-height: 1.2;
}

.p-cat-sub-ttl_02 span {
  padding-bottom: .5em;
  display: block;
  font-size: 16px;
}

.p-cat-sub-ttl_03 {
  margin: 16px 0;
  padding: 10px 0;
  color: var(--blue);
  line-height: 1.5;
  font-size: 18px;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
}

.p-cat-inner {
  padding-left: 30px;
  padding-right: 30px;
}

.p-cat-txt_01 {
  line-height: 1.5;
}

.st-cat-wrap {
  margin-top: 30px;
  margin-bottom: 30px;
}

.st-cat-wrap.bg-white {
  padding: 30px 60px;
  border-radius: var(--br);
}

.c-cat-title-01 {
  padding-bottom: 20px;
  margin-bottom: 24px;
  text-align: center;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  line-height: 1.2;
}

.c-cat-title-01 span {
  display: block;
}

.p-cat-check li {
  padding: 0 0 0 20px;
  position: relative;
  background-image: url(../img/cat/shampoo/icon_check.png);
  background-repeat: no-repeat;
  background-position: top 4px left;
  background-size: 16px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: var(--bold);
}

.p-cat-check li:not(:last-child) {
  margin-bottom: 1em;
}

.p-cat-number {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.p-cat-number li {
  padding: 1em 1em 1em 2em;
  counter-increment: item;
  position: relative;
  font-size: 18px;
  color: var(--blue);
  font-weight: var(--bold);
  line-height: 1.5;
}

.p-cat-number li:not(:last-child) {
  border-bottom: 2px dotted var(--mizu);
}

.p-cat-number li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: var(--blue);
  /* 数字だけ色変更 */
  font-size: 20px;
}

.p-cat-img {
  margin-bottom: 24px;
  border-radius: var(--br);
  width: 100%;
  height: auto;
}

.c-cat-title-02 {
  margin-bottom: 32px;
  padding: 15px;
  text-align: center;
  border-top: 2px dotted var(--blue);
  border-bottom: 2px dotted var(--blue);
  color: var(--blue);
  line-height: 1.5;
}

.p-cat-nomal li {
  margin-left: 1em;
  list-style: outside;
  font-size: 16px;
  line-height: 1.5;
}

.p-cat-nomal li:not(:last-child) {
  margin-bottom: 1em;
}

.p-cat-txt_03 {
  line-height: 2;
}

.p-review.st-cat-bottom-wrap .bg-white,
.p-cat-howto,
.p-faq-column.st-cat-bottom-wrap {
  padding: 80px 90px;
}

.st-cat-bottom-wrap {
  margin: 4px 0;
  border-radius: var(--br);
}

.p-review.st-cat-bottom-wrap .c-title-ja.bb {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--blue);
}

.p-review-cat-ttl {
  padding: 12px 20px;
  background-color: #EBF8FF;
  color: var(--blue);
  font-weight: var(--bold);
  font-size: 18px;
  border-radius: var(--br);
  line-height: 1.5;
}

.p-review.st-cat-bottom-wrap .p-review-item__rate-label {
  color: var(--blue);
}

.p-review.st-cat-bottom-wrap .p-review-item:not(:first-of-type) {
  border-top: 2px dotted var(--mizu);
}

.p-review.st-cat-bottom-wrap .p-review-item h5 {
  color: var(--pink);
  line-height: 1.5;
}

.p-review.st-cat-bottom-wrap .p-review-item {
  padding-left: 0;
  padding-right: 0;
}

.p-cat-howto .c-cat-title-01 {
  line-height: 1.5;
}

.p-cat-howto .p-cat-number li {
  color: var(--fcolor);
  font-weight: var(--regu);
}

.p-cat-howto .p-cat-number li::before {
  font-weight: var(--bold);
}

.p-cat-txt_02 {
  line-height: 2;
  font-weight: var(--bold);
}

.bb {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--blue);
}

.p-category.st-cat-wrap {
  margin-bottom: 50px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-column.p-catpage-colmn {
  margin-top: 50px;
}

.p-catpage-colmn .p-column-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px 10px;
}

.p-catpage-colmn .p-column-list .p-column-item {
  width: 100%;
}

.p-catpage-colmn .p-column-item__thumb {
  width: 120px;
}

.p-catpage-colmn .p-column-item__body {
  width: calc(100% - 120px);
}

.p-catpage-colmn .c-btn1 {
  margin-left: auto;
  margin-right: auto;
}

.expl input[type=button] {
  padding: 10px;
  margin: 0 0 10px 0;
  width: 100%;
  background-color: var(--mizu);
  font-size: 16px;
  height: auto;
  white-space: initial;
}

.expl {
  margin: 0 0 20px 0;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  background: #fff;
}

#itemList .column4 .sps-wishAddItem img,
#itemList .column5 .sps-wishAddItem img,
#itemList .column4 .sps-wishAddItemOk img,
#itemList .column5 .sps-wishAddItemOk img {
  margin: 10px 0;
  width: 100%;
}

#sub-column h2 {
  padding-bottom: 24px;
  font-family: var(--family);
  color: var(--blue);
  background-color: transparent;
  font-size: 26px;
  border-bottom: 2px solid var(--blue);
}

#sub-column .c-title-en {
  margin-bottom: 10px;
  text-align: left;
}

#sub-column .group nav ul li,
#sub-column .category nav ul li,
#sub-column .link nav ul li {
  background-image: none;
  border-bottom: 2px dotted var(--blue);
  background-color: transparent;
}

#sub-column .group nav ul li a,
#sub-column .category nav ul li a,
#sub-column .link nav ul li a {
  padding: 20px 0;
  color: var(--blue);
  font-weight: var(--bold);
  font-size: 18px;
}

#sub-column .group nav ul li a::after,
#sub-column .category nav ul li a::after,
#sub-column .link nav ul li a::after {
  content: none;
}

#sub-column .category nav ul li.listcat2 a {
  color: var(--blue);
}

.st-sub-colmn {
  margin-top: 50px;
}

.st-sub-colmn p {
  line-height: 1.5;
  font-size: 16px;
}

.st-sub-colmn h3 {
  margin: 30px 0;
  line-height: 1.5;
  font-size: 20px;
  color: var(--blue);
}

#sub-column .c-btn1 a {
  max-width: 100%;
}

.link h2 {
  display: none;
}

#sub-column .group nav ul li:first-child,
#sub-column .category nav ul li:first-child,
#sub-column .link nav ul li:first-child {
  border-top: none;
}

article #itemList_wrap #itemList h1 {
  padding: 0;
  margin-bottom: 32px;
  font-family: var(--family);
  font-size: 28px;
  color: var(--blue);
  letter-spacing: 0;
  text-align: center;
}

article #itemList_wrap #itemList h1:before {
  margin-bottom: 14px;
  content: "Lineup";
  display: block;
  font-size: 20px;
  color: var(--blue);
  font-weight: var(--bold);
}

.st-cat-wrap a {
  text-decoration: underline;
}

.p-tabs.st-cat-wrap a,
.p-category.st-cat-wrap a,
.p-recommend.st-cat-wrap a {
  text-decoration: none;
}

.st-cat-wrap a.blue {
  color: var(--blue);
}

.st-cat-wrap a.pink {
  color: var(--pink);
}

@media screen and (min-width: 769px) {
  .p-cat-lead {
    text-align: center;
  }

  .p-category.st-cat-wrap .p-category__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 27px 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-cat-main-img {
    margin-bottom: 20px;
  }

  .p-cat-sub-ttl_01 {
    margin: 16px 0;
    padding: 10px 5px;
    font-size: 20px;
  }

  .p-cat-sub-ttl_01 span {
    padding-bottom: .2em;
  }

  .p-cat-sub-ttl_02 {
    margin: 16px 0;
    padding: 15px;
    font-size: 22px;
  }

  .p-cat-sub-ttl_02 span {
    padding-bottom: .2em;
  }

  .p-cat-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .st-cat-wrap.bg-white {
    padding: 30px 15px;
  }

  .c-cat-title-02 {
    margin-bottom: 16px;
  }

  .p-review.st-cat-bottom-wrap .bg-white,
  .p-cat-howto,
  .p-faq-column.st-cat-bottom-wrap {
    padding: 40px 15px;
  }

  .p-review.st-cat-bottom-wrap .c-title-ja.bb {
    padding-bottom: 15px;
  }

  .p-review-cat-ttl {
    padding: 12px 10px;
    font-size: 16px;
  }

  .st-cat-wrap .bb {
    padding-bottom: 15px;
  }

  .expl-fixed {
    max-width: 100%;
    box-sizing: border-box;
    position: static;
    border: 1px solid #ccc;
    border-radius: var(--br);
  }

  .l-link {
    padding-top: 100px;
    margin-top: -100px;
    display: block;
  }

  .leftSearch {
    margin: 0 15px 15px 15px;
    padding: 0 15px;
  }

  .st-sub-colmn,
  #sub-column .link {
    padding-left: 15px;
    margin-right: 15px;
  }
}

/****************
お試しセット
****************/
.bg_pink {
  background-color: var(--pink);
}

.p-cat-bg * {
  color: #fff;
}

.p-cat-logo {
  margin: 0 auto;
  width: 173px;
  display: block;
}

.p-cat-bg {
  padding: 30px;
  border-radius: var(--br);
}

.p-cat-bg-ttl_01 {
  font-size: 24px;
  letter-spacing: .1em;
  font-weight: var(--bold);
}

.p-cat-bg-ttl_01:after {
  margin: 1em auto;
  content: "";
  display: block;
  width: 720px;
  max-width: 100%;
  height: 1px;
  background: #fff;
}

.p-cat-reco-ttl {
  padding: 1em;
  margin: 0 auto -35px auto;
  font-size: 24px;
  text-align: center;
  font-weight: var(--bold);
  color: #fff;
  background-color: var(--blue);
  border-top-left-radius: var(--br);
  border-top-right-radius: var(--br);
  position: relative;
  z-index: 2;
}

.p-cat-inner2 {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

@media screen and (max-width: 768px) {
  .p-cat-bg {
    padding: 15px;
  }

  .p-cat-bg-ttl_01 {
    font-size: 20px;
    letter-spacing: .05em;
  }

  .p-cat-bg-ttl_01 + p {
    text-align: left;
  }
}

/****************
クイーンシリーズ
****************/
.p-cat-logo-img {
  margin: 0 auto 20px auto;
  display: block;
  width: 257px;
}

.p-cat-sub-ttl_04 {
  padding-bottom: .8em;
  margin-top: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
}

.l-movie iframe {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  width: 425px;
}

.p-cat-sub-ttl_01 span.pb0 {
  margin-bottom: -.2em;
}

.p-faq-item__q a {
  text-decoration: underline;
  color: var(--blue);
}

.p-faq-item__a a {
  text-decoration: underline;
  font-weight: var(--bold);
}

.p-cat-number_1 {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.p-cat-number_1 li {
  padding: .5em 1em .5em 1.2em;
  counter-increment: item;
  position: relative;
  line-height: 1.5;
}

.p-cat-number_1 li::before {
  content: counter(item, decimal);
  position: absolute;
  left: 0;
  color: var(--blue);
  /* 数字だけ色変更 */
  font-size: 20px;
  font-weight: var(--bold);
}

@media screen and (max-width: 768px) {}

/****************
スーパーササボン
****************/
.p-cat-itemlist-link-wrap {
  margin-bottom: 40px;
  gap: 20px 4%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  line-height: 1.5;
}

.p-cat-itemlist-link {
  width: 30%;
  text-align: center;
}

.st-cat-wrap .p-cat-itemlist-link a {
  text-decoration: none;
  color: var(--blue);
  font-weight: var(--bold);
}

.p-cat-itemlist-link span {
  display: block;
}

.p-cat-itemlist-txt_01 {
  margin: 15px 0 10px 0;
}

.p-cat-itemlist-link figure,
.p-cat-itemlist-link img {
  overflow: hidden;
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-cat-itemlist-link figure {
  padding: 5px;
  background-color: #fff;
  border: 1px solid #707070;

}

@media screen and (max-width: 768px) {
  .p-cat-itemlist-link-wrap {
    gap: 20px 2%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .p-cat-itemlist-link {
    width: 49%;
  }

  .p-cat-itemlist-txt_01 {
    margin: 15px 0 10px 0;
    font-size: 13px;
  }

}

/****************
化粧水
****************/
.p-review-more-link {
  padding-top: 20px;
  border-top: 2px dotted var(--mizu);
}

.p-review-more-link li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}

.p-review-more-link li:not(:last-child) {
  margin-bottom: 10px;
}

.p-review-more-link li:before {
  content: "※";
}

.p-review-more-link li a {
  text-decoration: underline;
  color: var(--blue);
}

@media screen and (max-width: 768px) {}

/****************
保湿オイル
****************/
.p-skincare_oil_about_wrap a {
  text-decoration: none;
}

.p-skincare_oil_about_wrap a > span {
  display: block;
}

.p-skincare_oil_about_wrap {
  padding-bottom: 40px;
  padding-left: 100px;
  background-repeat: no-repeat;
  background-position: left top -10px;
  background-size: 100px;
}

.p-skincare_oil_about_01 {
  background-image: url(../img/cat/oil/bg_la.png);
}

.p-skincare_oil_about_02 {
  background-image: url(../img/cat/oil/bg_rose.png);
}

.p-skincare_oil_about_03 {
  background-image: url(../img/cat/oil/bg_tsubaki.png);
}

.p-skincare_oil_about_04 {
  background-image: url(../img/cat/oil/bg_la.png);
}

.p-skincare_oil_about_05 {
  background-image: url(../img/cat/oil/bg_honey.png);
}

a.blue {
  color: var(--blue);
}

@media screen and (max-width: 768px) {
  #main-column .p-cosmeoil-ripcream h2.c-title-ja {
    font-size: 20px;
  }

  #main-column .p-cosmeoil-ripcream h2.c-title-ja .font22 {
    font-size: 18px;
  }

  #main-column .p-cosmeoil-ripcream h2.c-title-ja .font18 {
    font-size: 16px;
  }

  .p-cosmeoil-ripcream .c-cat-title-01.font28 {
    font-size: 22px;
  }

  .p-skincare_oil_about_wrap {
    padding-left: 70px;
    background-position: left top -10px;
    background-size: 70px;
  }
}

/****************
調整
****************/
@media screen and (max-width: 768px) {

  object,
  embed {
    width: 100%;
  }
}

/**カート**/
div.cart-article p {
  color: var(--blue);
  font-size: 110%;
}

body#EST_SPS_cart {
  background: #fff;
}
#to-cart a img{
  display: block;
}
#to-cart a::before{
  content: none;
}