/******************************
共通
*******************************/
body{
    font-size: 0.875rem;/*14px*/
    line-height: 1.9;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #ffffff;
    color: #333333;
}
img{
    display: block;
    max-width: 100%;
    /*height: auto;*/
}
.sp_img{
  display: block;
}
.pc_img{
  display: none;
}
.pc_br{
  display: none;
}

@media screen and (min-width:767px) {/*pc*/
  .sp_img{
    display: none;
  }
  .pc_img{
    display: block;
  }
  .sp_br{
    display: none;
  }
}

p{
  margin-bottom: 15px;
}
.txt_shadow{
  text-shadow: 1px 1px 3px #474747; /* テキストの影を指定（[左右][上下][ぼかし][影の色]） */
}
a{
    color: #000000;
    text-decoration: none;
}
a:hover{
    color:#4b4b4b;
}
.txt_b{
  font-weight: 700;
}
.bigtxt{
  font-size: 1.5em;
}
.center{
  text-align: center;
}
.center_box{
  margin: 0 auto;
}
/*.section-wrap{
  padding: 3rem 0;
}
.section-bg{
  background-color: #f6f6f8;
}
.section-border{
  border-top: 1px solid #ccc;
}
.container{
  width: min(90%, 1366px);
  margin:0 auto;
}*/
.liststyle_on{
  list-style: square;
  margin-left: 2rem;
}
.liststyle_underline{/*1列の下線付きリスト*/
  width: 100%;
}
.liststyle_underline li{
  padding: .5rem 0;
  border-bottom: 1px solid #ccc;
}

.underline{
  background:linear-gradient(transparent 60%, rgb(252, 228, 161) 60%);
}

/*パンくずの設定*/
.breadcrumb{
  display: none;
}
@media screen and (min-width:767px){/*pc*/
  .breadcrumb{
    display: block;
    width: 92%;
    max-width: 1366px;
    margin: 1rem auto;
    font-size: .8rem;
  }
  .breadcrumb ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  .breadcrumb ul li a {
    text-decoration: none;
  }
  .breadcrumb ul li a::after {
    content: ">";
    padding: 0 .5rem;
    vertical-align: middle;
  }
}

table.table_base{
  margin-bottom: 3rem;
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
table.table_base th,
table.table_base td{
  display: block;
  padding: 15px 5px;
  border-bottom: 1px solid #ccc;
}
table.table_base th{
  background-color: #d3d3d3;
}

@media screen and (min-width:767px){/*pc*/
  table.table_base{
    border: none;
    width: 100%;
  }
  table.table_base th,
  table.table_base td{
    display: table-cell;
    background-color: inherit;
  }
  table.table_base th{
  background-color: #ffffff;
}
}

/*トップページへ戻るボタン*/
#topbutton {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index:9999;
}  
#topbutton a {
    display: flex;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    line-height: 2.1;
    text-indent: 0.85em;
    text-decoration: none;
}
#topbutton a:hover {
    display: flex;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #666;
}
#topbutton a img{
    width: 60%;
    height: auto;
}

/*コンテンツリンクボタン（黒）*/
.btn_contents{
    padding: 3rem 0 0;
}
.btn_contents .btn_black{
    display: block;
    width: fit-content;
    margin: 0 0;
    padding: .5rem 2rem;
    background-color: #333;
    border-radius: 5px;
    color: #f4f4f4;
    transition: all 0.5s 0s ease;
}
.btn_contents .btn_black:hover{
      background-color: #000;
}
.btn_contents .btn_black.center{
      margin: 0 auto;
}

/******************************
header
*******************************/
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #333333;
    height: 80px;
    width: 100%;
    position: fixed;
    z-index: 9999;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
}
.header .headerArea{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    margin:0 auto;
}
.header .headerArea .logoArea{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
}

