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

/* adobe font は htmlで対応 */

/* 初期設定
------------------------------------------------------------ */

:root {
  --header-height: 64px;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  /* font-family: futura-pt, biz-udpgothic, sans-serif; */
  font-family: aktiv-grotesk, fot-udkakugo-large-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
}
body {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  position: relative;
  color: #2e2c2c;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  background-color: #fff;
  overflow-wrap: break-word;
}
body.scroll-prevent {
  overflow: hidden;
}

/* 文字リンク色 */
a,
button {
  -webkit-transition: color 0.3s ease;
  transition: opacity 0.3s ease;
  outline: none;
}
a:link {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:visited {
  text-decoration: none;
  color: #fff;
}
a:active,
button:active {
  text-decoration: none;
  color: #fff;
}
a:hover,
button:hover {
  text-decoration: none;
  color: #ccc;
  opacity: 0.7;
}

/* p justify */
p {
  margin: 0;
  padding: 0;
  text-align: justify;
  text-justify: auto;
}
i {
  font-style: italic;
}
strong {
  font-weight: bold;
}
span.ruby {
  font-size: 75%;
}
img {
  line-height: 0;
  vertical-align: bottom;
}
/* 見出しリセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
  line-height: 1.6;
}
/* リストリセット */
ul,
ol {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}

/*フォントファミリー */
.en {
  font-family: "beaufort-pro", serif;
  font-weight: 400;
  font-style: normal;
}
.min {
  font-family: shippori-mincho-b1, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.number {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* フォームリセット */
input[type="text"],
textarea {
  font-size: inherit;
}
input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  :root {
    --header-height: 48px;
  }

  body {
    grid-template-rows: auto;
    font-size: 1.2rem;
  }
}

/* 共通設定
------------------------------------------------------------ */

.img_box img {
  width: 100%;
  height: auto;
}

.pc {
  display: block;
}
.sp {
  display: none;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* スクロール禁止 */
.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------------------------- */
/*
/* 全体共通
/*
/* --------------------------------------------------------------------------------------------- */

/* 共通スタイル
------------------------------------------------------------ */
.cmnSection {
  width: 100%;
}

.cmnInner {
  width: 100%;
  max-width: calc(1024px + (36px * 2));
  margin: 0 auto;
  padding: 0 36px;
}

.sub_cmnInner {
  width: 100%;
  max-width: 762px;
  margin: 0 auto;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  .cmnInner {
    max-width: 100%;
    padding: 0 36px;
  }
}

/* 共通ボタン */
.cmnInner .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 482px;
  padding: 2rem 0;
  background: #000;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.8rem;
}
.cmnInner .btn a::before {
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  border-top: #efefef solid 1px;
  border-right: #efefef solid 1px;
  content: "";
  transform: rotate(45deg);
}

/* ヘッダー
------------------------------------------------------------ */
/*　スマホ表示時 */

header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  z-index: 9999;
}
header .cmnInner {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: var(--header-height);
  /* gap: 0 32px; */
  align-items: center;

  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;

  background: none;
  z-index: 2;
}

header .headerNav {
  display: flex;
  flex-direction: column;

  width: 375px;
  height: 100vh;
  padding: 90px 22px 0;
  position: absolute;
  top: 0;
  right: -375px;
  z-index: 1; /* -1 */
  background: #000;
}
header .headerNav .items_wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  position: relative;
  background: #000;
  padding: 20px 0;
  /* margin-bottom: 20px; */
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
}
header .headerNav .items {
}
header .headerNav .items a,
header .headerNav .items span {
  display: flex;
  align-items: center;
  padding: 0 0.75em;
  font-size: 1.8rem;
  height: 100%;
}
header .headerNav .items a:hover,
header .headerNav .items.open span {
  background: #222;
}
header .headerNav .items .subItems {
  display: none;
  justify-content: center;
  gap: 0 18px;
  width: 100vw;
  height: auto;
  padding: 24px 36px;
  position: absolute;
  top: var(--header-height);
  left: 0;
  background: #000;
}
header .headerNav .items.open .subItems {
  display: flex;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}
header .headerNav .items .item a {
  font-size: 1rem;
}
header .headerNav .items .item a span {
  font-size: 2rem;
}

/* ヘッダー用ボタン */
header .headerNav .btn_group .btn {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  line-height: 1.5;
}
header .headerNav .btn_group .btn a {
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  max-width: 100%; /* 482px */
  padding: 1.5rem 3rem;
  background: #fff;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.6rem;
  text-align: center;
}
header .headerNav .btn_group .btn a::before {
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  border-top: #000 solid 1px;
  border-right: #000 solid 1px;
  content: "";
  transform: rotate(45deg);
}

/*フェードインアニメ*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

header .cmnInner {
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 17px 0 19px 22px;
}

header .ttlLogo {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: auto;
  height: 32px;
  margin-left: 0; /*12px*/
}
header .ttlLogo img {
  width: auto;
  height: 100%;
}

header .headerNav .items.open .subItems {
  display: block;
}

header header .headerNav .items a,
header .headerNav .items span {
  display: flex;
  align-items: center;
  padding: 0 0.75em;
  font-size: 2rem;
  height: 100%;
}
header .headerNav .items .subItems {
  display: block;
  position: relative;
  padding: 0 0;
  top: 0;
  left: 0;
  margin-bottom: 20px;
}
header .headerNav .items.open .subItems::before {
  content: none;
}
header .headerNav .items .subItems .subItem:not(:first-of-type) {
  margin-top: 18px;
  /* padding-top: 18px; */
  /* border-top: rgba(182, 162, 149, 0.5) dotted 1px; */
}
header .headerNav .items .subItems .subItem {
  width: 100%;
  position: relative;
}

header .headerNav .items .subItems .subItem a {
  display: flex;
  padding: 0;
}

header .headerNav .items .subItems .subItem a:hover {
  opacity: 1;
}
header .headerNav .items .subItems .subItem a .txt {
  margin-top: 0;
  margin-left: 3.5rem;
  font-size: 1.4rem;
  text-align: left;
}

header .headerNav .items .subItems .subItem a .img_box {
  display: none;
}

/* header .headerNav .items .subItems .subItem a .img_box {
    width: 36%;
    transition: filter ease 0.3s;
  }
  header .headerNav .items .subItems .subItem a:hover .img_box {
    filter: brightness(1.1);
  } */

header .navBtns {
  padding: 0 12px 0 6px;
  margin-top: 2.5rem;
  height: auto;
  display: flex;
  justify-content: center;
  column-gap: 2vw;
}

header .navBtns .text {
  display: block;
}
header .navBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  header .navBtns {
    column-gap: 6vw;
  }
  
  
}

/* ハンバーガーボタン */
header .hamberger {
  width: var(--header-height);
  height: var(--header-height);
  padding: 0;
  position: relative;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .hamberger .inner {
  width: 22px;
  height: 22px;
  position: relative;
}

header .hamberger .inner span {
  display: inline-block;
  width: 22px;
  height: 1px;
  position: absolute;
  background: #707070;
  transition: background 0.7s ease;
}

/* アニメーション */
header .hamberger .inner span:nth-last-of-type(1) {
  top: 7px;
  animation: menu-bar01 0.4s forwards;
}
header .hamberger .inner span:nth-last-of-type(2) {
  bottom: 7px;
  animation: menu-bar02 0.4s forwards;
}

header.open .hamberger .inner span:nth-of-type(1) {
  animation: active-menu-bar01 0.4s forwards;
}
header.open .hamberger .inner span:nth-of-type(2) {
  animation: active-menu-bar02 0.4s forwards;
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(3.5px) rotate(45deg);
    background-color: #fff;
  }
  50% {
    transform: translateY(3.5px) rotate(0);
    background-color: #fff;
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-3.5px) rotate(-45deg);
    background: #fff;
  }
  50% {
    transform: translateY(-3.5px) rotate(0);
    background: #fff;
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-3.5px) rotate(0);
    background: #fff;
  }
  100% {
    transform: translateY(-3.5px) rotate(45deg);
    background: #fff;
  }
}
@keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(3.5px) rotate(0);
    background: #fff;
  }
  100% {
    transform: translateY(3.5px) rotate(-45deg);
    background: #fff;
  }
}

