@charset "UTF-8";
/*-------------------------------
変数
-------------------------------*/
:root {
  --color-brown: #050505;
  --color-brown: #5c5150;
  --color-white: #fff;
  --color-red: #cd0924;
  --color-yellow: #ffd800;
  --bg: #988d91;
  --font-size--small: 1rem;
  --font-size--medium: 1.2rem;
  --font-size--large: 1.4rem;
  --font-size--largest: 3rem;
}
@media (min-width: 600px) {
  :root {
    --font-size--small: 1.4rem;
    --font-size--medium: 1.8rem;
    --font-size--large: 2.4rem;
    --font-size--largest: 6rem;
  }
}

/*-------------------------------
全体
-------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: var(--font-size--medium);
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--color-brown);
  font-feature-settings: "palt";
  background: var(--bg);
}

a {
  color: var(--color-brown);
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.img-link {
  position: relative;
  display: block;
}
.img-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: #000;
  opacity: 0;
  transition: 0.3s;
}
.img-link:hover::before {
  opacity: 0.2;
}

ul {
  list-style: none;
}

.sp_show {
  display: none;
}
@media (max-width: 599px) {
  .sp_show {
    display: block;
  }
}

.pc_show {
  display: block;
}
@media (max-width: 599px) {
  .pc_show {
    display: none;
  }
}

.view_timer {
  display: none;
}

/*-------------------------------
メインビジュアル
-------------------------------*/
.mv {
  line-height: 0;
}
@media (max-width: 599px) {
  .mv img {
    display: none;
  }
}
@media (min-width: 600px) {
  .mv {
    max-width: 1200px;
    margin: 0 auto;
    background: none !important;
  }
}

/*-------------------------------
送料
-------------------------------*/
.souryou {
  background: #f6f1eb;
}
@media (max-width: 599px) {
  .souryou {
    padding: 5px 0;
  }
}
@media (min-width: 600px) {
  .souryou p {
    height: 150px;
    background: url("https://image.rakuten.co.jp/osharewalker/cabinet/event/241004_sale/image/free_1080x210.jpg") repeat-x center;
    background-size: 600px;
  }
}
@media (min-width: 600px) {
  .souryou img {
    display: none;
  }
}

/*-------------------------------
MENU
-------------------------------*/
.menu {
  width: 100%;
  max-width: 800px;
  position: fixed;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  transition: 0.9s;
}
@media (max-width: 599px) {
  .menu {
    width: calc(100% - 20px);
  }
}
.menu.is-show {
  bottom: 0;
}
.menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
@media (min-width: 600px) {
  .menu__list {
    gap: 20px;
  }
}
.menu a {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--color-white);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top: 1px solid var(--bg);
  border-left: 1px solid var(--bg);
  border-right: 1px solid var(--bg);
  padding: 10px 0;
}
@media (min-width: 600px) {
  .menu a {
    font-size: 1.8rem;
    padding: 20px 0;
  }
}

/*-------------------------------
メイン共通
-------------------------------*/
.section {
  background: #e8dee2;
  padding: 50px 0;
}
@media (min-width: 600px) {
  .section {
    padding: 150px 0;
  }
}
.section__ttl {
  font-size: var(--font-size--largest);
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .section__ttl {
    margin-bottom: 80px;
  }
}
.section__ttl--sub {
  font-size: var(--font-size--large);
  display: block;
}
.section--margin {
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .section--margin {
    margin-bottom: 80px;
  }
}
.section--padding {
  padding-bottom: 0;
}

/*-------------------------------
コンセプト
-------------------------------*/
.concept {
  background: var(--color-white);
}
@media (min-width: 600px) {
  .concept__ttl {
    margin-bottom: 40px;
  }
}
.concept__txt {
  text-align: center;
  padding-bottom: 30px;
}
@media (min-width: 600px) {
  .concept__txt {
    padding-bottom: 50px;
  }
}
.concept__img {
  margin: 0 auto;
  width: 80%;
}
@media (min-width: 600px) {
  .concept__img {
    max-width: 780px;
  }
}

