/*renewal用*/
/*=================================================
CSS MAP
00:共通項目
01:TOP
02:商品ページ共通
03:商品ページ　ミレディブラウン
04:商品ページ　アイドルリング
05:商品ページ　ライアーピンク
06:商品ページ　ライアーピンク
07:商品ページ　レディブラック
08:商品ページ　プリンセスショコラ
09:商品ページ　スターグロー
=================================================*/

/*=================================================
00:共通項目
=================================================*/
@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/georgia");

@font-face {
  font-family: "Georgia";
  src: url("Georgia.ttf") format("ttf");
}
/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  /* すべてのデフォルトのマージンを削除 */
  margin: 0;
  /* すべてのデフォルトのパディングを削除 */
  padding: 0;
  /* line-heightをemベースでcalc()で計算。font-sizeを小さくするとline-heightは大きくなり、font-sizeを大きくするとline-heightは小さくなります。参考: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  -webkit-text-size-adjust: none;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type="file"])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol)[role="list"] {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(
  a[href],
  area,
  button,
  input,
  label[for],
  select,
  summary,
  textarea,
  [tabindex]:not([tabindex*="-"])
) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type="file"]) {
  cursor: auto;
}

:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  cursor: pointer;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"]),
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(
  button,
  button[type],
  input[type="button"],
  input[type="submit"],
  input[type="reset"]
)[disabled] {
  cursor: not-allowed;
}

/*流動フォントサイズ @include m.rsfontsize(14, 16);*/
/* cont */
/*ゴシック*/
* {
  min-height: 0vw;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-family: "zen-maru-gothic", sans-serif;
  color: #634a32;
  font-size: 16px;
  line-height: 1.8;
  font-feature-settings: "palt";
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #634a32;
}

body {
  margin: 0;
  position: relative;
  color: #634a32;
  /*
  &:after{
    position: absolute;
    bottom:0;
    left: 0;
    z-index: 1;
    content: "";
    display: block;
    width: 100%;
    height: 500px;
    background-image: linear-gradient(transparent,rgba(255, 255, 255, 0.7));
  }
  */
}

/*ここまで過去スタイル*/

.w-1440 {
  width: 100%;
  height: auto;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}
.w-1000 {
  width: 100%;
  height: auto;
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}

.w-740 {
  width: 100%;
  height: auto;
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}

.p-40 {
  padding: 40px 0;
}

.eng-txt {
  font-family: "Georgia", sans-serif;
}

#section-online,
#section-online_up {
  padding: 80px 0 20px;
}
.section-online__inner {
  padding: 0 20px;
}

#section-online,
#section-online_up,
section#section-news,
section#section-bland-concept,
.transition-bg {
  background-color: #fce9e9;
}

.transition-btn {
  text-align: center;
  padding: 0 0 120px;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 85%;
  margin: 0 auto;
}

.transition-btn a {
  background: rgba(205, 126, 142, 0.8);
  color: #fff;
  padding: 20px 0 40px;
  border-radius: 10px;
  display: block;
  width: 100%;
  max-width: 250px;
  position: relative;
}

.transition-btn a::after {
  content: "";
  display: block;
  background: url(../images/renewal/top/arrow.png) no-repeat 52% center / 5px 12px;
  background-color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(90deg);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ee7e8387;
  z-index: 1999;
}
.headmenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  padding: 24px 20px;
  margin: auto;
}
ul.header_list li {
  color: #fff;
  list-style: none;
}
ul.header_list li:first-of-type a img {
  display: block;
  padding: 2px;
}
ul.header_list li {
  margin-left: 25px;
}
ul.header_list li a {
  color: #fff;
  transition: 0.25s;
}

ul.header_list li a:hover {
  opacity: 0.7;
  transition: 0.25s;
}
ul.header_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer {
  background-color: #fce9e9;
  text-align: center;
  padding: 32px 20px;
}
footer img {
  display: block;
  width: 128px;
  height: 54px;
  object-fit: contain;
  margin: 0 auto 24px;
}

.section-title {
  color: #fff;
  -webkit-text-stroke: 1px #ee7e83;
  text-align: center;
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 1.5px;
}

.section-title_white {
  color: #fff;
  text-align: center;
  font-size: 32px;
  letter-spacing: 1.5px;
}

.section-title_pink {
  color: #ee7e83;
  text-align: center;
  font-size: 63px;
  letter-spacing: 1.5px;
}

.section-title_ribbon {
  position: relative;
  display: block;
  margin: 0 auto 20px;
  text-align: center;
  background: url(../images/renewal/top/ttl-ribbon.png) center center / contain no-repeat;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  font-size: 24px;
}

#section-lineuplink ul li a {
  display: block;
  margin-bottom: 32px;
  transition: 0.5s;
}

#section-lineuplink ul li a div {
  font-size: 16px;
  position: relative;
  font-weight: 500;
  width: max-content;
  margin: auto;
  color: #634a32;
  transition: 0.5s;
}
#section-lineuplink ul li a:hover div {
  transition: 0.5s;
  filter: brightness(0) invert(1);
}

.p-instagram__title {
  display: block;
  margin: 0 auto;
  color: #ee7e83;
  text-align: center;
  font-size: 40px;
}

/*ここフェードアニメーション制御*/
.fade {
  opacity: 0;
  transition: 0.75s;
  position: relative;
  top: 20px;
}

.fade-in {
  opacity: 1 !important;
  top: 0;
}

/*=================================================
  01:TOP
  =================================================*/
.section-fv__inner picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-fv__inner .section-fv__bg {
  position: absolute;
  top: -1px;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.section-fv__inner .section-fv__main {
  position: relative;
  top: 8px;
  left: 50%;
  z-index: 4;
  width: calc(100%);
  height: auto;
  transform: translateX(-50%);
  display: block;
}

.section-fv__inner .section-fv__01 {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: calc(100% - 40px);
  height: auto;
  transform: translateX(-50%);
  display: block;
}

.section-fv__inner .section-fv__02 {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: calc(100% - 40px);
  height: auto;
  transform: translateX(-50%);
  display: block;
}

.section-fv__inner .section-fv__03 {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: calc(100% - 40px);
  height: auto;
  transform: translateX(-50%);
  display: block;
}

.section-fv__inner {
  position: relative;
}

#section-fv {
  padding: 94px 0 40px;
  background-image: url(../images/renewal/top/fv-bg.png);
  background-size: cover;
}

#section-news {
  padding-bottom: 80px;
}

.section-news__inner {
  background-color: #fff;
  padding: 40px 80px;
  max-width: 860px;
  border-radius: 10px;
  filter: drop-shadow(0px 0px 4px #00000030);
  position: relative;
  margin: auto;
}
.section-news__inner__list__ttl {
  height: 45px;
  width: 100%;
  margin: auto;
  margin-bottom: 16px;
  position: relative;
  display: block;
}
.section-news__inner__list__ttl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-news__inner__list {
  width: 100%;
  position: relative;
}

.section-news__inner::before,
.section-news__inner::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../images/renewal/top/news-heart.png);
  position: relative;
  top: 20px;
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
}

.section-news__inner::before {
  left: 20px;
  background-position: left top;
}
.section-news__inner::after {
  right: 20px;
  background-position: right top;
}

.section-news__inner__list li {
  list-style: none;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 1px dashed #ccc;
}

.section-news__inner__list li:last-of-type {
  margin-bottom: 0px;
}

.section-news__inner__list li a {
  display: block;
}
.section-news__inner__list li a span {
  color: #eb8280;
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

#section-lp picture img {
  width: 100%;
  object-fit: contain;
}

#section-bland-concept .section-title_ribbon {
  box-sizing: border-box;
  width: 300px;
  left: 227px;
  top: 100px;
}

.section-bland-concept__inner {
  /* padding-top: 80px; */
  box-sizing: border-box;
  padding-bottom: 120px;
  position: relative;
}

.section-bland-concept__inner::before {
  content: "";
}

#section-message {
  background-image: url(../images/renewal/top/message-bg.png);
  background-size: cover;
  background-position: center center;
}
#section-message h2 img {
  width: 100%;
}
#section-lens {
  background-image: url(../images/renewal/top/lens-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  padding: 80px 20px;
  margin-top: -160px;
}

.section-lineup__inner {
  padding: 120px 20px;
  position: relative;
}

.section-lineuplink__inner__ttl h2 {
  font-size: 40px;
}