/* 暗転 */
#cover {
  /* 
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0.5; 
  */
}

/* メイン
------------------------------------------------------------ */
main {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

/* フッター
------------------------------------------------------------ */
footer {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  padding-bottom: 7rem;
  background: #000;
}
footer .cmnInner {
  padding-top: 90px;
  padding-bottom: 40px;
}
footer .footerLogo {
  width: 32%;
  margin: 0 auto;
}
footer .footerNav {
  margin-top: 50px;
}
footer .footerNav .items {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 1em;
  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
footer .footerNav .items .item {
  font-size: 1rem;
  text-align: center;
}
footer .footerNav .items .item span {
  font-size: 2rem;
  display: block;
}

footer .footerNav .sns_box {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  column-gap: 2rem;
  margin-top: 4rem;
}

footer .copyright {
  padding: 0 0 18px;
  color: #fff;
  text-align: center;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  footer .cmnInner {
    display: block;
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
  footer .footerLogo {
    width: 66%;
    margin: 0 auto;
  }
  footer .footerLogo img {
    width: 100%;
  }
  footer .footerNav {
    width: 100%;
    margin-top: 0;
  }
  footer .footerNav .items {
    display: block;
    width: 80%; /* fit-content */
    margin: 2rem auto 3rem;
  }
  footer .footerNav .items .item {
    font-size: 1rem;
    letter-spacing: 0;
    text-align: left;
  }
  footer .footerNav .items .item span {
    display: inline;
    margin-right: 2rem;
    font-size: 1.8rem;
    letter-spacing: 0;
  }

  footer .footerNav .items .toEC,
  footer .footerNav .items .toInsta {
    grid-column: 1 / 4;
    justify-self: center;
    margin-top: 12px;
  }

  footer .footerNav .items .toEC {
    grid-row: 4 / 5;
  }
  footer .footerNav .items .toInsta {
    grid-row: 5 / 6;
  }

  footer .footerNav .items .toEC {
    padding: 2px 12px;
  }

  footer .footerNav .sns_box {
    margin-top: 2rem;
  }

  footer .copyright {
    padding: 0 0 3rem;
    font-size: 1.1rem;
  }
}

/* --------------------------------------------------------------------------------------------- */
/*
/* トップページ
/*
/* --------------------------------------------------------------------------------------------- */

/* 固定ボタン
------------------------------------------------------------ */

#top #fixed_btn {
  display: grid;
  grid-template-columns: repeat(4, auto);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  margin: auto;
  padding: 1rem 0 1.5rem;
  border: 1px solid #fff;
  border-bottom: none;
  background: rgba(0, 0, 0, 1);

  z-index: 100;
}
#top #fixed_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 2.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.5;
  border-right: 1px solid #707070;
}
#top #fixed_btn a:last-child {
  border-right: none;
}
#top #fixed_btn a span {
  margin: 0 0 0 1rem;
}


#top #fixed_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 2.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.5;
  border-right: 1px solid #707070;
}
#top #fixed_btn a:last-child {
  border-right: none;
}
#top #fixed_btn a span {
  margin: 0 0 0 1rem;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #fixed_btn {
    width: 100%;
    padding-bottom: 1.35rem;
    border-left: none;
    border-right: none;
  }
  #top #fixed_btn a {
    flex-direction: column;
    max-width: 100%;
    padding: 0 0.75rem;
    transition: unset;
    font-size: 1.2rem;
  }
  #top #fixed_btn a span  {
    padding-top: 0.5rem;
  }
  #top #fixed_btn a:hover {
    opacity: 1;
  }
}
/* PCモニター */
@media screen and (min-width: 1280px) {
  #top #fixed_btn {
    width: fit-content; /* 29.29% */
  }
}

/* メインビジュアル
-------------------------------------------------------------*/

#top #mainVisual {
  width: 100%;
  /* height: 100vh; */
  position: relative;
  overflow: hidden;
}
#top #mainVisual .img_box {
  width: 100%;
  height: 100%;
}
#top #mainVisual .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* 告知 */
#top #mainVisual .notice {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 12.96%;
  z-index: 5;
}
#top #mainVisual .notice img {
  max-width: 166px;
  width: 100%;
  height: 100%;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #mainVisual {
    display: block;
    /* height: calc(100svh - 61px); */
    height: auto;
    background: #c6e7ed;
  }
  #top #mainVisual .img_box img {
    height: auto;
  }

  /* 告知 */
  #top #mainVisual .notice {
    position: absolute;
    bottom: 12%;
    right: 4%;
    width: 20.26%;
  }
  #top #mainVisual .notice img {
    max-width: 76px;
    width: 100%;
    height: 100%;
  }
}

/* 動画 */
#top #mainVisual #movie {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  position: relative;
  width: 100%;
  z-index: 10;
}
#top #mainVisual #movie .movie_box {
  width: 100%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
}
#top #mainVisual #movie .movie_box video {
  width: 100%;
  height: 100vh; /* 100% */
  object-fit: cover;
  object-position: center;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #mainVisual #movie {
    height: 100svh;
    position: static;
  }
  #top #mainVisual #movie .movie_box {
    width: 100%;
    height: auto;
    margin: 0 auto;
    transform: none;
  }
  #top #mainVisual #movie .movie_box video {
    width: 100%;
    height: 100svh;
  }
}

/* ページナビ
-------------------------------------------------------------*/
#top #pageNav {
  padding: 144px 0 162px;
}
#top #pageNav .cmnInner {
  padding: 0;
}
#top #pageNav .txt_box {
  line-height: 1.5;
}
#top #pageNav .txt_box .ttl {
  width: fit-content;
  margin: 0 auto;
  font-size: 3.6rem;
}
#top #pageNav .txt_box .copy {
  width: fit-content;
  margin: 36px auto 0;
  font-size: 2.8rem;
}

#top #pageNav .slide_box {
  margin-top: 54px;
  position: relative;
}

#top #pageNav .slide_box .items {
  display: flex;
  justify-content: space-between;
  padding: 0;
  position: relative;
}
#top #pageNav .slide_box .items .item {
  display: flex;
  justify-content: space-between;
  width: 127px;
  position: relative;
  z-index: 2;
}
#top #pageNav .slide_box .items .item a .name {
  font-size: 1.2rem;
  text-align: center;
}
#top #pageNav .slide_box .items .item a .img_box img {
  transition: transform 0.15s ease;
}
#top #pageNav .slide_box .items .item a:hover .img_box img {
  transform: scale(1.08);
}

#top #pageNav .slide_box .items .item a .name {
  margin-top: 18px;
}
#top #pageNav .slide_box .items .shadow img {
  width: 100%;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #pageNav {
    padding: 72px 0 89px;
  }
  #top #pageNav .cmnInner {
    padding: 0;
  }
  #top #pageNav .txt_box .ttl {
    width: fit-content;
    margin: 0 auto;
    font-size: 2.6rem;
  }
  #top #pageNav .txt_box .copy {
    width: fit-content;
    margin: 28px auto 0;
    font-size: 2rem;
  }

  #top #pageNav .slide_box {
    width: 100%;
    overflow-y: scroll;
  }
  #top #pageNav .slide_box .items {
    display: flex;
    justify-content: flex-start;
    width: fit-content;
    position: relative;
  }
  #top #pageNav .slide_box.items .item {
    display: flex;
    justify-content: space-between;
    width: 127px;
    position: relative;
    z-index: 2;
  }
  #top #pageNav .slide_box .items .item a .name {
    font-size: 1.2rem;
    text-align: center;
  }
  #top #pageNav .slide_box .items .item a .img_box img {
    transition: transform 0.15s ease;
  }

  #top #pageNav .slide_box .items .item a .name {
    margin-top: 18px;
  }
}

