@charset "UTF-8";
/* 色 */
:root {
  /* 文字 */
  --font-main: #00913a;
  /* 線 */
  --border: 1px solid #515052;
  --border-light: 1px solid #cccacf;
  --border-dot: 1px dotted #515052;
  --border-dot-light2: 2px dotted #cccacf;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* スクロールバー常時表示 */
  overflow-y: scroll;
  letter-spacing: 0.05em;
}

/* フォントサイズ */
/* リンク文字の色を変えない */
a {
  color: inherit;
  text-decoration: underline;
}

body {
  background: #fff;
  color: #515052;
  /* 基本フォントサイズ */
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  text-align: justify;
  font-family: "Arial", "Noto Sans JP", "游ゴシック", "メイリオ", "MSゴシック", sans-serif;
}
body img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* TOPページ、商品ページレイアウト */
/*-------------------
ALL ITEMS
-------------------*/
.allItems {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.allItems a {
  text-decoration: none !important;
}

/* カードレイアウト */
.card {
  position: relative;
  width: 100%;
  background-color: #f8f8f8;
  border: var(--border-light);
  display: flex;
}
.card .cardImg {
  width: 40%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.card .description {
  background-color: #fff;
  align-content: center;
  margin: 15px 0 15px 0;
  padding: 15px;
  text-align: center;
  width: 60%;
}
.card .description ul {
  margin-bottom: 10px;
}
.card .description ul li:first-child {
  font-weight: bold;
  font-size: 1.1em;
}
.card .description ul li:nth-child(2) {
  font-size: 1.1em;
}
.card .description ul li:nth-child(3) {
  margin: 15px 0;
  font-size: 1.1em;
}
.card .read-more::before {
  content: "";
  display: inline-block;
  background-image: url(../images/common/arrow_maru.svg);
  width: 14px;
  height: 16px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}

/*-------------------
お知らせ
-------------------*/
.information dl {
  display: flex;
  flex-direction: column;
}
.information dl dt {
  padding-top: 10px;
  padding-bottom: 5px;
}
.information dl dt:first-of-type {
  padding-top: 0;
}
.information dl dd {
  border-bottom: var(--border-dot);
  padding-bottom: 10px;
}

/*--------------------------------------
PC用レイアウト ここから
--------------------------------------*/
@media (min-width: 769px) {
  /*-------------------
  商品一覧
  -------------------*/
  .card .cardImg {
    width: 35%;
  }
  .card .description {
    width: 65%;
  }
  /*-------------------
  お知らせ
  -------------------*/
  .information dl {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .information dl dt {
    width: 15%;
    padding-top: 0;
    padding-bottom: 10px;
  }
  .information dl dd {
    width: 85%;
    border-bottom: none;
    position: relative;
  }
}
/* 共通要素 */
/*--------------------------------------
共通レイアウト
--------------------------------------*/
.cnt_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
  /* 文章中のリンク */
}
.cnt_box > p a {
  text-decoration: underline;
  color: var(--font-main);
}

.inner {
  border: var(--border);
  padding: 15px;
}

.spec {
  padding: 4px 12px;
  border-radius: 100px;
  background: #fafad2;
}

/*--------------------------------------
商品ページ ここから
--------------------------------------*/
/*------------------- 
商品
-------------------*/
.merchBox {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.merchBox .merchImg {
  background-color: #cccacf;
}
.merchBox .merchDescription > dl {
  line-height: 1.2;
}
.merchBox .merchDescription > dl dt {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--font-main);
}
.merchBox .merchDescription > dl dd:nth-child(2) {
  font-size: 1.4em;
}
.merchBox .merchDescription > dl dd:nth-child(3) {
  font-size: 1.4em;
  margin: 20px 0;
}
.merchBox .merchDescription .merchDetail {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.merchBox .merchDescription .merchDetail .detail_box {
  border: var(--border);
  padding: 15px;
}
.merchBox .merchDescription .merchDetail .detail_box > dt {
  margin-bottom: 25px;
}
.merchBox .merchDescription .merchDetail .detail_box .howtoUse {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.merchBox .merchDescription .merchDetail .detail_box .howtoUse li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.merchBox .merchDescription .merchDetail .detail_box .howtoUse li img {
  width: 60% !important;
}

/* Q&A */
.faq_style dt,
.faq_style dd {
  position: relative;
}
.faq_style dt {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  padding-left: 25px;
  color: var(--font-main);
}
.faq_style dt::before {
  content: "Q.";
  display: block;
  position: absolute;
  left: 0px;
  font-size: 1.4em;
  font-weight: bold;
}
.faq_style dd {
  margin-bottom: 20px;
  border-bottom: var(--border-dot-light2);
  padding-bottom: 30px;
  padding-left: 25px;
}
.faq_style dd::before {
  content: "A.";
  display: block;
  position: absolute;
  left: 0px;
  font-size: 1.4em;
  font-weight: bold;
}
.faq_style dd:last-child {
  border: none;
  padding-bottom: 0;
}
.faq_style dd > a {
  color: var(--font-main);
}

/*------------------- 
特商法など
-------------------*/
.trade_list dt {
  padding: 14px 0 7px;
  font-weight: bold;
}
.trade_list dt:nth-last-child(2) {
  border: none;
}
.trade_list dd {
  padding: 0 0 14px;
  border-bottom: var(--border-dot);
}
.trade_list dd:last-child {
  border: none;
}

.cs {
  margin: 10px 0;
}
.cs li:nth-child(2)::before {
  content: "";
  display: inline-block;
  background-image: url(../images/common/navidial.svg);
  width: 25px;
  height: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
}

/*--------------------------------------
PC用レイアウト ここから
--------------------------------------*/
@media (min-width: 769px) {
  /*------------------- 
  共通レイアウト
  -------------------*/
  .inner {
    padding: 20px;
  }
  /*--------------------------------------
  商品ページ ここから
  --------------------------------------*/
  /*------------------- 
  商品
  -------------------*/
  .merchBox {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 100px;
  }
  .merchBox .merchImg {
    top: 20px;
    width: 500px;
    position: sticky;
  }
  .merchBox .merchDescription {
    flex: 1;
  }
  .merchBox .merchDescription .merchDetail .detail_box .howtoUse {
    gap: 30px;
  }
  .merchBox .merchDescription .merchDetail .detail_box .howtoUse li {
    flex-direction: row;
    justify-content: space-between;
  }
  .merchBox .merchDescription .merchDetail .detail_box .howtoUse li img {
    width: 25% !important;
  }
  .merchBox .merchDescription .merchDetail .detail_box .howtoUse li p {
    width: 75%;
  }
  /*------------------- 
  特商など
  -------------------*/
  .trade_list {
    display: flex;
    flex-wrap: wrap;
  }
  .trade_list dt {
    padding: 10px 0;
    width: 30%;
    border-bottom: var(--border-dot);
  }
  .trade_list dd {
    padding: 10px 0;
    width: 70%;
    border-bottom: var(--border-dot);
  }
}
/* PC用の画像を表示しない */
.sp_none {
  display: none;
}

/*------------------- 
位置調整用
-------------------*/
/* PCでのみ改行 */
.br_pc {
  display: none;
}

/* SPでのみ改行 */
.br_sp {
  display: inline;
}

/* margin-bottom 10px刻み40pxまで */
.mgn_btm_10 {
  margin-bottom: 10px;
}

.mgn_btm_20 {
  margin-bottom: 20px;
}

.mgn_btm_30 {
  margin-bottom: 30px;
}

.mgn_btm_40 {
  margin-bottom: 40px;
}

.mgn_btm_100 {
  margin-bottom: 100px;
}

/* margin-top 5px刻み40pxまで */
.mgn_top_5 {
  margin-top: 5px;
}

.mgn_top_10 {
  margin-top: 10px;
}

.mgn_top_15 {
  margin-top: 15px;
}

.mgn_top_20 {
  margin-top: 20px;
}

.mgn_top_25 {
  margin-top: 25px;
}

.mgn_top_30 {
  margin-top: 30px;
}

.mgn_top_35 {
  margin-top: 35px;
}

.mgn_top_40 {
  margin-top: 40px;
}

/*------------------- 
文字装飾
-------------------*/
.caution {
  font-size: 0.85em;
  line-height: 2rem;
}

em {
  font-weight: bold;
}

/*-------------------
ヘッダー
-------------------*/
#top-head {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 15px;
  background-color: #fff;
  /* ブランドロゴサイズ */
}
#top-head h1 {
  width: 80px;
}

#wrap, #merchWrap {
  position: relative;
  flex: 1;
  background: #fff;
  width: 100vw;
  margin: 0 auto;
  line-height: 1.5em;
  /*------------------- 見出し -------------------*/
}
#wrap .container, #wrap .merchBox, #merchWrap .container, #merchWrap .merchBox {
  padding: 40px 20px 80px;
}
#wrap h2, #merchWrap h2 {
  font-size: 1.4em;
  margin: 0 auto 30px;
  text-align: center;
  font-weight: bold;
}
#wrap h3, #merchWrap h3 {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  color: inherit;
  margin-bottom: 20px;
}

