@charset "UTF-8";
/* CSS Document */

/*-------------------
*Reset
*Common  
*Breadcrumb
*Footer
*Page top
*Text
*Title
*Link
*button
*List
*Margin
*Table
*Pager
*/
/*========================================================
  *Reset
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  /*font-weight: normal;*/
  background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, select {
  vertical-align: middle;
}
button, input, select, textarea {
  font-family : inherit;
  font-size : 100%;
}
/*テキストボックスの青枠削除*/
input[type="text"], input[type="tel"], input[type="email"], input[type="password"], textarea {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;/*デフォルトスタイルを削除*/
}
input[type="submit"], input[type="button"], input[type="reset"] {
  -webkit-appearance: none;
  border-radius: 0;
}
select {
  outline: none;
}
img {
  image-rendering: -webkit-optimize-contrast;
  /*-webkit-backface-visibility: hidden;*/
}

/*========================================================
  *Common
*/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
body {
  background-color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  font-family: Arial,'Noto Sans JP', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Sans-Serif;
  color: #2a2a2a;
  -webkit-text-size-adjust: 100%;
}

/*共通色*/
:root {
  --cmn-red: #dd1010;
  --cmn-blue: #4541db;
  --cmn-green: #16bca7;
  --cmn-gray01: #2b2b2c;/*dark*/
  --cmn-gray02: #57585a;
  --cmn-gray03: #898b8e;
  --cmn-gray04: #ced0d2;/*#cdcecf*/
  --cmn-gray05: #e6e8e9;/*#e9ebec*/
  --cmn-gray06: #eff0f3;/*#f1f3f4 light*/
  --txt-link01: #dd1010;
  --txt-link01-hv: #ff6b6b;
  --jp-car: #f1524b;
  --imp-car: #16bca7;
  --kjp-car: #FA8944;
  --emphasis: #1d479b/*紺*/
}

/*========================================================
  *header
*/
/*上部に固定*/
.hd-fix {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  width: 100%;
  /*height: 126px;*/
  transition: .3s;
}
.main { 
  position: relative;
  margin-top: 70px;/*headerの高さ*/
}
@media screen and (min-width: 1300px/*1120px*/) {
  .main { 
    position: relative;
    margin-top: 126px;/*headerの高さ*/
  }
}

/*ハンバーガーメニュー*/
.icon-hamburger {
  position: absolute;
  top: 16px;
  right: 20px;
  cursor: pointer;
  display: inline-block;
  height: 40px;
  width: 40px;
  transition: .3s;
  z-index: 9999;
}
.icon-hamburger span {
  background-color: #02253d;
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 3px;
  transition: .3s;
}
.icon-hamburger span::before,
.icon-hamburger span::after {
  background-color: #02253d;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  transition: 0.3s;
}
.icon-hamburger span::before {
  top: -12px;
}
.icon-hamburger span::after {
  bottom: -12px;
}

/*ハンバーガー 閉じる*/
.icon-hamburger.active {
  display: block;
}
.icon-hamburger.active span {
  background-color: inherit;
}
.icon-hamburger.active span::before {
  transform: rotate(-45deg);
  top: 0;
}
.icon-hamburger.active span::after {
  transform: rotate(45deg);
  bottom: 0;
}
/*menuの文字*/
.icon-hamburger .hb-txt {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  font-size: 1.1rem;
  text-align: center;
  padding-top: 40px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (min-width: 1299px) {/*元1119px*/
.icon-hamburger { display: none;}
}

/*--------------------------------
  header Nav 上段
*/
.g-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  margin: 0 auto;
  transition: .3s;
}
.g-header-menu {
  display: none;
}
.hd-logo {
  width: 180px;
  margin-left: 15px;
  transition: .3s;
}
.hd-logo img {
  width: 100%;
  height: auto;
}
/*--------------------------------
  PC版　header Nav 上段
*/
@media screen and (min-width: 1300px/*1120px*/) {
  .g-header {
    height: 80px;
    /*max-width: 1280px;*/
  }
  /*ヘッダー固定時縦幅縮小*/
  .hd-fix.is-animation .g-header {
    height: 60px;
  }
  .hd-logo {
    width: 234px;
    margin-left: 20px;
  }
  /*ヘッダー縮小時のロゴサイズ*/
  .hd-fix.is-animation .g-header .hd-logo {
    width: 210px;
  }
  .g-header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .g-header-menu li a {
    color: inherit;
  }
  .g-header-menu li a:hover {
    color: var(--cmn-red);/*#dd1010*/
  }
  
  /*メニュー*/
  .g-header-menu-link {
    margin-right: 30px;
  }
  .g-header-menu-link li {
    display: inline-block;
    padding: 2px 15px;
  }
  /*言語*/
  .g-header-menu-lang { display: flex;}
  .g-header-menu-lang li {
    display: inline-block;
    border-right: #cdcecf 1px solid;
    padding: 2px 15px;
    white-space: nowrap;
  }
  /*検索*/
  .g-header-search {}
  .g-header-search a {
    display: block;
    padding: 16px; 
  }
  .g-header-search a img {
    width: 22px;
    height: auto;
    transform: rotate(-45deg);
  }
  /*検索ボックス*/
  #js-view-searchBox {
    display: none;
  }
  .g-header-search-box {
    position: absolute;
    left: 0;
    top: 80px;
    background-color: var(--cmn-gray01);
    width: 100%;
    padding: 60px 40px;
    z-index: 9998;
  }
  .g-header-search-box .search-txt {
    color: #fff;
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto 15px;
  }
  .g-header-search-box .search-box-outer {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
  }
  .g-header-search-box .search-box-outer .search-box {
    border: none;
    padding: 12px;
    width: calc(100% - 110px);
    height: 40px;
    font-size: 1.6rem;
  }
  .g-header-search-box .search-box-outer .search-btn {
    background: linear-gradient(-45deg, rgb(221, 16, 16), rgb(231, 88, 88));
    border: none;
    border-radius: 5px;
    color: #fff;
    width: 100px;
    height: 40px;
    cursor: pointer;
  }
}