/* イントロ
-------------------------------------------------------------*/
#top #intro_wrap {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 50%;
  padding: 54px 36px;
  background: #000;
}
#top #intro_wrap .intro {
  grid-column: 1 / 2;

  display: grid;
  place-content: center;
  place-items: center;
}

#top #intro_wrap .intro .cmnInner {
  position: relative;
  z-index: 1;
}
#top #intro_wrap .intro .img_box {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
#top #intro_wrap .intro .img_box img {
  max-width: 320px; /* 225px */
  width: 100%;
  height: 100%;
}

#top #intro_wrap .intro .txt_box {
  padding: 36px 0;
  display: grid;
  place-content: center;
}
#top #intro_wrap .intro .txt_box img {
  width: 100%;
}

/* PC表示時 */
#top #intro_wrap .intro .pc {
  display: block;
}
/* SP表示時 */
#top #intro_wrap .intro .sp {
  display: none;
}

/* PCモニター */
@media screen and (min-width: 1280px) {
  #top #intro_wrap {
    grid-template-columns: 1fr auto;
  }
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #intro_wrap {
    display: block;
    padding: 0;
  }
  #top #intro_wrap .intro .cmnInner {
    display: block;
    padding: 20% 0;
  }
  #top #intro_wrap .intro .img_box {
    text-align: center;
  }
  #top #intro_wrap .intro .img_box img {
    max-width: 145px;
  }
  #top #intro_wrap .intro .txt_box {
    display: block;
    padding: 36px 0 0;
  }
  #top #intro_wrap .intro .txt_box img {
    width: 80%;
    margin: 0 auto;
  }
  /* PC表示時 */
  #top #intro_wrap .intro .pc {
    display: none;
  }
  /* SP表示時 */
  #top #intro_wrap .intro .sp {
    display: block;
  }
}

/* 動画 */
#top #intro_wrap #movie {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  position: relative;
  width: 100%;
  z-index: 10;
}
#top #intro_wrap #movie .movie_box {
  width: 100%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 6 / 9; /* 9 / 16 */
}
#top #intro_wrap #movie .movie_box video {
  width: 100%;
  height: 100%;
  /* object-fit: cover;
  object-position: center; */
}

/* PCモニター */
@media screen and (min-width: 1280px) {
  #top #intro_wrap #movie {
    height: 100svh;
  }
  #top #intro_wrap #movie .movie_box {
    aspect-ratio: 9 / 16; /* 9 / 16 */
  }
  #top #intro_wrap #movie .movie_box video {
    height: 100svh;
  }
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #intro_wrap #movie {
    /* height: 100svh; */
    position: static;
  }
  #top #intro_wrap #movie .movie_box {
    width: 100%;
    height: auto;
    margin: 0 auto;
    transform: none;
  }
  #top #intro_wrap #movie .movie_box video {
    width: 100%;
    height: auto;
  }
}

/* アマゾンランキング
------------------------------------------------------------ */
#top #amazonRanking {
  background: linear-gradient(180deg, #f8f8f8, #fff);
}
#top #amazonRanking .cmnInner {
  display: grid;
  grid-template-columns: 55% 36%;
  grid-template-rows: repeat(2, auto);
  gap: 0 9%;
  padding: 60px 36px;
}
#top #amazonRanking .txt_box {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
#top #amazonRanking .txt_box .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
}
#top #amazonRanking .txt_box .txt .txt_s {
  font-size: 2.6rem;
  text-align: center;
}
#top #amazonRanking .txt_box .txt .txt_m {
  font-size: 3.2rem;
  line-height: 2em;
}
#top #amazonRanking .txt_box .txt .txt_m .num {
  font-size: 6.6rem;
  font-weight: 200;
  vertical-align: -0.1em;
}
#top #amazonRanking .txt_box .txt .txt_m .rank {
  font-size: 4.6rem;
}
#top #amazonRanking .txt_box .note {
  padding-right: 1em;
  font-size: 1.2rem;
  align-self: flex-end;
}
#top #amazonRanking .laurel_box {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-content: center;
}
#top #amazonRanking .laurel_box img {
  width: 100%;
  height: auto;
}
#top #amazonRanking .img_box {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
#top #amazonRanking .img_box img {
  width: 100%;
  height: auto;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #amazonRanking .cmnInner {
    display: block;
    padding: 60px 0;
  }
  #top #amazonRanking .txt_box {
    padding: 0 36px;
  }
  #top #amazonRanking .txt_box .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #top #amazonRanking .txt_box .txt .txt_s {
    font-size: 2.4rem;
    text-align: center;
  }
  #top #amazonRanking .txt_box .txt .txt_m {
    font-size: 2.8rem;
    line-height: 2em;
    letter-spacing: 0em;
  }
  #top #amazonRanking .txt_box .txt .txt_m .num {
    font-size: 5.6rem;
    font-weight: 200;
    vertical-align: -0.07em;
  }
  #top #amazonRanking .txt_box .txt .txt_m .rank {
    font-size: 4rem;
  }
  #top #amazonRanking .laurel_box {
    max-width: 400px;
    margin: 30px auto 0;
    padding: 0 36px;
  }

  #top #amazonRanking .img_box {
    margin-top: 24px;
  }
}

/* ベストコスメ // #topicAward
-------------------------------------------------------------*/
#top #topicAward {
  display: grid;
  border-bottom: 1px solid #707070;
}
#top #topicAward .img_box {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
#top #topicAward .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
#top #topicAward .cmnInner {
  display: grid;
  grid-template-columns: auto 1fr;
  position: relative;
  grid-column: 1;
  grid-row: 1;
  place-content: center;

  z-index: 10;
}
#top #topicAward .cmnInner .icon_box {
  grid-column: 1 / 2;
  display: flex;
  justify-content: center;
}
#top #topicAward .cmnInner .icon_box img {
  max-width: 266px;
}
#top #topicAward .cmnInner .text_box {
  grid-column: 1 / 2;
  margin-top: 3.6rem;
  line-height: 4.5rem;
}
#top #topicAward .cmnInner .text_box p {
  text-align: center;
}
#top #topicAward .cmnInner .text_box .text {
  display: block;
  font-size: 2.6rem;
}
#top #topicAward .cmnInner .text_box .text_m {
  display: block;
  font-size: 3.2rem;
}

#top #topicAward .cmnInner .text_box .text_l {
  display: block;
  font-size: 4rem;
  line-height: 1.5;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #topicAward {
    background: #ece5d5;
  }
  #top #topicAward .img_box {
    align-self: flex-end;
  }
  #top #topicAward .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #top #topicAward .cmnInner {
    display: block;
    place-content: normal;
    margin-top: 5.2rem;
  }
  #top #topicAward .cmnInner .text_box {
    width: fit-content;
    margin: 3.6rem auto 0;
  }
  #top #topicAward .cmnInner .text_box p {
    margin-top: 4rem;
  }
  #top #topicAward .cmnInner .text_box p {
    text-align: left;
  }
  #top #topicAward .cmnInner .text_box .text {
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
  #top #topicAward .cmnInner .text_box .text_m {
    font-size: 3rem;
    line-height: 4.4rem;
  }

  #top #topicAward .cmnInner .text_box .text_l {
    font-size: 3.4rem;
  }
}

/* バリエーション  // #variation
-------------------------------------------------------------*/
#top #variation {
  padding: 7.8rem 0 0;
}

/* タイトル部分 */
#top #variation .cmnInner .section_title {
  text-align: center;
  font-size: 1.4rem;
  line-height: 4rem;
}
#top #variation .cmnInner .section_title span {
  display: block;
  font-size: 4.8rem;
}
#top #variation .var_wrap {
  margin-top: 5rem;
  color: #fff;
}