.section-lineup__inner__heart span {
  display: block;
  height: 8px;
  position: absolute;
  width: max-content;
}

.section-lineup__inner__heart span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-lineup__inner__heart span:nth-of-type(1) {
  bottom: 36px;
  left: 0;
}
.section-lineup__inner__heart span:nth-of-type(2) {
  bottom: 36px;
  right: 0;
}

.section-lineup__inner__list {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.section-lineup__inner__list li {
  width: calc(50% - 10px);
  height: auto;
  margin-bottom: 20px;
  list-style: none;
}
.section-movie__inner__ttl img {
  width: max-content;
  height: 100%;
  object-fit: contain;
  margin: auto;
}

.section-movie__inner__ttl {
  height: 45px;
  width: 100%;
  margin: auto;
  margin-bottom: 80px;
  position: relative;
}
.section-movie__inner__ttl h2 {
  width: 100%;
  height: 100%;
}
.section-lineup__inner__list li:nth-of-type(2) {
  transition-delay: 0.25s;
}

.section-lineup__inner__list li:nth-of-type(3) {
  transition-delay: 0.5s;
}

.section-lineup__inner__list li:nth-of-type(4) {
  transition-delay: 0.75s;
}

.section-lineup__inner__list li a {
  width: 100%;
  height: auto;
  display: block;
}

#section-lp {
  background: #f9d8d8;
  background: linear-gradient(90deg, rgba(249, 216, 216, 1) 0%, rgba(246, 222, 195, 1) 100%);
  position: relative;
  padding: 80px 0 0;
}

.section-bg_area {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.section-bg_area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    url(../images/renewal/top/cloud_01.png), url(../images/renewal/top/cloud_02.png),
    url(../images/renewal/top/cloud_03.png), url(../images/renewal/top/cloud_04.png),
    url(../images/renewal/top/cloud_05.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position:
    top 0 left 10%,
    top 20% right 30%,
    top 55% left 20%,
    top 95% left 15%,
    top 95% right 35%;
  background-size: 40%, 40%, 45%, 40%, 35%;
}

.section-bg_area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65); /* 白の強さ */
  pointer-events: none;

  -webkit-mask-image:
    url(../images/renewal/top/cloud_01.png), url(../images/renewal/top/cloud_02.png),
    url(../images/renewal/top/cloud_03.png), url(../images/renewal/top/cloud_04.png),
    url(../images/renewal/top/cloud_05.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position:
    top 0 left 10%,
    top 20% right 30%,
    top 55% left 20%,
    top 95% left 15%,
    top 100% right 15%;
  -webkit-mask-size: 40%, 40%, 45%, 40%, 50%;

  mask-image:
    url(../images/renewal/top/cloud_01.png), url(../images/renewal/top/cloud_02.png),
    url(../images/renewal/top/cloud_03.png), url(../images/renewal/top/cloud_04.png),
    url(../images/renewal/top/cloud_05.png);
  mask-repeat: no-repeat;
  mask-position:
    top 0 left 10%,
    top 20% right 30%,
    top 55% left 20%,
    top 95% left 15%,
    top 100% right 15%;
  mask-size: 40%, 40%, 45%, 40%, 50%;
}

@media screen and (max-width: 640px) {
  .section-bg_area::before {
    display: none;
  }
}

#section-lp h2 {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#section-colormap {
  padding: 40px 20px 250px;
  background: #f9d8d8;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 1) 100%),
    linear-gradient(90deg, rgba(249, 216, 216, 1) 0%, rgba(246, 222, 195, 1) 100%);
}

.section-colormap__inner {
  position: relative;
  max-width: 630px;
}

#section-colormap .section-title_ribbon {
  background-image: url(../images/renewal/top/ttl-colormap.png);
  font-size: 0;
  height: 85px;
  margin-bottom: -50px;
  background-position: left;
  margin-left: -30px;
}

.section-colormap_list {
  display: block;
  position: relative;
}

.section-colormap_item {
  position: absolute;
}

.section-colormap_item a {
  display: block;
  width: 100px;
}

.section-colormap_item--zs a,
.section-colormap_item--zm a {
  display: block;
  width: 130px;
}

.section-colormap_item--pc {
  top: 300px;
  right: 150px;
}

.section-colormap_item--sg {
  top: 167px;
  right: 185px;
}

.section-colormap_item--zs {
  top: 60px;
  right: 55px;
}

.section-colormap_item--zm {
  top: 160px;
  right: 55px;
}

.section-colormap_item--mb {
  top: 320px;
  left: 80px;
}

.section-colormap_item--ir {
  top: 275px;
  right: 70px;
}

.section-colormap_item--lp {
  top: 70px;
  left: 184px;
}

.section-colormap_item--lb {
  top: 340px;
  left: 190px;
}

.section-colormap_item--mr {
  top: 220px;
  left: 210px;
}

.section-colormap_item--me {
  top: 70px;
  right: 185px;
}

.section-lineup__inner__list li a:hover img {
  top: -5px;
  transition: 0.25s;
  opacity: 0.7;
}

.section-lineup__inner__list li a img {
  position: relative;
  transition: 0.25s;
  top: 0;
  opacity: 1;
  width: 100%;
}

#section-movie {
  background-color: #fce9e9;
  padding: 120px 20px;
}

.section-movie__inner__product {
  max-width: 500px;
  margin: auto;
  aspect-ratio: 16 / 9;
  margin-bottom: 32px;
}

.section-movie__inner__product iframe,
.section-movie__inner__howtouse iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 10px;
  height: 100%;
}

.section-movie__inner__howtouse {
  max-width: 500px;
  margin: auto;
  aspect-ratio: 16 / 9;
}
.section-movie__inner__attention {
  margin-top: 32px;
}
.section-movie__inner__attention h2 {
  font-size: 14px;
  margin-bottom: 24px;
  text-align: center;
}

.section-movie__inner__attention h2 span {
  color: #ee7e83;
  display: inline-block;
}

.section-movie__inner__attention h2 span:first-of-type {
  margin-right: 12px;
}

.section-movie__inner__attention h2 span:last-of-type {
  margin-left: 12px;
}

.section-movie__inner__attention p {
  font-size: 12px;
  line-height: 2;
  text-align: center;
}

.section-lineup__inner__ttl span {
  display: block;
  height: 8px;
  position: absolute;
  width: max-content;
}
.section-lineup__inner__ttl h2 {
  width: 100%;
  height: 100%;
}

.section-lineup__inner__ttl span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-lineup__inner__ttl span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.section-lineup__inner__ttl span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

#section-lineuplink {
  padding: 120px 0;
}
.section-lineup__inner__ttl {
  height: 45px;
  width: 100%;
  margin: auto;
  margin-bottom: 80px;
  position: relative;
}
.section-lineup__inner__ttl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-lineuplink__inner__ttl {
  height: 45px;
  width: 100%;
  margin: auto;
  margin-bottom: 16px;
  position: relative;
  display: block;
}
.section-lineuplink__inner__ttl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

picture.p-instagram__ttl {
  height: 44px;
  width: 100%;
  margin: auto;
  margin-bottom: 0px;
  position: relative;
  display: block;
}
picture.p-instagram__ttl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#section-lineuplink ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#section-lineuplink ul li {
  width: calc(50% - 20px);
  text-align: center;
  justify-content: center;
  align-items: center;
  list-style: none;
}
div#logo {
  width: 110px;
}
#section-lineuplink ul li a {
  position: relative;
  top: 0;
  transition: 0.5s;
}

#section-lineuplink ul li a:hover {
  position: relative;
  top: -10px;
  transition: 0.5s;
  color: #fff !important;
}
#section-lineuplink ul li a div::before {
  position: absolute;
  display: block;
  top: 50%;
  left: -10px;
  width: 16px;
  height: 14px;
  content: "";
  transform: translateX(-100%) translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
#section-lineuplink ul li a div::after {
  position: absolute;
  display: block;
  top: 50%;
  right: -10px;
  width: 16px;
  height: 14px;
  content: "";
  transform: translateX(100%) translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
#section-lineuplink ul li:nth-of-type(1) a div::before,
#section-lineuplink ul li:nth-of-type(1) a div::after {
  background-image: url(../images/renewal/m-b-heart.png);
}

#section-lineuplink ul li:nth-of-type(2) a div::before,
#section-lineuplink ul li:nth-of-type(2) a div::after {
  background-image: url(../images/renewal/i-r-heart.png);
}

