/* -------------------------
>>> 共通部分
------------------------- */
/* 文字色の設定 */
main {
  color: #333;
}
main a {
  color: #333;
}
/* スマホ・パソコン切り替え */
.sp_display {
  display: none;
}
.pc_display {
  display: block;
}
/* ヘッダー */
.freepage_header {
  padding: 25px 0;
  background: #ccc;
}
.freepage_header img {
  vertical-align: bottom;
}
/* コンテンツ内の幅 */
.inner_wrap {
  max-width: 1230px;
  margin: auto;
  padding: 0 15px;
}
/* -------------------------
>>> 特集ページ
------------------------- */
/* メインビジュアル */
.mv_block img {
  width: 100%;
}
/* 上部にラインがあるタイトル */
.topline_title {
  margin: 80px auto 60px;
}
.topline_title .topline_title_text {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
.topline_title:before {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #ccc;
  text-align: center;
  margin: auto auto 20px;
}
/* 下部にラインがあるタイトル */
.bottomline_title {
  margin: 100px auto 50px;
}
.bottomline_title_text {
  font-size: 28px;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  padding-bottom: 15px;
/* 上部に日時、下部にラインがあるタイトル */
}
.bottomline_indata_title {
  margin: 60px auto 50px;
}
.bottomline_indata_title_text {
  font-size: 28px;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  padding-bottom: 15px;
}
.bottomline_indata_title_data {
  font-size: 16px;
  margin-bottom: 5px;
  color: #666;
}
/* 横並びのセクション */
.article_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-bottom: 100px;
}
.article_flex_img {
  width: 440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: auto;
}
.article_flex_text_wrap {
  -ms-flex-line-pack: center;
      align-content: center;
}
.article_flex_title {
  font-size: 28px;
  font-weight: bold;
  line-height: 46px;
}
.article_flex_text {
  margin-top: 30px;
  font-size: 16px;
  line-height: 30px;
}
/* 背景色が付いてるセクション */
.color_section {
  background: url("/img/usr/freepages/feature/back_img.jpg") center;
  padding: 100px 0;
  margin-bottom: 100px;
}
.color_section .article_flex {
  margin: 0;
}
/* 画像をセンターに配置 */
.center_img_block {
  text-align: center;
  margin: 30px auto;
}
/* 商品説明ブロック */
.item_about_block {
  margin-bottom: 100px;
}
.item_about_block_img {
  text-align: center;
  margin: auto auto 80px;
}
.item_about_block_text_wrap {
  font-size: 16px;
  border: 1px solid #ccc;
  padding: 40px;
  margin: auto auto 30px;
}
.item_about_block_text_title {
  font-weight: bold;
  margin-bottom: 20px;
}
.item_about_block_text {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.item_about_block_text_name {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.item_about_block_text_text {
  word-break: break-all;
}
/* 注釈 */
.note_comment {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 15px;
}
/* 注意事項ブロック */
.precautions_block {
  margin-bottom: 100px;
}
.precautions_block_title {
  font-size: 20px;
  font-weight: bold;
  margin: auto auto 20px;
}
.precautions_block_text {
  font-size: 16px;
  line-height: 30px;
  padding-left: 1em;
  text-indent: -1em;
  margin: 20px auto;
}
/* 横幅いっぱいのボタン */
.full_width_btn {
  margin-bottom: 100px;
}
.full_width_btn a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  background: #333;
  border-radius: 64px;
  padding: 30px 30px 25px;
}
.full_width_btn a:before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 25px;
  background: url("/img/usr/freepages/cart_icon.png") no-repeat center/contain;
}
/* くり抜きブロック */
.hollow_out_block {
  background: #ebebeb;
  padding: 80px;
}
.hollow_out_block_text_wrap {
  background: #fff;
  padding: 40px;
}
.hollow_out_block_title {
  font-size: 28px;
  font-weight: bold;
  line-height: 46px;
  margin-bottom: 25px;
}
.hollow_out_block_text {
  font-size: 16px;
  line-height: 30px;
}
/* -------------------------
>>> 記事ページ
------------------------- */
/* 目次 */
.toc_block {
  margin: 60px auto 80px;
  border: 1px solid #ccc;
  padding: 40px;
}
.toc_block_title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.toc_block_link_wrap a {
  font-size: 18px;
  text-decoration: none;
}
.toc_block_link {
  font-weight: bold;
  margin-top: 15px;
}
.toc_block_under_link {
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding-left: 1em;
  margin-top: 15px;
}
.toc_block_under_link a {
  font-size: 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.toc_block_under_link a:before {
  content: "ー";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: auto;
}
/* 見出し系のコンテンツ小分け */
.content_group_block {
  margin: 80px auto;
}
.subheading_wrap {
  margin: 40px auto;
}
.subheading_text {
  font-size: 16px;
  line-height: 30px;
}
/* 横線付きタイトル */
.sideline_title {
  font-size: 24px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}
.sideline_title:before {
  content: "";
  display: block;
  width: 6px;
  height: auto;
  background: #ccc;
}
/* 小見出し */
.subheading_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
/* 画像テキスト横並び */
.flex_alternation_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin: auto auto 40px;
}
.flex_alternation_block:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.flex_alternation_block_img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 42%;
}
.flex_alternation_block_text {
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 16px;
  line-height: 30px;
}
/* 4つ並び */
.four_grid_item_block {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 15px 40px;
  margin-bottom: 60px;
}
.four_grid_item_block_unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  text-decoration: none;
}
.four_grid_item_block_unit_img {
  margin: auto;
}
.four_grid_item_block_unit_price {
  font-weight: bold;
}
.emphasis_color {
  color: #dd1919;
}
/* 小さいリンクボタン */
.link_width300_btn {
  text-align: center;
}
.link_width300_btn a {
  display: inline-block;
  width: 300px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  background: #333;
  border-radius: 64px;
  text-decoration: none;
  padding: 18px;
}
/* 1行1列 */
.onerow_onecolumn_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.onerow_onecolumn_block_text_wrap {
  -ms-flex-line-pack: center;
      align-content: center;
}
.onerow_onecolumn_block_text_name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  max-width: 300px;
}
.onerow_onecolumn_block_text_price {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}
/* 間に入る太字 */
.bold_text {
  font-weight: bold;
  font-size: 18px;
  margin: 30px 0;
}
/* 枠線付き横並び */
.frame_block {
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 35px 40px;
  margin: 30px auto 40px;
  text-decoration: none;
}
.frame_block_img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 250px;
}
.frame_block_text {
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
}
.frame_block_text .link_width300_btn {
  text-align: left;
  margin-top: 30px;
}
/* テキストリンク */
.text_link_block {
  margin: 20px 0;
}
.text_link_block a {
  color: #666;
  font-size: 16px;
  line-height: 30px;
  text-underline-offset: 2px;
}
/* -------------------------
>>> 単品ページ
------------------------- */
/* シンプルな大き目のタイトル */
.simple_title {
  margin: 60px auto 40px;
}
.simple_title_text {
  font-size: 32px;
  font-weight: bold;
}
/* 幅いっぱいのアンカーリンク（白） */
.square_anchor_link_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}
.square_anchor_link_block_item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 50%;
  text-align: center;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 18px;
  font-weight: bold;
  display: block;
  padding: 24px;
  text-decoration: none;
}
/* 文章だけの部分 */
.catch_copy_block {
  margin-bottom: 80px;
}
.catch_copy_block_title {
  font-size: 26px;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
}
.catch_copy_block_text {
  font-size: 16px;
  line-height: 30px;
}
/* 商品説明のリンク */
.product_overview_block {
  margin-bottom: 80px;
}
.product_overview_block_title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}
/* 商品説明のリンク 4つ並び */
.product_overview_fourColumn {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(279px, 1fr));
  gap: 28px;
  margin: auto auto 60px;
}
.product_overview_threeColumn {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: auto auto 60px;
}
.product_overview_twoColumn {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: auto auto 60px;
}
.product_overview_twoColumn {
  margin: auto auto 60px;
}
/* 商品説明のリンク 共通部分 */
.product_overview_block {
  margin-bottom: 80px;
}
.product_overview_common_title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.product_overview_common_name {
  font-weight: bold;
  font-size: 16px;
}
.product_overview_common_img {
  margin: auto;
  place-content: center;
}
.product_overview_common_text {
  font-size: 14px;
  line-height: 26px;
}
.product_overview_common_link {
  text-decoration: none;
  gap: 15px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 5;
  grid-row: span 5;
}
.product_block_title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}
/* 幅が決め打ちのアンカーリンク（黒） */
.lineup_anchor_link_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.lineup_anchor_link_block_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  width: 450px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
  background: #333;
}
/* 商品ラインナップ　カテゴリーA */
.product_lineup_categoryA_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}
.product_lineup_categoryA_group:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.product_lineup_categoryA_text_wrap {
  text-align: left;
  -ms-flex-line-pack: center;
      align-content: center;
}
.product_lineup_categoryA_text_icon {
  margin-bottom: 8px;
  width: 57px;
  height: 20px;
}
.product_lineup_categoryA_text_name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.product_lineup_categoryA_text_price {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}
.product_lineup_categoryA_text_product_wrap {
  margin-bottom: 40px;
}
.product_lineup_categoryA_text_product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.product_lineup_categoryA_text_product_name {
  min-width: 60px;
  font-size: 16px;
  font-weight: bold;
}
.product_lineup_categoryA_text_product_text {
  font-size: 16px;
}
.product_lineup_categoryA_text_product_colorChart span {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 100%;
}
.product_lineup_categoryA_text_product_colorChart span:nth-of-type(1) {
  background: #666;
}
.product_lineup_categoryA_text_product_colorChart span:nth-of-type(2) {
  background: #888;
}
.product_lineup_categoryA_text_product_colorChart span:nth-of-type(3) {
  background: #ccc;
}
.product_lineup_categoryA_img {
  width: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product_lineup_categoryA_img img {
  margin: auto;
}
.product_lineup_categoryA_group .product_lineup_category_small_wrap {
  margin: auto;
}
/* 商品ラインナップ　カテゴリーB */
.product_lineup_categoryB_group {
  margin-bottom: 60px;
}
.product_lineup_categoryB_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product_lineup_categoryB_group .product_lineup_category_small_wrap {
  -ms-flex-line-pack: center;
      align-content: center;
  max-width: 480px;
}
/* 商品ラインナップ　カテゴリー共通 */
.product_lineup_category_top_title {
  margin: 100px auto 50px;
}
.product_lineup_category_top_text {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  padding-bottom: 15px;
}
.product_lineup_category_small_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 18px;
}
.product_lineup_category_small_text {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 30px;
}
.product_lineup_category_small_name {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.product_lineup_category_small_price {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}
.product_lineup_category_small_img {
  text-align: center;
  margin-bottom: 18px;
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  .sp_display {
    display: block;
  }
  .pc_display {
    display: none;
  }
  .freepage_header {
    padding: 10px 0;
    background: #ccc;
  }
  .freepage_header img {
    vertical-align: bottom;
  }
  .inner_wrap {
    max-width: 100%;
  }
  .mv_block img {
    width: 100%;
  }
  .topline_title {
    margin: 60px auto 40px;
  }
  .topline_title .topline_title_text {
    font-size: 26px;
  }
  .topline_title:before {
    content: "";
    display: block;
    width: 45px;
    height: 4px;
    background: #ccc;
    text-align: center;
    margin: auto auto 15px;
  }
  .bottomline_title {
    margin: 60px auto 30px;
  }
  .bottomline_title_text {
    font-size: 20px;
    line-height: 32px;
  }
  .bottomline_indata_title {
    margin: 30px auto;
  }
  .bottomline_indata_title_text {
    font-size: 20px;
    line-height: 32px;
  }
  .bottomline_indata_title_data {
    font-size: 14px;
  }
  .article_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }
  .article_flex_img {
    width: 100%;
  }
  .article_flex_title {
    font-size: 20px;
    line-height: 32px;
  }
  .article_flex_text {
    margin-top: 25px;
    font-size: 14px;
    line-height: 26px;
  }
  .color_section {
    padding: 60px 0;
    margin-bottom: 60px;
    background: url("/img/usr/freepages/feature/back_img_sp.jpg") center;
  }
  .center_img_block img {
    width: 100%;
    height: auto;
  }
  .item_about_block {
    margin-bottom: 60px;
  }
  .item_about_block_img {
    width: 100%;
    margin: auto auto 60px;
  }
  .item_about_block_text_wrap {
    font-size: 14px;
    padding: 25px 15px;
    margin: auto auto 20px;
  }
  .note_comment {
    font-size: 12px;
    line-height: 1.8;
  }
  .precautions_block {
    margin-bottom: 60px;
  }
  .precautions_block_title {
    font-size: 18px;
  }
  .precautions_block_text {
    font-size: 14px;
    line-height: 26px;
  }
  .full_width_btn {
    margin-bottom: 60px;
  }
  .full_width_btn a {
    font-size: 18px;
    gap: 10px;
    background: rgba(51,51,51,0.2) 3;
    border-radius: 64px;
    padding: 30px 30px 25px;
  }
  .full_width_btn a:before {
    content: "";
    width: 27px;
    height: 22px;
  }
  .hollow_out_block {
    padding: 60px 15px;
  }
  .hollow_out_block_text_wrap {
    padding: 30px 15px;
  }
  .hollow_out_block_title {
    font-size: 20px;
    line-height: 32px;
  }
  .hollow_out_block_text {
    font-size: 14px;
    line-height: 26px;
  }
  .toc_block {
    margin: 40px auto 60px;
    padding: 25px 15px;
  }
  .toc_block_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .toc_block_link_wrap a {
    font-size: 16px;
  }
  .toc_block_link {
    margin-top: 15px;
  }
  .toc_block_under_link a {
    font-size: 14px;
    line-height: 24px;
    gap: 5px;
  }
  .toc_block_under_link a:before {
    content: "ー";
    margin: 0;
  }
  .content_group_block {
    margin: 60px auto;
  }
  .subheading_wrap {
    margin: 30px auto;
  }
  .subheading_text {
    font-size: 14px;
    line-height: 26px;
  }
  .sideline_title {
    font-size: 20px;
    gap: 10px;
  }
  .subheading_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .flex_alternation_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    max-width: 390px;
    margin: auto auto 30px;
  }
  .flex_alternation_block:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex_alternation_block_img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
  }
  .flex_alternation_block_text {
    font-size: 14px;
    line-height: 26px;
  }
  .four_grid_item_block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 14px;
    margin-bottom: 30px;
  }
  .four_grid_item_block_unit {
    gap: 12px;
  }
  .four_grid_item_block_unit_img {
    margin-bottom: 3px;
  }
  .four_grid_item_block_unit_img img {
    width: 100%;
    height: auto;
  }
  .link_width300_btn a {
    font-size: 14px;
    padding: 20px;
  }
  .onerow_onecolumn_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .onerow_onecolumn_block_img img {
    width: 100%;
    height: auto;
  }
  .onerow_onecolumn_block_text_name {
    font-size: 16px;
  }
  .onerow_onecolumn_block_text_price {
    font-size: 16px;
  }
  .bold_text {
    font-weight: bold;
    font-size: 16px;
    margin: 20px 0;
  }
  .frame_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 25px 15px;
  }
  .frame_block_img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .frame_block_text {
    font-size: 14px;
    line-height: 26px;
  }
  .frame_block_text .link_width300_btn {
    text-align: center;
  }
  .text_link_block a {
    font-size: 14px;
    line-height: 26px;
  }
  .simple_title {
    margin: 30px auto;
  }
  .simple_title_text {
    font-size: 26px;
  }
  .square_anchor_link_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
  }
  .square_anchor_link_block_item {
    width: 50%;
  }
  .square_anchor_link_block_item a {
    font-size: 14px;
  }
  .catch_copy_block {
    margin-bottom: 60px;
  }
  .catch_copy_block_title {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 25px;
  }
  .catch_copy_block_text {
    font-size: 14px;
    line-height: 26px;
  }
  .product_overview_block {
    margin-bottom: 60px;
  }
  .product_overview_block_title {
    font-size: 20px;
  }
  .product_overview_fourColumn,
  .product_overview_threeColumn,
  .product_overview_twoColumn {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin: auto auto 50px;
    max-width: 390px;
  }
  .product_overview_oneColumn {
    margin: auto auto 60px;
    max-width: 390px;
  }
  .product_overview_fourColumn .product_overview_common_img {
    max-width: 300px;
  }
  .product_overview_block {
    margin-bottom: 80px;
  }
  .product_overview_common_title {
    font-size: 18px;
  }
  .product_block_title {
    font-size: 20px;
  }
  .lineup_anchor_link_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .lineup_anchor_link_block_item a {
    width: 100%;
    max-width: 450px;
    color: #fff;
    font-size: 14px;
    margin: auto;
  }
  .product_lineup_categoryA_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    max-width: 390px;
    margin: auto auto 50px;
  }
  .product_lineup_categoryA_group:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product_lineup_categoryA_text_wrap {
    width: 100%;
    text-align: left;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .product_lineup_categoryA_text_icon {
    margin-bottom: 8px;
  }
  .product_lineup_categoryA_text_name {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .product_lineup_categoryA_text_price {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .product_lineup_categoryA_text_product_wrap {
    margin-bottom: 30px;
  }
  .product_lineup_categoryA_text_product {
    gap: 30px;
    margin-bottom: 8px;
  }
  .product_lineup_categoryA_text_product_name {
    min-width: 60px;
    font-size: 14px;
  }
  .product_lineup_categoryA_text_product_text {
    font-size: 14px;
  }
  .product_lineup_categoryA_text_product_colorChart span {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
  .product_lineup_categoryA_img {
    width: 100%;
  }
  .product_lineup_categoryA_img img {
    margin: auto;
  }
  .product_lineup_categoryA_group .product_lineup_category_small_wrap {
    margin: auto;
  }
  .product_lineup_categoryB_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    max-width: 390px;
    margin: auto auto 50px;
  }
  .product_lineup_categoryB_group .product_lineup_category_small_wrap {
    -ms-flex-line-pack: center;
        align-content: center;
    max-width: 480px;
  }
  .product_lineup_category_top_title {
    margin: 50px auto 30px;
  }
  .product_lineup_category_top_text {
    font-size: 16px;
    padding-bottom: 15px;
  }
  .product_lineup_category_small_title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .product_lineup_category_small_name {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .product_lineup_category_small_price {
    font-size: 16px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 390px) {
  .sp_full_width_content {
    margin: auto -15px !important;
  }
}