/* var_item_01, var_item_02 共通 */
#top #variation .var_wrap .cmnInner {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 6%;
}
#top #variation .var_wrap .cmnInner .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
#top #variation .var_wrap .cmnInner .txt_box {
  place-content: center;
}
#top #variation .var_wrap .cmnInner .txt_box .title_box {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 2vw;
}
#top #variation .var_wrap .cmnInner .txt_box .title_box img {
  max-width: 79px;
  height: auto;
}
#top #variation .var_wrap .cmnInner .txt_box .title_box .title {
  font-size: 1.2rem;
  line-height: 4rem;
}
#top #variation .var_wrap .cmnInner .txt_box .title_box .title span {
  display: block;
  font-size: 4.8rem;
}
#top #variation .var_wrap .cmnInner .txt_box .subtitle {
  font-size: 2rem;
  font-weight: 600;
}
#top #variation .var_wrap .cmnInner .txt_box .txt {
  font-size: 1.6rem;
  border-top: 1px solid #fff;
  margin-top: 6px;
  padding-top: 6px;
}
#top #variation .var_wrap .cmnInner .txt_box .txt span {
  font-weight: 600;
}
#top #variation .var_wrap .var_item_01,
#top #variation .var_wrap .var_item_02 {
  margin-top: 0.5rem;
}

/* var_item_01 */
#top #variation .var_wrap .var_item_01:first-child {
  margin-top: 0;
}
#top #variation .var_wrap .var_item_01 {
  background: linear-gradient(to left, #d4dbe0, #9ca3ae);
}

/* var_item_02 */
#top #variation .var_wrap .var_item_02 {
  background: linear-gradient(to right, #d4dbe0, #9ca3ae);
}

#top #variation .var_wrap .var_item_02 .cmnInner {
  grid-template-columns: 1fr auto;
}
#top #variation .var_wrap .var_item_02 .cmnInner .img_box {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

#top #variation .var_wrap .var_item_02 .cmnInner .txt_box {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  /* タイトル部分 */
  #top #variation .cmnInner .section_title {
    font-size: 1.2rem;
  }
  #top #variation .cmnInner .section_title span {
    font-size: 3.6rem;
  }

  /* var_item_01, var_item_02 共通 */
  #top #variation .var_wrap .cmnInner {
    display: block;
    padding: 0;
  }
  #top #variation .var_wrap .cmnInner .txt_box .title_box img {
    max-width: 96px;
    height: auto;
  }
  #top #variation .var_wrap .cmnInner .txt_box {
    padding: 3rem 2rem;
  }
  #top #variation .var_wrap .cmnInner .txt_box .title_box {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  #top #variation .var_wrap .cmnInner .txt_box .title_box .title {
    font-size: 1rem;
    line-height: 1.3;
  }
  #top #variation .var_wrap .cmnInner .txt_box .title_box .title span {
    font-size: 3.6rem;
  }
  #top #variation .var_wrap .cmnInner .txt_box .subtitle {
    font-size: 1.8rem;
  }
  #top #variation .var_wrap .cmnInner .txt_box .txt {
    font-size: 1.4rem;
  }

  /* var_item_02 */
  #top #variation .var_wrap .var_item_02 .cmnInner .txt_box .title_box .title {
    order: 2;
    text-align: right;
  }
  #top #variation .var_wrap .var_item_02 .cmnInner .txt_box .subtitle {
    text-align: right;
  }
  #top #variation .var_wrap .var_item_02 .cmnInner .txt_box .txt {
    text-align: right;
  }
}

/* ラインナップ  // #lineUp
-------------------------------------------------------------*/
#top #lineUp {
  padding: 7.8rem 0 14.4rem;
}
#top #lineUp .title_box .section_title {
  text-align: center;
  font-size: 1.4rem;
  line-height: 4rem;
}
#top #lineUp .title_box .section_title span {
  display: block;
  font-size: 4.8rem;
}
#top #lineUp .sub_cmnInner {
  margin-top: 7.2rem;
}
#top #lineUp .sub_cmnInner .lineUp_intro .logo_box {
  width: 100%;
  display: flex;
  justify-content: center;
}
#top #lineUp .sub_cmnInner .lineUp_intro .logo_box img {
  max-width: 310px;
}
/* 価格 */
#top #lineUp .sub_cmnInner .lineUp_intro .price_box {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  place-content: center;
  column-gap: 1.5vw;
  margin-top: 5rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1.4rem;
}
#top #lineUp .sub_cmnInner .lineUp_intro .price_box .price_item01 {
  display: flex;
  align-items: baseline;
}
#top #lineUp .sub_cmnInner .lineUp_intro .price_box .price_item02 {
  display: flex;
  align-items: center;
}
#top #lineUp .sub_cmnInner .lineUp_intro .price_box .price_item02 .sub {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
}
#top #lineUp .sub_cmnInner .lineUp_intro .price_box .list_price {
  width: fit-content;
  margin-right: 1rem;
  padding: 0 1rem;
  border: 1px solid #707070;
  text-align: center;
}
#top #lineUp .sub_cmnInner .lineUp_intro .price_box .type {
  font-size: 1.8rem;
}
#top #lineUp .sub_cmnInner .lineUp_intro .price_box .type span {
  padding: 0 0.1em;
  font-size: 3.6rem;
  font-weight: 500;
}

#top #lineUp .sub_cmnInner .lineUp_intro .price_box .innbundle span {
  padding-right: 0.1em;
  font-size: 3.6rem;
  font-weight: 500;
}

#top #lineUp .sub_cmnInner .lineUp_intro .price_box .price span {
  font-size: 4rem;
  font-weight: 500;
}
#top #lineUp .sub_cmnInner .lineUp_intro .price_box .tax {
  font-size: 1.4rem;
}
#top #lineUp .sub_cmnInner .lineUp_intro .price_box .tax span {
  font-size: 2rem;
}

/* 注意書き */
#top #lineUp .sub_cmnInner .lineUp_intro .text_box {
  margin-top: 2.5rem;
}
#top #lineUp .sub_cmnInner .lineUp_intro .text_box .txt {
  text-align: center;
}

/* ボタン */
#top #lineUp .sub_cmnInner .btn {
  margin-top: 7.2rem;
}
#top #lineUp .sub_cmnInner .btn a {
  margin-right: auto;
  margin-left: auto;
}

/* ボタングループ */
#top #lineUp .sub_cmnInner .btn_group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5%;
}
#top #lineUp .sub_cmnInner .btn_group .btn a {
  font-size: 1.6rem;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #lineUp {
    padding-bottom: 9rem;
  }
  #top #lineUp .title_box .section_title {
    font-size: 1.2rem;
  }
  #top #lineUp .title_box .section_title span {
    font-size: 3.6rem;
  }
  #top #lineUp .sub_cmnInner {
    margin-top: 12%;
  }
  #top #lineUp .sub_cmnInner .lineUp_intro .logo_box img {
    /* max-width: 192px; */
    display: flex;
    justify-content: center;
    width: 60%;
  }
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box {
    display: block;
    padding: 1.5rem 0;
    font-size: 1.2rem;
  }
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box .price_item01,
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box .price_item02 {
    justify-content: center;
  }
  /* 価格 */
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box {
    display: block;
    line-height: 1.5;
  }
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box .type {
    font-size: 1.6rem;
  }
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box .type span {
    font-size: 3rem;
  }
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box .color {
    margin-right: 0;
  }
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box .innbundle {
    margin-right: 0;
  }
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box .innbundle span {
    font-size: 3rem;
  }
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box .price span {
    font-size: 3.4rem;
  }
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box .tax {
    font-size: 1.2rem;
  }
  #top #lineUp .sub_cmnInner .lineUp_intro .price_box .tax span {
    font-size: 1.8rem;
  }
  /* ボタン */
  #top #lineUp .sub_cmnInner .btn_group .btn:first-child {
    margin-top: 6.4rem;
  }
  #top #lineUp .sub_cmnInner .btn_group .btn {
    margin-top: 2.4rem;
  }
  /* ボタングループ */
  #top #lineUp .sub_cmnInner .btn_group {
    display: block;
  }
}

/* 商品紹介 */
#top #lineUp .lineUp_product {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 8%;

  margin-top: 5.4rem;
}
#top #lineUp .lineUp_product .lineUp_item .img_box .main_img {
  max-width: 215px;
  margin: 0 auto;
}
/* #top #lineUp .lineUp_product .lineUp_item .img_box .sub_img {
  margin-top: 20px;
} */
#top #lineUp .lineUp_product .lineUp_item .txt_box {
  margin-top: 10%;
  padding: 1.8rem 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