/*--------------------------------
  SP版　グローバルナビ
*/
/*PC用navを非表示*/
.g-header-nav {
  display: none;
}
.sp-g-header-nav {
  display: none;
}
.sp-g-header-nav .sp-g-header-nav-inner {
  background-color: #000;
  height: calc((var(--vh) * 100) - 70px);
  overflow-y: auto;
}
.sp-g-header-nav ._nav-list {
  display: flex;
  flex-direction: column;
}
.sp-g-header-nav ._nav-list li {
  border-bottom: #57585a 1px solid;
}
.sp-g-header-nav ._nav-list a {
  color: #fff;
  display: block;
  padding: 16px 30px 16px 15px;
  text-decoration: none;
}
/*1階層目のメニュースタイル*/
.sp-g-header-nav ._nav-list > li > a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}

/*検索ボックス*/
.sp-g-header-nav .search-box-outer {
  display: flex;
  justify-content: space-between;
  margin: 30px 15px;
}
.sp-g-header-nav .search-box-outer .search-box {
  border: none;
  padding: 12px;
  width: calc(100% - 80px);
  height: 40px;
}
.sp-g-header-nav .search-box-outer .search-btn {
  background: linear-gradient(-45deg, rgb(221, 16, 16), rgb(231, 88, 88));
  border: none;
  border-radius: 5px;
  color: #fff;
  width: 70px;
  height: 40px;
  cursor: pointer;
}

/*アコーディオンメニュー*/
.sp-g-header-nav a.js-acmenu-open {
  position: relative;
}
.sp-g-header-nav a.js-acmenu-open::after {
  border-top: #fff 2px solid;
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  right: 15px;
  width: 1em;
  height: 1em;
  transition: 0.3s;
}
.sp-g-header-nav a.js-acmenu-open::before {
  border-left: #fff 2px solid;
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0.5em;
  width: 1em;
  height: 1em;
  transition: 0.3s;
}
.sp-g-header-nav a.js-acmenu-open.on {
  background-color: var(--cmn-gray05);
  border-bottom: #57585a 1px solid;
  color: #2a2a2a;
}
.sp-g-header-nav a.js-acmenu-open.on::after {
  border-top: #2a2a2a 2px solid;
  content: '';
  display: none;
}
.sp-g-header-nav a.js-acmenu-open.on::before {
  border-left: #2a2a2a 2px solid;
  top: calc(50% - 1px);
  right: 15px;
  transform: rotate(90deg);
}

/*サブメニューがないリンクの矢印*/
.sp-g-header-nav ._nav-list a:not(.js-acmenu-open) {
  position: relative;
}
.sp-g-header-nav ._nav-list a:not(.js-acmenu-open)::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 21px;
  margin-top: -0.25em;
  width: 0.5em;
  height: 0.5em;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  transform: rotate(45deg);
}
/*サブメニュー*/
.sp-g-header-nav .js-ac-menu {
  display: none;
  background-color: var(--cmn-gray05);
}
.sp-g-header-nav .js-ac-menu .menu-ttl {
  border-bottom: var(--cmn-gray04) 1px solid;
  color: var(--cmn-red);/*#dd1010*/
  font-weight: bold;
  padding: 16px 15px;
}
.js-ac-menu ul {
  margin: 0 1.5em;
}
.sp-g-header-nav .js-ac-menu li {
  border-bottom: var(--cmn-gray04) 1px solid;
}
.sp-g-header-nav .js-ac-menu li a {
  color: #2a2a2a;
  font-weight: normal;
  padding: 16px 20px 16px 0;
}
.sp-g-header-nav .js-ac-menu li a::after {
  border-top: #2a2a2a 2px solid!important;
  border-right: #2a2a2a 2px solid!important;
  right: 10px!important;
}
/*言語選択*/
.sp-g-header-nav .language {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
}
.sp-g-header-nav .language li {
  position: relative;
  font-size: 1.6rem;
}
.sp-g-header-nav .language li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1em;
  width: 1px;
  background-color: var(--cmn-gray03);
  
}
.sp-g-header-nav .language li a {
  color: #fff;
  display: block;
  padding: 10px 16px;
}

/*ボタン*/
.sp-g-header-nav-btn {
  margin: 30px 16px;
}
.sp-g-header-nav-btn .bt {
  margin: 10px 0;
}