/*-------------------
フッター
-------------------*/
#footer {
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  font-size: 0.85em;
  padding: 0 20px 30px;
}
#footer address {
  font-weight: bold;
  margin-bottom: 5px;
}
#footer address a {
  text-decoration: none;
}
#footer .link_block {
  margin-bottom: 30px;
}
#footer .link_block li {
  position: relative;
  border-bottom: var(--border-dot);
  text-align: left;
}
#footer .link_block li:first-child {
  border-top: var(--border-dot);
}
#footer .link_block li a {
  display: block;
  padding: 15px 10px;
  text-decoration: none;
}
#footer .link_block li a::after {
  content: "";
  position: absolute;
  right: 10px;
  display: inline-block;
  background-image: url(../images/common/arrow.svg);
  width: 10px;
  height: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}

/*--------------------------------------
PC用レイアウト ここから
--------------------------------------*/
@media (min-width: 769px) {
  /* SP用の画像を表示しない */
  .sp_none {
    display: block;
  }
  .pc_none {
    display: none;
  }
  /*------------------- 
  位置調整用
  -------------------*/
  /* PCでのみ改行 */
  .br_pc {
    display: inline;
  }
  /* SPでのみ改行 */
  .br_sp {
    display: none;
  }
  /*-------------------
  ヘッダー
  -------------------*/
  #top-head {
    padding: 20px;
  }
  #top-head h1 {
    width: 100px;
  }
  #wrap {
    width: 800px;
  }
  #wrap h3 {
    margin-bottom: 40px;
  }
  #merchWrap {
    width: 1200px;
  }
  /*-------------------
    フッター
  -------------------*/
  #footer .link_block {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 5px;
  }
  #footer .link_block li {
    text-align: center;
    border-bottom: none;
    border-right: var(--border-light);
  }
  #footer .link_block li:last-child {
    border-right: none;
  }
  #footer .link_block li:first-child {
    border-top: none;
  }
  #footer .link_block li a {
    display: inline;
  }
  #footer .link_block li a::after {
    content: none;
  }
}/*# sourceMappingURL=layout.css.map */