@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================
  カラー変数
=================================*/
/*===============================
  フォント変数
=================================*/
/* font-family */
/* font-weight */
/* 行間削除 */
/*===============================
  Bootstrap icon変数
=================================*/
:root {
  /* カラー */
  --color-text: #555;
  --color-white: #fff;
  --color-main: #a6e4e4;
  --color-accent: #b7d543;
  --color-border: #bfbfbf;
  --color-bg-gray: #f3f1f1;
  --color-bg-sky: #ddeef1;
  --grad-blue-green: linear-gradient(to right, #a6e4e4, #b7d543);
  /* font-family */
  --font-family-shippori: "Shippori Mincho B1", serif;
  --font-family-libre: "Libre Baskerville", serif;
  --font-family-icon: "bootstrap-icons";
  /* font-weight */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 4.8rem;
    --font-size-h2: 4rem;
    --font-size-h3: 3.2rem;
    --font-size-h4: 2.6rem;
    --font-size-h5: 2.2rem;
    --font-size-h6: 1.8rem;
    --font-size-base: 1.5rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.2rem;
    /* line-height */
    --line-height-h1: 1;
    --line-height-h2: 1;
    --line-height-h3: 1.25;
    --line-height-h4: 1.5384616;
    --line-height-h5: 1;
    --line-height-h6: 1.5;
    --line-height-base: 2;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.6666667;
    /* letter-spacing */
    --letter-spacing-base: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 3.8em;
    --font-size-h2: 3em;
    --font-size-h3: 2.4em;
    --font-size-h4: 2em;
    --font-size-h5: 1.6em;
    --font-size-h6: 1.2em;
    --font-size-base: 1em;
    --font-size-sm: 0.8em;
    --font-size-xs: 0.666667em;
    /* line-height */
    --line-height-title: 1.5;
    --line-height-base: 2;
    --line-height-sm: 1.5;
    --line-height-xs: 2;
    /* letter-spacing */
    --letter-spacing-base: 0.06em;
  }
}
/*===============================================
  切り替え用
===============================================*/
.pc-none {
  display: none !important;
}

a[href^="tel:"] {
  pointer-events: none;
}

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  font-size: var(--font-size-base);
  padding-top: 3em;
}
.pagenation li {
  width: 36px;
  line-height: 40px;
  margin: 5px 4px 0;
}

/*===============================================
  詳細ページ前後
===============================================*/
.paginated__list {
  margin-top: 3em;
}
.paginated__link {
  letter-spacing: var(--letter-spacing-base);
}
.paginated__link--prev::before {
  margin-right: 1em;
}
.paginated__link--next::after {
  margin-left: 1em;
}

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 1200px;
  font-size: var(--font-size-base);
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(20px, 6.6666666667vw, 30px) clamp(16px, 5.3333333333vw, 24px) 0 clamp(30px, 8.8888888889vw, 40px);
}
#header .header__logo {
  height: clamp(30px, 2.1354166667vw, 41px);
}
#header .header__logo img {
  height: 100%;
  aspect-ratio: 249/41;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
/*===============================================
  footer
===============================================*/
#footer {
  padding: clamp(100px, 7.7922077922vw, 120px) 0 50px;
}
#footer .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 1080px;
}
#footer .footer__logo {
  margin-bottom: 50px;
}
#footer .footer__logo img {
  height: 41px;
  aspect-ratio: 249/41;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
#footer .footer__links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 30px;
}
#footer .footer__link::before {
  font-size: 2em;
  width: 1em;
  margin-right: 20px;
}
#footer .footer__link--mail::before {
  margin-block: -0.1em;
}
#footer .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  border-top: solid 1px var(--color-border);
  padding-top: 30px;
  margin-top: 60px;
}
#footer .footer__shop {
  line-height: var(--line-height-base);
  margin-bottom: calc((1em - 1lh) / 2);
}
#footer .footer__shop::after {
  margin-left: 10px;
}