/*--------------------------------
  PC版　グローバルナビ
*/
@media screen and (min-width: 1300px/*1120px*/) {
  /*SP用navを非表示*/
  .sp-g-header-nav { display: none;}
  .g-header-nav {
    display: block;
    background-color: #000;
    position: relative;
    padding-right: 70px;
  }
  .g-header-nav ._nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    /*max-width: 1280px;*/
  }
  .g-header-nav ._nav-list > li > a {
    color: #fff;
    display: block;
    font-weight: bold;
    padding: 16px 30px;
    white-space: nowrap;
    transition: .2s;
    position: relative;
  }
  /*サブメニュー有りの場合矢印*/
  .g-header-nav ._nav-list > li.js-menu-open > a::before {
    content: '';
    display: block;
    position: absolute;
    top: 19px;
    left: 0.75em;
    border-left: #fff 1px solid;
    border-bottom: #fff 1px solid;
    width: 6px;
    height: 6px;
    transform: rotate(-45deg);
  }
  /*代理店メニュー*/
  .g-header-nav ._nav-agency {
    /*margin-left: auto;*/
    position: absolute;
    top: 0;
    right: 0;
  }
  .g-header-nav ._nav-agency a {
    background-color: var(--cmn-red);
    color: #fff;
    display: block;
    font-weight: bold;
    padding: 16px 30px;
    white-space: nowrap;
    transition: .2s;
  }
  .g-header-nav ._nav-list > li > a:hover,
  .g-header-nav ._nav-list > li > a.menu-active {/*サブメニュー表示時に、hover状態を維持*/
    background-color: var(--cmn-red);
  }
  .g-header-nav ._nav-agency a:hover {
    background-color: rgba(221,16,16,0.8);
  }
  /*サブメニュー表示（メガメニュー）*/
  .js-menu {
    background-color: rgba(0,0,0,0);
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    /*min-height: 0;*/
    height: 0;
    overflow: hidden;
    color: #fff;
    /*transition: 0.3s;*/
  }
  .js-menu.active {
    background-color: #000;
    border-top: #333 1px solid;
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, .8);
    /*min-height: 80px;*/
    height: auto;
  }
  .js-menu .mega-menu {
    padding: 50px 20px 30px;
  }
  /*メガメニュー商品情報*/
  .js-menu.active .mega-menu .mm-products {
    max-width: 800px;
    margin: 0 auto;
  }
  .js-menu.active .mega-menu .mm-products ._inner {
    padding: 0 0 40px;
  }
  .mm-products .ttl-2 {
    font-size: 1.8rem;
  }
  .js-menu.active .mega-menu .mm-products .product-menu {
    display: flex;
    justify-content: space-between;
  }
  .js-menu.active .mega-menu .mm-products .product-menu li {
    flex: 0 1 240px;
  }
  .js-menu.active .mega-menu .mm-products .product-menu .category {
    font-size: 1.4rem;
    text-align: center;
    margin: 0.5em auto;
    /*transition: 0.3s;*/
  }
  .js-menu.active .mega-menu .mm-products .product-menu li a {
    color: inherit;
  }
  .js-menu.active .mega-menu .mm-products .product-menu li a:hover .category {
    color: var(--txt-link01);
    text-decoration: underline;
  }
  .js-menu.active .mega-menu .mm-products .product-menu li a .pic {
    border-radius: 5px;
    overflow: hidden;
    transition: 0.3s;
    line-height: 0;
    /*border: #fff 1px solid;*/
  }
  .js-menu.active .mega-menu .mm-products .product-menu li a:hover .pic {
    opacity: 0.8;
    box-shadow: 2px 1px 10px -1px rgba(0, 0, 0, .5);
  }
  .js-menu.active .mega-menu .mm-products .product-menu .pic img {
    width: 100%;
    height: auto;
    object-fit: fill;
  }
  
  /*メガメニュー　在庫・適合検索*/
  .js-menu.active .mega-menu .mm-stock-search {
    background: none;
    margin: 0 auto;
  }
  .js-menu.active .mega-menu .mm-stock-search ul.stock-btn-set {
    justify-content: flex-start;
  }
  
  /*メガメニュー　技術情報*/
  .js-menu.active .mega-menu .mm-technical-info {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto 40px;
  }
  .js-menu.active .mega-menu .mm-technical-info li {
    margin: 0 2em;
    width: 45%;
  }
  .js-menu .mega-menu .mm-technical-info li a {
    font-size: 1.6rem;
    margin-bottom: 1em;
    opacity: 0;
  }
  .js-menu.active .mega-menu .mm-technical-info li a {
    font-weight: bold;
    color: inherit;
    display: inline-block;
    opacity: 1;
    transition: 0.3s;
  }
  .js-menu.active .mega-menu .mm-technical-info li a:hover {
    color: var(--txt-link01);
  }
  .js-menu.active .mega-menu .mm-technical-info li p {
    line-height: 1.5;
  }
  
  /*メガメニュー サポート*/
  .js-menu.active .mega-menu .mm-support-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto 40px;
  }
  .js-menu.active .mega-menu .mm-support-menu li {
    margin: 0 0 2em;
    width: 25%;
    font-size: 1.6rem;
  }
  .js-menu .mega-menu .mm-support-menu li a {
    color: #fff;
    font-size: 1.6rem;
    padding: 0.5em 0.5em 0.5em 2em;
    opacity: 0
  }
  .js-menu.active .mega-menu .mm-support-menu li a {
    color: inherit;
    display: inline-block;
    /*padding: 0.5em 0.5em 0.5em 2em;*/
    position: relative;
    transition: 0.3s;
    opacity: 1
  }
  .js-menu.active .mega-menu .mm-support-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 18px;
    height: 18px;
    background: url("/images/ico_arrow_wh.svg") no-repeat 0 center;
    background-size: cover;
  }
  .js-menu.active .mega-menu .mm-support-menu li a:hover {
    color: var(--txt-link01);
    text-decoration: underline;
  }
  /*メガメニュー モータースポーツ*/
  .mm-motorSports-menu {
  }
  .mm-motorSports-menu ul.m-sports-btn-set {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 950px;
    margin: 30px auto 0;
  }
  .mm-motorSports-menu ul.m-sports-btn-set li {
    flex: 0 1 calc((290 / 950) * 100%);
    margin: 0 4.2% 4.2% 0;
    font-size: 1.6rem;
    transition: 0.3s;
  }
  .mm-motorSports-menu ul.m-sports-btn-set li:nth-child(3n) {
    margin: 0 0 4.2% 0
  }
  .mm-motorSports-menu ul.m-sports-btn-set li .bt-caption {
    font-size: 1.4rem;
    margin: 0.5em 0;
    line-height: 1.3
  }
  
}