#top #lineUp .lineUp_product .lineUp_item .txt_box .title {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2.5rem;
}
#top #lineUp .lineUp_product .lineUp_item .txt_box .title span {
  display: block;
  font-size: 2.8rem;
}
#top #lineUp .lineUp_product .lineUp_item .txt_box .txt_sub_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  justify-items: center;

  line-height: 1.25;
  font-size: 1.2rem;
}
#top #lineUp .lineUp_product .lineUp_item .txt_box .txt_sub_box p::after {
  content: "／";
}
#top
  #lineUp
  .lineUp_product
  .lineUp_item
  .txt_box
  .txt_sub_box
  p:last-child::after {
  display: none;
}

/* カラーバリエーション */
#top #lineUp .lineUp_product .color_var_group {
}
#top #lineUp .lineUp_product .color_var {
  display: grid;
  grid-template-columns: 1fr 65%;
  align-items: center;
  padding: 2rem 0 2rem;
  border-bottom: 1px dashed #707070;
}
#top #lineUp .lineUp_product .color_var:last-child {
  border-bottom: none;
}
#top #lineUp .lineUp_product .color_var .img_group {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
#top #lineUp .lineUp_product .color_var .img_group img {
  max-width: 79px;
}
#top #lineUp .lineUp_product .color_var .txt_group {
  font-size: 1rem;
  line-height: 1;
}
#top #lineUp .lineUp_product .color_var .txt_group.brn {
  color: #6d3d0b; /* #715340 */
}
#top #lineUp .lineUp_product .color_var .txt_group .en {
  font-size: 2.6rem;
  margin-right: 0.3rem;
}

#top #lineUp .lineUp_product .color_var_group .btn_cart a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* max-width: 196px; */
  padding: 0.5rem 3rem;
  background: #2e2c2c;
  color: #fff;
  border-radius: 100vh;
  text-decoration: none;
  font-size: 1.4rem;
}
#top #lineUp .lineUp_product .color_var_group .btn_cart a::before {
  display: none;
  /* width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  border-top: #efefef solid 1px;
  border-right: #efefef solid 1px;
  content: "";
  transform: rotate(45deg); */
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #lineUp .lineUp_product {
    display: block;
    margin-top: 10%;
  }
  #top #lineUp .lineUp_product .lineUp_item .img_box .main_img {
    max-width: 70%;
    margin: 0 auto;
  }
  #top #lineUp .lineUp_product .lineUp_item {
    padding: 2.2rem;
  }
  /* カラーバリエーション */
  #top #lineUp .lineUp_product .color_var:last-child {
    border-bottom: 1px dashed #707070;
  }
  #top #lineUp .lineUp_product .color_var .img_group img {
    max-width: 72px;
  }
}
/*　範囲指定 751px以上990px以下 */
@media screen and (min-width: 751px) and (max-width: 990px) {
  #top #lineUp .lineUp_product .color_var {
    grid-template-columns: 1fr 55%;
    column-gap: 5%;
  }
  #top #lineUp .lineUp_product .color_var .img_group {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  #top #lineUp .lineUp_product .color_var .txt_group {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  #top #lineUp .lineUp_product .color_var .txt_group .en {
    display: block;
  }
  #top #lineUp .lineUp_product .color_var_group .btn_cart {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    margin-top: 1rem;
  }
}

/* ツイーザー */
#top #lineUp .lineUp_sub_box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  column-gap: 3.5vw;
  padding: 5.5rem 5.5rem 5rem;
  border-radius: 14px;
  border: 1px solid #707070;
}

#top #lineUp .lineUp_sub_box .img_box {
  grid-column: 1 / 2;
  grid-row: 1 / span 3;
}
#top #lineUp .lineUp_sub_box .img_box img {
  max-width: 114px;
  height: auto;
}
#top #lineUp .lineUp_sub_box .icon_box {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}
#top #lineUp .lineUp_sub_box .icon_box img {
  max-width: 146px;
  height: auto;
}
#top #lineUp .lineUp_sub_box .titles_box {
  grid-column: 2 / 3;
}
#top #lineUp .lineUp_sub_box .titles_box .title img {
  max-width: 196px;
}
#top #lineUp .lineUp_sub_box .titles_box .subtitle {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
#top #lineUp .lineUp_sub_box .txt_box {
  grid-column: 2 / span 2;
  grid-row: 2 / 3;
  margin-top: 2rem;
}
#top #lineUp .lineUp_sub_box .price_sub_box {
  grid-column: 2 / span 2;
  grid-row: 3 / 4;
  place-content: center;
  margin-top: 2rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
#top #lineUp .lineUp_sub_box .price_sub_box .price_line {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 5%;
}
#top #lineUp .lineUp_sub_box .price_sub_box .price_line .price_item02 {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
#top #lineUp .lineUp_sub_box .price_sub_box .price_line .price_item02 .sub {
  display: flex; /* grid */
  align-items: baseline;
}
#top #lineUp .lineUp_sub_box .price_sub_box .price_line .list_price {
  width: fit-content;
  margin-right: 1rem;
  padding: 0 1rem;
  border: 1px solid #707070;
  font-size: 1.2rem;
  text-align: center;
}
#top #lineUp .lineUp_sub_box .price_sub_box .price_line .length {
  font-size: 1.4rem;
}
#top #lineUp .lineUp_sub_box .price_sub_box .price_line .price {
  font-size: 1.8rem;
}
#top #lineUp .lineUp_sub_box .price_sub_box .price_line .price span {
  font-size: 3.4rem;
}
#top #lineUp .lineUp_sub_box .price_sub_box .price_line .tax {
  font-size: 1rem;
}
#top #lineUp .lineUp_sub_box .price_sub_box .price_line .tax span {
  font-size: 1.6rem;
}

/* ボタン */
#top #lineUp .lineUp_sub_box .btn_cart {
  grid-column: 2 / 4;
  display: flex;
  justify-content: center;
  align-items: center;
/*
  width: 196px;
  max-width: 196px;
  margin: 2.5rem auto 0;
  padding: 0.5rem 3rem;
  background: #2e2c2c;
  color: #fff;
  border-radius: 100vh;
  text-decoration: none;
  font-size: 1.4rem;
*/
}

#top #lineUp .lineUp_sub_box .btn_cart a::before {
  display: none;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #lineUp .lineUp_sub_box {
    position: relative;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    column-gap: 4vw;
    padding: 5rem 2rem 3rem;
  }
  #top #lineUp .lineUp_sub_box .icon_box {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  #top #lineUp .lineUp_sub_box .icon_box img {
    position: absolute;
    top: -3rem;
    right: 0;
    left: 0;
    margin: auto;
    max-width: fit-content;
  }
  #top #lineUp .lineUp_sub_box .img_box {
    grid-column: 1 / 2;
    grid-row: 2 / span 2;
  }
  #top #lineUp .lineUp_sub_box .img_box img {
    max-width: 68px;
    height: auto;
  }
  #top #lineUp .lineUp_sub_box .titles_box {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  #top #lineUp .lineUp_sub_box .titles_box .title img {
    max-width: 136px;
  }
  #top #lineUp .lineUp_sub_box .titles_box .subtitle {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    letter-spacing: 0.09rem;
  }
  #top #lineUp .lineUp_sub_box .txt_box {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    margin-top: 1rem;
  }
  #top #lineUp .lineUp_sub_box .price_sub_box {
    grid-column: 1 / span 2;
    grid-row: 4 / 5;
  }
  #top #lineUp .lineUp_sub_box .price_sub_box .price_line {
    grid-template-columns: 100%;
    padding: 1.4rem 0;
    line-height: 1.5;
  }
  #top #lineUp .lineUp_sub_box .price_sub_box .price_line .price_item01,
  #top #lineUp .lineUp_sub_box .price_sub_box .price_line .price_item02 {
    display: flex;
    justify-content: center;
  }

  /* ボタン */
  #top #lineUp .lineUp_sub_box .btn_cart {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
  }
  
}