#section-lineuplink ul li:nth-of-type(3) a div::before,
#section-lineuplink ul li:nth-of-type(3) a div::after {
  background-image: url(../images/renewal/l-p-heart.png);
}

#section-lineuplink ul li:nth-of-type(4) a div::before,
#section-lineuplink ul li:nth-of-type(4) a div::after {
  background-image: url(../images/renewal/l-b-heart.png);
}
.section-lineuplink__inner__ttl {
  margin-bottom: 32px;
  padding-bottom: 8px;
  position: relative;
  display: block;
}

.section-lineuplink__inner__ttl::before {
  content: "";
  display: block;
  width: 40px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px dashed;
  color: #ee7e84;
  position: absolute;
}
.p-instagram {
  padding-top: 120px;
}
picture.p-instagram__ttl {
  margin-bottom: 0px;
  padding-bottom: 8px;
  position: relative;
  display: block;
}

picture.p-instagram__ttl::before {
  content: "";
  display: block;
  width: 40px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px dashed;
  color: #ee7e84;
  position: absolute;
}

@media screen and (max-width: 640px) {
  .p-instagram {
    padding-top: 80px;
  }
  .p-instagram__title {
    font-size: 28px;
  }

  div#logo {
    width: 80px;
  }
  #section-fv {
    background-image: url(../images/renewal/top/fv-bg_sp.png);
  }

  .section-fv__inner--sm picture img {
    width: 95%;
    height: 100%;
    margin: 40px auto 0;
    object-fit: contain;
  }
  .section-fv__inner .section-fv__03 {
    display: none;
  }
  .section-title {
    color: #fff;
    -webkit-text-stroke: 1px #ee7e83;
    text-align: center;
    font-size: 32px;
    letter-spacing: 1.5px;
  }

  .section-title_white {
    color: #fff;
    text-align: center;
    font-size: 24px;
    letter-spacing: 1.5px;
    background: #9491b6;
    background: linear-gradient(90deg, rgba(148, 145, 182, 1) 0%, rgba(176, 131, 192, 1) 100%);
  }

  .section-title_pink {
    color: #ee7e83;
    text-align: center;
    font-size: 32px;
    letter-spacing: 1.5px;
  }

  #Fsection-message .section-title_white {
    background: #9491b6;
    background: linear-gradient(90deg, rgba(148, 145, 182, 1) 0%, rgba(176, 131, 192, 1) 100%);
  }
  #section-lineuplink ul li {
    width: calc(50% - 10px);
  }
  #section-lineuplink ul li a {
    font-size: 16px;
    padding: 0px;
    margin-bottom: 14px;
  }
  #section-lineuplink ul li a div {
    font-size: 10px;
    font-weight: 700;
    display: block;
    width: max-content;
    margin: auto;
  }
  .section-lineup__inner__list li:nth-of-type(2) {
    transition-delay: 0s;
  }
  .section-lineup__inner__list li:nth-of-type(3) {
    transition-delay: 0s;
  }
  .section-lineup__inner__list li:nth-of-type(4) {
    transition-delay: 0s;
  }

  .section-movie__inner__ttl {
    margin-bottom: 24px;
    height: 7.5vw;
    padding-bottom: 4px;
    position: relative;
    display: block;
  }

  .section-movie__inner__ttl img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  #section-lineuplink {
    padding: -70px 0 80px;
  }
  #section-lens {
    background-image: url(../images/renewal/top/lens-bg_sp.png);
    padding: 50px 0 70px;
    background-position: top 0px left 50%;
    margin: -60px 0 20px;
  }
  .headmenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    padding: 16px 20px;
    margin: auto;
  }
  ul.header_list li:nth-of-type(1) a,
  ul.header_list li:nth-of-type(2) a {
    height: 18px;
    display: block;
  }
  ul.header_list li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  ul.header_list li a {
    font-size: 14px;
  }
  .section#section-news {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
  }
  .section-news__inner {
    padding: 40px 20px;
  }
  .section-lineup__inner__heart span:nth-of-type(1) {
    left: 20px;
  }
  .section-lineup__inner__heart span:nth-of-type(2) {
    right: 20px;
  }
  #section-colormap {
    padding: 40px 15px 150px;
  }

  .section-colormap__inner.w-1000.fade.fade-in {
    padding: 0;
  }
  .section-lineup__inner {
    padding: 40px 20px 80px !important;
    position: relative;
  }
  .section-news__inner__list li p {
    font-size: 14px;
  }
  body.top-page #section-fv .section-fv__inner.w-1440.fade {
    padding-left: 0;
    padding-right: 0;
  }
  #section-lineuplink ul li a div::before {
    width: 8px;
    height: 8px;
  }
  #section-lineuplink ul li a div::after {
    width: 8px;
    height: 8px;
  }
  .section-news__inner__list__ttl {
    margin-bottom: 24px;
    height: 6.5vw;
    position: relative;
    display: block;
  }
  .section-news__inner__list li span {
    color: #eb8280;
    font-size: 12px;
  }
  .section-message__inner.w-1440.fade {
    padding: 0;
  }
  #section-movie {
    padding: 80px 20px;
  }
  #section-fv {
    padding: 78px 0 0;
  }
  .top-page #section-fv {
    padding-bottom: 10px;
    padding-top: 50px;
  }
  section#section-news {
    padding: 0 20px 20px;
  }
  #section-online {
    padding: 40px 0;
  }

  #section-bland-concept .section-title_ribbon {
    left: 0;
    top: 330px;
    width: 300px;
  }

  .section-bland-concept__inner {
    /* padding-top: 40px; */
    padding-bottom: 40px;
    position: relative;
  }

  #section-colormap .section-title_ribbon {
    height: 12vw;
    margin-bottom: -7vw;
  }

  .section-colormap_list {
    display: block;
    position: relative;
  }

  .section-colormap_item {
    position: absolute;
  }

  .section-colormap_item a {
    display: block;
    width: 14vw;
  }

  .section-colormap_item--zs a,
  .section-colormap_item--zm a {
    width: 18vw;
  }

  .section-colormap_item--zs {
    top: 10vw;
    right: 8vw;
  }

  .section-colormap_item--zm {
    top: 24vw;
    right: 8vw;
  }

  .section-colormap_item--pc {
    top: 43vw;
    left: 40.33vw;
  }

  .section-colormap_item--sg {
    top: 26.46vw;
    left: 37.33vw;
  }

  .section-colormap_item--mb {
    top: 42.66vw;
    left: 8.4vw;
  }

  .section-colormap_item--ir {
    top: 40.8vw;
    left: 56vw;
  }

  .section-colormap_item--lp {
    top: 9.06vw;
    left: 19vw;
  }

  .section-colormap_item--lb {
    top: 46.66vw;
    left: 23.46vw;
  }

  .section-colormap_item--mr {
    top: 29.33vw;
    left: 22.33vw;
  }

  .section-colormap_item--me {
    top: 10.66vw;
    right: 26.33vw;
  }
}

/*=================================================
  02:商品ページ共通
  =================================================*/
.section-lens-spec .section-title_pink {
  position: relative;
  margin-bottom: 20px;
  font-size: 42px;
}

h2.section-title_pink.eng-txt.image-size {
  display: flex;
  justify-content: center;
  width: 70%;
  margin: 0 auto 3rem;
}

.section-spec_area h2.section-title_pink.eng-txt.image-size {
  max-width: 250px;
}

.section-lens-feature_area h2.section-title_pink.eng-txt.image-size {
  max-width: 350px;
}

@media screen and (max-width: 640px) {
  .section-spec_area h2.section-title_pink.eng-txt.image-size {
    width: 50%;
  }
}

/* .section-lens-spec .section-title_pink::before {
  content: "";
  display: block;
  background-image: url(../images/renewal/l-dp-heart.png);
  width: 20px;
  height: 20px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  left: 180px;
  top: 15px;
} */

/* .section-lens-spec .section-title_pink::after {
  content: "";
  display: block;
  background-image: url(../images/renewal/l-dp-heart.png);
  width: 20px;
  height: 20px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  right: 180px;
  top: 15px;
} */

.section-design_title {
  display: block;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin: 0 auto;
  text-align: center;
  font-size: 32px;
}

.section-design_title--pc {
  color: #b75c76;
}
.section-design_title--sg {
  color: #f5a082;
}