/*フッターナビ
-----------------------------*/
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  gap: 30px 70px;
  line-height: var(--line-height-base);
  margin-block: calc((1em - 1lh) / 2);
}
.footer-nav__item:has(.dropdown-menu) {
  grid-row: span 4;
}
.footer-nav .dropdown-menu__list {
  padding-top: 5px;
}
.footer-nav .dropdown-menu__item {
  margin-bottom: 10px;
}
.footer-nav .dropdown-menu__item:last-of-type {
  margin-bottom: 0;
}
.footer-nav .dropdown-menu__link::before {
  content: "-";
  margin-right: 0.25em;
}

/*コピーライト
-----------------------------*/
.copy {
  font-size: var(--font-size-xs);
}

/*===============================================
  fixed固定
===============================================*/
/*サイドボタン
-----------------------------*/
#side {
  flex-direction: column;
  width: 120px;
  height: 120px;
  font-size: var(--font-size-base);
  row-gap: 1em;
  bottom: 30px;
  right: 20px;
  border-radius: 50px 50px 0 0;
}
#side::before {
  font-size: 2em;
}
#side > span {
  text-align: center;
  letter-spacing: 0.08em;
}
#side > span .br {
  display: inline-block;
}
@media screen and (max-width: 1650px) {
  #side {
    width: 60px;
    height: 200px;
    border-radius: 3px;
  }
  #side::before {
    font-size: 1.6em;
  }
  #side > span {
    writing-mode: vertical-rl;
    max-height: auto;
    text-orientation: mixed;
  }
}
@media screen and (max-width: 1650px) and (max-width: 767px) {
  #side > span {
    writing-mode: horizontal-tb;
    max-height: inherit;
  }
}
@media screen and (max-width: 1650px) {
  #side > span .br {
    margin-top: 0.5em;
  }
}

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  height: clamp(616px, 48.125vw, 924px);
  padding-top: 20px;
}
.visual__main::after {
  content: "";
  width: 43.59375%;
  min-width: 533px;
  max-width: 837px;
  aspect-ratio: 837/870;
  background: url(../img/visual/mv_img-pc.png) no-repeat center/contain;
  position: absolute;
  right: max(50% - 820px, clamp(88px, 7.34375vw, 141px) - 1px);
  bottom: 0;
  z-index: -1;
}
.visual__main-box {
  row-gap: clamp(40px, 3.125vw, 60px);
  margin-left: max(50% - 711px, 12.96875%);
}
@media screen and (max-width: 1280px) {
  .visual__main-box {
    margin-left: clamp(110px, 75vw - 794px, 166px);
  }
}
.visual__main-catch {
  font-size: clamp(2.8rem, 2.0833333333vw, 4rem);
  line-height: 1.75;
}
.visual__main-catch > span {
  letter-spacing: 0.15em;
  margin-right: -0.65em;
}
.visual__main-catch .min {
  font-size: 0.9em;
  line-height: 1;
}
.visual__main-logo {
  width: 100%;
  row-gap: clamp(17px, 1.3020833333vw, 25px);
}
.visual__main-logo p {
  font-size: clamp(1.8rem, 1.3541666667vw, 2.6rem);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.visual__main-logo img {
  width: 100%;
  height: clamp(36px, 2.8125vw, 54px);
  -o-object-fit: contain;
     object-fit: contain;
  background: linear-gradient(to right, #0b4237, #0b4237) no-repeat left clamp(6px, 0.4166666667vw, 8px) center/clamp(40px, 3.125vw, 60px) 1px, linear-gradient(to left, #0b4237, #0b4237) no-repeat right clamp(6px, 0.4166666667vw, 8px) center/clamp(40px, 3.125vw, 60px) 1px;
}

/*サブビジュアル
-----------------------------*/
.visual__sub::after {
  height: clamp(300px, 23.4375vw, 450px);
}
.visual__sub-box {
  width: calc(100% - 120px);
  max-width: 1280px;
  padding: calc(60px + clamp(48px, 3.75vw, 72px)) 0 clamp(30px, 2.0833333333vw, 40px);
  row-gap: clamp(20px, 1.5625vw, 30px);
}
.visual__sub-catch {
  font-size: clamp(3rem, 2.0833333333vw, 4rem);
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  グローバルナビ
===============================================*/
.gnav {
  font-size: clamp(1.4rem, 1.0135135135vw, 1.5rem);
}
.gnav__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -moz-column-gap: 2em;
       column-gap: 2em;
}
.gnav__item {
  line-height: 2;
}
.gnav__item:has(.dropdown-menu):hover .dropdown-menu__list {
  max-height: 15em;
  padding-block: 1.4em;
}
.gnav__link {
  display: block;
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.gnav__link:not(.nolink):hover {
  color: var(--color-border);
}
.gnav__link:not(.nolink).current {
  color: color-mix(in srgb, var(--color-main), var(--color-text) 25%);
}
.gnav .dropdown-menu {
  cursor: pointer;
  position: relative;
}
.gnav .dropdown-menu::after {
  content: "\f4fe";
  display: inline-block;
  font-family: var(--font-family-icon);
  font-weight: var(--font-weight-regular);
  line-height: 1;
  letter-spacing: 0;
  margin-left: 0.25em;
  transform: translateY(-0.25em);
}
.gnav .dropdown-menu__list {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  padding-inline: 1.33334em;
  margin-left: -1.33334em;
  transition: all 0.32s ease-out;
}
.gnav .dropdown-menu__item {
  line-height: calc(1em + 10px);
  margin-bottom: 1em;
}
.gnav .dropdown-menu__item:last-of-type {
  margin-bottom: 0;
}
.gnav .dropdown-menu__link {
  display: block;
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.gnav .dropdown-menu__link::before {
  content: "-";
  margin-right: 0.25em;
}
.gnav .dropdown-menu__link:hover {
  color: var(--color-border);
}
.gnav .dropdown-menu__link.current {
  color: color-mix(in srgb, var(--color-main), var(--color-text) 25%);
}

/*===============================================
  main#container
===============================================*/
#container {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
}
.breadcrumb__item {
  letter-spacing: var(--letter-spacing-base);
}
.breadcrumb__item::after {
  margin: 0 1em;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: 100px 0;
}

.inbox {
  width: 1080px;
}

/*ボタン
-----------------------------*/
.com-btn:not(.com-btn--shop) {
  width: 140px;
  height: 40px;
  padding-right: 1.2em;
}
.com-btn:not(.com-btn--shop)::after {
  right: 1.2em;
}
.com-btn--shop {
  width: 450px;
  height: 70px;
  font-size: var(--font-size-h6);
  letter-spacing: 0.15em;
  box-shadow: 2px 6px 16px 0 rgba(85, 85, 85, 0.3);
}
.com-btn--shop::after {
  font-size: 3rem;
  margin-left: 0.5em;
}
.com-btn--shop:hover {
  box-shadow: 2px 8px 16px 0 rgba(85, 85, 85, 0.4);
}

/*テーブル
-----------------------------*/
.com-table tr th {
  padding: 20px 0;
}
.com-table tr td {
  padding: 20px 0 20px 20px;
}

/*テキストボックス
-----------------------------*/
.com-text p {
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-text .mb {
  margin-bottom: calc(var(--line-height-base) * 1em);
}

/* ボックスシャドウ
-----------------------------*/
.com-shadow {
  box-shadow: 2px 6px 16px 0 rgba(85, 85, 85, 0.3);
}

/* レビュー
-----------------------------*/
.com-review__title {
  margin-bottom: 20px;
}
.com-review__item {
  display: grid;
  grid-template-columns: 150px 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: flex-end;
  margin-bottom: 30px;
}
.com-review__comment {
  min-height: 160px;
  padding: calc(40px + (1em - 1lh) / 2) 40px;
  margin-bottom: 16px;
  border-radius: 30px 30px 30px 0;
}

/*SB未記入テキスト
-----------------------------*/
.com-empty {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  padding: 2.5em 0;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  font-size: var(--font-size-h3);
  row-gap: 20px;
  margin-bottom: 50px;
}
.com-title01 .en {
  font-size: 1.875em;
  letter-spacing: 0.08em;
  margin: -0.05em -0.08em -0.15em 0;
}
.com-title01 .ja {
  line-height: var(--line-height-h3);
  letter-spacing: 0.15em;
  margin-right: -0.15em;
}
.com-title01 .min {
  display: block;
  font-size: 0.8125em;
  line-height: 1.42858;
}
.com-title01--left {
  align-items: flex-start;
  text-align: left;
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: var(--font-size-h4);
  padding-left: 13px;
  padding-bottom: 20px;
}
.com-title02::before {
  width: 3px;
  height: calc(100% - 27px);
  top: 3px;
}
.com-title02 > span {
  line-height: var(--line-height-h4);
}

/*小タイトル
-----------------------------*/
.com-title03 {
  font-size: var(--font-size-h6);
  row-gap: 15px;
}
.com-title03 > span {
  line-height: var(--line-height-h6);
}
.com-title03 .min {
  font-size: var(--font-size-base);
  line-height: 1.33334;
}

/*===============================================
  共通セクション
===============================================*/
/*ベストバイアイテム
-----------------------------*/
.com-best__box {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px 20px;
  align-items: flex-start;
}
.com-best__title {
  margin-bottom: 0;
}
.com-best__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 88px 80px;
  grid-column: span 2;
}
.com-best__image {
  margin-bottom: 30px;
}
.com-best__heading {
  row-gap: 25px;
}
.com-best__price {
  font-size: var(--font-size-h5);
  line-height: 1.25;
  margin-top: 20px;
}
.com-best__reviews {
  padding-top: 30px;
}
.com-best__review {
  padding: calc(40px + (1em - 1lh) / 2) 40px;
  margin-bottom: 20px;
  border-radius: 30px 30px 30px 0;
}
.com-best__btn {
  width: 416px;
  height: 60px;
  margin: 50px auto 0;
}

/*取扱いブランド
-----------------------------*/
.com-brand__box {
  display: grid;
  grid-template-columns: 1fr 727px;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 50px 0;
}
.com-brand__box::before {
  content: "";
  width: calc(50vw + 320px);
  min-width: 920px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 220px;
  z-index: -1;
}
.com-brand__link {
  padding-bottom: 12px;
  margin-bottom: 20px;
}

/*商品紹介
-----------------------------*/
.com-item__title {
  margin-bottom: 0;
}
.com-item__title + .com-item__box {
  padding-top: 50px;
}
.com-item__box {
  padding-top: 100px;
}
.com-item__box-title {
  margin-bottom: 10px;
}
.com-item__item {
  padding: 50px 40px;
}
.com-item__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  min-height: 320px;
  padding-left: 564px;
  margin-inline: 10px;
  position: relative;
}
.com-item__image {
  width: 320px;
  position: absolute;
  top: 0;
  left: 50px;
}
.com-item__heading {
  row-gap: 25px;
}
.com-item__price {
  font-size: var(--font-size-h5);
  line-height: 1.25;
  margin-top: 20px;
}
.com-item__btn {
  height: 60px;
  margin-top: 50px;
}
.com-item__review {
  padding-top: 70px;
}

/*新商品情報
-----------------------------*/
.com-news__box {
  padding: 50px 0;
}
.com-news__box::before {
  content: "";
  width: calc(100vw - 40px);
  max-width: 1280px;
  min-width: 1160px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -2;
}
.com-news__title {
  margin-bottom: 30px;
}
.com-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}
.com-news__item-image {
  margin-bottom: 20px;
}
.com-news__item-inner {
  row-gap: 1em;
}
.com-news__item-date {
  padding-bottom: 2px;
}
.com-news__item-title {
  line-height: 1.33334;
}
.com-news__item-tags {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
}
.com-news--top .com-news__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px 40px;
  align-items: flex-end;
}
.com-news--top .com-news__title {
  margin-bottom: 0;
  order: 0;
}
.com-news--top .com-news__list {
  grid-column: span 2;
  order: 2;
}
.com-news--top .com-news__btn {
  order: 1;
}