/* FEATURES  // #features
-------------------------------------------------------------*/
#top #features {
  background: #f8f8f8;
  padding: 7.8rem 0 14.4rem;
}
#top #features .section_title {
  text-align: center;
  font-size: 1.4rem;
  line-height: 4rem;
}
#top #features .section_title span {
  display: block;
  font-size: 4.8rem;
}
#top #features .features_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6vw;
  margin-top: 5rem;
}
#top #features .features_box .features_item {
  grid-row: span 4;
  display: grid;
  gap: 0.65rem;
  grid-template-rows: subgrid;
}
#top #features .features_box .features_item .title {
  display: flex;
  align-items: center;
}
#top #features .features_box .features_item .title::after {
  content: "";
  width: auto;
  height: 1px;
  border-top: #6c4f2c solid 1px;
  flex-grow: 1;
}
#top #features .features_box .features_item .title .point {
  display: flex;
  align-items: center;
}
#top #features .features_box .features_item .title .italic {
  margin-right: 1rem;
  font-size: 3rem;
  font-style: italic;
}
#top #features .features_box .features_item .subtitle {
  display: flex;
  align-items: center;
}
#top #features .features_box .features_item .txt_box {
  margin-top: 3rem;
}
#top #features .features_box .features_item .img_box {
  margin-top: 4rem;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #features .section_title {
    font-size: 1.2rem;
  }
  #top #features .section_title span {
    font-size: 3.6rem;
  }
  #top #features .features_box {
    display: block;
    margin-top: 0;
  }
  #top #features .features_box .features_item {
    padding-top: 4rem;
  }
  #top #features .features_box .features_item .txt_box {
    margin-top: 1rem;
  }
  #top #features .features_box .features_item {
    display: block;
  }
  #top #features .features_box .features_item .subtitle {
    margin-top: 1.2rem;
  }
  #top #features .features_box .features_item .img_box {
    margin-top: 2rem;
  }
}

/* PERFECT FOR  // #perfectFor
-------------------------------------------------------------*/
#top #perfectFor {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#top #perfectFor .txt_group {
  place-content: center;
  max-width: fit-content;
  margin: 0 auto;
}
#top #perfectFor .section_title {
  padding: 5rem 0;
  border-bottom: 1px solid #707070;
  font-size: 1.4rem;
  line-height: 4rem;
}
#top #perfectFor .section_title span {
  display: block;
  font-size: 4.8rem;
}
#top #perfectFor .txt_box {
  margin-top: 5rem;
}
#top #perfectFor .txt_box .check_list {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  font-size: 2.2rem;
}
#top #perfectFor .txt_box .check_list .txt span {
  font-size: 2.4rem;
  font-weight: 600;
}
#top #perfectFor .txt_box .check_list img {
  vertical-align: middle;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #perfectFor {
    display: block;
  }
  #top #perfectFor .txt_group {
    max-width: fit-content;
    width: 100%;
    padding: 16% 8% 20%;
  }
  #top #perfectFor .txt_box {
    margin-top: 3.6rem;
  }
  #top #perfectFor .txt_box .check_list {
    padding: 0.25rem 0;
  }
  #top #perfectFor .txt_box .check_list .txt {
    font-size: 1.8rem;
  }
  #top #perfectFor .txt_box .check_list .txt span {
    font-size: 2rem;
  }
  #top #perfectFor .section_title {
    padding: 0 0 3rem;
    font-size: 1.2rem;
    line-height: 3rem;
  }
  #top #perfectFor .section_title span {
    font-size: 3.6rem;
  }
}

/* HOW TO USE  // #howtoUse
-------------------------------------------------------------*/
#top #howtoUse {
  padding: 7.8rem 0 14.4rem;
  background: #f8f8f8;
}
#top #howtoUse .section_title {
  text-align: center;
  font-size: 1.4rem;
  line-height: 4rem;
}
#top #howtoUse .section_title span {
  display: block;
  font-size: 4.8rem;
}
#top #howtoUse .howtoUse_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6vw;
  margin-top: 5rem;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #howtoUse {
    padding-bottom: 8rem;
  }
  #top #howtoUse .section_title {
    font-size: 1.2rem;
  }
  #top #howtoUse .section_title span {
    font-size: 3.6rem;
  }
}

/* 動画 */
#top #howtoUse #movie {
  position: relative;
  width: 100%;
  padding: 60px 0;
}
#top #howtoUse #movie .movie_box {
  width: 60%;
  height: auto;
  margin: 0 auto;
}
#top #howtoUse #movie .movie_box video {
  width: 100%;
  height: 100%;
}

/* 保管方法 */
#top .howtoSave {
  padding: 8rem 5rem 0;
}
#top .howtoSave .title_box {
  border-bottom: 1px solid #707070;
  font-size: 2rem;
}
#top .howtoSave .text_wrap {
  display: grid;
  grid-template-columns: 48% 48%;
  column-gap: 4%;
  padding-top: 5rem;
}
#top .howtoSave .text_wrap .text_box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 5rem 3rem;
  border: 1px solid #707070;
  font-size: 1.6rem;
}
#top .howtoSave .text_wrap .text_box span {
  display: block;
  padding-right: 1rem;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #howtoUse #movie {
    /* height: 100svh; */
    padding: 3rem 0;
  }
  #top #howtoUse #movie .movie_box {
    width: 100%;
    height: auto;
    margin: 0 auto;
    transform: none;
  }
  #top #howtoUse #movie .movie_box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* 保管方法 */
  #top .howtoSave {
    padding: 5rem 0 0;
  }
  #top .howtoSave .text_wrap {
    display: block;
  }
  #top .howtoSave .text_wrap .text_box {
    margin-bottom: 2.5rem;
    padding: 2.5rem 3rem;
    font-size: 1.2rem;
  }
}

/* flow */
#top #howtoUse .howtoUse_flow {
  display: grid;
  position: relative;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 4vw;
  z-index: 2;
}
#top #howtoUse .howtoUse_flow::before {
  grid-column: 1 / span 6;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  margin-top: 2.5rem;
  background: #000;
  z-index: -1;
}
#top #howtoUse .howtoUse_flow .flow_item {
  grid-row: span 3;

  display: grid;
  grid-template-rows: subgrid;
}
#top #howtoUse .howtoUse_flow .flow_item .title {
  display: flex;
  align-items: center;
}
#top #howtoUse .howtoUse_flow .flow_item .title .point {
  display: flex;
  align-items: center;
  margin-left: -1rem;
  padding-left: 1rem;
  background: #f8f8f8;
}
#top #howtoUse .howtoUse_flow .flow_item .title .italic {
  padding-right: 1rem;
  background: #f8f8f8;
  font-size: 3rem;
  font-style: italic;
}
#top #howtoUse .howtoUse_flow .flow_item .txt_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  text-align: center;
}
#top #howtoUse .howtoUse_flow .flow_item .img_box {
  margin-top: 2rem;
}

/* ナンバリング */
.flow_item01 {
  grid-column: 2 / 3;
}
.flow_item02 {
  grid-column: 3 / 4;
}
.flow_item03 {
  grid-column: 4 / 5;
}
.flow_item04 {
  grid-column: 5 / 6;
}