@media screen and (max-width: 640px) {
  .section-lens-spec .section-title_pink {
    font-size: 26px;
  }

  .section-lens-feature_area h2.section-title_pink.eng-txt.image-size {
    margin-bottom: 0;
  }

  .section-lens-spec .section-title_pink::before {
    content: "";
    width: 12px;
    height: 12px;
    left: 10vw;
    top: 3vw;
  }

  .section-lens-spec .section-title_pink::after {
    content: "";
    width: 12px;
    height: 12px;
    right: 10vw;
    top: 3vw;
  }

  .section-design_title {
    display: block;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 20px;
  }

  #section-lp picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/*=================================================
  03:商品ページ　ミレディブラウン
  =================================================*/
body.h-brown #section-fv {
  padding-bottom: 0;
}
.h-brown .section-online {
  background-color: transparent;
  padding: 80px 0;
}
.h-brown .section-lens-spec .section-online {
  padding: 0;
}
section.section-design_sp {
  display: none;
}
section.section-design__inner {
  padding: 20px;
  width: 100%;
  object-fit: contain;
  position: relative;
}

.section-design__inner::before {
  content: "";
  display: block;
  background-image: url(../images/renewal/meladybrown/design-heart01.png);
  width: 35px;
  height: 52px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: 0;
}

.section-design__inner::after {
  content: "";
  display: block;
  background-image: url(../images/renewal/meladybrown/design-heart02.png);
  width: 35px;
  height: 52px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.section-lens-spec {
  background-color: #f4e7e1;
  padding: 120px 0;
  margin-top: 80px;
}

.section-lens-spec__spec,
.section-lens-spec__feature {
  display: block;
  margin-bottom: 80px;
}

.section-lens-spec__inner__attention {
  margin-bottom: 40px;
}

.section-lens-spec__inner__attention h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  font-size: 16px;
}

.section-lens-spec__inner_zerospi span {
  width: 5%;
}

.section-lens-spec__inner__attention h2 span {
  display: inline-block;
  color: #ee7e83;
}

.section-lens-spec__inner__attention h2 span:nth-of-type(1) {
  margin-right: 8px;
}
.section-lens-spec__inner__attention h2 span:nth-of-type(2) {
  margin-left: 8px;
}
.section-lens-spec__inner__attention p {
  font-size: 14px;
  color: #634a32;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

.h-brown .lens-copy {
  top: 580px;
  right: 210px;
}
@media screen and (max-width: 1000px) {
  .h-brown .lens-copy {
    top: 58vw;
    right: 21vw;
    width: 9.5vw;
  }
}

@media screen and (max-width: 640px) {
  .h-brown .section-fv__inner {
    padding: 0;
  }
  .section-design_pc {
    display: none;
  }

  section.section-design_sp {
    display: block;
  }
  .lens-slide.swiper-container {
    margin: 32px auto;
    width: 80%;
  }
  .section-lineup__inner__list li {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    list-style: none;
  }

  .section-lineup__inner__list li:nth-of-type(3),
  .section-lineup__inner__list li:nth-of-type(4) {
    margin-bottom: 15px;
  }
  .section-lineup__inner__ttl {
    margin-bottom: 15px;
    height: 8.5vw;
    position: relative;
    display: block;
  }
  .lens-slide.swiper-container div {
    width: 100%;
    height: auto;
    padding-left: 5px;
    padding-right: 5px;
  }
  .section-lineuplink__inner__ttl {
    margin-bottom: 24px;
    height: 6.5vw;
    padding-bottom: 4px;
    position: relative;
    display: block;
  }
  picture.p-instagram__ttl {
    margin-bottom: 24px;
    height: 6.5vw;
    padding-bottom: 4px;
    position: relative;
    display: block;
  }
  .section-lens-spec__inner__attention p {
    font-size: 14px;
    text-align: left;
  }

  .section-lens-spec__inner__attention p br {
    display: block;
  }
  .section-lens-zerospi {
    background: #f6d8f6;
    background: linear-gradient(
      90deg,
      rgba(246, 216, 246, 1) 0%,
      rgba(216, 204, 234, 1) 45%,
      rgba(246, 216, 246, 1) 100%
    );
    padding: 80px 0;
    margin-top: 80px;
  }
  .section-lens-spec__spec,
  .section-lens-spec__feature {
    display: block;
    margin-bottom: 40px;
  }
  .section-design__inner {
    position: relative;
  }

  .section-design__inner::before {
    right: 10px;
    top: 0;
    transform: translateY(-50%);
  }

  .section-design__inner::after {
    position: absolute;
    left: 10px;
    bottom: 0;
    transform: translateY(50%);
  }

  .section-fv__inner .section-fv__bg {
    width: calc(100%);
  }
  .section-fv__inner .section-fv__bg.no-show {
    opacity: 0;
  }

  .section-fv__inner .section-fv__main {
    width: calc(100%);
  }

  .section-fv__inner .section-fv__01 {
    width: calc(100%);
  }

  .section-fv__inner .section-fv__02 {
    width: calc(100%);
  }

  .section-fv__inner .section-fv__03 {
    width: calc(100%);
  }
}
@media screen and (min-width: 641px) {
  .h-brown .section-design__inner::before {
    display: none;
  }
  .h-brown .section-design__inner::after {
    display: none;
  }
}

/*=================================================
  04:商品ページ　アイドルリング
  =================================================*/
body.i-ring #section-fv {
  padding-bottom: 0;
}
.i-ring .section-online {
  background-color: transparent;
  margin: 0 auto;
  padding: 80px 0;
  max-width: 960px;
}
.i-ring .section-lens-spec .section-online {
  padding: 0;
}
.i-ring #section-fv {
  padding: 95px 0 40px;
  background-image: url(../images/renewal/idolring/fv-bg.png);
  background-size: cover;
}

.i-ring .section-design__inner::before {
  background-image: url(../images/renewal/idolring/design-heart01.png);
}
.i-ring .section-design__inner::after {
  background-image: url(../images/renewal/idolring/design-heart02.png);
}

.i-ring .lens-copy {
  top: 580px;
  right: 210px;
}
@media screen and (max-width: 1000px) {
  .i-ring .lens-copy {
    top: 58vw;
    right: 21vw;
    width: 9.5vw;
  }
}

@media screen and (max-width: 640px) {
  .i-ring .section-fv__inner {
    padding: 0;
  }
  .i-ring #section-fv {
    padding: 75px 0 40px;
    background-image: url(../images/renewal/idolring/fv-bg_sp.png);
    background-size: cover;
  }

  .i-ring .section-fv__inner .section-fv__bg {
    display: none;
  }
}
@media screen and (min-width: 641px) {
  .i-ring .section-design__inner::before {
    display: none;
  }
  .i-ring .section-design__inner::after {
    display: none;
  }
}

/*=================================================
  05:商品ページ　ライアーピンク
  =================================================*/

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

/*=================================================
  06:商品ページ　レディブラック
  =================================================*/

body.l-black #section-fv {
  padding-bottom: 0;
}
.l-black .section-online {
  background-color: transparent;
  padding: 80px 0;
}
.l-black .section-lens-spec .section-online {
  padding: 0;
}
.l-black #section-fv {
  padding: 95px 0 40px;
  background-image: url(../images/renewal/ladyblack/fv-bg.png);
  background-size: cover;
}

.l-black .section-design__inner::before {
  background-image: url(../images/renewal/ladyblack/design-heart01.png);
}
.l-black .section-design__inner::after {
  background-image: url(../images/renewal/ladyblack/design-heart02.png);
}

.l-black .lens-copy {
  top: 580px;
  right: 210px;
}
@media screen and (max-width: 1000px) {
  .l-black .lens-copy {
    top: 58vw;
    right: 21vw;
    width: 9.5vw;
  }
}

@media screen and (max-width: 640px) {
  .l-black .section-fv__inner {
    padding: 0;
  }

  .l-black #section-fv {
    padding: 75px 0 40px;
    background-image: url(../images/renewal/ladyblack/fv-bg_sp.png);
    background-size: cover;
  }
}
@media screen and (min-width: 641px) {
  .l-black .section-design__inner::before {
    display: none;
  }
  .l-black .section-design__inner::after {
    display: none;
  }
}

/*=================================================
  07:商品ページ　ライアーピンク
  =================================================*/
