@charset "UTF-8";
/* Table Of Contents
----------------------------------------------------------------------------
General Elements
header
gNav
visual
topicPath
footer
---------------------------------------------------------------------------- */
/*General Elements
---------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  color: #222;
  min-width: 1260px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: underline;
  outline: none;
}
a:hover, a:active, a:visited, a:focus {
  text-decoration: none;
}
* {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 0;
  }
}
/*l-header
---------------------------------------------------------------------------- */
.l-header {
  position: fixed;
  padding: 15px 0 0;
  width: 100%;
  min-width: 1260px;
  z-index: 10000;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.l-header.active {
  background-color: hsla(0, 0%, 100%, .8);
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.l-header.l-header-lower {
  background: #002D49;
}
.l-header.l-header-lower.active {
  background-color: hsla(0, 0%, 100%, .8);
  transition: all 0.3s;
}
img.is-fixed {
  display: none;
}
.l-header.active img.is-fixed {
  display: block;
}
.l-header.active img.is-top {
  display: none;
}
.l-header__left {
  float: left;
}
.l-header__logo {
  float: left;
}
.l-header__logo a {
  display: block;
}
.l-header__catch {
  margin-top: 10px;
  margin-left: 15px;
  color: #fff;
  float: left;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.active .l-header__catch {
  color: #000;
}
.l-header__right {
  float: right;
}
.l-header-btn {
  float: right;
  margin-left: 10px;
}
.l-header-btn li {
  display: block;
  float: left;
  width: 150px;
}
.l-header-btn li a {
  display: block;
}
.l-header-btn li a:hover {
  opacity: .8;
}
.l-header-btn li img {
  max-width: 100%;
}
.l-header__info {
  position: relative;
  padding-left: 55px;
  float: left;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-image: url(../../images/common/icon_freeTel.svg);
  background-size: 46px auto;
  background-repeat: no-repeat;
  background-position: left top;
  margin: .3em 0 0;
}
.active .l-header__info {
  color: #000;
  background-image: url(../../images/common/icon_freeTel_on.svg);
}
.l-header__info span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .03em;
  line-height: 1.2;
}
.l-header__menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header {
    z-index: 7901;
    padding: 15px 0;
    min-width: 0;
  }
  .l-header__logo {
    width: 145px;
  }
  .l-header__logo img {
    width: 100%;
    height: auto;
  }
  .l-header__catch {
    display: none;
  }
  .l-header__info {
    display: none;
  }
  .l-header__menu {
    display: block;
    float: right;
  }
  .l-header-phone, .l-header-mail, .l-header-line {
    margin-right: 12px;
    width: 25px;
    float: left;
  }
  .l-header-phone a {
    display: block;
    height: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 150%;
    background-image: url("../../images/common/icon_freeTel.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .active .l-header-phone a {
    background-image: url("../../images/common/icon_freeTel_on.svg");
  }
  .l-header-phone img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .l-header-mail img {
    background-color: #e7380c;
    border-radius: 4px;
    padding: 1px 3px 4px 3px;
  }
  .l-header-phone a {
    display: block;
  }
  .l-header-phone img, .l-header-mail img, .l-header-line img {
    height: 25px;
  }
  .l-header.active .menu-trigger span {
    background-color: #002D49;
  }
  .menu-trigger, .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 35px;
    height: 25px;
    float: right;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    /* border-radius: 4px; */
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(13px) rotate(-45deg);
    transform: translateY(13px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  body.bg {
    position: relative;
  }
  body.bg:before {
    position: absolute;
    content: "";
    background: #000000a8;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
}
/* l-gNav
---------------------------------------------------------------------------- */
.l-gNav {
  padding-top: 20px;
  text-align: center;
}
.l-gNav ul li {
  display: inline-block;
  padding: 0 12px;
  font-size: 15px;
  font-size: 1.5rem;
}
.l-gNav ul li a {
  position: relative;
  display: block;
  padding: 0 0 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.active .l-gNav ul li a {
  color: #e8380d;
}
.l-gNav ul li span {
  color: #fff;
  display: block;
  padding: 0 14px 15px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}
.active .l-gNav ul li span {
  color: #e8380d;
}
.l-gNav ul li:not(:nth-child(3)) a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  left: 50%;
  margin-left: 0;
  background: #e8380d;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.l-gNav ul li:not(:nth-child(3)):hover a::before, .l-gNav ul li.active a::before, body#achievement .l-gNav ul li:nth-child(4) a::before, body#price .l-gNav ul li:nth-child(5) a::before, body#voice .l-gNav ul li:nth-child(6) a::before, body.post-type-archive-news .l-gNav ul li:nth-child(9) a::before, body.post-type-archive-blog .l-gNav ul li:nth-child(10) a::before {
  width: 100%;
  margin-left: -50%;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.l-gNav ul li:nth-child(3) {
  position: relative;
}
.l-gNav ul li:nth-child(3):hover .l-gNav__manufacturer {
  height: auto;
  visibility: visible;
}
.l-gNav__manufacturer {
  position: absolute;
  z-index: 100;
  width: 100%;
  background: #000;
  height: 0;
  visibility: hidden;
}
.l-gNav__manufacturer a {
  color: #fff !important;
  padding: 10px 10px 10px 30px !important;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
}
.l-gNav__manufacturer a::before {
  position: absolute;
  content: "";
  top: 16px;
  left: 12px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l-gNav__manufacturer p {
  border-bottom: solid 1px #ccc;
}
.l-gNav__children {
  position: fixed;
  left: 0;
  top: 137px;
  height: auto;
  width: 100%;
  background: #e8380d;
}
.l-gNav__children .p-brand__thumbnail figcaption {
  padding: 10px;
}
.l-gNav__children div {
  display: block;
  float: left;
  color: #fff;
}
.p-brand__thumbnail figcaption {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-gNav {
    position: fixed;
    z-index: 1000;
    background: #000;
    top: 59px;
    width: 300px;
    right: -300px;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
  }
  .l-gNav.is-moved {
    right: 0;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
  }
  .active .l-gNav ul li a {
    color: #fff;
  }
  .active .l-gNav ul li span {
    color: #fff;
  }
  .l-gNav__manufacturer {
    display: none;
    height: auto;
    visibility: visible;
    position: inherit;
    border-top: solid 1px #ccc;
  }
  .l-gNav ul li {
    display: block;
    text-align: left;
    border-bottom: solid 1px #ccc;
  }
  .l-gNav ul li a {
    padding: 10px;
  }
  .l-gNav ul li span {
    padding: 10px;
  }
  .l-gNav__manufacturer p:last-child {
    border-bottom: none;
  }
  .l-gNav ul {
    height: calc(100vh - 80px);
    overflow-y: scroll;
  }
}
/* l-topicPath
---------------------------------------------------------------------------- */
.l-topicPath {
  padding: 10px 0;
}
.l-topicPath-content {
  background: rgba(0, 45, 73, 0.1);
}
.l-topicPath li {
  display: inline;
}
.l-topicPath li.p-topicHome {
  /*
    background: url(../../../images/common/bg_crumb_home.png) left center no-repeat;
    padding-left: 22px;
    */
}
.l-topicPath li a {
  text-decoration: underline;
  color: #056FA8;
}
.l-topicPath li a:hover {
  text-decoration: none;
}
.l-topicPath-arrow {
  margin-left: 0.5em;
}
.l-topicPath-arrow:before {
  content: '＞ ';
}
@media screen and (max-width: 767px) {}
/* l-pageBody
---------------------------------------------------------------------------- */
.l-pageBody {
  width: 100%;
  min-width: 1180px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-pageBody {
    min-width: 0;
  }
}
/* l-sidebar
---------------------------------------------------------------------------- */
.l-sidebar {}
@media screen and (max-width: 767px) {}
/* l-pageTop
---------------------------------------------------------------------------- */
.l-pageTop {
  position: relative;
  display: block;
  background: #002D49;
  text-align: center;
}
.l-pageTop:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 0 0 -10px;
  top: 30px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l-pageTop a, .l-pageTop span {
  position: relative;
  display: block;
  height: 70px;
}
.l-pageTop:hover {
  opacity: .9;
}
@media screen and (max-width: 767px) {}
/* l-footer
---------------------------------------------------------------------------- */
.l-footer {
  padding: 60px 0 10px;
}
.l-footer__info {
  width: 480px;
  float: left;
}
.l-footer__sitemap {
  margin-left: 30px;
  float: left;
}
.l-footer__sitemap ul li {
  position: relative;
  padding-left: 15px;
  padding-bottom: 10px;
}
.l-footer__sitemap ul li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  top: 9px;
  left: 0;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l-footer__sitemap ul li a {
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
  color: #000;
  font-weight: bold;
}
.l-footer__sitemap ul li a:hover {
  text-decoration: underline;
}
.l-footer__logo {
  padding: 0 0 20px !important;
}
.l-footer__logo figcaption {
  display: block;
  font-weight: 700;
  font-size: 200%;
  margin: 10px 0 0 50px;
}
.l-footer__table {
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}
.l-footer__table tr {
  border-bottom: solid 1px #ccc;
}
.l-footer__table tr:first-child {
  border-top: solid 1px #ccc;
}
.l-footer__table th {
  padding: 10px 0;
  vertical-align: middle;
}
.l-footer__table td {
  padding: 10px 0;
  vertical-align: middle;
}
.l-footer p {
  padding-top: 50px;
  text-align: center;
}
.l-foote-link {
  width: 80%;
  margin: 30px auto 0;
  background: #e8380d;
  text-align: center;
  border-radius: 5px;
}
.l-foote-link a {
  display: block;
  color: #fff;
  padding: 20px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.l-foote-link a:hover {
  opacity: .7;
}
#fixed_right_banner {
  position: fixed;
  top: 150px;
  right: 0;
}
#fixed_right_banner > a {
  display: block;
  box-shadow: 0 0 8px gray;
}
#fixed_right_banner > a:hover {
  opacity: 1;
}
#fixed_right_banner a img {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    width: 100%;
    float: inherit;
  }
  .l-footer {
    padding: 4vw 0 28vw;
  }
  .l-footer p {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 4vw;
  }
  .l-footer p img {
    width: 100%;
    height: auto;
  }
  .l-footer__sitemap {
    display: none;
  }
  .l-footer__logo {
    padding: 5% 0 0;
    width: 80%;
    margin: 5% auto 0;
    text-align: center;
  }
  .l-footer__logo img {
    max-width: 100%;
    height: auto;
  }
  .l-footer__logo figcaption {
    font-size: 150%;
    margin: 10px 0 0;
  }
  #fixed_right_banner {
    position: fixed;
    width: 100%;
    margin: auto;
    bottom: 0;
    top: auto;
    z-index: 7900;
  }
  #fixed_right_banner a img {
    display: block;
    width: 94%;
    margin: 4% auto;
    box-shadow: 0 0 8px gray;
  }
}
/* l-form
---------------------------------------------------------------------------- */
.l-form__submit input {
  margin: 0 auto;
  width: 325px;
  height: 57px;
  text-align: center;
  background: #DA350C;
  border: none;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}