/* サブ */
#top #howtoUse .howtoOff_box {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 4vw;
  margin-top: 7.2rem;
  padding: 3rem 6.3rem;
  border-radius: 14px;
  border: 1px solid #707070;
}
#top #howtoUse .howtoOff_box .txt_box {
  place-content: center;
}
#top #howtoUse .howtoOff_box .title {
  font-size: 1.8rem;
  font-weight: 600;
}
#top #howtoUse .howtoOff_box .txt {
  margin-top: 2.6rem;
}
#top #howtoUse .howtoOff_box .img_box img {
  max-width: 229px;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #howtoUse .howtoUse_flow {
    grid-template-columns: repeat(4, auto);
  }
  #top #howtoUse .howtoUse_flow .flow_item .txt_box {
    font-size: 1.2rem;
  }
  #top #howtoUse .howtoUse_flow::after {
    grid-column: 1 / span 6;
    grid-row: 4 / 5;
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    margin-top: 2.5rem;
    background: #000;
    z-index: -1;
  }

  /* ナンバリング */
  .flow_item01 {
    grid-column: 2 / 3;
  }
  .flow_item02 {
    grid-column: 3 / 4;
  }
  .flow_item03 {
    grid-column: 2 / 3;
  }
  .flow_item04 {
    grid-column: 3 / 4;
  }
  .flow_item01,
  .flow_item02 {
    margin-bottom: 3rem;
  }
  /* サブ */
  #top #howtoUse .sub_cmnInner {
    padding: 0 2.4rem;
  }
  #top #howtoUse .howtoOff_box {
    display: block;
    padding: 3rem;
  }
  #top #howtoUse .howtoOff_box .txt {
    margin-top: 2rem;
  }
  #top #howtoUse .howtoOff_box .img_box img {
    display: block;
    margin: 2.4rem auto 0;
  }
}

/* RETAIL LOCATIONS  // #retailLocation
-------------------------------------------------------------*/
#top #retailLocation {
  display: block;
  padding: 80px 0 150px;
  background: linear-gradient(to top, #c4cdcf, #e5ebeb);
}
#top #retailLocation .cmnInner {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 500px auto auto auto;
  margin: 0 auto;
}
#top #retailLocation .img_box {
  grid-column: 1 / 2;
  grid-row: 2 / 6;
  width: 100%;
  height: 100%;
}
#top #retailLocation .img_box img {
  max-width: fit-content;
  margin: 0 auto;
}

#top #retailLocation .cmnInner .text_wrap {
  grid-row: 1 / 2;
}
#top #retailLocation .cmnInner .text_box {
  place-items: center;
  line-height: 4.5rem;
}
#top #retailLocation .cmnInner .text_box p {
  text-align: center;
}
#top #retailLocation .cmnInner .text_box .day {
  width: fit-content;
  margin: 0 auto;
  padding: 0.5rem 5rem;
  border-radius: 9px;
  color: #fff;
  background: #5e677e;
  font-size: 2.5rem;
}
#top #retailLocation .cmnInner .text_box .text {
  display: block;
  font-size: 2.6rem;
}
#top #retailLocation .cmnInner .text_box .text_m {
  display: block;
  margin-top: 3rem;
  font-size: 3.2rem;
}
#top #retailLocation .cmnInner .text_box .text_l {
  display: block;
  margin-top: 1rem;
  font-size: 4rem;
}
#top #retailLocation .cmnInner .text_box .txt {
  margin-top: 1rem;
  font-size: 2.4rem;
}
#top #retailLocation .cmnInner .btn {
  grid-column: 1 / 2;
  grid-row: 7 / 8;
  place-content: flex-end;
  margin-top: 70px;
}
#top #retailLocation .cmnInner .btn a {
  position: relative;
  margin: 0 auto;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #retailLocation {
    padding: 4rem 0 8rem;
  }
  #top #retailLocation .cmnInner {
    grid-template-rows: auto 180px auto auto;
    place-content: normal;
    margin-top: 6rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  #top #retailLocation .img_box img {
    max-height: auto;
  }
  #top #retailLocation .cmnInner .text_box .day {
    font-size: 2.0rem;
  }
  #top #retailLocation .cmnInner .text_box .txt {
    margin-top: 0.5rem;
    font-size: 1.8rem;
    line-height: 3.2rem;
    text-align: center;
  }
  #top #retailLocation .cmnInner .text_box .text_m {
    margin-top: 1.5rem;
    font-size: 2.4rem;
    line-height: 4rem; /* 4.4rem */
    letter-spacing: 0.01rem;
  }
  #top #retailLocation .cmnInner .text_box .text_l {
    margin-top: 0;
    font-size: 3rem;
    letter-spacing: 0.01rem;
  }

  #top #retailLocation .cmnInner .btn {
    margin-top: 40px;
  }
  #top #retailLocation .cmnInner .btn a {
    align-items: baseline;
    line-height: 1.5;
  }
}

/* 店舗一覧
--------------------------------------------------- */

#top #retailLocation .cmnInner .ttl_box {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  margin-top: 54px;
}
#top #retailLocation .cmnInner .ttl_box .ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0 4px;
  font-size: 1.4rem;
}
#top #retailLocation .cmnInner .ttl_box .ttl .en {
  font-size: 4.8rem;
}
#top #retailLocation .cmnInner .ttl_box .txt {
  margin-top: 48px;
  font-size: 1.8rem;
  text-align: center;
}
#top #retailLocation .cmnInner .store_links_box {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
  padding-top: 5rem;
}
#top #retailLocation .cmnInner .store_links_box .store_links {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  column-gap: 2%;
}
#top #retailLocation .cmnInner .store_links_box .store_links .store_link {
  width: calc((100% - 4%) / 3);
  padding-bottom: 2%;
}
#top #retailLocation .cmnInner .store_links_box .store_links .store_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 1rem 0;
  background: rgba(156, 161, 174, 1);
  border-radius: 8px;
  font-size: 2.0rem;
  line-height: 1.5;
  text-align: center;
}
#top
  #retailLocation
  .cmnInner
  .store_links_box
  .store_links
  .store_link
  a:hover
  img {
  opacity: 0.7;
}

#top #retailLocation .cmnInner .store_links_box .store_links .store_link span {
  padding: 0 1rem;
}

#top #retailLocation .cmnInner #store_shop.store-list {
  grid-column: 1 / 2;
  grid-row: 5 / 6;
  padding-top: 40px;
}
#top #retailLocation .cmnInner #store_online.store-list {
  grid-column: 1 / 2;
  grid-row: 6 / 7;
  padding-top: 60px;
}
#top #retailLocation .cmnInner #store_online.store-list .section_title span {
  font-size: 2rem;
}
#top #retailLocation .cmnInner .store-list .section_title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  place-items: center;
  /* border-bottom: 1px solid #707070; */
  font-size: 2rem;
}
#top #retailLocation .cmnInner .store-list .section_title::before,
#top #retailLocation .cmnInner .store-list .section_title::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
}
#top #retailLocation .cmnInner .store-list .section_title span {
  padding-left: 2rem;
  padding-right: 2rem;
  /* font-size: 4rem; */
}
#top #retailLocation .cmnInner .store-list .textLink_box {
  display: flex;
  margin-top: 1.5rem;
}
#top #retailLocation .cmnInner .store-list .txtLink {
  padding-left: 2rem;
}
#top #retailLocation .cmnInner .store-list .txtLink a {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: #333;
  font-size: 1.4rem;
  z-index: 0;
}
#top #retailLocation .cmnInner .store-list .txtLink a::before {
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  border-top: #333 solid 1px;
  border-right: #333 solid 1px;
  content: "";
  transform: rotate(45deg);
}

/* 注意書き */
#top #retailLocation .cmnInner .txt_attention {
  padding-top: 5rem;
  text-align: right;
}