body.l-pink #section-fv {
  padding-bottom: 0;
}
.l-pink .section-online {
  background-color: transparent;
  padding: 80px 0;
}
.l-pink .section-lens-spec .section-online {
  padding: 0;
}
.l-pink #section-fv {
  padding: 95px 0 40px;
  background-image: url(../images/renewal/liarpink/fv-bg.png);
  background-size: cover;
}

.l-pink .section-design__inner::before {
  background-image: url(../images/renewal/liarpink/design-heart01.png);
}
.l-pink .section-design__inner::after {
  background-image: url(../images/renewal/liarpink/design-heart02.png);
}

.l-pink .lens-copy {
  top: 580px;
  right: 210px;
}
@media screen and (max-width: 1000px) {
  .l-pink .lens-copy {
    top: 58vw;
    right: 21vw;
    width: 9.5vw;
  }
}

@media screen and (max-width: 640px) {
  .l-pink .section-fv__inner {
    padding: 0;
  }

  .l-pink #section-fv {
    padding: 75px 0 40px;
    background-image: url(../images/renewal/liarpink/fv-bg_sp.png);
    background-size: cover;
  }

  .section-lineuplink__inner__ttl h2 {
    font-size: 24px;
  }

  .section-lineuplink__inner__ttl::before {
    content: "";
    display: block;
    width: 32px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px dashed;
    color: #ee7e84;
    position: absolute;
  }
}
@media screen and (min-width: 641px) {
  .l-pink .section-design__inner::before {
    display: none;
  }
  .l-pink .section-design__inner::after {
    display: none;
  }
}

/*=================================================
  08:商品ページ　プリンセスショコラ
  =================================================*/

body.p-chocolat #section-fv {
  padding-bottom: 0;
}
.p-chocolat .section-online {
  background-color: transparent;
  padding: 80px 0;
}

.p-chocolat .section-lens-spec .section-online {
  padding: 0;
}
.p-chocolat #section-fv {
  padding: 95px 0 40px;
  background-image: url(../images/renewal/princesschocolat/fv-bg.png);
  background-size: cover;
}

.p-chocolat .section-design__inner::before {
  background-image: url(../images/renewal/princesschocolat/design-heart01.png);
}
.p-chocolat .section-design__inner::after {
  background-image: url(../images/renewal/princesschocolat/design-heart02.png);
}

.p-chocolat .lens-copy {
  top: 580px;
  right: 210px;
}
@media screen and (max-width: 1000px) {
  .p-chocolat .lens-copy {
    top: 58vw;
    right: 21vw;
    width: 9.5vw;
  }
}

@media screen and (max-width: 640px) {
  .p-chocolat .section-fv__inner .section-fv__main {
    padding: 24px 14px 36px 34px;
  }
  .h-brown .section-fv__inner .section-fv__main {
    padding: 64px 17px 36px 30px;
  }

  .p-chocolat .section-fv__inner {
    padding: 0;
  }

  .p-chocolat #section-fv {
    padding: 75px 0 40px;
    background-image: url(../images/renewal/princesschocolat/fv-bg_sp.png);
    background-size: cover;
  }

  .p-chocolat .lens-copy {
    top: 176px;
    right: 27px;
  }
}
@media screen and (min-width: 641px) {
  .p-chocolat .section-design__inner::before {
    display: none;
  }
  .p-chocolat .section-design__inner::after {
    display: none;
  }
}

/*=================================================
  09:商品ページ　スターグロー
  =================================================*/

body.s-glow #section-fv {
  padding-bottom: 0;
}
.s-glow .section-online {
  background-color: transparent;
  padding: 80px 0;
}
.s-glow .section-lens-spec .section-online {
  padding: 0;
}
.s-glow #section-fv {
  padding: 95px 0 40px;
  background-image: url(../images/renewal/starglow/fv-bg.png);
  background-size: cover;
}

.s-glow .section-design__inner::before {
  background-image: url(../images/renewal/starglow/design-heart01.png);
}
.s-glow .section-design__inner::after {
  background-image: url(../images/renewal/starglow/design-heart02.png);
}

.s-glow .lens-copy {
  top: 580px;
  right: 210px;
}
@media screen and (max-width: 1000px) {
  .s-glow .lens-copy {
    top: 58vw;
    right: 21vw;
    width: 9.5vw;
  }
}

@media screen and (max-width: 640px) {
  .s-glow .section-fv__inner .section-fv__main {
    padding: 32px 14px 36px 34px;
  }

  .s-glow .section-fv__inner {
    padding: 0;
  }

  .s-glow #section-fv {
    padding: 75px 0 40px;
    background-image: url(../images/renewal/starglow/fv-bg_sp.png);
    background-size: cover;
  }

  .s-glow .lens-copy {
    top: 176px;
    right: 35px;
  }
}
@media screen and (min-width: 641px) {
  .s-glow .section-design__inner::before {
    display: none;
  }
  .s-glow .section-design__inner::after {
    display: none;
  }
}

/*=================================================
  10:商品ページ　ゼロスピスター
  =================================================*/

body.zs-ring #section-fv {
  padding-bottom: 0;
}
.zs-ring .section-online {
  background-color: transparent;
  padding: 80px 0;
}
.zs-ring .section-lens-spec .section-online {
  padding: 0;
}
.zs-ring #section-fv {
  padding: 95px 0 40px;
  background-image: url(../images/renewal/zerospinstar/fv-bg.png);
  background-size: cover;
}

.zs-ring .section-design__inner::before,
.zs-ring .section-design__inner::after {
  background-image: unset;
}

.zs-ring .lens-copy {
  top: 580px;
  right: 210px;
}
@media screen and (max-width: 1000px) {
  .zs-ring .lens-copy {
    top: 58vw;
    right: 21vw;
    width: 9.5vw;
  }
}

@media screen and (max-width: 640px) {
  .zs-ring .section-fv__inner .section-fv__main {
    padding: 32px 0 0;
  }

  .zs-ring .section-fv__inner {
    padding: 0;
    top: -10px;
  }

  .zs-ring .section-design__inner::before {
    background-image: url(../images/renewal/zerospinstar/design-heart01.png);
  }
  .zs-ring .section-design__inner::after {
    background-image: url(../images/renewal/zerospinstar/design-heart02.png);
  }

  .zs-ring #section-fv {
    padding: 75px 0 40px;
    background-image: url(../images/renewal/zerospinstar/fv-bg_sp.png);
    background-size: cover;
  }
  .zs-ring .section-fv__inner .section-fv__bg {
    display: none;
  }

  .zs-ring .lens-copy {
    top: 176px;
    right: 35px;
  }
}

/*=================================================
  10:商品ページ　ゼロスピムーン
  =================================================*/

.onlineBtnZone .pc-only {
  display: block;
}
body.zm-ring #section-fv {
  padding-bottom: 0;
}
.zm-ring .section-online {
  background-color: transparent;
  padding: 80px 0;
}
.zm-ring .section-lens-spec .section-online {
  padding: 0;
}
.zm-ring #section-fv {
  padding: 95px 0 40px;
  background-image: url(../images/renewal/zerospinmoon/fv-bg.png);
  background-size: cover;
}

.zm-ring .section-design__inner::before {
  background-image: url(../images/renewal/zerospinmoon/design-heart01.png);
}
.zm-ring .section-design__inner::after {
  background-image: url(../images/renewal/zerospinmoon/design-heart02.png);
}

.zm-ring .lens-copy {
  top: 580px;
  right: 210px;
}
@media screen and (max-width: 1000px) {
  .zm-ring .lens-copy {
    top: 58vw;
    right: 21vw;
    width: 9.5vw;
  }
}

@media screen and (max-width: 640px) {
  .zm-ring .section-fv__inner .section-fv__main {
    padding: 32px 0 0;
  }

  .onlineBtnZone .pc-only {
    display: none;
  }

  .zm-ring .section-fv__inner {
    padding: 0;
    top: -10px;
  }

  .zm-ring #section-fv {
    padding: 75px 0 40px;
    background-image: url(../images/renewal/zerospinmoon/fv-bg_sp.png);
    background-size: cover;
  }
  .zm-ring .section-fv__inner .section-fv__bg {
    display: none;
  }

  .zm-ring .lens-copy {
    top: 176px;
    right: 35px;
  }
}
@media screen and (min-width: 641px) {
  .zm-ring .section-design__inner::before {
    display: none;
  }
  .zm-ring .section-design__inner::after {
    display: none;
  }
}