/*-------------------------------
クーポン/キャンペーン
-------------------------------*/
.frame {
  background: var(--color-white);
  max-width: 1000px;
  margin: 0 20px;
  padding: 30px 20px;
}
@media (min-width: 600px) {
  .frame {
    margin: 0 auto;
    padding: 50px 50px 100px;
  }
}
.frame--margin {
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .frame--margin {
    margin-bottom: 100px;
  }
}
.frame__ttl {
  font-size: var(--font-size--large);
  font-weight: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .frame__ttl {
    margin-bottom: 50px;
  }
}
.frame__ttl::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
}
@media (min-width: 600px) {
  .frame__ttl::before {
    width: 100px;
    height: 100px;
  }
}
.frame__ttl span {
  display: inline-block;
  border-bottom: 1px solid var(--color-brown);
  padding-bottom: 5px;
}
.frame .ttl--cp::before {
  background: url("../image/ic_ticket.png") no-repeat center;
  background-size: contain;
}
.frame .ttl--souryou::before {
  background: url("../image/ic_car.png") no-repeat center;
  background-size: contain;
}
.frame .ttl--point::before {
  background: url("../image/ic_point.png") no-repeat center;
  background-size: contain;
}
.frame-item__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .frame-item__list {
    gap: 30px;
  }
}
.frame-item {
  width: min(100%, 650px);
  margin: 0 auto;
}

/*-------------------------------
ボタン
-------------------------------*/
.other {
  text-align: center;
  padding: 20px 0;
}
@media (min-width: 600px) {
  .other {
    padding: 30px 0;
  }
}

.other a {
  margin: 0 auto;
  width: 70%;
  border-radius: 40px;
  display: block;
  padding: 10px 0px;
  text-align: center;
  background: var(--color-white);
  font-weight: bold;
  border: solid 1px var(--color-brown);
}
@media (min-width: 600px) {
  .other a {
    width: 20%;
  }
}

/*-------------------------------
ポイント
-------------------------------*/
.pt {
  text-align: center;
  font-weight: bold;
  background: var(--color-white);
  padding: 10px 0;
}
@media (min-width: 600px) {
  .pt {
    padding: 30px 0;
  }
}
.pt.pt--padding {
  padding-bottom: 0;
}
.pt-txt span {
  color: var(--color-red);
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #f2ced2 60%);
  padding: 0 5px;
}
@media (min-width: 600px) {
  .pt-txt span {
    font-size: 3.6rem;
    padding: 0 10px;
  }
}
.pt__inner {
  border-top: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  padding: 10px 0;
}
.pt--main span {
  color: var(--color-red);
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #f2ced2 60%);
  padding: 0 5px;
}
@media (min-width: 600px) {
  .pt--main span {
    font-size: 3.6rem;
    padding: 0 10px;
  }
}

/*-------------------------------
タイムセール
-------------------------------*/
.ts .section__ttl {
  color: var(--color-red);
}
.ts__wrap {
  margin-bottom: 50px;
}
@media (min-width: 600px) {
  .ts__wrap {
    margin-bottom: 150px;
  }
}
.ts-term {
  text-align: center;
  background: var(--color-white);
  margin-bottom: 30px;
  padding: 20px 0;
}
@media (min-width: 600px) {
  .ts-term {
    margin-bottom: 80px;
    padding: 30px 0;
  }
}
.ts-term-cd {
  font-size: var(--font-size--large);
}
.ts-cd-timer span {
  font-size: 150%;
}
.ts-item__wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media (min-width: 600px) {
  .ts-item__wrap {
    gap: 100px;
  }
}
.ts-item {
  width: clamp(280px, 100% - 100px, 600px);
  margin: 0 auto;
}
.ts-item-img {
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .ts-item-img {
    margin-bottom: 20px;
  }
}
.ts-item-name {
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  width: clamp(260px, 100% - 20px, 500px);
  margin: 0 auto 10px;
  display: none;
}
@media (min-width: 600px) {
  .ts-item-name {
    margin-bottom: 20px;
  }
}
.ts-item-price {
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  width: clamp(260px, 100% - 20px, 500px);
  margin: 0 auto 20px;
}
@media (min-width: 600px) {
  .ts-item-price {
    gap: 20px;
    margin-bottom: 50px;
  }
}
.ts-item-link {
  width: clamp(100px, 80%, 400px);
  margin: 0 auto 10px;
}
.ts-item-link a {
  color: var(--color-white);
  font-weight: bold;
  background: var(--color-red);
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}
@media (min-width: 600px) {
  .ts-item-link a {
    padding: 20px 0;
  }
}

.discount {
  color: var(--color-white);
  font-size: var(--font-size--large);
  font-weight: bold;
  background: var(--color-red);
  padding: 5px;
}
@media (min-width: 600px) {
  .discount {
    padding: 10px;
  }
}

.sf {
  color: var(--color-white);
  font-size: var(--font-size--large);
  font-weight: bold;
  background: #40579b;
  padding: 5px;
}
@media (min-width: 600px) {
  .sf {
    padding: 10px;
  }
}

.sale {
  color: var(--color-red);
  font-size: 2rem;
  font-weight: bold;
}
@media (min-width: 600px) {
  .sale {
    font-size: 3rem;
  }
}