.l-form__submit {
  margin-top: 40px;
  text-align: center;
}
.l-form {
  width: 1000px;
  margin: 0 auto;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
}
input[type="text"] {
  width: 90%;
  height: 40px;
  border-radius: 6px;
  border: solid 1px #ccc;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 5px 10px;
}
.l-form select {
  width: 90%;
  height: 40px;
  border-radius: 6px;
  border: solid 1px #ccc;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 5px 10px;
}
.l-form th {
  padding-bottom: 10px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  vertical-align: middle;
}
.l-form td {
  padding-bottom: 30px;
  vertical-align: middle;
}
.l-form textarea {
  width: 100%;
  border-radius: 6px;
  border: solid 1px #ccc;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .l-form {
    width: 95%;
  }
  .l-form th {
    font-size: 3.5vw;
  }
  .l-form td {
    padding-bottom: 4vw;
  }
  input[type="text"] {
    font-size: 3.5vw;
  }
  .l-form select {
    font-size: 3.5vw;
  }
  .l-form textarea {
    font-size: 3.5vw;
  }
  .l-form__submit {
    margin-top: 5vw;
  }
}
/**/
.list_purchasePrice {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4em 2.745%;
}
.list_purchasePrice > li {
  width: 31.503%;
}
.list_purchasePrice > li a {
  display: block;
}
.list_purchasePrice > li .purchasePrice_thumbnail {
  overflow: hidden;
  border-radius: 1em;
  margin: 0 0 1.4em;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, .25);
  height: 0;
  position: relative;
  padding: 55.5% 0 0;
}
.list_purchasePrice > li .purchasePrice_thumbnail img {
  transition: all .4s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  object-fit: cover;
  object-position: center;
}
.list_purchasePrice > li a:hover .purchasePrice_thumbnail img {
  transform: scale(1.08);
}
.list_purchasePrice > li .purchasePrice_update {
  font-size: 133.33%;
  color: #7E7E7E;
  letter-spacing: .05em;
  margin: 0 0 .5em;
}
.list_purchasePrice > li .purchasePrice_name {
  color: #000;
  font-size: 133.33%;
  letter-spacing: .05em;
  font-weight: 500;
  position: relative;
  min-height: 3em;
  padding: 0 5em 0 0;
}
.parts_hoverArrow {
  width: 2em;
  height: 2em;
  box-sizing: border-box;
  border: solid 1px #E7380D;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
}
.parts_hoverArrow::before {
  content: "";
  width: .8em;
  height: .8em;
  border-right: .18em solid #E7380D;
  border-bottom: .18em solid #E7380D;
  border-top: .2em solid transparent;
  border-left: .2em solid transparent;
  position: absolute;
  left: 0;
  right: .45em;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  transform: rotate(-45deg);
  transition: all .4s;
  z-index: 2;
}
.parts_hoverArrow::after {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: #E7380D;
  right: 0;
  top: 0;
  transition: all .4s;
}
a:hover .parts_hoverArrow::before {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
a:hover .parts_hoverArrow::after {
  width: 100%;
  left: 0;
  right: auto;
}
.list_purchasePrice .parts_hoverArrow {
  right: .6em;
  bottom: 1.5em;
}
@media (max-width:767px) {
  .list_purchasePrice {
    display: block;
    width: 88%;
    margin: auto;
  }
  .list_purchasePrice > li {
    width: 100%;
  }
  .list_purchasePrice > li + li {
    margin: 3.3em auto 0;
  }
  .list_purchasePrice > li .purchasePrice_thumbnail {
    margin: 0 0 1em;
  }
  .list_purchasePrice > li .purchasePrice_update {
    font-size: 114.3%;
    margin: 0 0 .3em;
  }
  .list_purchasePrice > li .purchasePrice_name {
    min-height: 3em;
    padding: 0 3em 0 0;
  }
  .list_purchasePrice .parts_hoverArrow {
    bottom: .5em;
  }
}
/*202511 header*/
@media (min-width:768px) {
  .l-header__sns {
    display: flex;
    align-items: center;
  }
  .l-header__sns a {
    transition: opacity .3s;
  }
  .l-header__sns a:hover {
    opacity: .7;
  }
  .l-header__sns .sns_phone {
    margin: .5em 1em 0 0;
  }
  .l-header__sns .sns_phone a {
    display: block;
    letter-spacing: .03em;
    line-height: 1.2;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    background-image: url(../../images/common/icon_freeTel.svg);
    background-size: 46px auto;
    background-repeat: no-repeat;
    background-position: left top;
    padding: 0 0 0 55px;
    transition: all .4s;
  }
  .active .l-header__sns .sns_phone a {
    color: #000;
    background-image: url(../../images/common/icon_freeTel_on.svg);
  }
  .l-header__sns .sns_phone span.phone_time {
    display: block;
    font-size: 16px;
  }
  .l-header__sns .sns_phone span.phone_num {
    display: block;
    font-size: 25px;
  }
  .l-header__sns .sns_contact {
    width: 150px;
    height: 60px;
  }
  .l-header__sns .sns_contact a {
    height: 100%;
    display: block;
    background: url(../../images/common/bt_header_on02_lg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 150%;
  }
  .l-header__sns .sns_line {
    width: 150px;
    height: 60px;
  }
  .l-header__sns .sns_line a {
    height: 100%;
    display: block;
    background: url(../../images/common/bt_header_on03_lg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 150%;
  }
}
@media (max-width:767px) {
  .l-header__right {
    display: flex;
    align-items: center;
    gap: 0 .5em;
  }
  .l-header__sns {
    display: flex;
    align-items: center;
    gap: 0 .75em;
  }
  .l-header__sns a {
    transition: opacity .3s;
  }
  .l-header__sns .sns_phone a {
    display: block;
    width: 25px;
    height: 25px;
    text-decoration: none;
    background-image: url(../../images/common/icon_freeTel.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    transition: background-image .4s;
  }
  .active .l-header__sns .sns_phone a {
    background-image: url(../../images/common/icon_freeTel_on.svg);
    }
  .l-header__sns .sns_phone span.phone_time {
    display: none;
  }
  .l-header__sns .sns_phone span.phone_num {
    display: none;
  }
  .l-header__sns .sns_contact {
    width: 25px;
    height: 25px;
    overflow: hidden;
    border-radius: 5px;
  }
  .l-header__sns .sns_contact a {
    height: 100%;
    display: block;
    background-image: url(../../images/common/ico_mail2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 150%;
  }
  .l-header__sns .sns_line {
    width: 25px;
    height: 25px;
    overflow: hidden;
    border-radius: 5px;
  }
  .l-header__sns .sns_line a {
    height: 100%;
    display: block;
    background: url(../../images/common/ico_line.svg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 150%;
  }
}
/**/
.page404{
    padding: 270px 0 150px;
    text-align: center;
}
.page404 .page404_title{
    font-size: 250%;
    font-weight: 700;
    margin: 0 0 1em;
}
.page404 .page404_text{
    font-size: 180%;
    font-weight: 500;
    margin: 0 0 3em;
}
.page404 .module-btn{
    margin: auto;
}
@media (max-width:767px) {
.page404{
    padding: 40% 0 20%;
    text-align: center;
}
.page404 .page404_title{
    font-size: 150%;
}
.page404 .page404_text{
    font-size: 105%;
}
}