/*===============================================
  トップページ
===============================================*/
/*お知らせ
-----------------------------*/
/*当店について
-----------------------------*/
.top-about {
  padding: clamp(120px, 9.375vw, 150px) 0;
}
.top-about::after {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.top-about__inner {
  padding-left: 500px;
}
.top-about__btn {
  margin-top: 50px;
}

/*ベストコスメ紹介
-----------------------------*/
.top-best__title {
  margin-bottom: 30px;
}
.top-best__text {
  text-align: center;
}
.top-best__slider {
  font-size: clamp(1.2rem, 0.78125vw, 1.5rem);
  margin-top: 50px;
}
.top-best__slider .swiper-button-prev,
.top-best__slider .swiper-button-next {
  width: 3em;
  top: clamp(87px, 7.1875vw, 138px);
}
.top-best__slider .swiper-button-prev {
  left: clamp(20px, 6.6666666667vw, 30px);
}
.top-best__slider .swiper-button-next {
  right: clamp(20px, 6.6666666667vw, 30px);
}
.top-best__slider:not(.swiper-initialized) {
  font-size: clamp(1.3rem, 0.9868421053vw, 1.5rem);
}
.top-best__slider:not(.swiper-initialized) .top-best__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.top-best__slider:not(.swiper-initialized) .top-best__item {
  width: clamp(270px, 21.0526315789vw, 320px);
}
.top-best__link {
  row-gap: 1.3333334em;
}
.top-best__heading {
  font-size: 1.2em;
  row-gap: 0.83334em;
}
.top-best__heading .min {
  font-size: 0.83334em;
}
.top-best__btn {
  margin: 60px auto 0;
}

/*ランキング
-----------------------------*/
.top-rank__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px 40px;
  align-items: flex-end;
  padding: 50px 0;
}
.top-rank__box::before {
  content: "";
  width: calc(100vw - 40px);
  max-width: 1280px;
  min-width: 1160px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -2;
}
.top-rank__title {
  margin-bottom: 0;
  order: 0;
}
.top-rank__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  grid-column: span 2;
  order: 2;
}
.top-rank__num {
  font-size: 4em;
  letter-spacing: 0.08em;
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: 5;
}
.top-rank__link {
  row-gap: 20px;
}
.top-rank__link:hover .top-rank__image::after {
  background: var(--color-accent);
}
.top-rank__image {
  border-radius: 100vw 100vw 0 0;
  position: relative;
}
.top-rank__image img {
  aspect-ratio: 0.85;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-rank__image::after {
  content: "\f135";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1;
  font-family: var(--font-family-icon);
  font-weight: var(--font-weight-regular);
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  background: var(--color-main);
  border-radius: 50%;
  position: absolute;
  right: 20px;
  bottom: 10px;
  z-index: 5;
  transition: all 0.3s ease-out;
}
.top-rank__btn {
  order: 1;
}

/*取扱い商品
-----------------------------*/
.top-item__links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.top-item__link {
  width: 520px;
  padding: 50px;
}
.top-item__link::after {
  width: 20px;
  height: 20px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  right: 10px;
  bottom: 10px;
}
.top-item__text {
  min-width: calc(6em + var(--letter-spacing-base) * 5);
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
}
.top-item__text span {
  margin-right: calc(var(--letter-spacing-base) * -1);
}

/*キャンペーン
-----------------------------*/
.top-campaign__box {
  display: grid;
  grid-template: auto 1fr/1fr 640px;
  align-items: flex-start;
  gap: 80px 20px;
  padding: 50px 0;
}
.top-campaign__box::before {
  content: "";
  width: calc(50vw + 320px);
  min-width: 920px;
  left: 220px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  z-index: -1;
}
.top-campaign__title {
  margin-bottom: 0;
}
.top-campaign__list,
.top-campaign .com-empty {
  min-height: 22rem;
  grid-row: span 2;
}
.top-campaign__item {
  margin-bottom: 20px;
}
.top-campaign__item-link {
  grid-template-columns: 195px 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.top-campaign__item-inner {
  row-gap: 20px;
}
.top-campaign__item-inner::after {
  width: 40px;
  margin-top: auto;
}
.top-campaign__item-title {
  line-height: 1.33334;
}
.top-campaign__item-body {
  font-size: var(--font-size-xs);
  line-height: 1.5;
}

/*===============================================
  ディアパリーについて
===============================================*/
/*ディアパリーの想い
-----------------------------*/
.about-thoughts {
  padding: clamp(120px, 9.375vw, 150px) 0;
}
.about-thoughts__inner {
  display: grid;
  grid-template: auto 1fr/1fr 500px;
  align-items: flex-start;
  gap: 50px 40px;
}
.about-thoughts__title {
  margin-bottom: 0;
}
.about-thoughts__text {
  grid-row: span 2;
}
.about-thoughts__image {
  margin-left: 98px;
  margin-top: auto;
}

/*会社情報
-----------------------------*/
.about-info__box {
  display: grid;
  grid-template-columns: 1fr 760px;
  align-items: flex-start;
  -moz-column-gap: 50px;
       column-gap: 50px;
  padding: 50px 0;
}
.about-info__box::before {
  content: "";
  width: calc(50vw + 320px);
  min-width: 920px;
  height: 100%;
  left: 220px;
  background: #fff;
  position: absolute;
  top: 0;
  z-index: -1;
}
.about-info__table {
  margin-block: calc((1em - 1lh) / 2);
}
.about-info__table tr:first-of-type th,
.about-info__table tr:first-of-type td {
  padding-top: 0;
}
.about-info__table tr:last-of-type {
  border-bottom: none;
}
.about-info__table tr:last-of-type th,
.about-info__table tr:last-of-type td {
  padding-bottom: 0;
}
.about-info__table tr th {
  width: 100px;
}
.about-info__map {
  height: 300px;
  margin-top: 50px;
}

/*===============================================
  ベストコスメ紹介
===============================================*/
/*一覧ページ・関連商品
-----------------------------*/
.cosmetics-list__inner,
.cosmetics-related__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: flex-start;
  gap: 50px 40px;
}
.cosmetics-list__title,
.cosmetics-related__title {
  margin-bottom: 0;
}
.cosmetics-list__items,
.cosmetics-related__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 53px 60px;
  grid-column: span 2;
}
.cosmetics-list__item,
.cosmetics-related__item {
  row-gap: 20px;
}
.cosmetics-list__btn,
.cosmetics-related__btn {
  margin-inline: auto;
}
.cosmetics-list .com-empty,
.cosmetics-related .com-empty {
  grid-column: span 2;
}