.header .headerArea .gnav_block{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*コンテンツメニュー(headbtn_gnav_01)*/
.gnav_block .sp_img{
  width: 30%;
  height: auto;
  margin: 0 auto 3rem auto;
}
.gnav_block .gnav_list_01{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 30px;
}
.gnav_block .gnav_list_01 li + li{
    margin-left: 30px;
}
.gnav_block .gnav_list_01 li a{
    color:#333;
    text-decoration: none;
    font-size: 0.8125rem;/*13px*/
    white-space: nowrap;
    position: relative;
}
/*.gnav_block .gnav_list_01 li a::before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left:0;
    bottom:-2px;
    margin: auto;
    background: rgb(0, 0, 0);
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}
.gnav_block .gnav_list_01 li a:hover::before{
    transform-origin: left top;
    transform: scale(1, 1) ;
}*/

@media screen and (min-width:767px){/*pc*/
  .gnav_block .gnav_list_01 li a{
      color:#f4f4f4;
  }
  .gnav_block .gnav_list_01 li a::before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left:0;
    bottom:-2px;
    margin: auto;
    background: #084d97;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .gnav_block .gnav_list_01 li a:hover::before{
      transform-origin: left top;
      transform: scale(1, 1) ;
  }
}


/* ヘッダーボタン(お問い合わせ) */