/*========================================================
  *パンくず
*/
.breadcrumb {
  padding: 0.5em 10px 0.8em;
  overflow: auto;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1280px;
}
.breadcrumb.w-full ul {
  max-width: 100%;
}
.breadcrumb ul li {
  padding: 0 1em 0 0;
  font-size: 1.2rem;
  white-space: nowrap; 
}
.breadcrumb ul li a {
  color: var(--txt-link01);
  text-decoration: underline;
  transition: 0.3s;
  display: block;
  position: relative;
  padding: 0.5em 2em 0.5em 0;
}
.breadcrumb ul li a::after {
  content: '';
  display: block;
  position: absolute;
  right: 0.5em;
  top: 8px;
  border-top: var(--cmn-gray03) 1px solid;
  border-right: var(--cmn-gray03) 1px solid;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 0.5em 10px;
  }
  .breadcrumb ul li a:hover {
    color: var(--txt-link01-hv);
  }
  .breadcrumb.w-full ul {
    padding: 0 10px;
  }
}

/*========================================================
  *Footer Navi
*/
/*footer-sitemapはPCのみ表示*/
.footer-sitemap {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer-sitemap {
    background-color: var(--cmn-gray01);
    color: #fff;
    padding: 50px 20px 20px;
    position: relative;
    display: block;
  }
  .f-sitemap-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
  }
  /*フッターナビの1列*/
  .f-sitemap-column {
    width: calc((290 / 1280) * 100%);
  }
  /*コンテンツ名*/
  .f-sitemap-ttl {
    font-weight: bold;
    margin-bottom: 0.5em;
  }
  /*リンク一覧*/
  .f-sitemap {
    margin: 0 0 2em;
  }
  .f-sitemap li a {
    color: inherit;
    display: block;
    position: relative;
    padding: 0.5em 0.5em 0.5em 0.75em;
    transition: 0.3s;
    line-height: 1.2;
  }
  .f-sitemap li a::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 0.3em;
    height: 0.3em;
    border-top: #ccc 1px solid;
    border-right: #ccc 1px solid;
    transform: rotate(45deg);
  }
  .f-sitemap li a:hover {
    text-decoration: underline;
  }
}

/*フッター*/
.footer-contents {
  position: relative;
}

/*会社情報*/
.footer-contents .f-company {
  background-color: var(--cmn-gray04);
  padding: 30px 20px;
}
.footer-contents .f-company .f-company-name {
  font-size: 1.6rem;
  font-weight: bold;
}
.footer-contents .f-company .f-link-list {
  margin: 1em 0 2em;
}
.footer-contents .f-company .f-link-list li a {
  display: inline-block;
}
.footer-contents .f-company .f-sns-ttl {
  font-weight: bold;
  margin-bottom: 1em;
}
.footer-contents .f-company .f-sns {
  display: flex;
}
.footer-contents .f-company .f-sns li {
  width: 32px;
  margin-right: 1.5em;
}
.footer-contents .f-company .f-sns li img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .footer-contents {
    display: flex;
  }
  .footer-contents .f-company {
    padding: 50px 40px;
    width: calc((460 / 1280) * 100%);
  }
}

/*問い合わせ先*/
.footer-contents .f-contact {
  background-color: var(--cmn-gray06);
  padding: 30px 20px;
}
.footer-contents .f-contact ._txt1 {
  margin: 0 0 20px;
  line-height: 1.4;
}
.footer-contents .f-contact ._txt2 {
  margin: 0;
  line-height: 1.5;
  font-size: 1.2rem;
}
/*フッターボタン*/
.footer-contents .f-contact .f-contact-btn {
  margin: 20px 0 0;
}
.footer-contents .f-contact .f-contact-btn li {
  margin: 0 0 10px
}
@media screen and (min-width: 768px) {
  .footer-contents .f-contact {
    padding: 50px 30px;
    width: calc((860 / 1280) * 100%);
  }
  .footer-contents .f-contact .f-contact-btn {
    display: flex;
    justify-content: space-between;
  }
  .footer-contents .f-contact .f-contact-btn li {
    width: 32%;
    /*width: 48%;*/
    margin: 0
  }
  .footer-contents .f-contact .f-contact-btn li a {
    height: 60px;
  }
}
@media screen and (min-width: 840px) {
  .footer-contents .f-contact {
    padding: 50px 40px;
  }
}

/*copyright*/
.f-copyright {
  color: var(--cmn-gray03);
  max-width: 1280px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
}

/*========================================================
  *Page top
*/
a.pagetop {
  position: absolute;
  right: 20px;
  top: -15px;
  background-color: var(--cmn-gray03);
  border-radius: 15px;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  transition: 0.3s;
  z-index: 9996;
}
.pagetop::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-left: #fff 2px solid;
  border-top: #fff 2px solid;
  transform: rotate(45deg);
  margin: auto;
}
@media screen and (min-width: 768px) {
  .pagetop:hover {
    background-color: var(--cmn-gray02);
  }
  /*スマホのみ表示*/
  .footer-contents .f-company .pagetop.sp {
    display: none;
  }
}


/*========================================================
  *Text
*/
p.txt1 {
  line-height: 1.5;
}
p + p {
  margin-top: 1em;
}
.txt-bold {
  font-weight: bold;
}
.txt_center { text-align: center;}
.txt_right { text-align: right;}
.txt_left { text-align: left;}