/* 一覧詳細 */
#top #retailLocation .cmnInner .store-list .store_cotents {
  margin-top: 40px;
}
#top #retailLocation .cmnInner .store-list .store_cotents .store_content {
  display: grid;
  grid-template-columns: 22% auto;
  padding: 2rem 0;
  border-bottom: 1px solid #707070;
}
#top
  #retailLocation
  .cmnInner
  .store-list
  .store_cotents
  .store_content:first-child {
  border-top: 1px solid #707070;
}
#top #retailLocation .cmnInner .store-list .store_cotents .title_area {
  font-size: 1.6rem;
}
#top #retailLocation .cmnInner .store-list .store_cotents .title_area a {
  color: #333;
  text-decoration: underline;
}
#top #retailLocation .cmnInner .store-list .store_cotents .store_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#top
  #retailLocation
  .cmnInner
  .store-list
  .store_cotents
  .store_items
  .store_item {
  width: calc(100% / 4);
  font-size: 1.2rem;
  display: flex;
  align-items: baseline;
  padding: 0.4rem;
  line-height: 1.5;
}
#top
  #retailLocation
  .cmnInner
  #store_online.store-list
  .store_cotents
  .store_items
  .store_item {
  width: calc(100% / 3);
  font-size: 1.2rem;
  display: flex;
  align-items: baseline;
  padding: 0.4rem;
  line-height: 1.5;
}
#top
  #retailLocation
  .cmnInner
  .store-list
  .store_cotents
  .store_items
  .store_item::before {
  content: "・";
  font-size: 0.8rem;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #retailLocation .cmnInner .ttl_box {
    margin-top: 24px;
  }
  #top #retailLocation .cmnInner .ttl_box .ttl {
    font-size: 1.2rem;
  }
  #top #retailLocation .cmnInner .ttl_box .ttl .en {
    font-size: 3.6rem;
    letter-spacing: 0;
  }
  #top #retailLocation .cmnInner .ttl_box .txt {
    font-size: 1.4rem;
    text-align: center;
  }
  #top #retailLocation .cmnInner .store_links_box {
    padding-top: 4rem;
  }
  #top #retailLocation .cmnInner .store_links_box .store_links {
    display: block;
  }
  #top #retailLocation .cmnInner .store_links_box .store_links .store_link {
    width: 80%;
    margin: 0 auto;
  }
  #top #retailLocation .cmnInner .store_links_box .store_links .store_link a {
    height: 80px;
    font-size: 1.6rem;
    font-weight: 500;
    transition: unset;
  }
  #top
    #retailLocation
    .cmnInner
    .store_links_box
    .store_links
    .store_link
    a:hover {
    color: #fff;
    opacity: 1;
  }
  #top
    #retailLocation
    .cmnInner
    .store_links_box
    .store_links
    .store_link
    a:hover
    img {
    opacity: 1;
  }
  #top #retailLocation .cmnInner .store-list .textLink_box {
    display: block;
    margin-top: 1.5rem;
  }
  #top #retailLocation .cmnInner .store-list .section_title span {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #top #retailLocation .cmnInner .store-list .txtLink {
    padding-left: 0;
  }
  #top #retailLocation .cmnInner .store-list .txtLink a {
    font-size: 1.2rem;
  }
  /* 一覧詳細 */
  #top #retailLocation .cmnInner .store-list .store_cotents .store_content {
    display: block;
  }
  #top #retailLocation .cmnInner .store-list .store_cotents .store_items {
    margin-top: 1rem;
    column-gap: 0.5rem;
  }
  #top
    #retailLocation
    .cmnInner
    .store-list
    .store_cotents
    .store_items
    .store_item {
    width: calc((100% - 0.5rem) / 2);
    font-size: 1.1rem;
  }
  #top
    #retailLocation
    .cmnInner
    #store_online.store-list
    .store_cotents
    .store_items
    .store_item {
    width: calc((100% - 0.5rem) / 2);
    font-size: 1.1rem;
    letter-spacing: 0;
  }
  #top
    #retailLocation
    .cmnInner
    .store-list
    .store_cotents
    .store_items
    .store_item::before {
    font-size: 0.7rem;
  }
}


/* クイックロイヤルアイラッシュ　ボタン
------------------------------------------------------------ */

#top .quick-royal_btn a {
  display: flex;
  justify-content: center;
  align-items: baseline;
  max-width: 400px;
  margin-top: 2.5rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.5;
}
#top .quick-royal_btn a::before {
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  border-top: #fff solid 1px;
  border-right: #fff solid 1px;
  content: "";
  transform: rotate(45deg);
}
#top header .quick-royal_txt_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: #333;
  font-size: 1.2rem;
  z-index: 0;
}
#top header .quick-royal_txt_btn a::before {
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  border-top: #333 solid 1px;
  border-right: #333 solid 1px;
  content: "";
  transform: rotate(45deg);
}
#top header .qrb_fixed {
  position: relative;
  z-index: -3;
}
#top footer .quick-royal_btn a {
  margin: 60px auto 30px;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top header .quick-royal_txt_btn a {
    font-size: 1rem;
  }
  #top footer .quick-royal_btn a {
    max-width: 80%;
    padding: 1rem 3rem;
    margin: 3rem auto 0;
  }
}

/* 使用上の注意
------------------------------------------------------------ */
#top #caution {
}
#top #caution .cmnInner {
  max-width: calc(666px + (36px * 2));
  padding: 76px 36px 144px;
}

#top #caution .ttl_box {
}
#top #caution .ttl_box .ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0 4px;
  font-size: 1.4rem;
}
#top #caution .ttl_box .ttl .en {
  font-size: 3.6rem;
}

#top #caution .txt_box {
  margin-top: 48px;
  padding-top: 42px;
  border-top: #707070 solid 1px;
}
#top #caution .txt_box .items {
}
#top #caution .txt_box .items .item {
  display: flex;
  align-items: baseline;
  margin-top: 30px;
}
#top #caution .txt_box .items .item:first-of-type {
  margin-top: 0;
}
#top #caution .txt_box .items .item::before {
  content: "・";
}
#top #caution .txt_box .note {
  margin-top: 30px;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #caution .cmnInner {
    max-width: 100%;
    padding: 60px 36px 102px;
  }
  #top #caution .ttl_box .ttl {
    font-size: 1.2rem;
  }
  #top #caution .ttl_box .ttl .en {
    font-size: 3rem;
  }

  #top #caution .txt_box {
    margin-top: 36px;
    padding-top: 30px;
    border-top: #707070 solid 1px;
  }
  #top #caution .txt_box .items {
  }
  #top #caution .txt_box .items .item {
    display: flex;
    align-items: baseline;
    margin-top: 24px;
  }
  #top #caution .txt_box .items .item:first-of-type {
    margin-top: 0;
  }
  #top #caution .txt_box .items .item::before {
    content: "・";
  }
  #top #caution .txt_box .note {
    margin-top: 30px;
  }
}

/* よくあるご質問  // #faq
-------------------------------------------------------------*/
#top #faq {
  padding: 7.8rem 0 14.4rem;
}
#top #faq .title_box .section_title {
  text-align: center;
  font-size: 1.4rem;
  line-height: 4rem;
}
#top #faq .title_box .section_title span {
  display: block;
  font-size: 4.8rem;
}
#top #faq .faq_box {
  padding-top: 5rem;
}
#top #faq .faq_box .faq_items {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #707070;
}
#top #faq .faq_box .faq_items .faq_q {
  font-weight: 500;
}
#top #faq .faq_box .faq_items .faq_a {
  padding-top: 0.5rem;
}
#top #faq .faq_box .faq_items .faq_a .checkers li {
  width: 100%;
  display: flex;
  column-gap: 0.25em;
  align-items: baseline;
  padding: 0.5rem 0;
  line-height: 1.8rem;
}
#top #faq .faq_box .faq_items .faq_a .checkers li:first-child {
  padding-top: 1rem;
}
#top #faq .faq_box .faq_items .faq_a .checkers li span {
  display: block;
  flex-shrink: 0;
  align-items: center;
  width: 1.5rem;
}
#top #faq .faq_box .faq_items .faq_a .checkers li span img {
  width: 100%;
}
#top #faq .faq_box .faq_items .faq_a .numbers li {
  display: flex;
  column-gap: 0.25em;
  padding: 0.5rem 0;
  line-height: 1.8rem;
}
#top #faq .faq_box .faq_items .faq_a .numbers li:first-child {
  padding-top: 1rem;
}
#top #faq .faq_box .faq_items .faq_a .numbers li span {
  display: block;
  flex-shrink: 0;
  align-items: center;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #faq {
    padding: 7.8rem 0;
  }
  #top #faq .sub_cmnInner {
    padding: 0 2.4rem;
  }
  #top #faq .faq_box {
    padding-top: 3rem;
  }
  #top #faq .faq_box .faq_items .faq_q {
    font-size: 1.4rem;
  }
}