.pre {
  text-decoration: line-through;
}

.tax {
  font-size: 60%;
}

.arrow {
  display: block;
  width: 8px;
  height: 5px;
  position: relative;
}
@media (min-width: 600px) {
  .arrow {
    width: 13px;
    height: 8px;
  }
}
.arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(30deg);
}
@media (min-width: 600px) {
  .arrow::before {
    width: 13px;
    height: 2px;
  }
}
.arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-30deg);
}
@media (min-width: 600px) {
  .arrow::after {
    width: 13px;
    height: 2px;
  }
}

/*-------------------------------
予告
-------------------------------*/
.previous {
  width: clamp(280px, 100% - 40px, 1000px);
  margin: 0 auto;
}
.previous__ttl {
  color: var(--color-white);
  font-size: var(--font-size--large);
  font-weight: normal;
  text-align: center;
  line-height: 1.1;
  background: var(--color-brown);
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .previous__ttl {
    margin-bottom: 50px;
  }
}
.previous-item__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .previous-item__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

/*-------------------------------
リミテッドセール
-------------------------------*/
.ls .section__ttl {
  color: var(--color-brown);
}
.ls__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: clamp(280px, 100% - 40px, 800px);
  margin: 0 auto 50px;
}
@media (min-width: 600px) {
  .ls__menu {
    gap: 20px;
    margin-bottom: 100px;
  }
}
.ls__menu li {
  text-align: center;
  background: var(--color-white);
  padding: 8px 0;
}
@media (min-width: 600px) {
  .ls__menu li {
    padding: 15px 0;
  }
}
.ls__menu li:hover {
  cursor: pointer;
}
.ls__menu li:first-child {
  grid-column: 1/3;
  grid-row: 1;
}
.ls__menu li.is-active {
  color: var(--color-white);
  background: var(--color-brown);
}
.ls-content {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.9s;
}
.ls-content.is-active {
  visibility: visible;
  opacity: 1;
  height: auto;
}
.ls-content__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: clamp(280px, 100% - 40px, 800px);
  margin: 0 auto 30px;
}
@media (min-width: 600px) {
  .ls-content__menu {
    gap: 20px;
    margin-bottom: 100px;
  }
}
.ls-content__menu li a {
  text-align: center;
  font-weight: bold;
  display: block;
  background: var(--color-white);
  border: 1px solid var(--color-brown);
  padding: 8px 0;
  transition: 0.1s;
}
@media (min-width: 600px) {
  .ls-content__menu li a {
    padding: 15px 0;
  }
}
.ls-content__menu li a:hover {
  color: var(--color-white);
  background: var(--color-brown);
}
.ls__wrap--margin {
  margin-bottom: 50px;
}
@media (min-width: 600px) {
  .ls__wrap--margin {
    margin-bottom: 100px;
  }
}
.ls__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(280px, 100% - 40px, 800px);
  margin: 0 auto 20px;
}
@media (min-width: 600px) {
  .ls__ttl {
    margin-bottom: 50px;
  }
}
.ls__ttl::before, .ls__ttl::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-brown);
}
.ls__ttl span {
  font-size: 1.8rem;
  flex-shrink: 0;
  padding: 0 20px;
}
@media (min-width: 600px) {
  .ls__ttl span {
    font-size: 3rem;
    padding: 0 100px;
  }
}
.ls__inner {
  width: clamp(280px, 100% - 40px, 920px);
  position: relative;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .ls__inner {
    padding: 0 60px;
  }
}
@media (min-width: 600px) {
  .ls__inner--slider {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 80px;
  }
}
@media (max-width: 599px) {
  .ls-swiper {
    padding: 0 20px;
  }
}
.ls-item__wrap {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: auto;
}
.ls-item__wrap.swiper-slide {
  grid-template-columns: 1fr;
}
.ls-item__wrap.no-grid {
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: repeat(1, 1fr);
  column-gap: 10px;
}
@media (min-width: 600px) {
  .ls-item__wrap.no-grid {
    column-gap: 30px;
  }
}
.ls-item {
  display: flex;
  flex-direction: column;
}
.ls-item:nth-child(even) {
  margin-right: 10px;
}
@media (min-width: 600px) {
  .ls-item:nth-child(even) {
    margin-right: 30px;
    margin-bottom: 10px;
  }
}
.ls-item__wrap.no-grid .ls-item:nth-child(even) {
  margin: 0;
}
.ls-item-img {
  margin-bottom: 10px;
}
.ls-item-name {
  font-size: var(--font-size--small);
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 5px;
  display: none;
}
@media (min-width: 600px) {
  .ls-item-name {
    margin-bottom: 10px;
  }
}
.ls-item-discount {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: auto;
  margin-bottom: 5px;
}
@media (min-width: 600px) {
  .ls-item-discount {
    gap: 10px;
    margin-bottom: 10px;
  }
}
.ls .discount {
  font-size: var(--font-size--small);
  padding: 0 3px;
}
@media (min-width: 600px) {
  .ls .discount {
    padding: 0 10px;
  }
}
.ls .sf {
  font-size: var(--font-size--small);
  padding: 0 3px;
}
@media (min-width: 600px) {
  .ls .sf {
    padding: 0 10px;
  }
}
.ls-item-price {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (min-width: 600px) {
  .ls-item-price {
    align-items: flex-end;
    gap: 10px;
  }
}
.ls .sale {
  font-size: 1.4rem;
}
@media (min-width: 600px) {
  .ls .sale {
    font-size: 1.8rem;
  }
}
.ls .pre {
  font-size: 1.2rem;
}
@media (min-width: 600px) {
  .ls .pre {
    font-size: 1.4rem;
  }
}

.swiper {
  display: none;
}
.swiper-initialized {
  display: block;
}

.button-prev,
.button-next {
  width: 35px;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 599px) {
  .button-prev,
  .button-next {
    display: none;
  }
}
.button-prev span,
.button-next span {
  display: block;
  width: 100%;
  height: 100%;
}
.button-prev.swiper-button-disabled span,
.button-next.swiper-button-disabled span {
  filter: opacity(0.2);
}

.button-prev {
  left: 0;
}
.button-prev span {
  background-image: url("../image/arrow-prev.png");
  background-position: center;
  background-size: 20px;
}

.button-next {
  right: 0;
}
.button-next span {
  background-image: url("../image/arrow-next.png");
  background-position: center;
  background-size: 20px;
}

.ls-button-prev,
.ls-button-next {
  background-color: var(--color-white);
}

/*-------------------------------
RECOMMEND
-------------------------------*/
.recommend__ttl--sub {
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (min-width: 600px) {
  .recommend__ttl--sub {
    margin-bottom: 30px;
  }
}
.recommend__list-item:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .recommend__list-item:not(:last-of-type) {
    margin-bottom: 80px;
  }
}
@media (min-width: 600px) {
  .recommend__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
  }
}
@media (max-width: 599px) {
  .recommend-slider, .feature-slider {
    padding: 0 20px;
  }
}
.recommend .swiper-slide {
  background: var(--color-white);
  height: auto;
  border-radius: 10px;
}
@media (min-width: 600px) {
  .recommend .swiper-slide {
    border-radius: 20px;
  }
}
.recommend img {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
@media (min-width: 600px) {
  .recommend img {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
}
.recommend-name {
  font-size: var(--font-size--small);
  padding: 5px;
}
@media (min-width: 600px) {
  .recommend-name {
    padding: 10px 20px;
  }
}
.recommend .img-link::before {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
@media (min-width: 600px) {
  .recommend .img-link::before {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
}

/*-------------------------------
CATEGORY
-------------------------------*/
.category__inner, .feature__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 20px;
}
@media (min-width: 600px) {
  .category__inner, .feature__inner {
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
  }
}
.category__item {
  padding: 8px;
}
@media (min-width: 600px) {
  .category__item {
    padding: 10px;
  }
}

/*-------------------------------
FEATURE
-------------------------------*/
/*-------------------------------
footer
-------------------------------*/
.footer {
  background: #e8dee2;
  padding: 50px 0 50px;
}
@media (min-width: 600px) {
  .footer {
    padding: 150px 0 100px;
  }
}
.footer small {
  display: block;
  font-size: var(--font-size--small);
  text-align: center;
}

.sns-list {
  /*sns-list*/
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 600px) {
  .sns-list {
    gap: 30px;
  }
}
.sns-list li {
  width: 40px;
}
@media (min-width: 600px) {
  .sns-list li {
    width: 60px;
  }
}

.back-btn {
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 50px 30px;
}
@media (min-width: 600px) {
  .back-btn {
    gap: 40px;
    margin: 150px auto;
  }
}
.back-btn a {
  display: block;
  background: transparent;
  padding: 10px 20px;
  border: 1px solid var(--color-brown);
  border-radius: 100vh;
}
@media (min-width: 600px) {
  .back-btn a {
    padding: 25px 50px;
  }
}

/*-------------------------------
公式
-------------------------------*/
.ts-item-name,
.ls-item-name {
  display: none;
}

.ts-item-img {
  margin-bottom: 15px;
}
@media (min-width: 600px) {
  .ts-item-img {
    margin-bottom: 30px;
  }
}

@media (min-width: 600px) {
  .ls-item-img {
    margin-bottom: 15px;
  }
}

.frame-item__list {
  gap: 30px;
}
@media (min-width: 600px) {
  .frame-item__list {
    gap: 100px;
  }
}

.menu__list--1 {
  grid-template-columns: repeat(1, 1fr);
  width: 60%;
  max-width: 500px;
  margin: 0 auto;
}

.menu__list--2 {
  grid-template-columns: repeat(2, 1fr);
}

.copybtn:hover {
  cursor: pointer;
}

.msg_success {
  display: none;
  color: var(--color-white);
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  width: 200px;
  border-radius: 5px;
  position: fixed;
  top: 20px;
  left: 50%;
  margin-left: -100px;
  padding: 5px 15px;
  z-index: 99999;
}
@media (min-width: 600px) {
  .msg_success {
    top: 30px;
    padding: 10px 20px;
    font-size: 1.4rem;
  }
}

.msg_error {
  display: none;
  color: var(--color-white);
  text-align: center;
  background: var(--color-red);
  width: 200px;
  border-radius: 5px;
  position: fixed;
  top: 20px;
  left: 50%;
  margin-left: -100px;
  padding: 5px 15px;
  z-index: 99999;
}
@media (min-width: 600px) {
  .msg_error {
    top: 30px;
    padding: 10px 20px;
    font-size: 1.4rem;
  }
}

.cp-code {
  text-align: center;
  border: 2px solid var(--color-brown);
  border-radius: 10px;
  position: relative;
  margin: 25px auto 15px;
  padding: 10px;
}
@media (min-width: 600px) {
  .cp-code {
    width: 100%;
    max-width: 650px;
    margin: 50px auto;
    padding: 20px;
  }
}
.cp-code-heading {
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 0 20px;
}
.cp-code-num {
  font-size: 2rem;
}
@media (min-width: 600px) {
  .cp-code-num {
    font-size: 4rem;
  }
}

.cp-copy {
  color: var(--color-white);
  font-weight: bold;
  text-align: center;
  border-radius: 100vh;
  background: var(--color-brown);
  width: clamp(250px, 60%, 500px);
  margin: 0 auto;
  padding: 8px 0;
}
@media (min-width: 600px) {
  .cp-copy {
    padding: 20px 0;
  }
}
.cp-copy:hover {
  cursor: pointer;
}

.cp-ex {
  font-size: var(--font-size--medium);
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 600px) {
  .cp-ex {
    margin-top: 50px;
  }
}
.cp-ex p:first-child {
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .cp-ex p:first-child {
    margin-bottom: 20px;
  }
}
.cp-ex a {
  text-decoration: underline;
}

.cp-terms {
  margin-top: 20px;
}
@media (min-width: 600px) {
  .cp-terms {
    margin-top: 30px;
  }
}
.cp-terms__ttl {
  font-weight: bold;
  background: #ddd;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 600px) {
  .cp-terms__ttl {
    padding: 10px 0;
  }
}
.cp-terms__ttl span {
  width: 10px;
  height: 10px;
  position: relative;
}
@media (min-width: 600px) {
  .cp-terms__ttl span {
    width: 16px;
    height: 16px;
  }
}
.cp-terms__ttl span::before,
.cp-terms__ttl span::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 10px;
  height: 2px;
  background: var(--color-brown);
}
@media (min-width: 600px) {
  .cp-terms__ttl span::before,
  .cp-terms__ttl span::after {
    top: 8px;
    width: 16px;
  }
}
.cp-terms__ttl span::after {
  transform: rotate(90deg);
}
.cp-terms__ttl.is-active span::after {
  display: none;
}
.cp-terms__content {
  font-size: 1.1rem;
  display: none;
  margin-top: 10px;
}
@media (min-width: 600px) {
  .cp-terms__content {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.cp-terms__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media (min-width: 600px) {
  .cp-terms__list {
    gap: 5px;
  }
}

.cp-item-link {
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 600px) {
  .cp-item-link {
    margin-top: 30px;
  }
}
.cp-item-link a {
  text-decoration: underline;
}
.cp-item-link a:hover {
  text-decoration: none;
}

.ls-banner {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  width: clamp(280px, 100% - 40px, 650px);
  margin: 0 auto 50px;
}
@media (min-width: 600px) {
  .ls-banner {
    gap: 30px;
    margin-bottom: 100px;
  }
}
.ls-banner p {
  border: 1px solid var(--color-brown);
}