.lead-1 {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
}
.lead-2 {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
}
.lead-3 {
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
}
.lead-4 {
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: left;
  margin: 1em 0;
}
@media screen and (min-width: 1024px) {
  .lead-1 {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

/*改行*/
br.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  br.sp-only {
    display: none;
  }
  br.pc-only {
    display: block;
  }
}
/*※インデント*/
.txt-indent {
  position: relative;
  padding-left: 1.3em;
}
.txt-indent::before {
  content: '※';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
  width: 1.3em;
}
.txt-xs {
  font-size: 1.2rem!important;
  line-height: 1.4
}
.txt-s {
  font-size: 1.4rem!important;
  line-height: 1.6
}
.txt-m {
  font-size: 1.6rem!important;
  line-height: 1.8
}
/*マーカー*/
.txt-marker {
  background: linear-gradient(transparent 40%, #ffec9c 0%);
  display: inline;
  padding: 0 1px 0px;
}
/*アンダーライン*/
.txt_line {
  display: inline-block;
  border-bottom: #666 1px solid;
  padding-bottom: 2px;
}

.txt-bold {
  font-weight: bold;
}
.txt-red {
  color: var(--cmn-red);
}
.txt-red-b {
  color: var(--cmn-red);
  font-weight: bold;
}
.txt-stronger {
  font-size: 1.2em;
  font-weight: bold
}
.txt-smaller {
  font-size: 0.8em;
  font-weight: bold
}
/*打ち消し線*/
.txt-del {
  text-decoration: line-through;
}
/*========================================================
  *Title
*/
.ttl-1 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.4;
}
/*左ボーダーの赤字*/
.ttl-2 {
  color: var(--cmn-red);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-align: left;
  position: relative;
  padding: 4px 0 2px 20px;
}
.ttl-2::before {
  background-color: var(--cmn-red);
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  border-radius: 3px;
  height: 100%;
}
.ttl-4 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .ttl-1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
  }
  .ttl-2 {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }
}
/*下破線*/
.ttl-3 {
  border-bottom: #444 1px dashed;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 0.5em;
}

/*センター寄せ、下赤線*/
.ttl-5 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 auto 60px;
  position: relative;
  display: inline-block;
}
.ttl-5::after {
  background-color: var(--cmn-red);
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 15px);
  width: 40px;
  border-radius: 3px;
  height: 6px;
  margin: 0 auto;
}
/*========================================================
  *Link
*/
/**/
a.basic-link {
  color: var(--txt-link01);
  text-decoration: underline;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  a.basic-link:hover {
    color: var(--txt-link01-hv);
  }
}

/*PCのみhoverで透過　aタグなどに*/
@media screen and (min-width: 768px) {
  .hover-op { transition: 0.3s;}
  .hover-op:hover {
   opacity: 0.8; 
  }
}

/*外部リンクアイコン*/
span.external-icon {
  background: url("/images/ico_external_red.svg") no-repeat 0 1px;
  background-size: contain;
  display: inline-block;
  margin-left: 3px;
  width: 1em;
  height: 1em;
}

/* PDF文字*/
span.tag-pdf {
  display: inline-block;
  font-size: 1.2rem!important;
  font-weight: normal;
  color: var(--cmn-gray03);
  margin-left: 3px;
  letter-spacing: 0.05em;
  line-height: 1;
}