.cosmetics-related__inner {
  padding-block: 5rem;
}
.cosmetics-related__inner::before {
  content: "";
  width: calc(100vw - 5rem);
  max-width: 1280px;
  min-width: 1150px;
  height: 100%;
  background: var(--color-white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -2;
}

/*詳細ページ
-----------------------------*/
.cosmetics-detail__box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 80px;
}
.cosmetics-detail__box > *:not(.cosmetics-detail__btn) {
  width: 100%;
}
.cosmetics-detail__heading {
  margin-bottom: 40px;
}
.cosmetics-detail__list {
  width: 520px;
  padding: 40px;
}
.cosmetics-detail__list-wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 0 45px;
}
.cosmetics-detail__list dt {
  text-align: center;
  font-size: var(--font-size-h6);
  line-height: 1;
  margin-bottom: 30px;
}
.cosmetics-detail__list--check dd {
  line-height: 1.66667;
  margin-bottom: 1em;
}
.cosmetics-detail__list--step dd {
  grid-template-columns: 80px 1fr;
  margin-bottom: 40px;
}
.cosmetics-detail__list--step dd::before {
  font-size: var(--font-size-h6);
  margin-bottom: -2px;
}
.cosmetics-detail__list--step dd p {
  font-size: var(--font-size-xs);
  line-height: 1.58334;
}
.cosmetics-detail__review {
  padding: 0 50px;
}

