@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュール及びページ固有のスタイルを記述する
    汎用モジュールは、アルファベット降順(A->Z)に記述する
    ページ固有のスタイルは、ディレクトリ名のアルファベット降順(A->Z)、
    ファイル名のアルファベット降順(A->Z)にそれぞれ記述する

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */

/* ---------------------------------------------
*   container
--------------------------------------------- */
.container {
  width: auto;
  margin-right: 5.3333333333%;
  margin-left: 5.3333333333%;
}

/* ---------------------------------------------
*   content-area
--------------------------------------------- */
.content-area {
  display: flex;
  flex-wrap: wrap;
}
.content-area.more-contents {
  display: none;
  margin-top: 8vw;
}
.content-area.more-contents.show {
  display: flex;
}

/* ---------------------------------------------
*   content-cassette
--------------------------------------------- */
.content-cassette {
  position: relative;
  display: flex;
  flex-direction: column;
}
.content-cassette--half {
  width: 47.7611940299%;
  margin-right: 4.4776119403%;
}
.content-cassette--half:nth-of-type(2n) {
  margin-right: 0;
}
.content-cassette--half:nth-of-type(n + 3) {
  margin-top: 8vw;
}
.content-cassette--quarter {
  width: 24%;
  margin-right: 1.3333333333%;
}
.content-cassette--quarter:nth-of-type(4n) {
  margin-right: 0;
}
.content-cassette--quarter:nth-of-type(n + 5) {
  margin-top: 8vw;
}
.content-cassette--three {
  width: 31.9402985075%;
  margin-right: 2.0895522388%;
}
.content-cassette--three:nth-of-type(3n) {
  margin-right: 0;
}
.content-cassette--three:nth-of-type(n + 4) {
  margin-top: 8vw;
}
.shop-page .content-cassette--three:nth-of-type(n + 4) {
  margin-top: 2.6666666667vw;
}
.content-cassette--small {
  width: 26.8656716418%;
  margin-right: 2.3880597015%;
}
.content-cassette--small:last-child {
  margin-right: 0;
}
.content-cassette--xsmall {
  width: 25.0666666667%;
  margin-right: 3%;
}
.content-cassette--xsmall:last-child {
  margin-right: 0;
}
.content-cassette__image {
  margin-bottom: 0.8vw;
}
.content-cassette__image--radius img {
  height: 25.0666666667vw;
  border-radius: 4vw;
  object-fit: cover;
}
.content-cassette__content {
  display: flex;
  flex-direction: column;
}
.content-cassette__content--center {
  text-align: center;
}
/* ---------------------------------------------
*   hide-line
--------------------------------------------- */

/*  hide-line3
--------------------------------------------- */
.hide-line3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.hide-line3 br {
  display: none;
}

/* ---------------------------------------------
*   section
--------------------------------------------- */

/* ---------------------------------------------
*   tag-area
--------------------------------------------- */
.tag-area {
  letter-spacing: -.4em;
}
.tag-item {
  display: inline-block;
  letter-spacing: normal;
  padding: 0.8vw 1.8666666667vw;
  background-color: #EDEDED;
  color: #717171;
  font-size: 2.4vw;
  white-space: nowrap;
  margin-right: 1.6vw;
  margin-bottom: 1.6vw;
}

/* ---------------------------------------------
*   text
--------------------------------------------- */
/*  text-item
--------------------------------------------- */
.text-item {
  letter-spacing: -.03em;
  font-size: 2.4vw;
}
.text-item--xxlarge {
  font-size: 3.7333333333vw;
}

/* ---------------------------------------------
*   ERROR
--------------------------------------------- */
.error__wrap {
  width: auto;
  margin-right: 5.3333333333%;
  margin-left: 5.3333333333%;
  padding-top: 13.3333333333vw;
  padding-bottom: 26.6666666667vw;
}
.error__icon {
  width: 40px;
  margin: auto;
  margin-bottom: 8vw;
}
.error__title {
  font-size: 4.8vw;
  margin-bottom: 10.6666666667vw;
  font-weight: 500;
}
.error__text {
  font-size: 3.4666666667vw;
  margin-bottom: 13.3333333333vw;
}

.top-banner a {
  display: block;
}

/* ==========================================================
*
*   page
*
========================================================== */