/*=================================================
  10:商品ページ　マリアリング
  =================================================*/

body.ma-ring #section-fv {
  padding-bottom: 0;
}
.ma-ring .section-online {
  background-color: transparent;
  padding: 80px 0;
}
.ma-ring .section-lens-spec .section-online {
  padding: 0;
}
.ma-ring #section-fv {
  padding: 95px 0 40px;
  background-image: url(../images/renewal/mariaring/fv-bg.png);
  background-size: cover;
}

.ma-ring .section-design__inner::before {
  background-image: url(../images/renewal/mariaring/design-heart01.png);
}
.ma-ring .section-design__inner::after {
  background-image: url(../images/renewal/mariaring/design-heart02.png);
}

.ma-ring .lens-copy {
  top: 580px;
  right: 210px;
}
@media screen and (max-width: 1000px) {
  .ma-ring .lens-copy {
    top: 58vw;
    right: 21vw;
    width: 9.5vw;
  }
}

@media screen and (max-width: 640px) {
  .ma-ring .section-fv__inner .section-fv__main {
    padding: 32px 0 0;
  }

  .ma-ring .section-fv__inner {
    padding: 0;
    top: -10px;
  }

  .ma-ring #section-fv {
    padding: 75px 0 40px;
    background-image: url(../images/renewal/mariaring/fv-bg_sp.png);
    background-size: cover;
  }
  .ma-ring .section-fv__inner .section-fv__bg {
    display: none;
  }

  .ma-ring .lens-copy {
    top: 176px;
    right: 35px;
  }
}
@media screen and (min-width: 641px) {
  .ma-ring .section-design__inner::before {
    display: none;
  }
  .ma-ring .section-design__inner::after {
    display: none;
  }
}

/*=================================================
  11:商品ページ　マーメイドリング
  =================================================*/

body.me-ring #section-fv {
  padding-bottom: 0;
}
.me-ring .section-online {
  background-color: transparent;
  padding: 80px 0;
}
.me-ring .section-lens-spec .section-online {
  padding: 0;
}
.me-ring #section-fv {
  padding: 95px 0 40px;
  background-image: url(../images/renewal/mermaidring/fv-bg.png);
  background-size: cover;
}

.me-ring .section-design__inner::before {
  background-image: url(../images/renewal/mermaidring/design-heart01.png);
}
.me-ring .section-design__inner::after {
  background-image: url(../images/renewal/mermaidring/design-heart02.png);
}

.me-ring .lens-copy {
  top: 580px;
  right: 210px;
}
@media screen and (max-width: 1000px) {
  .me-ring .lens-copy {
    top: 58vw;
    right: 21vw;
    width: 9.5vw;
  }
}

@media screen and (max-width: 640px) {
  .me-ring .section-fv__inner .section-fv__main {
    padding: 32px 0 0;
  }

  .me-ring .section-fv__inner {
    padding: 0;
    top: -10px;
  }

  .me-ring #section-fv {
    padding: 75px 0 40px;
    background-image: url(../images/renewal/mermaidring/fv-bg_sp.png);
    background-size: cover;
  }
  .me-ring .section-fv__inner .section-fv__bg {
    display: none;
  }

  .me-ring .lens-copy {
    top: 176px;
    right: 35px;
  }
}
@media screen and (min-width: 641px) {
  .me-ring .section-design__inner::before {
    display: none;
  }
  .me-ring .section-design__inner::after {
    display: none;
  }
}

/*プライバシーポリシー*/
section#o_pages {
  background-color: #fce9e9;
  padding-bottom: 120px;
}
#o_pages h2.title {
  text-align: center;
  font-size: 40px;
  padding: 180px 0 40px;
}
h2.o_h2.mt-0 {
  margin-top: 0;
}
h2.o_h2 {
  background-color: #ee7e83;
  font-size: 18px;
  padding: 4px 40px;
  border-radius: 1000px;
  color: #fff;
  margin-bottom: 14px;
  margin-top: 40px;
  position: relative;
}

h2.o_h2::before {
  width: 8px;
  height: 8px;
  border-radius: 10000px;
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.o_page_wrap .o_h3 {
  margin-bottom: 12px;
  margin-top: 24px;
}

li {
  list-style: none;
}

.o_page_wrap .privacy_inner p,
.o_page_wrap .privacy_inner li,
.o_page_wrap .privacy_inner .o_h3 {
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  section#o_pages {
    background-color: #fce9e9;
    padding-bottom: 80px;
  }
  #o_pages h2.title {
    text-align: center;
    font-size: 24px;
    padding: 100px 0 40px;
  }
  h2.o_h2 {
    background-color: #ee7e83;
    font-size: 18px;
    padding: 4px 40px;
    border-radius: 1000px;
    color: #fff;
    margin-bottom: 14px;
    margin-top: 35px;
    position: relative;
  }

  h2.o_h2::before {
    width: 8px;
    height: 8px;
    border-radius: 10000px;
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .o_page_wrap .o_h3 {
    margin-bottom: 12px;
    margin-top: 24px;
  }

  li {
    list-style: none;
  }

  .o_page_wrap .privacy_inner p,
  .o_page_wrap .privacy_inner li,
  .o_page_wrap .privacy_inner .o_h3 {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

table.company-table,
table.company-table tbody {
  width: 100%;
}
table.company-table tr {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
table.company-table th {
  background-color: #ee7e83;
  color: #fff;
  padding: 8px 18px;
  text-align: left;
  border-radius: 5px;
  display: block;
  width: 220px;
  display: flex;
  align-items: center;
}

table.company-table td {
  background-color: #fff;
  padding: 4px 9px;
  text-align: left;
  border-radius: 5px;
  display: block;
  width: calc(100% - 230px);
  display: flex;
  align-items: center;
}

@media screen and (max-width: 640px) {
  table.company-table th {
    font-size: 14px;
    width: 140px;
  }

  table.company-table td {
    width: calc(100% - 150px);
  }
  .footer-link {
    font-size: 14px;
  }
}

/*
モーダル
*/
a.js-modal-open:hover {
  cursor: pointer;
}

.c-modal_wrap {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  overflow-y: auto;
}

.nonScroll {
  height: calc(100vh + 1px);
  width: 1px;
  background-color: transparent;
}

.c-modal_wrap.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-modal_bg {
  position: fixed;
  z-index: 2001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(244, 230, 227, 0.9);
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.is-open .c-modal_bg {
  opacity: 1;
  animation-duration: 0.5s;
  animation-name: fade-in;
}

.c-modal {
  position: relative;
  z-index: 2002;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.c-modal > img {
  height: 80vh;
  filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.1));
}

.is-open .c-modal {
  opacity: 1;
  animation-duration: 0.5s;
  animation-name: fade-in;
}

.c-modal_close {
  position: absolute;
  z-index: 2003;
  cursor: pointer;
  top: 2vw;
  right: 2vw;
  width: 24px;
  height: 24px;
  background: url(../images/close_icon.svg) center center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  #lineup .c-modal {
    padding: 325px 0 20px;
  }
  .c-modal_close {
    top: 15px;
    right: 15px;
  }
}

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
/* popup*/
body.open_popup {
  overflow: hidden;
}

.bg_onetime_popup {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

body.open_popup .bg_onetime_popup {
  opacity: 1;
  visibility: visible;
}

.onetime_popup {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .onetime_popup {
    width: 250px;
    bottom: 15%;
    right: 15px;
  }
}
@media screen and (min-width: 768px) {
  .onetime_popup {
    bottom: 10%;
    right: 5%;
  }
}

.onetime_popup_title_close {
  position: absolute;
  top: 5px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #ccc;
  transform: translateY(-50%);
  cursor: pointer;
  border-radius: 50%;
}

.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 65%;
  height: 2px;
  background-color: #fff;
  content: "";
}

.onetime_popup_title_close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.onetime_popup_title_close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
  text-align: center;
}
.onetime_popup_content img {
  width: 100%;
}

#shop .onlineModalTitle {
  text-align: center;
  background-color: #eb8280;
  font-size: clamp(20px, calc(20px + ((100vw - 480px) * ((24 - 20) / (1200 - 480)))), 24px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  padding: 15px 10px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  padding-bottom: 0px;
}
@media screen and (min-width: 1200px) {
  #shop .onlineModalTitle {
    padding: 20px 15px 10px 15px;
  }
}
#shop .c-modal {
  width: 90%;
  max-width: 500px;
}
#shop .onlineModalList {
  background-color: #eb8280;
  margin: 0;
  padding: 0;
  list-style-type: none;
  padding: 15px 15px 15px 15px;
  margin-top: -1px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#shop .onlineModalList li {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: clamp(17px, calc(17px + ((100vw - 480px) * ((17 - 17) / (1200 - 480)))), 17px);
}
#shop .onlineModalList li a {
  color: #634a32;
  display: block;
  background-color: #fff;
  text-align: center;
  padding: 10px;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: 0.5s;
}
#shop .onlineModalList li a:hover {
  opacity: 0.9;
}