/*===============================================
  ランキング
===============================================*/
/*当店人気ランキング
-----------------------------*/
.ranking-pick__box {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 55px 40px;
  align-items: flex-start;
}
.ranking-pick__title {
  margin-bottom: 0;
}
.ranking-pick__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  grid-column: span 2;
}
.ranking-pick__num {
  font-size: 4em;
  letter-spacing: 0.08em;
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: 5;
}
.ranking-pick__link {
  row-gap: 20px;
}
.ranking-pick__link:hover .ranking-pick__image::after {
  background: var(--color-accent);
}
.ranking-pick__image {
  border-radius: 100vw 100vw 0 0;
  position: relative;
}
.ranking-pick__image img {
  aspect-ratio: 0.85;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ranking-pick__image::after {
  content: "\f135";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1;
  font-family: var(--font-family-icon);
  font-weight: var(--font-weight-regular);
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  background: var(--color-main);
  border-radius: 50%;
  position: absolute;
  right: 20px;
  bottom: 10px;
  z-index: 5;
  transition: all 0.3s ease-out;
}

/*ランキング一覧
-----------------------------*/
.ranking-list__item {
  padding: 50px 40px;
  margin-bottom: 50px;
}
.ranking-list__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  min-height: 500px;
  padding-left: 564px;
  margin-inline: 10px;
  position: relative;
}
.ranking-list__num {
  font-size: var(--font-size-h6);
  letter-spacing: 0.08em;
  margin-bottom: 50px;
}
.ranking-list__num span {
  font-size: 6rem;
}
.ranking-list__image {
  width: 500px;
  position: absolute;
  top: 0;
  left: 0;
}
.ranking-list__title {
  row-gap: 25px;
}
.ranking-list__price {
  font-size: var(--font-size-h5);
  line-height: 1.25;
  margin-top: 20px;
}
.ranking-list__btn {
  height: 60px;
  margin-top: 50px;
}
.ranking-list__review {
  padding-top: 50px;
}