/*========================================================
  *Button
*/
/*共通スタイル*/
.bt {/*ボタンテキストはspanで囲む*/
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
  line-height: 1;
}
/*色バックにグレー枠ボタン*/
.bt-line-gray {
  background-color: inherit;
  border: var(--cmn-gray03) 1px solid;
  border-radius: 5px;
  padding: 1.3em 1em;
  color: #fff;
  font-weight: bold;
}
a.bt-line-gray::after {
  position: absolute;
  right: 1em;
  content: '';
  display: block;
  width: 0.428em;
  height: 0.428em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/*ダークグレーのボタン*/
a.bt-secondary {
  background: var(--cmn-gray01);
  background: linear-gradient(-45deg, rgba(43,43,44,1) 0%, rgba(85,85,86,1) 100%);
  border-radius: 5px;
  padding: 1.3em 1em;
  color: #fff;
  font-weight: bold;
}
/*右矢印付き*/
a.bt._arrow-r {
  position: relative;
}
a.bt._arrow-r::after {
  position: absolute;
  right: 1em;
  content: '';
  display: block;
  width: 0.428em;
  height: 0.428em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  a.bt-secondary::before {/*グラデーションにtransitionを効かす*/
    background: linear-gradient(-45deg, rgb(221, 16, 16), rgb(231, 88, 88));
    border-radius: 5px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    opacity: 0;
  }
  a.bt-secondary span {
    position: relative;
  }
  a.bt-secondary:hover::before {
    opacity: 1
  }
}
/*左矢印付き*/
a.bt._arrow-l {
  position: relative;
}
a.bt._arrow-l::after {
  position: absolute;
  left: 1em;
  content: '';
  display: block;
  width: 0.428em;
  height: 0.428em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/*赤のボタン*/
a.bt-primary {
  background: var(--cmn-red);
  background: linear-gradient(-45deg, rgb(221, 16, 16), rgb(231, 88, 88));
  border-radius: 5px;
  padding: 1.3em 1em;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  a.bt-primary::before {/*グラデーションにtransitionを効かす*/
    background: linear-gradient(-45deg, rgba(237,67,67,1.00), rgba(255,131,131,1.00));
    border-radius: 5px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    opacity: 0;
  }
  a.bt-primary span {
    position: relative;
  }
  a.bt-primary:hover::before {
    opacity: 1
  }
}

/*オレンジのボタン*/
a.bt-orange {
  background: var(--cmn-orange);
  background: linear-gradient(-45deg, rgba(243,125,47,1.00), rgba(255,160,97,1.00));
  border-radius: 5px;
  padding: 1.3em 1em;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  a.bt-orange::before {/*グラデーションにtransitionを効かす*/
    background: linear-gradient(45deg, rgba(243,125,47,1.00), rgba(255,160,97,1.00));
    border-radius: 5px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    opacity: 0;
  }
  a.bt-orange span {
    position: relative;
  }
  a.bt-orange:hover::before {
    opacity: 1
  }
}

/*クリアボタン*/
a.bt-clear {
  background-color: var(--cmn-gray03);
  border-radius: 5px;
  padding: 1.3em 1em;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  a.bt-clear span {
    position: relative;
  }
  a.bt-clear:hover {
    background-color: #a0a2a4;
  }
}

/*詳細をみるボタン*/
a.bt-detail {
  border: var(--cmn-gray04) 1px solid;
  border-radius: 5px;
  padding: 0.8em 2.5em 0.8em 2em;
  font-weight: bold;
  color: var(--cmn-gray03);
  position: relative;
  transition: 0.3s;
}
a.bt-detail::after {
  position: absolute;
  right: 1em;
  content: '';
  display: block;
  width: 0.428em;
  height: 0.428em;
  border-top: 1px solid var(--cmn-gray03);
  border-right: 1px solid var(--cmn-gray03);
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  a.bt-detail:hover {
    border: var(--cmn-red) 1px solid;
    color: var(--cmn-red);
  }
  a.bt-detail:hover::after {
    right: 0.8em;
    border-top: 1px solid var(--cmn-red);
    border-right: 1px solid var(--cmn-red);
  }
}

/*ボタンテキストサイズ*/
.bt-small {
  font-size: 1.2rem;
}
.bt-normal {
  font-size: 1.4rem;
}
.bt-large {
  font-size: 1.6rem;
}

/*在庫・適合検索ボタンセット*/
ul.stock-btn-set {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 20px auto 0;
}
ul.stock-btn-set li {
  width: 100%;
  margin: 0 0 calc((20 / 990) * 100%);
  font-size: 1.4rem;
}
ul.stock-btn-set li .bt-caption {
  margin: 0.5em 0;
  font-size: 1.3rem;
  line-height: 1.3
}
@media screen and (min-width: 768px) {
  ul.stock-btn-set {
    flex-direction: row;
    max-width: 990px;
    margin: 30px auto 0;
  }
  ul.stock-btn-set li {
    width: calc((290 / 990) * 100%);
    margin: 0 calc((20 / 990) * 100%) calc((40 / 990) * 100%);
    font-size: 1.6rem;
    transition: 0.3s;
  }
/*  ul.stock-btn-set li:nth-child(3n) {
    margin: 0 0 4.2% 0
  }*/
  ul.stock-btn-set li .bt-caption {
    font-size: 1.4rem;
  }
}

/*PDFアイコン付きボタン*/
a.bt._pdf {
  position: relative;
  padding: 1.3em 2em 1.2em 3.2em;
  white-space: nowrap;
}
a.bt._pdf::after {
  background: url("/images/ico_pdf.svg") no-repeat 0 center;
  background-size: contain;
  position: absolute;
  left: 1.2em;
  content: '';
  display: block;
  width: 1.8em;
  height: 1.8em;
}

/*複数ボタンセンター寄せ*/
.bt-center-wrap {
  display: flex;
  justify-content: center;
  margin: 30px auto;
}
.bt-center-wrap li {
  width: 48%;
  max-width: 240px;
  margin: 0 1%;
}

/*一覧へ*/
a.link-more {
  position: relative;
  padding: 0.5em 0.5em 0.5em 1.8em;
  color: var(--cmn-gray01);
  font-size: 1.4rem;
  transition: 0.3s;
}
a.link-more::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 18px;
  height: 18px;
  background-size: cover;
  transition: 0.3s;
}
/*グレー*/
a.link-more._dg::before {
  background: url("/images/ico_arrow_dg.svg") no-repeat 0 0;
}
/*赤*/
a.link-more._red::before {
  background: url("/images/ico_arrow_red.svg") no-repeat 0 0;
}
/*白*/
a.link-more._wh {
  color: #fff;
}
a.link-more._wh::before {
  background: url("/images/ico_arrow_wh.svg") no-repeat 0 0;
}
@media screen and (min-width: 768px) {
  a.link-more:hover {
    color: var(--txt-link01);
    text-decoration: underline;
  }
 /* a.link-more._wh:hover {
    color: #fff!important;
    text-decoration: underline;
  }*/
  a.link-more:hover::before {
    opacity: 0.8;
  }
}

/*一覧に戻る*/
a.link-prev {
  position: relative;
  padding: 0.5em 0.5em 0.5em 1.8em;
  color: var(--cmn-gray01);
  font-size: 1.6rem;
  transition: 0.3s;
}
a.link-prev::before {
  background: url("/images/ico_arrow_dg.svg") no-repeat 0 0;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 20px;
  height: 20px;
  background-size: cover;
  transition: 0.3s;
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  a.link-prev:hover {
    color: var(--txt-link01);
    text-decoration: underline;
  }
  a.link-prev:hover::before {
    opacity: 0.8;
  }
}

/*アイコン spanにクラス*/
.ico {
  display: inline-block;
  background-size: cover;
  width: 1.4em;
  height: 1.4em;
  margin-right: 0.2em;
}
.ico.icon-serch-wh {/*虫眼鏡*/
  background: url("../images/ico_search_wh.svg") no-repeat 0 0;
}

/*タグマーク*/
.tag {
  display: inline-block;
  font-size: 1.2rem;
  text-align: center;
  padding: 0.2em 1em;
  border-radius: 3px;
  margin-left: 5px;
  line-height: 1;
  white-space: nowrap;
}
.tag.tag-new {/*赤*/
  background-color: var(--cmn-red);
  color: #fff;
}

/*========================================================
  *List
*/
ul.basic-list,
ol.basic-list {
  margin: 1em 0 1em 1.5em;
}
ul.basic-list li {
  list-style: disc;
  margin: 0.3em 0;
  line-height: 1.4;
}
ol.basic_list li {
  list-style-type: decimal;
  margin: 0.3em 0;
  line-height: 1.4;
}
/*========================================================
  *Margin
*/
.mt5 { margin-top: 5px;}
.mt10 { margin-top: 10px;}
.mt15 { margin-top: 15px;}
.mt20 { margin-top: 20px;}
.mt25 { margin-top: 25px;}
.mt30 { margin-top: 30px;}
.mt40 { margin-top: 40px;}

.ml5 { margin-left: 5px;}
.ml10 { margin-left: 10px;}
.ml15 { margin-left: 15px;}
.ml20 { margin-left: 20px;}
.ml25 { margin-left: 25px;}
.ml30 { margin-left: 30px;}
.ml40 { margin-left: 40px;}

.mr5 { margin-right: 5px;}
.mr10 { margin-right: 10px;}
.mr15 { margin-right: 15px;}
.mr20 { margin-right: 20px;}
.mr25 { margin-right: 25px;}
.mr30 { margin-right: 30px;}
.mr40 { margin-right: 40px;}

.mb5 { margin-bottom: 5px;}
.mb10 { margin-bottom: 10px;}
.mb15 { margin-bottom: 15px;}
.mb20 { margin-bottom: 20px;}
.mb25 { margin-bottom: 25px;}
.mb30 { margin-bottom: 30px;}
.mb40 { margin-bottom: 40px;}

.pl30 { padding-left: 30px;}

/*========================================================
  *Table
*/
/*はみ出した分横スクロールする場合は、Tableをdiv.scrollで囲む*/
.tbl-scroll {
  overflow-x: auto!important;
  overflow-y: hidden!important;
}
.tbl-scroll table {
  width: 100%;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .tbl-scroll table {
    width: auto;
    white-space: normal;
  }
  /*PC時も幅100%にしたい場合*/
  table.w-full,
  .tbl-scroll table.w-full　{
    width: 100%!important;
  }
}
/*テーブルキャプション*/
p.tbl-caption {
  /*text-align: left;*/
  margin: 5px 0;
}

/*濃いグレーのヘッダー*/
.tbl-01 {}
.tbl-01 th,
.tbl-01 td {
  font-size: 1.4rem;
  padding: 6px;
  border: var(--cmn-gray03) 1px solid;
}
.tbl-01 th {
  background-color: var(--cmn-gray01);
  color: #fff;
}
/*tabel内の帯見出し*/
.tbl-heading-01 {
  background-color: var(--cmn-gray05);
}

/*ページャー */
._pager-outer {
  margin: 40px auto;
}
ul.page-numbers {
  display: flex;
  justify-content: center;
}
ul.page-numbers li {
  display: flex;
  align-items: center;
  margin: 0 0.5em;
  font-size: 1.6rem;
}
ul.page-numbers li a {
  color: inherit;
  background-color: #fff;
  border: var(--cmn-gray05) 1px solid;
  width: 32px;
  height: 36px;
  line-height: 36px;
}
ul.page-numbers li .page-numbers {
  display: block;
  text-decoration: none;
  position: relative;
  text-align: center;
}
ul.page-numbers li .current {
  background-color: var(--cmn-gray03);
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 32px;
  height: 36px;
  line-height: 36px;
  cursor: default;
}
.page-numbers.prev,
.page-numbers.next {
  background-color: inherit!important;
  border: none!important;
  position: relative;
  font-size: 0;
}
.page-numbers.prev::after,
.page-numbers.next::after {
  content: '';
  border-top: #000 2px solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: -5px auto 0;
  width: 10px;
  height: 10px;
}
.page-numbers.prev::after {
  border-left: #000 2px solid;
  transform: rotate(-45deg);
}
.page-numbers.next::after {
  border-right: #000 2px solid;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  ul.page-numbers li .page-numbers:not(.current):not(.dots):hover {
    background-color: var(--cmn-gray06);
  }
}