#lineup h2 {
  text-align: center;
}
#lineup .c-modal {
  width: 90%;
  max-width: 900px;
}
#lineup .lup-modal-cont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px 0px;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  #lineup .lup-modal-cont {
    grid-template-columns: repeat(6, 140px);
  }
}
#lineup .lup-modal-cont a {
  opacity: 1;
  transition: 0.5s;
}
#lineup .lup-modal-cont a:hover {
  opacity: 0.7;
}

.lup-modal-wrap {
  background: #fff;
  border-radius: 30px;
  padding: 30px 20px;
}
@media screen and (min-width: 1200px) {
  .lup-modal-wrap {
    padding: 40px 30px;
  }
}
.lup-modal-wrap h2 {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .lup-modal-wrap h2 {
    margin-bottom: 20px;
  }
}
.lup-modal-wrap h2 img {
  margin: auto;
}

.blink {
  animation-name: blinking; /*アニメーション名*/
  animation-duration: 1s; /*アニメーション1回分の時間の長さ*/
  animation-timing-function: ease-in-out; /*アニメーションの動き方*/
  animation-delay: 0s; /*アニメーションの開始時間*/
  animation-iteration-count: infinite; /*繰り返す回数*/
  animation-direction: alternate; /*反転再生するかどうか*/
}
@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.blink {
  animation: blinking 3s ease-in-out infinite alternate;
}
.accordionList {
  display: none;
}

.accordionList.open {
  display: block;
}

.blink2 {
  animation: blinking 2s ease-in-out infinite alternate;
}

.blink3 {
  animation: blinking 4s ease-in-out infinite alternate;
}

div#contact-field {
  background-color: #fce9e9;
}

.section-pankuzu__inner {
  margin-bottom: 32px;
  padding: 0 20px;
}
.section-pankuzu__inner a {
  display: inline-block;
  margin-right: 8px;
}
.section-pankuzu__inner span {
  color: #ee7e83;

  display: inline-block;
  margin-left: 8px;
}
@media screen and (max-width: 640px) {
  .section-pankuzu__inner {
    margin-bottom: 32px;
    padding: 0 20px;
    font-size: 14px;
  }
}
.section-design__inner.w-1000 {
  position: relative;
}
.lens-copy {
  position: absolute;
  display: block;
  width: 95px;
  height: 80px;
  right: 0px;
  object-fit: contain;
  top: 200px;
  z-index: 2;
}

@media screen and (max-width: 1000px) {
  .lens-copy {
    position: absolute;
    display: block;
    width: 9vw;
    height: 8vw;
    right: 1vw;
    object-fit: contain;
    top: 20vw;
    z-index: 2;
  }
}

@media screen and (max-width: 640px) {
  .lens_design_wrap {
    position: relative;
  }
  .lens-copy {
    position: absolute;
    display: block;
    width: 20vw;
    height: 18vw;
    right: 8vw;
    object-fit: contain;
    top: 57vw;
    z-index: 2;
  }
}

body .es-widget-header-container,
body .es-widget-header-container-template {
  margin-bottom: 0 !important;
}
body .es-widget-container {
  padding: 0 !important;
}
a.es-cta.es-media-cta {
  border-radius: 1000px;
  background-color: #ee7e83;
}

/*shopbtn*/
.onlineBtnZone {
  max-width: 500px;
  width: 85%;
  margin: auto;
  transform: rotateZ(0.05deg);
  margin: 0px auto;
}
@media screen and (min-width: 1200px) {
  .onlineBtnZone {
    margin: 40px auto;
  }
}

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

  .transition-btn {
    padding: 0 20px 80px;
    width: 100%;
  }
}

.btn-arrow {
  position: relative;
}
.btn-arrow:before {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  transition: all 0.3s ease;
  border: 0.15em solid currentColor;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  position: absolute;
  right: 6.0465116279vw;
  top: 2px;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px) {
  .btn-arrow:before {
    right: 30px;
    top: 2px;
  }
}