/*==================================================
 ニュース一覧
================================================== */
.news-archive__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px 20px;
  align-items: flex-end;
}
.news-archive__inner > * {
  margin-bottom: 0 !important;
}
.news-archive__list,
.news-archive .com-empty {
  grid-column: span 2;
}
/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 50px;
}
.tag-select__box {
  min-width: 15em;
}
.tag-select__box::after {
  right: 1em;
}
.tag-select__dropdown {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 0.75em 3em 0.75em 0.75em;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail__title {
  margin-bottom: 20px;
}
.news-detail__post {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: 20px;
}
/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 56px;
}
.contact-form__table tr th {
  width: 350px;
  text-align: left;
  line-height: 2.375;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-sm);
  line-height: 2;
  margin-left: 1em;
}
.contact-form__table tr td {
  vertical-align: middle;
  line-height: 2.375;
}
.contact-form .contact-submits-wrap {
  padding-top: 32px;
}
.contact-form .contact-submits-wrap > * {
  width: 320px;
  height: 70px;
  margin: 20px 15px 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
.contact-complete__text {
  text-align: center;
}

/*==================================================
プライバシーポリシー
================================================== */
.privacy-policy__box {
  margin-bottom: 80px;
}
.privacy-policy__heading {
  margin-bottom: 30px;
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list__items {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: column;
  gap: 30px 50px;
}
.sitemap-list__item.nav-item--top {
  grid-row: span 4;
}
.sitemap-list__item.nav-item--ranking {
  grid-row: span 2;
}
.sitemap-list__link {
  padding: 1em 0.5em;
}
.sitemap-list__sub-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 60px;
  gap: 30px 50px;
}
.sitemap-list__sub-link {
  padding: 1em 0.5em;
}

/*===============================================
  404エラー
===============================================*/