.gnav_block .gnav_list_02{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*お問い合わせボタン*/
.gnav_list_02 li.headbtn_contact a  {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 5px 20px;
    color: #f4f4f4;
    background: #023163;
    border:1px solid #023163;
    border-radius: 3px;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.8125rem;/*13px*/
}
/*新規会員登録ボタン*/
.gnav_list_02 li.headbtn_sign-up a  {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 5px 20px;
    color: #f4f4f4;
    background: #840035;
    border:1px solid #840035;
    border-radius: 3px;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.8125rem;/*13px*/
}
/*ログインボタン*/
.gnav_list_02 li.headbtn_login a  {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 5px 20px;
    color: #f4f4f4;
    background: #0d519a;
    border:1px solid #0d519a;
    border-radius: 3px;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.8125rem;/*13px*/
}
.gnav_list_02 li.headbtn_contact a:hover,
.gnav_list_02 li.headbtn_sign-up a:hover,
.gnav_list_02 li.headbtn_login a:hover {
    background: #031a33;
    color: #ffffff;
    border:1px solid #031a33;
}
.gnav_list_02 li.headbtn_sign-up a:hover{
    background: #520222;
    color: #ffffff;
    border:1px solid #520222;
}

/*.gnav_list_02 li.headbtn_faq a i.fa-solid{
  color: #000;  
}*/

@media screen and (max-width:767px){/*sp*/
  .gnav_list_02 li.headbtn_contact a {
      background: #023163;
      color:#f4f4f4;
  }
  .gnav_list_02 li.headbtn_login a {
      background: #0d519a;
      color:#f4f4f4;
  }
}

.burger_btn {
  display: none;
  position: absolute;
}

/*
トグルボタンの設定***********************************/

/*グローバルメニュー********************************/
/*スクロール時グローバルメニューの固定*/
/*.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}*/
.gnav_list_01, .gnav_list_02{
  display:flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  list-style:none;
}
.gnav_list_01 li+li, .gnav_list_02 li+li{
  margin-left:20px;
}
.burger_btn {
  display: none;
  position: absolute;
}

  /*pcでメニュー非表示*/
  .menu_sp{
    display: none;
  }
  .gnav_item i{
    display: none;
  }

@media screen and (max-width: 1366px) {/*ipad,sp*/
  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #000;
    /*box-shadow: 0 2px 6px rgba(0,0,0,.16);*/
  }
  .gnav_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%; /* スマホに収まるくらいの幅指定 */
    height: 100vh;
    padding-top: 40px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .header .headerArea .gnav_block{
    justify-content:flex-start;
    align-items: center;
  }
  .burger_btn {
    display: block;
    position: absolute;
    right: 2%;
    top: 20px;
    width: 40px; /* クリックしやすいように幅指定 */
    height: 40px; /* クリックしやすいように高さ指定 */
    cursor: pointer;
    z-index: 300;
  }
  .gnav_block .gnav_list_01{
    margin-right: 0;
    padding-bottom: 30px;
    padding-right: 0px;
    border-right: none;
  }
  .gnav_block .gnav_list_02{
    padding-left: 0;
  }
  .gnav_list_01, .gnav_list_02 {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .gnav_block .gnav_list_01 li + li{
    margin-left: 0px;
  }
  .gnav_block .gnav_list_02 li + li{
    margin-left: 0px;
  }
  .gnav_list_01 li,
  .gnav_list_02 li{
    margin-bottom: 10px;
    width: 250px;
  }
  
  .gnav_item {
    padding: 0 ;
    width:100%;
    border-bottom:1px solid #cccccc;
  }
  .gnav_item a {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    text-decoration: none;
    color: #111;
  }
  .gnav_item i{
    display: block;
  }
  .bar {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #f4f4f4;
    transition: all .6s;
  }
  .bar_top {
    top: 14px;
  }
  .bar_mid {
    top: 20px;
  }
  .bar_bottom {
    top: 26px;
  }
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .gnav_block {
    right: 0;
  }
  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .bar{
    background-color: #333333;
  }
  .nav-open .bar_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .bar_mid {
    width: 0;
    left: 50%;
  }
  .nav-open .bar_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
  .menu_sp{
    display: block;
  }
}

/******************************
footer
*******************************/
footer{
  background-color: #333;
}
.wrap1366_footer{
  max-width: 1366px;
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
}
.footerArea{
  display: flex;
  flex-direction: column-reverse;
  gap:2rem;
  color: #b3b3b3;
}
.footerArea a{
  color: #b3b3b3;
  font-size: .8rem;
}
.footerArea img.logo{
  width: 20%;
  height: auto;
}
.footerArea p{
  font-size: .8rem;
  margin-top: 2rem;
}
.copyright{
  width: 100%;
  padding-top: 2rem;
  color: #b3b3b3;
  font-size: .8rem;
  line-height: 1.5;
  text-align: left;
}

@media screen and (min-width: 768px) {/*pc*/
  .footerArea{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .footerArea ul{
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .footerArea img.logo{
    width: 100px;
    height: auto;
  }
  .copyright{
    text-align: right;
  }
}

/******************************
main
*******************************/
.main{/*headerの高さ分下にずらす*/
    margin-top:80px;
    width: 100%;
}

section.bg_gray01,
div.bg_gray01{
    background-color: #e8e8e8;
}
section.wrap1366{
    max-width: 1366px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
}
div.wrap1366{
    max-width: 1366px;
    width: 90%;
    margin: 0 auto;
    padding: 5rem 0 3rem;
}
div.wrap1366.no-bottomMargin{/*100%幅ページのページタイトルに設定（custom-page.php）*/
    max-width: 1366px;
    width: 90%;
    margin: 0 auto;
    padding: 5rem 0 0;
}
div.wrap1366.no-topPadding{/*100%幅ページのサブタイトルに設定（custom-page.php）*/
    max-width: 1366px;
    width: 90%;
    margin: 0 auto;
    padding: 0 0 5rem;
}
section.bg_white,
div.bg_white{
  background-color: #fff;
}
.contents{
  width: 100%;
  margin: 5rem auto;
}
.wrapper{/*containerより幅小の入れ子*/
  width: 92%;
  margin: 3rem auto;  
}
@media screen and (min-width:767px){/*pc*/
  .wrapper{/*containerより幅小の入れ子*/
    width: 80%;
    margin: 3rem auto;  
  }
}
.bg_paper{/*紙のテクスチャ背景（トップページ）*/
  background-image: url(../img/top/bg_paper.jpg);
  background-position: center;
  background-size: cover;
}

/******************************
mainimgArea
*******************************/
.mainimgArea{
  padding: 0;
  width: 100%;
  background-image: url(../img/top/mainimg2_sp.jpg);
  background-repeat: none;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {/*pc*/
  .mainimgArea{
    background-image: url(../img/top/mainimg2.jpg);
  }
}

.mainimgArea .mainimg_txtArea{
  position: relative;
  max-width: 1366px;
  width: 90%;
  margin: 0 auto;
  height: 600px;
}
.mainimgArea .mainimg_txtArea_ttl{
  position: absolute;
  left: 0%;
  top:50%;
  transform: translateY(-50%);
  color: #ffffff;
  z-index: 999;
  line-height: 1;
}
.mainimgArea h1{
  font-size: .8rem;
}
.mainimgArea h1 span.logo_tooldl_small{
  display: block;
  font-size: .8rem;
  margin-top: 20px;
  letter-spacing: .3px;
  color:#f4f4f4;
}

/* subpage */
.mainimgArea_sub{
  padding: 0;
  width: 100%;
  background-image: url(../img/common/mainimg_sub_sp.jpg);
  background-repeat: none;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {/*pc*/
  .mainimgArea_sub{
    background-image: url(../img/common/mainimg_sub.jpg);
  }
}
.mainimgArea_sub .mainimg_txtArea{
  position: relative;
  max-width: 1366px;
  width: 90%;
  margin: 0 auto;
  height: 200px;
}
.mainimgArea_sub .mainimg_txtArea_ttl{
  position: absolute;
  left: 0%;
  top:50%;
  transform: translateY(-50%);
  z-index: 999;
}
.mainimgArea_sub h1 span.logo_tooldl_small{
  display: block;
  font-size: .8rem;
  margin-top: 10px;
  letter-spacing: .3px;
  color:#bbbbbb;
}
.mainimgArea_sub .mainimg_txtArea_ttl img{
  width: 70%;
}

/******************************
title_format（共通タイトル装飾）
*******************************/
h2.Area_ttl{
  font-size: 1.8rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {/*pc*/
  h2.Area_ttl{
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
}
h3.Area_ttl_sub{
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0;
  line-height: 1.2;
}
.layout_2part_contents h3.Area_ttl_sub{
  margin: 2rem 0;
}
h3.news_ttl{
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1rem 0 2rem;
  line-height: 1.2;
}
h3.category_ttl{
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
h3.Area_ttl_filename{
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h3.Area_ttl_sub_tooldlpage{
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
h3.Area_ttl_sub_tooldlpage::before{
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background-color: #333;
  vertical-align: middle;
  margin-right: .5rem;
  line-height: 1.2;
}
h4.Area_ttl_sub{
  font-weight: 700;
  margin-top: 2rem;
}
h4.Area_ttl_sub_line{
  font-weight: 700;
  margin-bottom: 1rem;
}
h4.Area_ttl_sub_line::before{
  content:"";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background-color: #333;
  vertical-align: middle;
  margin-right: 1rem;
}
.pagettl-block{
  margin-bottom: 3rem;
}


/*　トップページ　************************/
/*タイトル*/
.ttl_top{
  font-size: .8rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.ttl_top::before{
  display: block;
  font-size: 2.25rem;
  /*font-weight: bold;*/
  letter-spacing: 2px;
}
.ttl_top.ttl_download::before{
  content: "Download file";
}
.ttl_top.ttl_recomend::before{
  content: "Recommendations";
}
.ttl_top.ttl_news::before{
  content: "News";
}

/*　序章－－アイコン並列エリア　*/
.ttl_multigriddle{
  font-size: .8rem;
  text-align: center;
  margin-bottom: 3rem;
}
.ttl_multigriddle::before{
  content: "";
  display: block;
  width: 300px;
  height: 50px;
  margin: 0 auto;
  background-image: url(../img/common/logo_teppanmultigriddle.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.productIcon img{
  margin: 2rem auto;
}

/*　カード並列（販促ツールダウンロード）　*/
.flex_container_dwonload{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:3rem;
  margin-bottom: 3rem;
}
.flex_container_dwonload .flex_item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc((100% - 3rem) / 2);
  line-height: 1.5;
}
.flex_container_dwonload .flex_item img{
  margin-bottom: .5rem;
}
@media screen and (min-width: 768px) {/*pc*/
  .flex_container_dwonload{
    flex-wrap: nowrap;
    gap:2rem
  }
  .flex_container_dwonload .flex_item{
    width: calc((100% - 6rem) / 5);
  }
}

/*　カード並列（おすすめリンク集）　*/
.flex_container_recomend{
  display: flex;
  flex-direction: column;
  gap:1rem
}
.flex_container_recomend .flex_item{
  width: 100%;
}
@media screen and (min-width: 768px) {/*pc*/
  .flex_container_recomend{
    flex-direction: row;
    gap:2rem
  }
  .flex_container_recomend .flex_item{
    width: calc((100% - 4rem) / 3);
  }
}
.flex_item p ,
.grid_item p{
  line-height: 1.5;
  margin: .5rem 0;
}
.flex_item .thumbnailttl,
.grid_item .thumbnailttl{
  display: block;
  font-weight: 700;
}

/*ダウンロード規約ボタンエリア*/
.termsWrap{
  background-image: url(../img/common/bg_termWrap.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #f4f4f4;
}
.termsWrap_flex{
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {/*pc*/
  .termsWrap_flex{
    display: flex;
    flex-direction: row;
    gap: 5rem;
  }
  .termWrap_txt{
    width: 60%;
  }
}
.ttl_termwrap{
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
/*ダウンロード規約ボタン*/
.btn_term{
  display: flex;
  justify-content:center;
  align-items: center;
}
.btn_term .btn_black{
  display: block;
  width: fit-content;
  margin: 0 0;
  padding: 1rem 3rem;
  background-color: #fff;
  border-radius: 5px;
  color: #000;
  transition: all 0.5s 0s ease;
}
.btn_term .btn_black:hover{
  background-color: #000;
  color: #fff;
}

/******************************
newsArea
*******************************/
.newsArea{
  display: flex;
  flex-direction: column;
}
.newsArea h2.Area_ttl{
  width: 20%;
}
article.news_area_list{
  display: flex;
  flex-direction: column;
}
.news_area_time{
  display: flex;
  flex-direction: row;
}

.btn_news{
  display: block;
  width: fit-content;
  padding: .1rem 1rem .1rem 2rem;
  background-color: #fff;
  background-image: url(../img/common/arrow_triangle_black.png);
  background-repeat: no-repeat;
  background-position: 1rem center;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
  font-size: .8rem;
}

.content-newslist .blog-header{
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.content-newslist .blog-header .newscategory{
  background-color: #333;
  border-radius: 3px;
  padding: 0 1rem;
}
.content-newslist .blog-header .newscategory a{
    color: #f4f4f4;
}
.content-newslist{
  margin-bottom: 3rem;
}
.content-newslist h3.news_ttl{
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {/*pc*/
  .newsArea{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
  }
  .newsArea .ttl_newsArea{
    width: 20%;
  }
  article.news_area_list{
    display: flex;
    flex-direction: row;
    gap:4rem;
  }
  time{
    display: block;
  }
  .news_area_time{
    width: 10%;
  }
}


/*　サブページ　************************/

/*共通*/
/*2カラム（携帯1カラム）*************************/
/*.layout_2part{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap:8rem;
}*/
.layout_2part .submenu{
  margin-bottom: 3rem;
}
.layout_2part .submenu li{
  line-height: 3;
  border-bottom: 1px dotted #ccc; 
}
.layout_2part .submenu li:last-child{
  border-right: none; 
}  
.layout_2part .submenu li::before{
  content: "";
  display: inline-block;
  background-image: url(../img/common/arrow_triangle_black.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: .6rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {/*pc*/
  .layout_2part{
    display: grid;
    grid-template-columns: 300px 1fr;
    gap:8rem;
  }
  .layout_2part .submenu li{
    line-height: 3;
  }
  .layout_2part .submenu li::before{
    content: "";
    display: inline-block;
    background-image: url(../img/common/arrow_triangle_black.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1rem;
    height: .6rem;
    vertical-align: middle;
  }
}

.wrap_2part{/*画像とテキストブロックの並列*/
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
}
.wrap_2part .wrap_2part_img{
  width:100%; 
}

h3.Area_ttl_sub:first-child{/*サブタイトルの余白を削除*/
  margin-top: 0;
}


@media screen and (min-width: 768px) {/*pc*/
  .wrap_2part{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 12rem;
  }
  .wrap_2part .wrap_2part_img{
    max-width: 50%;
  }
  .wrap_2part .wrap_2part_txt{
    flex: 1; 
  }
}

/******************************
販促ツールダウンロードページ
*******************************/
/*カード並列*/
.grid_container_dwonload{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.grid_container_dwonload .grid_item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {/*pc*/
  .grid_container_dwonload{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

/*画像ページのカテゴリー画像並列*/
.promotool_categorylist{
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 5rem;
}
.promotool_categorylist > li{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.promotool_categorylist > li a{
  display: block;
}
.promotool_categorylist > li a::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 10%;
  position: absolute;
  left: 0;
  top:0;
  transition: all 0.5s 0s ease;
}
.promotool_categorylist > li a:hover::before{
  opacity: 30%;
}
.promotool_categorylist > li p{
  font-size: 1.2rem;
  color: #f4f4f4;
  text-align: center;
  line-height: 1.5;
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%, -50%);
}
.promotool_categorylist_ja{
  display: block;
  font-size: .7rem;
  color: #d2d2d2;
}

@media screen and (min-width: 768px) {/*pc*/
  .promotool_categorylist{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1px;
  }
  .promotool_categorylist > li{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 2px) / 3);
    cursor: pointer;
  }
}

.wrap_download{
  margin-bottom: 5rem;
}

.download_cardlist,
.download_cardlist_right {/*ファイルダウンロードページ（カード並列）*/
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
article.download_item{
    border: 1px solid #ccc;
    padding: 2rem;
  }
@media screen and (min-width: 768px) {/*pc*/
  .download_cardlist{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
}
.download_item{/*カード内の画像とテキストを上下に配置*/
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.download_item .downloadfile_text{/*ボタンの位置を揃える*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {/*pc*/
  .download_item{/*グリドル以外のページの、カード内の画像とテキストを左右に配置*/
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
}

section.wrap_download .outlineBox{
  margin: 1rem 0 5rem;
  border: 1px solid #cccccc;
  padding: 1rem;
}
section.wrap_download .outline_list{
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
.outlineBox_ttl{
  font-weight: 700;
  margin-bottom: .5rem;
}

@media screen and (min-width: 768px) {/*pc*/
  section.wrap_download .outline_list{
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .outlineBox_ttl{
    font-weight: 700;
    margin-bottom: .5rem;
  }
}


.grid_container_download_thumbnail{/*サムネイル画像の並列（画像のグリドルDLページ）*/
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:5px;
}
@media screen and (min-width: 768px) {/*pc*/
  .grid_container_download_thumbnail{/*サムネイル画像の並列（画像のグリドルDLページ）*/
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap:5px;
  }
}

/*MOREボタン装飾*/
.flex_container_dwonload .btn_more a,
.grid_container_dwonload .btn_more a{
  display: block;
  color: #f4f4f4;
  background-color: #5f5e72;
  width: fit-content;
  border-radius: 999px;
  padding: .2rem 1.8rem;
  transition: all 0.5s 0s ease;
}
.flex_container_dwonload .btn_more a:hover,
.grid_container_dwonload .btn_more a:hover{
  display: block;
  color: #f4f4f4;
  background-color: #393847;
  width: fit-content;
  border-radius: 999px;
  padding: .2rem 1.8rem;
}

/*グリドルシリーズ画像ダウンロードページのタイトル（アクセサリーページのh3）*/
h3.Area_ttl_sub.marginBottom{
  margin-bottom: 2rem;
}

/*サムネイル画像のマウスオーバーの動き*/
a.thumbnail_Link {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
a.thumbnail_Link::after{
  content: "";
  display: block;
  position: absolute;
  background-color: #cfcfcf;
  opacity: 20%;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  transition: all 0.5s 0s ease;
  z-index: 999;
}
a.thumbnail_Link:hover::after{
  opacity: 40%;
}

.btn_download_zip{/*まとめて一括ダウンロードボタン*/
    padding: 1.5rem 0;
}
.btn_download_zip .btn_gray{
    display: block;
    width:fit-content;
    padding: .5rem 2rem .5rem 2.5rem;
    background-color: #5f5e72;
    background-image: url(../img/common/arrow_triangle_white.png);
    background-repeat: no-repeat;
    background-position: 1.2rem center;
    border-radius: 3px;
    color: #f4f4f4;
    transition: all 0.5s 0s ease;
}
.btn_download_zip .btn_gray:hover{
    background-color: #393847;
}

.btn_download_file a{/*DOWNLOADボタン装飾*/
  display: block;
  color: #f4f4f4;
  font-size: .8rem;
  line-height: 1;
  background-color: #5f5e72;
  width: fit-content;
  border-radius: 999px;
  padding: .5rem 1.5rem;
  transition: all 0.5s 0s ease;
}
/*.btn_download_file a::before{
  content: "";
  display: inline-block;
  background-image: url(../img/common/arrow_download_w.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1rem;
}*/
.btn_download_file a:hover{
  background-color: #393847;
}

/******************************
お問い合わせフォーム
*******************************/
.contactForm{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.contactForm dt p,
.contactForm dd p{
  margin:0;
}
.contactForm dt{
  width: 100%;
  padding-bottom: none;
}
.contactForm dd{
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: none;
}
.contact_btn{
  text-align: center;
  margin: 3rem;
}
.contact_btn input{
  padding: .5rem 2rem;
  border-radius: 5px;
  background-color: #333;
  color: #f4f4f4;
}

@media screen and (min-width: 768px) {/*pc*/
  dl.contactForm{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  dl.contactForm dt{
    width: 25%;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
  }
  dl.contactForm dd{
    width: 75%;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
  }
}

/******************************
NEWS一覧ページ
*******************************/
.blog-title-index{
  font-weight: 700;
  font-size: 1.2rem;
}
.blog-title-index::before{
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1.5rem;
  background-image: url(../img/common/arrow_triangle_black.png);
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.btn_contents.btn_newsmore{
  padding-top: 0;
}

/******************************
『ブランドストーリー』ページ
*******************************/
h3.Area_ttl_sub_story{
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0 0 2rem;
  line-height: 1.2;
}
.img_story_bg{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}
.img_story01{
  background-image: url(../img/story/img_story01.jpg);
}
.img_story02{
  background-image: url(../img/story/img_story02.jpg);
}
.img_story03{
  background-image: url(../img/story/img_story03.jpg);
}
.txt_story{
  text-align: left;
  margin: 2rem auto 5rem;
  max-width: 1366px;
  width: 92%;
}
@media screen and (min-width: 768px) {/*pc*/
  .img_story_bg{
    height: 500px;
  }
  .txt_story{
    text-align: center;
    margin: 3rem auto 8rem;
  }
}

/******************************
『FAQ』ページ
*******************************/
.faq_category{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1px;
}
.faq_category li{
  width: calc((100% - 2px) / 3);
}
/*.faq_category li img{
  border: 1px solid #ccc;
}*/
@media screen and (min-width: 999px) {/*pc*/
  .faq_category{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
  }
  .faq_category li{
    width: 230px;
  }
}

.faq_list{
  margin: 1rem 0;
}
.faq_list dt{
  margin-bottom: 1rem;
}
.faq_list dd.faq_list_a{
  background-color: #efefef;
  padding: 2rem;
  border-radius: 5px;
  margin-bottom: 3rem;
}
.faq_list dt::before,
.faq_list dd::before{
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  vertical-align: middle;
}
.faq_list dt.faq_list_q::before{
  background-image: url(../img/faq/icon_q.png);
}
.faq_list dd.faq_list_a::before{
  background-image: url(../img/faq/icon_a.png);
}

/******************************
『取扱商品』ページ
*******************************/
.product_name::after{
  content:"";
  display: block;
  width: 3rem;
  height: 1px;
  background-color: #ccc;
  margin: 1.5rem 0;
}

/******************************
メディア公開ページ
*******************************/
.snslogo{
  width: 80px;
}