.onlineShopBtn {
  text-align: center;
  background-color: #ee7e83;
  font-size: clamp(20px, calc(20px + ((100vw - 480px) * ((24 - 20) / (1200 - 480)))), 24px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 10px;
  padding: 15px 10px;
  transition: 1.5s;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .onlineShopBtn {
    padding: 20px 15px;
  }
}
.onlineShopBtn:hover {
  cursor: pointer;
}
.onlineShopBtn.accordion-open.open {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  padding-bottom: 10px;
}

.open.btn-arrow::before {
  transform: rotate(-225deg);
  top: 12px;
}
@media screen and (min-width: 1200px) {
  .open.btn-arrow::before {
    top: 15px;
  }
}

.onlineShopList {
  background-color: #ee7e83;
  margin: 0;
  padding: 0;
  list-style-type: none;
  padding: 0px 15px 0px 15px;
  margin-top: 25px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.onlineShopList li {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: clamp(17px, calc(17px + ((100vw - 480px) * ((17 - 17) / (1200 - 480)))), 17px);
  cursor: auto;
}
.onlineShopList li a {
  color: #634a32;
  display: block;
  background-color: #fff;
  text-align: center;
  padding: 10px;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: 0.5s;
}
.onlineShopList li a:hover {
  opacity: 0.7;
}

footer img.foot-logo {
  filter: drop-shadow(0px 0px 5px #ee7e84);
}

button.btnsend {
  display: block;
  margin: auto;
  background-color: #ee7e83;
  color: #fff;
  padding: 15px;
  width: 100%;
  max-width: 500px;
}

button.btnback {
  display: block;
  margin: auto;
  background-color: #1a1a1a;
  color: #fff;
  padding: 15px;
  width: 100%;
  max-width: 500px;
}

/* 20250826 */
html.locked {
  overflow: hidden;
  height: 100%;
}

html.locked header {
  background: #f6bbbd;
}
.section-movie__inner__attention p span {
  display: block;
  font-size: 14px;
}
.onlineBtnZone.Lineup {
  max-width: initial;
}
.onlineBtnZone.Lineup .onlineShopList,
.Color-list {
  background: #fff;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 10px 10px;
}
.o-month .Color-list {
  grid-template-columns: repeat(3, 1fr);
}
.onlineBtnZone.Lineup .onlineShopList li a {
  background: none;
}
.onlineBtnZone.Lineup .onlineShopList li .image {
  display: block;
  margin: 0 auto 20px;
  width: 80%;
}
@media screen and (max-width: 640px) {
  header {
    height: 77.55px;
  }
  .onlineBtnZone.Lineup .onlineShopList {
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .onlineBtnZone.Lineup .onlineShopList {
    padding-top: 20px;
  }
  ul.header_list li:first-of-type a img {
    padding: 1px;
  }
  body.p-chocolat #section-fv,
  .s-glow #section-fv {
    padding-top: 65px;
  }
  body.h-brown #section-fv {
    padding-top: 45px;
  }
  #section-fv,
  body.i-ring #section-fv,
  .l-pink #section-fv,
  .l-black #section-fv {
    padding-top: 60px;
  }
}
.section-pankuzu__inner {
  margin: 32px auto;
}
.Wrap-FtrMenu {
  background: #fce9e9;
}
.Wrap-FtrMenu a:hover,
footer a:hover {
  text-decoration: underline;
}
.FtrMenu {
  align-items: baseline;
  background: #fce9e9;
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
.FtrMenu dl {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  width: 48%;
}
.FtrMenu dl dt {
  border-bottom: 1px solid #634a32;
  font-size: 16px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  width: 100%;
}
.FtrMenu dl dd {
  font-size: 14px;
  /* width: 30%; */
  letter-spacing: -0.05em;
  margin-right: 1.5em;
}
@media screen and (max-width: 640px) {
  .FtrMenu {
    display: block;
    padding: 15px 0;
  }
  .FtrMenu.under {
    padding: 0;
  }
  .FtrMenu dl {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .FtrMenu dl + dl {
    margin-top: 30px;
  }
  .FtrMenu dl dt {
    background: #f6bbbd;
    border-bottom: 0;
    padding-top: 10px;
  }
  .FtrMenu dl dd {
    display: inline-block;
    padding: 0 10px 5px;
    width: auto;
    letter-spacing: 0;
    margin-right: 0;
  }
}
#section-fv.Newpage {
  /* padding: 0; */
}

.wrap-Newpage {
  padding: 80px 0;
}
.MV {
  height: calc(100vh - 82px);
  min-height: 934px;
  position: relative;
}
.MV img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.MV .ttlTxt {
  bottom: 5%;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  position: absolute;
  text-align: center;
  width: 100%;
}
.MV .ttlTxt h1 {
  color: #fff;
  font-family: "Georgia", sans-serif;
  font-style: italic;
  font-size: 90px;
  text-align: center;
}
.MV .ttlTxt h1 span {
  font-size: 120px;
}
.Color-list {
  gap: 3rem;
  padding: 80px 0 120px;
}
.Color-list li {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: clamp(17px, calc(17px + ((100vw - 480px) * ((17 - 17) / (1200 - 480)))), 17px);
  text-align: center;
  position: relative;
}
.Color-list li a {
  display: block;
  position: relative;
}
.Color-list li span {
  display: block;
  margin-top: 10px;
}
.Color-list li span > span {
  font-size: 14px;
}
.Color-list li div {
  position: absolute;
  width: 58%;
  top: -6%;
  left: -16%;
}

.water-light::before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  right: -20px;
  top: -25px;
  background-image: url(../images/renewal/lineup-deco.png);
  background-size: contain;
  background-repeat: no-repeat;
}

h2.mt {
  margin-bottom: 50px;
}
h2.mt span {
  font-size: 1.4em;
}

@media screen and (max-width: 1000px) {
  .water-light::before {
    width: 12vw;
    height: 100px;
    right: -4vw;
    top: -25px;
  }
}
@media screen and (max-width: 640px) {
  .wrap-Newpage {
    padding: 50px 20px;
  }
  .MV {
    height: calc(100vh - 200px);
    min-height: 122.5vw;
  }
  .MV .ttlTxt h1 {
    font-size: 40px;
  }
  .MV .ttlTxt h1 span {
    font-size: 60px;
  }
  .Color-list {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 0 80px;
  }
  .Color-list li {
    margin: 0;
  }
  .Color-list li div {
    width: 68%;
    top: -12%;
    left: -8%;
  }

  .water-light::before {
    width: 20vw;
    height: 20vw;
    right: -3vw;
    top: -25px;
  }
}

.section-lens-feature_area {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10% 10% 0 0;
  padding-top: 4rem;
  width: 90%;
}

@media screen and (max-width: 640px) {
  .section-lens-feature_area {
    background-image: url(../images/renewal/zerospinmoon/feature-bg.png);
    border-radius: 130px 130px 0 0;
  }

  .section-lens-feature_area {
    background-image: url(../images/renewal/zerospinmoon/feature-bg.png);
    border-radius: 130px 130px 0 0;
  }
}

.section-lens-spec .wrap {
  background: #fff;
  box-shadow: 2px 2px 2px rgb(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 50px;
}

.section-lens-feature_area .wrap {
  background: none;
  box-shadow: unset;
}
.section-lens-spec h3 {
  background: hsla(19, 46%, 92%, 1);
  color: hsla(357, 78%, 72%, 1);
  font-size: 36px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: center;
}
.section-lens-spec .wrapCard {
  display: grid;
  gap: 0 60px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 25px;
}
.section-lens-spec .wrapCard span {
  border-bottom: 1px dashed hsla(0, 0%, 80%, 1);
  display: inline-block;
  padding: 25px 0;
}

.section-lens-feature_area .wrapCard span {
  border: none;
}
.section-lens-spec .wrapCard span.nonborder {
  border-bottom: none;
}

.section-lens-spec .wrap .section-lens-spec__feature {
  margin-bottom: 40px;
}

.section-lens-feature_area .note-text {
  width: 60%;
  margin: 0 auto 2rem;
}

@media screen and (max-width: 640px) {
  .section-lens-feature_area .note-text {
    width: 100%;
    margin: 0 auto 1rem;
  }
}

.section-lens-spec .wrap a.btn {
  border: 2px hsla(357, 78%, 72%, 1) solid;
  border-radius: 50vw;
  color: hsla(357, 78%, 72%, 1);
  display: block;
  font-size: 24px;
  padding: 15px 0;
  margin: 0 auto;
  position: relative;
  text-align: center;
  transition: ease 0.4s;
  max-width: 500px;
}
.section-lens-spec .wrap a.btn:hover {
  background: hsla(357, 78%, 72%, 1);
  color: #fff;
}
.section-lens-spec .wrap a.btn::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid hsla(357, 78%, 72%, 1);
  border-right: 2px solid hsla(357, 78%, 72%, 1);
  position: absolute;
  right: 27px;
  top: 23px;
  transform: rotate(45deg);
}
.section-lens-spec .wrap a.btn:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media screen and (max-width: 640px) {
  .section-lens-spec .wrap .section-lens-spec__feature {
    margin-bottom: 0;
  }
  .section-lens-spec .wrap {
    margin-bottom: 30px;
    padding: 25px 10px;
  }

  .section-lens-feature_area .wrap {
    margin-bottom: 50px;
  }
  .section-lens-spec h3 {
    font-size: 25px;
    margin: 0 5px 5px;
  }
  .section-lens-spec .wrapCard {
    display: block;
    margin-bottom: -15px;
    padding: 0 5px;
  }

  .section-lens-feature_area .wrapCard {
    margin-bottom: 1rem;
  }
  .section-lens-spec .wrapCard span {
    padding: 15px 5px;
  }

  .section-lens-feature_area .section-lens-spec .wrapCard span {
    padding: 5px 5px;
  }

  .section-lens-spec .wrapCard span.nonborder {
    border-bottom: 1px dashed hsla(0, 0%, 80%, 1);
  }

  .section-lens-feature_area .wrapCard span.nonborder {
    border-bottom: none;
  }
  .section-lens-spec .wrapCard span:last-of-type {
    border-bottom: none !important;
  }
  .section-lens-spec .wrap a.btn {
    font-size: 16px;
    margin: 30px 30px 0;
    padding: 13px 0;
  }
  .section-lens-spec .wrap a.btn::after {
    width: 10px;
    height: 10px;
    right: 15px;
    top: 20px;
  }
  .headmenu nav {
    flex-grow: 1;
  }
  ul.header_list {
    justify-content: flex-end;
  }
  ul.header_list li,
  .header__hamburger {
    margin-left: 14px;
  }
}

/* SPMenu */

.header__nav {
  background-color: #fff;
  bottom: 0;
  height: 100vh;
  left: 0;
  opacity: 0;
  padding: 50px 15vw 0;
  position: relative;
  right: 0;
  transform: translateY(100%);
  transition: ease 0.4s;
  width: 100%;
}
ul.header_list li.pc {
  display: none;
}

@media screen and (min-width: 640px) {
  .header__nav {
    display: none;
  }
  ul.header_list li.pc {
    display: block;
  }
  ul.header_list li.pc .l-header_link:first-of-type {
    padding-right: 5px;
  }
}

.nav-items__item a {
  border: 1px solid #000;
  border-radius: 50vw;
  display: block;
  line-height: 1;
  margin: 0 auto 25px;
  padding: 15px 0;
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
  }
}
.header__nav.active {
  opacity: 1;
  position: absolute;
  transform: translateY(100%);
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 35px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

.w-1120 {
  width: 100%;
  height: auto;
  max-width: 1120px;
  margin: auto;
}
.section-lineup__inner {
  padding: 100px 0;
}
@media screen and (max-width: 1120px) {
  .section-lineup__inner {
    padding: 120px 20px;
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 640px) {
  .sp-only {
    display: block;
  }
}

/* ノベルティページ */

.novelty .section-movie__inner__product {
  max-width: 1060px;
  margin-top: 72px;
}
@media screen and (max-width: 640px) {
  .novelty #section-fv {
    padding-bottom: 1px;
  }
  .novelty .section-movie__inner__product {
    margin-top: 52px;
  }
}