/* ---------------------------------------------
*   TOPへ戻るボタン
--------------------------------------------- */
.page-top,.category-top{
  height: 50px;
  width: 50px;
  position: fixed;
  right: 10px;
  bottom: 80px;
  background: #fff;
  border: solid 2px #444444;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}

.arrow {
  height: 10px;
  width: 10px;
  border-top: 2px solid #444444;
  border-right: 2px solid #444444;
  transform: translateY(20%) rotate(-45deg);
}

.category-top{
  bottom: 10px;
}
.category-top__text{
  font-size: 10px;
}

/* ---------------------------------------------
*   フローティングバナー
--------------------------------------------- */
.floating-banner {
  display: inline-block;
  position: fixed;
  z-index: 99999;
  bottom: 0;
}
.banner {
  width: 100vw;
  padding: 8px;
  background: linear-gradient(86.13deg, #f77070 -3.42%, #d93e8a 59.59%);/* バナーの背景色 */
  color: #fff;/* バナー内の文字色 */
  font-weight: bold;
  text-align: center;
}
.floating-banner a {
  text-decoration: none;/* リンクに下線が入らないように */
}
.copy {
  font-size: 18px;
  margin: 0 auto 6px;
  line-height: 1.4;
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt--15 {
  margin-top: 4vw !important;
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb--10 {
  margin-bottom: 2.6666666667vw !important;
}

/* ==========================================================
*
*   PC_module
*
========================================================== */

@media screen and (min-width:760px) {
  
  /* ---------------------------------------------
  *   container
  --------------------------------------------- */
  /*  container
  --------------------------------------------- */
  .container {
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  } 
  /* ---------------------------------------------
  *   content-area
  --------------------------------------------- */
  .content-area img {
    width: 100%;
  }
  .content-area--three .content-area__list {
    width: 31.8333333333%;
    margin-right: 2.25%;
  }
  .content-area--three .content-area__list:nth-of-type(3n) {
    margin-right: 0;
  }
  .content-area--three .content-area__list:nth-child(n + 4) {
    margin-top: 100px;
  }
  .content-area--three .content-area__list {
    width: 32.0218579235%;
    margin-right: 1.7486338798%;
  }
  .content-area--three .content-area__list:nth-child(n + 4) {
    margin-top: 40px;
  }
  .content-area .content-cassette {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .content-area .content-cassette a {
    display: block;
  }

  /* ---------------------------------------------
  *   content-cassette
  --------------------------------------------- */
  .content-cassette > * {
    min-height: 0%;
  }
  a.content-cassette {
    transition: opacity 300ms;
    cursor: pointer;
    display: block;
  }
  a.content-cassette:hover {
    opacity: 0.8;
  }
  .content-cassette:focus {
    outline: 0;
    border: none;
  }
  .content-cassette__image {
    position: relative;
    margin-bottom: 13px;
  }
  .content-cassette__image--border {
    border: 1px solid  #CCCCCC;
  }
  /* ---------------------------------------------
  *   hide-line
  --------------------------------------------- */

  /*  hide-line3
  --------------------------------------------- */
  .hide-line3 .text-item{
    font-size: 14px;
  }


  /* ---------------------------------------------
  *   ERROR
  --------------------------------------------- */
  .error__wrap {
    width: 800px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .error__icon {
    width: 50px;
    margin: auto;
    margin-bottom: 50px;
  }

  .error__title {
    font-size: 24px;
    margin-bottom: 60px;
    font-weight: 500;
    text-align: center;
  }

  .error__text {
    font-size: 18px;
    margin-bottom: 100px;
  }
  /* ---------------------------------------------
  *   hover-opacity
  --------------------------------------------- */
  .hover-opacity {
    transition: opacity 300ms;
    cursor: pointer;
  }
  .hover-opacity:hover {
    opacity: 0.8;
  }
  /* ---------------------------------------------
  *   section
  --------------------------------------------- */
  .section {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  /* ---------------------------------------------
  *   tag-area
  --------------------------------------------- */
  .tag-area {
    display: flex;
    flex-wrap: wrap;
  }
  .tag-item {
    display: block;
    padding: 3px 7px;
    color: #fff;
    background-color: #A4A4A4;
    font-size: 0.7857142857rem;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  /* ---------------------------------------------
  *   text
  --------------------------------------------- */
  /*  text-item
  --------------------------------------------- */
  .text-item--xxlarge {
    font-size: 1.2857142857rem;
  }
  .text-item span {
    display: block;
  }
  /* ==========================================================
  *
  *   page
  *
  ========================================================== */
  /* ---------------------------------------------
  *   TOPへ戻るボタン
  --------------------------------------------- */
  @media screen and (min-width:1440px) {
    .page-top,.category-top{
      right: calc(50% - 1440px / 2 + 10px);
    }
  }
  /* ---------------------------------------------
  *   フローティングバナー
  --------------------------------------------- */
  .banner {
      width: 250px;/* バナーの横幅 */
      padding: 20px 10px;
  }
  .copy {
      font-size: 22px;
      margin: 10px auto 10px;
  }

  /* ==========================================================
  *
  *   utility
  *
  ========================================================== */
  /* ---------------------------------------------
  *   margin-top
  --------------------------------------------- */
  .mgt--15 {
    margin-top: 15px !important;
  }
  /* ---------------------------------------------
  *   margin-bottom
  --------------------------------------------- */
  .mgb--10 {
    margin-bottom: 10px !important;
  }
}