/* 投稿画面のスタイル */
.wp-content {
  line-height: 1.5;
  overflow: hidden;
}
/*hタグ*/
.wp-content h1 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 1.5em 0 0.5em;
}
.wp-content h2 {
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 1.5em 0 0.5em;
}
.wp-content h3 {
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 1.5em 0 0.5em;
}
.wp-content h4 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 1.5em 0 0.5em;
}
.wp-content h5 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 1.5em 0 0.5em;
}
.wp-content h6 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 1.5em 0 0.5em;
}
.wp-content table td h2,
.wp-content table td h3,
.wp-content table td h4,
.wp-content table td h5,
.wp-content table td h6 {
  margin: 0.5em 0;
}
@media screen and (min-width: 768px) {
}

/*table*/
/*スクロールを表示*/
.wp-content .tbl-scroll {
  overflow-x: auto;
  overflow-y: hidden;
}
.wp-content table:not(.tbl-price) {
  width: 100%;
  margin: 1em 0;
}
.wp-content table:not(.tbl-price) th,
.wp-content table:not(.tbl-price) td {
  border: #ddd 1px solid;
  padding: 10px;
}
.wp-content table:not(.tbl-price) td {
  vertical-align: top;
}
/*スクロール表示の場合だけ、セル内を改行させない*/
.wp-content .tbl-scroll table:not(.tbl-price) th,
.wp-content .tbl-scroll table:not(.tbl-price) td {
  white-space: nowrap;
}
.wp-content table:not(.tbl-price) th {
  background-color: var(--cmn-gray06);
  font-weight: bold;
}
/*改行したくない場合th等に設定*/
.wp-content table .item-nowrap {
  white-space: nowrap!important;
}
@media screen and (min-width: 768px) {
  .wp-content .tbl-scroll table:not(.tbl-price) th,
  .wp-content .tbl-scroll table:not(.tbl-price) td {
    white-space: normal;
  }
}
/*リスト*/
.wp-content ul,
.wp-content ol {
  margin: 1em 1em 1em 1.5em;
}
.wp-content ul li {
  list-style-type: disc;
  margin-bottom: 0.5em;
}
.wp-content ol li {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .wp-content ul,
  .wp-content ol {
    font-size: 1.6rem;
  }
}
/*動画*/
.wp-block-embed-youtube {
  margin: 0 auto 1em!important;
  max-width: 640px;
}
.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/** wordpress style.css より一部コピー */

/* Alignments メディアの位置変更
--------------------------------------------- */
.wp-content .alignleft {
  float: none;
	margin: 0 auto 0.5em!important;
  display: block;
}
.wp-content .alignright {
  float: none;
	margin: 0 auto 0.5em!important;
  display: block;
}
.wp-content .aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 0.5em!important;
}
.wp-content .alignleft,
.wp-content .alignright,
.wp-content .aligncenter,
.wp-content table img {
  /*width: 100%;*/
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .wp-content .alignleft {
    float: left;
    margin: 0 1em 0.5em 0!important;
    display: inline-block;
  }
  .wp-content .alignright {
    float: right;
    margin: 0 0 0.5em 1em!important;
    display: inline-block;
  }
  .wp-content .aligncenter {
    margin: 0 auto 0.5em!important;
  }
  .wp-content .alignleft,
  .wp-content .alignright,
  .wp-content .aligncenter,
  .wp-content table img {
    /*width: auto;*/
  }
}
/*フロート解除*/
.wp-content .clearbox {
  overflow: hidden;
}
.wp-content strong {
  font-size: 1.2em;
  font-weight: bold;
}
/*タイトル*/
.wp-content .ttl-2 {
  font-size: 2.0rem;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .wp-content .ttl-2 {
    font-size: 2.4rem!important;
  }
}
/*style.css 上書き*/
p.has-background {
  padding: 1em!important;
}
.wp-block-media-text .wp-block-media-text__content {
  padding: 0 1.5em!important;
}
@media screen and (max-width: 600px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 1.5em 0!important;
  }
}
.wp-content a {
  color: var(--txt-link01);
  text-decoration: underline;
  transition: 0.3s;
}
/*Box*/
.wp-content .pd-box {
  padding: 20px!important;
}
@media screen and (min-width: 768px) {
  a.basic-link:hover {
    color: var(--txt-link01-hv);
  }
  .wp-content .pd-box {
    padding: 30px!important;
  }
}
/*ページ内のpagetopリンク*/
.wp-content .in-pagetop {
  background-color: var(--cmn-gray06);
  text-align: center;
  padding: 10px;
  margin: 20px 0;
}
/*スペコンタイプタイトル*/
.wp-content .sp-ttl-type {
  background-color: rgb(171, 183, 194, 0.44);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
}
.wp-content .sp-ttl-type .sp-ttl {
  display: inline-block;
  margin: 0;
}
.wp-content .sp-ttl-type-mark {
  color: #fff;
  font-size: 1.4rem;
  padding: 5px;
  display: inline-block;
}
.wp-content .sp-ttl-type-mark.natural {
  background-color: #00d084;
}
.wp-content .sp-ttl-type-mark.flat {
  background-color: #0693e3;
}
.wp-content .sp-ttl-type-mark.toryoku {
  background-color: #0693e3;
}
@media screen and (min-width: 768px) {
  .wp-content .sp-ttl-type {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
/*GR86ページ用*/
.wp-content table.tbl-gr86 img {
  min-width: 120px
}
/*テーブル内の帯*/
.tbl-inner-hd td {
  background-color: #e3e3e8;
  font-weight: bold;
}
/* 画像のキャプションを中央揃えにする（カラードローター） */
.wp-content .coloured-lineup .wp-block-image,
.wp-content .coloured-lineup .wp-block-image figcaption {
	text-align: center;
}
/*フルード表*/
.wp-content .tbl-fluid th,.wp-content .tbl-fluid td {
  text-align: center;
  font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Sans-Serif;
}
.wp-content .tbl-fluid th.color-1 {
  background-color: #97e692;
  vertical-align: top;
}
.wp-content .tbl-fluid th.color-1 img {
  display: block;
  margin: 0 auto;
  width: 60px;
  max-width: 60px;
}

/*料金表下のレイアウト用table*/
.wp-content .tbl-no-boder-2col {
  margin: 1em 0;
}
.wp-content .tbl-no-boder-2col td,
.wp-content .tbl-no-boder-2col th {
  border: none!important;
}
@media screen and (max-width: 767px) {
  .wp-content .tbl-no-boder-2col td,
  .wp-content .tbl-no-boder-2col th {
    display: block;
  }
}

/* header SNS
--------------------------------------------- */
.h-sns {
  display: flex;
}
.h-sns li {
  width: 24px;
  margin-right: 1.5em;
}
.h-sns li img {
  width: 100%;
  height: auto;
}