@charset "UTF-8";
/* ==========================================================================
	color
========================================================================== */
/* 価格 */
/* テキスト */
/* リンク */
/* BackGround */
/* borderCommon */
/* borderFrom */
/* ==========================================================================
	mixin
========================================================================== */
/* ==========================================================================
	goTop
========================================================================== */
.c-goTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background-color: #0082c3;
  z-index: 100;
  transition: opacity 0.3s;
  cursor: pointer;
}
.c-goTop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Font Awesome 5 Free";
  font-size: 3.6rem;
  font-weight: 700;
  content: "\f106";
  color: white;
}
.c-goTop:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

@media (max-width: 768px) {
  .c-goTop {
    bottom: 16px;
    right: 16px;
    width: 60px;
    height: 60px;
  }
  .c-goTop::before {
    font-size: 3.2rem;
  }
}
/* ==========================================================================
    linkArrow
========================================================================== */
.c-linkArrow__box {
  box-sizing: border-box;
  position: relative;
  font-size: 1.4rem;
}
.c-linkArrow__box > .c-linkArrow {
  position: absolute;
  top: 20px;
  right: 20px;
}

.c-linkArrow {
  transition: color 0.3s;
  font-weight: bold;
  text-decoration: none;
}
.c-linkArrow:hover {
  text-decoration: underline;
}
.c-linkArrow::after, .c-linkArrow::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0082c3;
  transition: color 0.3s;
}
.c-linkArrow--internal:before {
  content: "\f107";
  margin-right: 6px;
}
.c-linkArrow--outside:before {
  content: "\f105";
  margin-right: 6px;
}
.c-linkArrow--external:before {
  content: "\f35d";
  margin-right: 6px;
}

@media (max-width: 768px) {
  .c-linkArrow__box {
    padding-bottom: 100px;
  }
  .c-linkArrow__box > .c-linkArrow {
    box-sizing: border-box;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: calc(100% - 30px);
    max-width: 340px;
    margin: auto;
    padding: 15px;
    text-align: center;
    border: 1px solid #0082c3;
    border-radius: 4px;
  }
  .c-linkArrow__box > .c-linkArrow:hover {
    color: white;
    background-color: #0082c3;
  }
  .c-linkArrow__box > .c-linkArrow:hover::after {
    color: white;
  }
  .c-linkArrow--outside--spNo::before {
    display: none;
  }
  .c-linkArrow--outside--spNo:hover {
    text-decoration: none;
  }
}
/* ==========================================================================
	c-scroll
========================================================================== */
@media (max-width: 768px) {
  .c-scroll {
    width: calc(100% + 20px);
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .c-scroll::-webkit-scrollbar {
    height: 10px;
  }
  .c-scroll::-webkit-scrollbar-track {
    background-color: #eaedef;
  }
  .c-scroll::-webkit-scrollbar-thumb {
    background-color: #0082c3;
    border: 3px solid #eaedef;
    border-radius: 10px;
  }
  .c-scroll > .c-boxList, .c-scroll > .c-newsNavi, .c-scroll > .p-search__subNavi, .c-scroll > .c-scroll__tableWrap {
    box-sizing: border-box;
    padding-right: 20px;
    overflow: hidden;
  }
  .c-scroll > .c-boxList {
    width: 800px;
  }
  .c-scroll > .c-newsNavi {
    width: 100%;
    min-width: 720px;
  }
  .c-scroll > .p-search__subNavi {
    width: 100%;
    min-width: 500px;
  }
  .c-scroll > .c-scroll__tableWrap {
    width: 100%;
    min-width: 800px;
  }
}
@media (max-width: 480px) {
  .c-scroll > .c-boxList {
    width: 650px;
  }
  .c-scroll > .c-newsNavi {
    min-width: 720px;
  }
}
@media (max-width: 320px) {
  .c-scroll > .c-boxList {
    width: 560px;
  }
}
/* ==========================================================================
	warning
========================================================================== */
.c-warning {
  box-sizing: border-box;
  background-color: white;
  color: #373d3f;
  border: 4px solid #ffce33;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: 1.4rem;
}

.c-warning__ttl {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-weight: bold;
  width: 115px;
  color: #cc3838;
}
.c-warning__ttl::before {
  font-family: "Font Awesome 5 Free";
  content: "\f05a";
  margin-right: 10px;
  font-size: 3.2rem;
  font-weight: 900;
  display: block;
}

.c-warning__content {
  width: calc(100% - 140px);
  margin-left: 28px;
}
.c-warning__content > li {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-warning__content > li + li {
  margin-top: 10px;
}
.c-warning__content em {
  font-weight: bold;
}
.c-warning__content .c-linkArrow {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .c-warning {
    display: block;
    padding-top: 2px;
    padding-bottom: 6px;
    margin-bottom: 10px;
  }
  .c-warning__ttl {
    width: 100%;
    margin-bottom: 6px;
    justify-content: center;
  }
  .c-warning__content {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .c-warning__ttl::before {
    font-size: 2.2rem;
  }
}
/* ==========================================================================
	heading
========================================================================== */
.c-heading {
  position: relative;
}
.c-heading--main {
  display: flex;
  align-items: center;
  font-size: 2rem;
  padding-left: 10px;
  font-weight: bold;
}
.c-heading--main::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background-color: #0082c3;
}
.c-heading--main small {
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: initial;
}
.c-heading--main em {
  font-weight: bold;
}
.c-heading--sub {
  font-size: 1.6rem;
  padding-bottom: 0;
}
.c-heading--sub::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #373d3f;
}
.c-heading--minimum {
  display: flex;
  font-size: 1.6rem;
}
.c-heading--minimum::before {
  display: flex;
  align-self: center;
  content: "";
  width: 4px;
  height: 14px;
  background-color: #91a1a6;
  margin-right: 6px;
}
.c-heading--side {
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .c-heading--main {
    display: block;
  }
  .c-heading--main small {
    display: block;
    margin-left: 0;
  }
}
/* ==========================================================================
	text
========================================================================== */
.c-text {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #373d3f;
  letter-spacing: 0.05em;
}
.c-text--lineUp {
  line-height: 1.6;
}
.c-text--provide {
  font-size: 1.2rem;
  display: flex;
  color: #91a1a6;
}
.c-text--provide span {
  display: block;
}
.c-text--provide span:first-of-type {
  margin-right: 8px;
}
.c-text--category {
  font-size: 1.2rem;
  color: #91a1a6;
}
.c-text--date {
  font-weight: bold;
  margin-right: 8px;
}
.c-text--owner::after {
  display: inline-block;
  margin-left: 8px;
  content: "|";
}
.c-text--small {
  font-size: 1.4rem;
}
.c-text--notation {
  font-size: 1.4rem;
  color: #91a1a6;
}
.c-text--notes {
  font-size: 1.2rem;
  color: #91a1a6;
}
.c-text--comment {
  color: #91a1a6;
}
.c-text--disclaimer {
  margin-top: 4rem;
  color: #373d3f;
}

.c-text__form--caution {
  font-size: 1.4rem;
  background-color: #eff6fa;
  padding: 15px 10px;
  margin-top: 35px;
}

.c-text--thumbnail {
  position: relative;
  height: 39.2px;
  overflow: hidden;
  margin-bottom: 10px;
}
.c-text--thumbnail:before {
  position: absolute;
  background: white;
  content: "…";
  top: 19.6px;
  right: 0;
}
.c-text--thumbnail:after {
  position: absolute;
  background: white;
  content: "";
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .c-text__form--caution {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .c-text__form--caution {
    margin-top: 20px;
  }
}
/* ==========================================================================
	adsence
========================================================================== */
.c-adsence {
  box-sizing: border-box;
  width: 100%;
  height: auto;
}
.c-adsence img {
  width: 100%;
  height: auto;
}
.c-adsence--main {
  max-width: 640px;
  margin: 20px auto;
  text-align: center;
}
.c-adsence--sp {
  max-width: 320px;
  margin: 10px auto;
}
.c-adsence--side {
  max-width: 300px;
  margin: 0 auto 20px;
}

/* ==========================================================================
    banner
========================================================================== */
.c-banner {
  box-sizing: border-box;
  width: 300px;
  margin: 20px auto;
}
.c-banner > li img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.c-banner > li + li {
  margin-top: 20px;
}
.c-banner a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/* ==========================================================================
	breadcrumb
========================================================================== */
.c-breadcrumb {
  margin: 0 0 14px;
  font-size: 1.2rem;
}
.c-breadcrumb ul li {
  margin-right: 10px;
  display: inline;
  width: 100%;
}
.c-breadcrumb ul li:not(:last-of-type)::after {
  color: #91a1a6;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.c-breadcrumb--double {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .c-breadcrumb {
    box-sizing: border-box;
    margin: 40px 0 0;
    padding: 10px 20px;
    background-color: white;
    border-top: 7px solid #0082c3;
  }
  .c-breadcrumb + .c-breadcrumb {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}
@media (max-width: 320px) {
  .c-breadcrumb {
    font-size: 1rem;
  }
}
/* ==========================================================================
	label
========================================================================== */
.c-label {
  font-weight: bold;
  color: white;
  background-color: #ffce33;
  vertical-align: bottom !important;
}
.c-label--new {
  display: inline-block;
  padding: 1px 5px;
  font-size: 1.2rem;
  border-radius: 11px;
}
.c-label--category {
  display: inline-block;
  padding: 0 10px;
  font-size: 1.4rem;
  border-radius: 10px;
}
.c-label--place {
  display: block;
  text-align: center;
  padding: 1px 0;
  font-size: 1.4rem;
  color: white;
}
.c-label--place--first {
  background-color: #af9423;
}
.c-label--place--second {
  background-color: #9b9a94;
}
.c-label--place--third {
  background-color: #8b6143;
}
.c-label--place--etc {
  background-color: #cccccc;
}
.c-label--info {
  position: relative;
}
.c-label--info::after {
  position: absolute;
  top: 50%;
  right: -3em;
  transform: translateY(-50%);
  content: "\f12a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.4rem;
  text-align: center;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  color: #373d3f;
  background-color: #ffce33;
}

/* ==========================================================================
	lineList
========================================================================== */
.c-lineList > li {
  font-size: 1.4rem;
}
.c-lineList > li > a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
}
.c-lineList > li > a:hover {
  text-decoration: underline;
}
.c-lineList > li + li {
  border-top: #eaedef 1px solid;
}
.c-lineList > li h3 {
  font-weight: normal;
}
.c-lineList > li:last-child {
  border-bottom: #eaedef 1px solid;
}

.c-lineList__info {
  margin-top: 20px;
}
.c-lineList__info--ttl {
  font-weight: bold !important;
  font-size: 1.6rem;
}
.c-lineList__info--text {
  margin-top: 10px;
}
.c-lineList__info--label {
  display: flex;
  flex-direction: row;
  text-align: right;
  margin: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.c-lineList__info--label .c-label--category {
  margin-right: 10px;
  font-weight: bold;
}
.c-lineList__info--label .c-text--date {
  font-weight: initial;
}

@media (max-width: 480px) {
  .c-lineList--data > li > a {
    display: block;
  }
  .c-lineList__info--ttl {
    font-size: 1.4rem;
  }
}
/* ==========================================================================
	publicRelations
========================================================================== */
.c-publicRelations {
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 20px auto;
  text-align: center;
}
.c-publicRelations img {
  width: 100%;
  height: auto;
}
.c-publicRelations--sp {
  max-width: 320px;
  margin: 10px auto;
}
.c-publicRelations a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.c-publicRelations--columnFour {
  box-sizing: border-box;
  width: calc(100% - 40px);
  margin: 40px auto 20px;
  display: flex;
  justify-content: center;
}
.c-publicRelations--columnFour li:not(:nth-of-type(4n)) {
  margin-right: 15px;
}

@media (min-width: 1200px) {
  .c-publicRelations--columnFour li:not(:nth-of-type(4n)) {
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .c-publicRelations--columnFour {
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
  }
  .c-publicRelations--columnFour li {
    width: 46%;
    text-align: center;
  }
  .c-publicRelations--columnFour li:not(:nth-of-type(4n)) {
    margin-right: 0;
  }
  .c-publicRelations--columnFour li:nth-of-type(2n) {
    margin-left: 4%;
  }
  .c-publicRelations--columnFour li:nth-of-type(3n), .c-publicRelations--columnFour li:nth-of-type(4n) {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .c-publicRelations--columnFour {
    width: 100%;
  }
  .c-publicRelations--columnFour li img {
    width: auto;
    max-width: 100%;
  }
}
/*
@include mqSp {
    .c-publicRelations--columnFour {
        li {
            width: 100%;
            &:nth-of-type(2n) {
                margin-left: 0;
            }
            &:nth-of-type(3n),
            &:nth-of-type(4n) {
                margin-top: 0;
            }
            &:not(:first-of-type) {
                margin-top: 10px;
            }
        }
    }
}
*/
/* ==========================================================================
	parallelList
========================================================================== */
.c-parallelList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.c-parallelList li {
  box-sizing: border-box;
}

.c-parallelList--four {
  justify-content: space-between;
}
.c-parallelList--four li {
  position: relative;
  width: calc((100% - 60px) / 4);
}
.c-parallelList--four li .c-btn {
  width: auto;
  min-width: 100%;
}
.c-parallelList--four li .c-btn--internal::before {
  position: absolute;
  left: 12px;
}

.c-parallelList--three {
  justify-content: space-between;
  font-size: 1.4rem;
}
.c-parallelList--three li {
  width: calc((100% - 40px) / 3);
}
.c-parallelList--three li a {
  padding: 4px 0;
  text-align: left;
  display: block;
  transition: color 0.3s;
}

/*IE用*/
*::-ms-backdrop,
.c-parallelList--three li {
  width: 31.5%;
}

/*Edge*/
@supports (-ms-ime-align: auto) {
  .c-parallelList--three li {
    width: 31.5%;
  }
}
.c-parallelList--random {
  justify-content: start;
}
.c-parallelList--random li {
  margin: 0 20px 20px 0;
}

@media (max-width: 768px) {
  .c-parallelList--four li {
    width: calc((100% - 20px) / 2);
    margin-top: 20px;
  }
  .c-parallelList--four li:nth-of-type(-n+2) {
    margin-top: 0px;
  }
  .c-parallelList--three li a:hover {
    text-decoration: none;
  }
}
@media (max-width: 480px) {
  .c-parallelList--four li {
    position: relative;
  }
  .c-parallelList--four li .c-btn--internal {
    text-align: center;
  }
  .c-parallelList--three li {
    width: calc((100% - 20px) / 2);
    margin-top: 10px;
  }
  .c-parallelList--three li a {
    padding: 0;
  }
  .c-parallelList--three li a:hover {
    text-decoration: none;
  }
  .c-parallelList--three li:nth-of-type(-n+2) {
    margin-top: 0px;
  }
  .c-parallelList--random {
    flex-direction: column;
  }
  .c-parallelList--random li {
    margin: 0 0 10px 0;
    position: relative;
  }
  .c-parallelList--random li:last-of-type {
    margin-bottom: 20px;
  }
}
/* ==========================================================================
	boxList
========================================================================== */
.c-boxList {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.c-boxList img {
  width: 100%;
}
.c-boxList > li {
  width: calc((100% - 80px) / 5);
  max-width: 144px;
  font-size: 1.4rem;
}
.c-boxList > li .c-text {
  font-size: 1.4rem;
}
.c-boxList > li .c-text--category {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.c-boxList > li .c-boxList__img {
  height: 120px;
}
.c-boxList a {
  display: block;
  color: #373d3f;
  text-decoration: none;
}
.c-boxList a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.c-boxList--four > li {
  width: calc((100% - 60px) / 4);
  max-width: 184px;
}
.c-boxList--four > li .c-boxList__img {
  height: 140px;
}
.c-boxList span + p {
  margin-top: 4px;
}

.c-boxList__img {
  box-sizing: border-box;
  width: 100%;
  height: 120px;
  position: relative;
  background-color: #f0f0f0;
  margin-bottom: 12px;
}
.c-boxList__img > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.c-boxList--pr__img {
  background-color: white;
}

@media (max-width: 768px) {
  .c-boxList--wrap {
    flex-wrap: wrap;
  }
  .c-boxList--wrap > li {
    width: calc((100% - 28px) / 3);
  }
  .c-boxList--wrap > li:nth-of-type(4), .c-boxList--wrap > li:nth-of-type(5), .c-boxList--wrap > li:nth-of-type(6) {
    margin-top: 20px;
  }
  .c-boxList--wrap > li:last-of-type {
    margin-left: 14px;
    margin-right: auto;
  }
  .c-boxList--wrap > li .c-boxList__img {
    height: 80px;
  }
}
/* ==========================================================================
	wysiwyg (旧スタイル 削除不可)
========================================================================== */
.c-wysiwyg__contents {
  box-sizing: border-box;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS Pgothic", sans-serif;
  letter-spacing: 0.05em;
}
.c-wysiwyg__contents a {
  color: #1aa3e0;
  text-decoration: none;
}
.c-wysiwyg__contents a:hover {
  text-decoration: underline;
}
.c-wysiwyg__contents p {
  font-size: 1.4rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-wysiwyg__contents p + .c-wysiwyg--img, .c-wysiwyg__contents p + .c-wysiwyg--movie {
  margin-top: 20px;
}
.c-wysiwyg__contents + .c-wysiwyg__contents {
  margin-top: 20px;
}

.c-wysiwyg--img {
  box-sizing: border-box;
  width: 100%;
  min-height: 200px;
  background-color: #f0f0f0;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-wysiwyg--img > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-wysiwyg--img + p, .c-wysiwyg--img + .c-wysiwyg--img, .c-wysiwyg--img + .c-wysiwyg--movie {
  margin-top: 20px;
}

.c-wysiwyg--movie {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-wysiwyg--movie iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.c-wysiwyg--movie + p, .c-wysiwyg--movie + .c-wysiwyg--img, .c-wysiwyg--movie + .c-wysiwyg--movie {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .c-wysiwyg--movie {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    max-width: 340px;
    height: 0;
    padding-top: 56.25%;
  }
}
.c-wysiwyg--templateA p {
  line-height: 1.6;
}

.c-wysiwyg--templateB {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.c-wysiwyg--templateB .c-wysiwyg--img,
.c-wysiwyg--templateB .c-wysiwyg--movie {
  min-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.c-wysiwyg--templateB .c-wysiwyg--img {
  text-align: center;
  min-height: inherit;
  max-height: inherit;
  background-color: inherit;
}
.c-wysiwyg--templateB .c-wysiwyg--img > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: static;
}

@media (max-width: 768px) {
  .c-wysiwyg--templateB {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .c-wysiwyg--templateB .c-wysiwyg--img,
  .c-wysiwyg--templateB .c-wysiwyg--movie {
    min-width: 100%;
  }
}
.c-wysiwyg--templateC {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.c-wysiwyg--templateC > div {
  width: 40%;
}
.c-wysiwyg--templateC .c-wysiwyg--img,
.c-wysiwyg--templateC .c-wysiwyg--movie {
  height: 300px;
}

@media (max-width: 768px) {
  .c-wysiwyg--templateC {
    display: block;
  }
  .c-wysiwyg--templateC > div {
    width: 100%;
  }
  .c-wysiwyg--templateC > div + div {
    margin-top: 20px;
  }
  .c-wysiwyg--templateC .c-wysiwyg--movie {
    max-width: 100%;
    height: 0;
  }
}
.c-wysiwyg--templateD {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.c-wysiwyg--templateD > div {
  width: calc((100% - 40px) / 3);
}
.c-wysiwyg--templateD .c-wysiwyg--img,
.c-wysiwyg--templateD .c-wysiwyg--movie {
  height: 260px;
}

@media (max-width: 768px) {
  .c-wysiwyg--templateD {
    display: block;
  }
  .c-wysiwyg--templateD > div {
    width: 100%;
  }
  .c-wysiwyg--templateD > div + div {
    margin-top: 20px;
  }
  .c-wysiwyg--templateD .c-wysiwyg--movie {
    max-width: 100%;
    height: 0;
  }
}
.c-wysiwyg--templateE .c-wysiwyg--img,
.c-wysiwyg--templateE .c-wysiwyg--movie {
  width: 100%;
  max-width: 340px;
  float: left;
  margin-right: 20px;
}
.c-wysiwyg--templateE .c-wysiwyg--img + p,
.c-wysiwyg--templateE .c-wysiwyg--movie + p {
  margin-top: 20px;
}
.c-wysiwyg--templateE .c-wysiwyg--movie {
  width: 100%;
  height: 100%;
  min-height: 191px;
  padding-top: inherit;
}
.c-wysiwyg--templateE p {
  line-height: 1.6;
}
.c-wysiwyg--templateE p + .c-wysiwyg--img, .c-wysiwyg--templateE p + .c-wysiwyg--movie {
  margin-top: 20px;
}
.c-wysiwyg--templateE::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 768px) {
  .c-wysiwyg--templateE .c-wysiwyg--img,
  .c-wysiwyg--templateE .c-wysiwyg--movie {
    float: none;
    max-width: 100%;
    margin-right: 0;
  }
  .c-wysiwyg--templateE .c-wysiwyg--movie {
    max-height: 432px;
  }
}
.c-wysiwyg--templateF .c-wysiwyg--img,
.c-wysiwyg--templateF .c-wysiwyg--movie {
  width: 100%;
  max-width: 340px;
  float: right;
  margin-left: 20px;
}
.c-wysiwyg--templateF .c-wysiwyg--img + p,
.c-wysiwyg--templateF .c-wysiwyg--movie + p {
  margin-top: 20px;
}
.c-wysiwyg--templateF .c-wysiwyg--movie {
  width: 100%;
  height: 100%;
  min-height: 191px;
  padding-top: inherit;
}
.c-wysiwyg--templateF p {
  line-height: 1.6;
}
.c-wysiwyg--templateF p + .c-wysiwyg--img, .c-wysiwyg--templateF p + .c-wysiwyg--movie {
  margin-top: 20px;
}
.c-wysiwyg--templateF::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 768px) {
  .c-wysiwyg--templateF .c-wysiwyg--img,
  .c-wysiwyg--templateF .c-wysiwyg--movie {
    float: none;
    max-width: 100%;
    margin-left: 0;
  }
  .c-wysiwyg--templateF .c-wysiwyg--movie {
    max-height: 432px;
  }
}
.c-wysiwyg--templateG {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.c-wysiwyg--templateG > div {
  width: calc((100% - 60px) / 4);
}
.c-wysiwyg--templateG .c-wysiwyg--img,
.c-wysiwyg--templateG .c-wysiwyg--movie {
  height: 200px;
}

@media (max-width: 768px) {
  .c-wysiwyg--templateG {
    flex-wrap: wrap;
  }
  .c-wysiwyg--templateG > div {
    width: calc((100% - 20px) / 2);
  }
  .c-wysiwyg--templateG > div:first-of-type, .c-wysiwyg--templateG > div:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .c-wysiwyg--templateG .c-wysiwyg--movie {
    max-width: 100%;
    height: 0;
  }
}
.c-wysiwyg--templateH h2 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 2rem;
  padding-left: 10px;
  font-weight: bold;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-wysiwyg--templateH h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background-color: #0082c3;
}

.c-wysiwyg--templateI h3 {
  font-size: 1.6rem;
  padding-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-wysiwyg--templateI h3::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #373d3f;
}

.c-wysiwyg--provide {
  margin-top: 40px;
  display: block;
  text-align: right;
}
.c-wysiwyg--provide > span {
  display: inline-block;
}

/* ==========================================================================
	wysiwyg 新スタイル
========================================================================== */
.c-wysiwyg__contents {
  box-sizing: border-box;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS Pgothic", sans-serif;
  letter-spacing: 0.05em;
}
.c-wysiwyg__contents a {
  color: #1aa3e0;
  text-decoration: none;
}
.c-wysiwyg__contents a:hover {
  text-decoration: underline;
}
.c-wysiwyg__contents p {
  line-height: 1.6;
  font-size: 1.4rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-wysiwyg__contents p:not(:last-child) {
  margin-bottom: 10px;
}
.c-wysiwyg__contents ul, .c-wysiwyg__contents ol {
  padding-left: 32px;
}
.c-wysiwyg__contents ul:not(:last-child), .c-wysiwyg__contents ol:not(:last-child) {
  margin-bottom: 10px;
}
.c-wysiwyg__contents ul li:not(:last-child), .c-wysiwyg__contents ol li:not(:last-child) {
  margin-bottom: 8px;
}
.c-wysiwyg__contents ul {
  list-style: disc;
}
.c-wysiwyg__contents ol {
  list-style: decimal;
}
.c-wysiwyg__contents + .c-wysiwyg__contents {
  margin-top: 20px;
}

.c-wysiwyg__img {
  box-sizing: border-box;
  width: 100%;
  min-height: 200px;
  background-color: #f0f0f0;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-wysiwyg__img > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-wysiwyg__img + p {
  margin-top: 8px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #91a1a6;
}

.c-wysiwyg__movie {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-wysiwyg__movie {
    max-width: 340px;
    height: 0;
  }
}
.c-wysiwyg__movie iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.c-wysiwyg__movie + p {
  margin-top: 8px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #91a1a6;
}

.c-wysiwyg__contents--b {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--b {
    max-width: 100%;
  }
}
.c-wysiwyg__contents--b .c-wysiwyg__img,
.c-wysiwyg__contents--b .c-wysiwyg__movie {
  min-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .c-wysiwyg__contents--b .c-wysiwyg__img,
  .c-wysiwyg__contents--b .c-wysiwyg__movie {
    min-width: 100%;
  }
}
.c-wysiwyg__contents--b .c-wysiwyg__img {
  text-align: center;
  min-height: inherit;
  max-height: inherit;
  background-color: inherit;
}
.c-wysiwyg__contents--b .c-wysiwyg__img > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: static;
}
.c-wysiwyg__contents--b > .c-wysiwyg__block {
  width: 100%;
}
.c-wysiwyg__contents--b > .c-wysiwyg__block:empty {
  margin-top: 0;
}
.c-wysiwyg__contents--b > .c-wysiwyg__block:empty + .c-wysiwyg__block:not(:empty) {
  margin-top: 0;
}
.c-wysiwyg__contents--b > .c-wysiwyg__block + .c-wysiwyg__block:not(:empty) {
  margin-top: 20px;
}
.c-wysiwyg__contents--b > .c-wysiwyg__block--media p {
  text-align: center;
}

.c-wysiwyg__contents--c {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--c {
    display: block;
  }
}
.c-wysiwyg__contents--c > .c-wysiwyg__block {
  width: 100%;
}
.c-wysiwyg__contents--c > .c-wysiwyg__block:empty {
  margin-top: 0;
}
.c-wysiwyg__contents--c > .c-wysiwyg__block:empty + .c-wysiwyg__block:not(:empty) {
  margin-top: 0;
}
.c-wysiwyg__contents--c > .c-wysiwyg__block + .c-wysiwyg__block:not(:empty) {
  margin-top: 20px;
}
.c-wysiwyg__contents--c > .c-wysiwyg__block--column {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}
.c-wysiwyg__contents--c > .c-wysiwyg__block--column > .c-wysiwyg__column-item {
  width: 40%;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--c > .c-wysiwyg__block--column > .c-wysiwyg__column-item {
    width: 100%;
  }
  .c-wysiwyg__contents--c > .c-wysiwyg__block--column > .c-wysiwyg__column-item + .c-wysiwyg__column-item {
    margin-top: 20px;
  }
}
.c-wysiwyg__contents--c .c-wysiwyg__img,
.c-wysiwyg__contents--c .c-wysiwyg__movie {
  height: 300px;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--c .c-wysiwyg__movie {
    max-width: 100%;
    height: 0;
  }
}

.c-wysiwyg__contents--d {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--d {
    display: block;
  }
}
.c-wysiwyg__contents--d > div {
  width: calc((100% - 40px) / 3);
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--d > div {
    width: 100%;
  }
  .c-wysiwyg__contents--d > div + div {
    margin-top: 20px;
  }
}
.c-wysiwyg__contents--d .c-wysiwyg__img,
.c-wysiwyg__contents--d .c-wysiwyg__movie {
  height: 260px;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--d .c-wysiwyg__movie {
    max-width: 100%;
    height: 0;
  }
}

.c-wysiwyg__contents--e::after {
  content: "";
  clear: both;
  display: block;
}
.c-wysiwyg__contents--e p {
  overflow: visible;
}
.c-wysiwyg__contents--e > .c-wysiwyg__block {
  width: 100%;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--e > .c-wysiwyg__block:nth-of-type(2) {
    margin-top: 20px;
  }
}
.c-wysiwyg__contents--e > .c-wysiwyg__block:empty {
  margin-top: 0;
}
.c-wysiwyg__contents--e > .c-wysiwyg__block:empty + .c-wysiwyg__block:not(:empty) {
  margin-top: 0;
}
.c-wysiwyg__contents--e > .c-wysiwyg__block--media {
  float: left;
  width: 100%;
  max-width: 340px;
  margin-right: 20px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--e > .c-wysiwyg__block--media {
    float: none;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.c-wysiwyg__contents--e .c-wysiwyg__movie {
  width: 100%;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--e .c-wysiwyg__movie {
    max-width: 100%;
  }
}

.c-wysiwyg__contents--f::after {
  content: "";
  clear: both;
  display: block;
}
.c-wysiwyg__contents--f p {
  overflow: visible;
}
.c-wysiwyg__contents--f > .c-wysiwyg__block {
  width: 100%;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--f > .c-wysiwyg__block:nth-of-type(2) {
    margin-top: 20px;
  }
}
.c-wysiwyg__contents--f > .c-wysiwyg__block:empty {
  margin-top: 0;
}
.c-wysiwyg__contents--f > .c-wysiwyg__block:empty + .c-wysiwyg__block:not(:empty) {
  margin-top: 0;
}
.c-wysiwyg__contents--f > .c-wysiwyg__block--media {
  float: right;
  width: 100%;
  max-width: 340px;
  margin-left: 20px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--f > .c-wysiwyg__block--media {
    float: none;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 0;
  }
}
.c-wysiwyg__contents--f .c-wysiwyg__movie {
  width: 100%;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--f .c-wysiwyg__movie {
    max-width: 100%;
  }
}

.c-wysiwyg__contents--g {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--g {
    flex-wrap: wrap;
  }
}
.c-wysiwyg__contents--g > div {
  width: calc((100% - 60px) / 4);
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--g > div {
    width: calc((100% - 20px) / 2);
  }
  .c-wysiwyg__contents--g > div:first-of-type, .c-wysiwyg__contents--g > div:nth-of-type(2) {
    margin-bottom: 20px;
  }
}
.c-wysiwyg__contents--g .c-wysiwyg__img,
.c-wysiwyg__contents--g .c-wysiwyg__movie {
  height: 200px;
}
@media (max-width: 768px) {
  .c-wysiwyg__contents--g .c-wysiwyg__movie {
    max-width: 100%;
    height: 0;
  }
}

.c-wysiwyg__contents--head h2 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 2rem;
  padding-left: 10px;
  font-weight: bold;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-wysiwyg__contents--head h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background-color: #0082c3;
}

.c-wysiwyg__contents--subhead h3 {
  font-size: 1.6rem;
  padding-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-wysiwyg__contents--subhead h3::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #373d3f;
}

.c-wysiwyg .c-wysiwyg__tableArea {
  margin-top: 20px;
}
.c-wysiwyg table {
  box-sizing: border-box;
  max-width: 798px;
  width: 100% !important;
}
@media (max-width: 768px) {
  .c-wysiwyg table {
    max-width: 780px;
  }
}

.c-wysiwyg__table {
  box-sizing: border-box;
  width: 50%;
  text-align: center;
}
.c-wysiwyg__table + .c-wysiwyg__table tr {
  border-left: none;
}
.c-wysiwyg__table tr {
  box-sizing: border-box;
  border-left: 1px solid #cccccc;
}
.c-wysiwyg__table tr:last-of-type {
  border-bottom: 1px solid #cccccc;
}
.c-wysiwyg__table th {
  box-sizing: border-box;
  padding: 6px;
  background-color: #eff6fa;
  width: 50%;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  text-align: left;
}
.c-wysiwyg__table td {
  box-sizing: border-box;
  padding: 6px;
  width: 50%;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  word-wrap: break-word;
  word-break: break-all;
  text-align: left;
}

@media (max-width: 480px) {
  .c-wysiwyg__table {
    width: 100%;
  }
  .c-wysiwyg__table + .c-wysiwyg__table tr:first-of-type {
    border-left: 1px solid #cccccc;
  }
  .c-wysiwyg__table + .c-wysiwyg__table tr:first-of-type th, .c-wysiwyg__table + .c-wysiwyg__table tr:first-of-type td {
    border-top: none;
  }
}
@media (max-width: 768px) {
  .c-wysiwyg__scroll {
    width: calc(100% + 20px);
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .c-wysiwyg__scroll::-webkit-scrollbar {
    height: 10px;
  }
  .c-wysiwyg__scroll::-webkit-scrollbar-track {
    background-color: #eaedef;
  }
  .c-wysiwyg__scroll::-webkit-scrollbar-thumb {
    background-color: #0082c3;
    border: 3px solid #eaedef;
    border-radius: 10px;
  }
  .c-wysiwyg__scroll > .c-wysiwyg__scrollTableWrap {
    box-sizing: border-box;
    padding-right: 20px;
    overflow: hidden;
    width: 100%;
    min-width: 800px;
  }
}
.c-wysiwyg__provide {
  margin-top: 40px;
  display: block;
  text-align: right;
}
.c-wysiwyg__provide > span {
  display: inline-block;
}

.p-banner-area--GAM {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-banner-area--GAM-main.p-catalog.p-banner-area > div > div {
  margin-top: 32px;
  margin-bottom: 32px;
}

/* ==========================================================================
	margin
========================================================================== */
.u-mt--0 {
  margin-top: 0 !important;
}
.u-mt--10 {
  margin-top: 10px;
}
.u-mt--20 {
  margin-top: 20px;
}
.u-mt--30 {
  margin-top: 30px;
}
.u-mt--40 {
  margin-top: 40px;
}
.u-mt--50 {
  margin-top: 50px;
}

.u-mb--0 {
  margin-bottom: 0 !important;
}
.u-mb--10 {
  margin-bottom: 10px;
}
.u-mb--20 {
  margin-bottom: 20px;
}
.u-mb--30 {
  margin-bottom: 30px;
}
.u-mb--40 {
  margin-bottom: 40px;
}
.u-mb--50 {
  margin-bottom: 50px;
}

.u-ml--0 {
  margin-left: 0;
}
.u-ml--10 {
  margin-left: 10px;
}
.u-ml--20 {
  margin-left: 20px;
}
.u-ml--30 {
  margin-left: 30px;
}
.u-ml--40 {
  margin-left: 40px;
}
.u-ml--50 {
  margin-left: 50px;
}

.u-mr--0 {
  margin-right: 0;
}
.u-mr--10 {
  margin-right: 10px;
}
.u-mr--20 {
  margin-right: 20px;
}
.u-mr--30 {
  margin-right: 30px;
}
.u-mr--40 {
  margin-right: 40px;
}
.u-mr--50 {
  margin-right: 50px;
}

/* ==========================================================================
	padding
========================================================================== */
.u-pt--0 {
  padding-top: 0;
}
.u-pt--10 {
  padding-top: 10px;
}
.u-pt--20 {
  padding-top: 20px;
}
.u-pt--30 {
  padding-top: 30px;
}
.u-pt--40 {
  padding-top: 40px;
}
.u-pt--50 {
  padding-top: 50px;
}

.u-pb--0 {
  padding-bottom: 0;
}
.u-pb--10 {
  padding-bottom: 10px;
}
.u-pb--20 {
  padding-bottom: 20px;
}
.u-pb--30 {
  padding-bottom: 30px;
}
.u-pb--40 {
  padding-bottom: 40px;
}
.u-pb--50 {
  padding-bottom: 50px;
}

.u-pl--0 {
  padding-left: 0;
}
.u-pl--10 {
  padding-left: 10px;
}
.u-pl--16 {
  padding-left: 16px;
}
.u-pl--20 {
  padding-left: 20px;
}
.u-pl--24 {
  padding-left: 24px;
}
.u-pl--30 {
  padding-left: 30px;
}
.u-pl--40 {
  padding-left: 40px;
}
.u-pl--50 {
  padding-left: 50px;
}

.u-pr--0 {
  padding-right: 0;
}
.u-pr--10 {
  padding-right: 10px;
}
.u-pr--20 {
  padding-right: 20px;
}
.u-pr--30 {
  padding-right: 30px;
}
.u-pr--40 {
  padding-right: 40px;
}
.u-pr--50 {
  padding-right: 50px;
}

.u-pa--0 {
  padding: 0;
}
.u-pa--10 {
  padding: 10px;
}
.u-pa--20 {
  padding: 20px;
}
.u-pa--30 {
  padding: 30px;
}
.u-pa--40 {
  padding: 40px;
}

/* ==========================================================================
   align
========================================================================== */
.u-ta--c {
  text-align: center !important;
}
.u-ta--l {
  text-align: left !important;
}
.u-ta--r {
  text-align: right;
}

/* ==========================================================================
	machineryList
========================================================================== */
.p-machineryList .c-heading--main small {
  margin-left: 0;
  font-size: 1.6rem;
  font-weight: bold;
}
.p-machineryList .c-boxList {
  justify-content: flex-start;
}
.p-machineryList .c-boxList > li:not(:last-of-type) {
  margin-right: 20px;
}

.p-machineryList__maker,
.p-machineryList__kinds,
.p-machineryList__category {
  font-size: 1.4rem;
  font-weight: bold;
}

.p-machineryList__price {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ef6f0e;
}

.p-machineryList__catalog .c-heading--main {
  width: 65%;
}
.p-machineryList__catalog > .c-linkArrow {
  width: 30%;
  text-align: right;
}

@media (max-width: 768px) {
  .p-machineryList .c-heading--main small {
    display: inline-block;
    font-size: 1.4rem;
  }
  .p-machineryList .c-boxList > li .p-machineryList__img {
    height: 110px;
  }
  .p-machineryList__catalog .c-heading--main {
    width: 100%;
  }
  .p-machineryList__catalog > .c-linkArrow {
    max-width: 100%;
    width: calc(100% - 40px);
    text-align: center;
  }
  .p-machineryList__catalog > .c-linkArrow::before {
    display: none;
  }
  .p-machineryList__catalog > .c-linkArrow:hover {
    text-decoration: none;
  }
}
/* ==========================================================================
	infoNew
========================================================================== */
.p-infoNew .c-lineList > li {
  font-size: 1.2rem;
}
.p-infoNew .c-lineList > li > a {
  text-decoration: none;
}
.p-infoNew .c-lineList > li > a .c-text--date {
  color: #373d3f;
}
.p-infoNew .c-lineList > li > a:hover {
  text-decoration: none;
}
.p-infoNew .c-lineList > li > a:hover dd, .p-infoNew .c-lineList > li > a:hover div {
  text-decoration: underline;
}
.p-infoNew p {
  font-size: 1.2rem;
  text-align: right;
}
.p-infoNew dd {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}

.p-infoNew__permanent p {
  text-align: left;
}

/* ==========================================================================
	accessRankingSide
========================================================================== */
.p-accessRankingSide .c-lineList > li {
  position: relative;
}
.p-accessRankingSide .c-lineList > li > a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
.p-accessRankingSide .c-lineList > li > a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.p-accessRankingSide .c-lineList > li .c-text--provide {
  position: absolute;
  left: 116px;
  bottom: 10px;
  z-index: 5;
  flex-wrap: wrap;
}
.p-accessRankingSide .c-lineList > li .c-text--provide span {
  display: block;
}
.p-accessRankingSide .c-lineList > li .c-text--provide span:last-of-type {
  width: 100%;
  max-width: 158px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-accessRankingSide .c-label {
  width: 20px;
  height: 80px;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.p-accessRankingSide__img {
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  position: relative;
  background-color: #f0f0f0;
}
.p-accessRankingSide__img > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.p-accessRankingSide--pr__img {
  background-color: white;
}

.p-accessRankingSide__text {
  width: 160px;
}
.p-accessRankingSide__text h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.p-accessRankingSide__text .c-text {
  font-size: 1.2rem;
}
.p-accessRankingSide__text .c-text--provide {
  font-size: 1.2rem;
}

.p-accessRankingSide__linkText {
  font-size: 1.2rem;
  margin-top: 20px;
  text-align: right;
}

/* ==========================================================================
	catalog
========================================================================== */
.p-catalog .c-heading--main small {
  margin-left: 0;
  font-size: 1.6rem;
  font-weight: bold;
}
.p-catalog .c-wysiwyg--templateH,
.p-catalog .c-wysiwyg--templateG {
  margin-top: 40px;
}
.p-catalog .c-parallelList--three {
  justify-content: flex-start;
}
.p-catalog .c-parallelList--three > li {
  margin-right: 20px;
  padding: 4px 0;
}
.p-catalog .c-parallelList--three > li:nth-of-type(3n) {
  margin-right: 0;
}
.p-catalog .c-parallelList--three > li a {
  padding: 0;
}

@media (max-width: 768px) {
  .p-catalog .c-wysiwyg--templateH,
  .p-catalog .c-wysiwyg--templateG {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .p-catalog .c-parallelList--three {
    justify-content: space-between;
  }
  .p-catalog .c-parallelList--three > li {
    margin-right: 0;
    padding: 0;
  }
  .p-catalog .c-parallelList--three > li:nth-of-type(3n) {
    margin-right: 0;
  }
}
.p-catalog__inContents {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-catalog__inContents {
    padding-bottom: 90px;
    min-height: 332px;
  }
}
@media (min-width: 768px) {
  .p-catalog__inContents {
    min-height: 243px;
  }
}
@media (min-width: 768px) {
  .p-catalog__inContents.c-linkArrow__box > .c-linkArrow {
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media (max-width: 767px) {
  .p-catalog.l-content:nth-of-type(2) {
    min-height: 352px;
  }
}
@media (min-width: 768px) {
  .p-catalog.l-content:nth-of-type(2) {
    min-height: 289px;
  }
}

/* ==========================================================================
	category
========================================================================== */
.p-category {
  box-sizing: border-box;
  margin-top: 20px;
}

.p-category--main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.p-category--main .c-table--right {
  table-layout: fixed;
}
.p-category--main .c-table--right th {
  box-sizing: border-box;
  width: 120px !important;
}
.p-category--main + .c-heading--sub {
  margin-top: 40px;
}

.p-category--image {
  margin-right: 20px;
  width: 240px;
  height: 240px;
  max-height: 240px;
  overflow: hidden;
  background-color: #f0f0f0;
  position: relative;
}
.p-category--image > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.p-category--spec {
  width: calc(100% - 260px);
}

.p-category-spec-two-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-category-spec-two-col .p-category-btnWrap {
  width: calc(50% - 8px);
}
.p-category-spec-two-col .p-category-btnWrap + .p-category-btnWrap {
  margin-left: 16px;
}
.p-category-spec-two-col .p-category-btnWrap:only-of-type {
  width: 320px;
  margin-right: auto;
  margin-left: auto;
}
.p-category-spec-two-col .p-category-btn {
  max-width: 100%;
  height: 70px;
}
.p-category-spec-two-col .p-category-btn--inquiry {
  padding: 16px 8px 11px;
}

.p-category--text {
  width: 100%;
}

.p-category--table {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.p-category--table .c-table {
  width: 49.5%;
}
.p-category--table .c-table + .c-table tr {
  border-left: 1px solid #cccccc;
}

@media (max-width: 768px) {
  .p-category--main {
    flex-direction: column;
  }
  .p-category--main + .c-heading--sub {
    margin-top: 20px;
  }
  .p-category--image {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    height: 320px;
    min-height: auto;
  }
  .p-category--spec {
    width: 100%;
  }
  .p-category--text {
    width: 100%;
  }
  .p-category-spec-two-col {
    display: block;
  }
  .p-category-spec-two-col .p-category-btnWrap {
    width: 100%;
  }
  .p-category-spec-two-col .p-category-btnWrap + .p-category-btnWrap {
    margin-bottom: 0;
    margin-left: 0;
  }
  .p-category-spec-two-col .p-category-btn {
    max-width: 320px;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .p-category--table {
    display: flex;
    flex-direction: column;
  }
  .p-category--table .c-table {
    width: 100%;
  }
}
@font-face {
  font-family: "ifonts-M";
  src: url("../../../../fonts/static/import-biglemon/ifonts-M.eot");
  src: url("../../../../fonts/static/import-biglemon/ifonts-M.eot?#iefix") format("eot"), url("../../../../fonts/static/import-biglemon/ifonts-M.woff2") format("woff2"), url("../../../../fonts/static/import-biglemon/ifonts-M.woff") format("woff"), url("../../../../fonts/static/import-biglemon/ifonts-M.ttf") format("truetype"), url("../../../../fonts/static/import-biglemon/ifonts-M.svg#ifonts-M") format("svg");
}
.owl-prev span:before, .owl-next span:before, .p-item-slider__item--see-more .p-item-slider__item-link span:before, .icon-M5_3_multi-languag:before, .icon-M5_3_currency:before, .icon-M5_2_eye_slash:before, .icon-M5_1_eye:before, .icon-M4_1_exclamation-triangle:before, .icon-M3_question-circle:before, .icon-M3_mail:before, .icon-M3_download:before, .icon-M2_star-ol:before, .icon-M2_search:before, .icon-M2_ellipsis:before, .icon-M1_video-camera:before, .icon-M1_user2:before, .icon-M1_user1:before, .icon-M1_triangle:before, .icon-M1_times:before, .icon-M1_star:before, .icon-M1_question:before, .icon-M1_plus:before, .icon-M1_picture:before, .icon-M1_phone:before, .icon-M1_paper-clip:before, .icon-M1_move-window:before, .icon-M1_minus:before, .icon-M1_menu-open:before, .icon-M1_menu-close:before, .icon-M1_heart:before, .icon-M1_comment:before, .icon-M1_circle_question:before, .icon-M1_circle_info:before, .icon-M1_checked:before, .icon-M1_caution:before, .icon-M1_camera:before, .icon-M1_calendar:before, .icon-M1_bell:before, .icon-M1_bars:before, .icon-M1_angle-up:before, .icon-M1_angle-right:before, .icon-M1_angle-left:before, .icon-M1_angle-down:before {
  font-family: "ifonts-M";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-M1_angle-down:before {
  content: "\e001";
}

.icon-M1_angle-left:before {
  content: "\e002";
}

.icon-M1_angle-right:before {
  content: "\e003";
}

.icon-M1_angle-up:before {
  content: "\e004";
}

.icon-M1_bars:before {
  content: "\e005";
}

.icon-M1_bell:before {
  content: "\e006";
}

.icon-M1_calendar:before {
  content: "\e007";
}

.icon-M1_camera:before {
  content: "\e008";
}

.icon-M1_caution:before {
  content: "\e009";
}

.icon-M1_checked:before {
  content: "\e00a";
}

.icon-M1_circle_info:before {
  content: "\e00b";
}

.icon-M1_circle_question:before {
  content: "\e00c";
}

.icon-M1_comment:before {
  content: "\e00d";
}

.icon-M1_heart:before {
  content: "\e00e";
}

.icon-M1_menu-close:before {
  content: "\e00f";
}

.icon-M1_menu-open:before {
  content: "\e010";
}

.icon-M1_minus:before {
  content: "\e011";
}

.icon-M1_move-window:before {
  content: "\e012";
}

.icon-M1_paper-clip:before {
  content: "\e013";
}

.icon-M1_phone:before {
  content: "\e014";
}

.icon-M1_picture:before {
  content: "\e015";
}

.icon-M1_plus:before {
  content: "\e016";
}

.icon-M1_question:before {
  content: "\e017";
}

.icon-M1_star:before {
  content: "\e018";
}

.icon-M1_times:before {
  content: "\e019";
}

.icon-M1_triangle:before {
  content: "\e01a";
}

.icon-M1_user1:before {
  content: "\e01b";
}

.icon-M1_user2:before {
  content: "\e01c";
}

.icon-M1_video-camera:before {
  content: "\e01d";
}

.icon-M2_ellipsis:before {
  content: "\e01e";
}

.icon-M2_search:before {
  content: "\e01f";
}

.icon-M2_star-ol:before {
  content: "\e020";
}

.icon-M3_download:before {
  content: "\e021";
}

.icon-M3_mail:before {
  content: "\e022";
}

.icon-M3_question-circle:before {
  content: "\e023";
}

.icon-M4_1_exclamation-triangle:before {
  content: "\e024";
}

.icon-M5_1_eye:before {
  content: "\e025";
}

.icon-M5_2_eye_slash:before {
  content: "\e026";
}

.icon-M5_3_currency:before {
  content: "\e027";
}

.icon-M5_3_multi-languag:before {
  content: "\e028";
}

/*
utility display style
------------------------- */
/*

サイト共通で使用するdisplayプロパティに関するutilityクラスです。

一時的に要素を非表示にしなくてはならなくなった場合や、改行の制御などデバイスによる要素の表示・非表示をだし分けたい場合に使用してください。

pug例) 
span.u-dn 非表示
span.u-dn--pc PC表示の時のみ非表示
span.u-db--sp SP表示の時のみdisplay:block;

※utilityクラスはデバイスサイズによってmodifier形式の表記となっていますが、シングルクラスで指定してください。(.u-dn.u-dn--spのように併記しない)

*/
.u-dn {
  display: none !important;
}

@media (max-width: 767px) {
  .u-dn--sp {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .u-dn--pc {
    display: none !important;
  }
}

.u-db {
  display: block !important;
}

@media (max-width: 767px) {
  .u-db--sp {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .u-db--pc {
    display: block !important;
  }
}

.u-dib {
  display: inline-block !important;
}

/*
item-slider style
------------------------- */
/*

object type: project
divisison: -
page: オンラインEXPO パーツページ

「最近見た商品」「あなたにオススメ」アイテムスライダーのprojectモジュールです。

*/
.p-item-slider {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-item-slider {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-item-slider::before, .p-item-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 16px;
  height: 100%;
  z-index: 2;
}
.p-item-slider::before {
  left: 0;
}
.p-item-slider::after {
  right: 0;
}

.p-item-slider__item-link:hover {
  text-decoration: none;
}
.p-item-slider__item-link:hover > * {
  opacity: 0.6;
}

.p-item-slider__item-picture {
  overflow: hidden;
}
.p-item-slider__item-picture img {
  height: auto;
}

.p-item-slider__item-cat {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 8px;
  color: #707c80;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-item-slider__item-make,
.p-item-slider__item-model,
.p-item-slider__item-year {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-top: 2px;
  font-weight: bold;
  color: #373d3f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-item-slider__item-make,
  .p-item-slider__item-model,
  .p-item-slider__item-year {
    font-size: 1.5rem;
  }
}

.p-item-slider__item-value {
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 4px;
  font-weight: bold;
  color: #ef6f0e;
}
@media (min-width: 768px) {
  .p-item-slider__item-value {
    font-size: 1.8rem;
  }
}

.p-item-slider .sp-arrows {
  display: none;
}
@media (min-width: 768px) {
  .p-item-slider .sp-arrows {
    display: block;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: 0;
  }
}
.p-item-slider .sp-arrow {
  z-index: 100;
  width: 44px;
  height: 126px;
  margin-top: -63px;
  opacity: 0.8;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .p-item-slider .sp-arrow:hover {
    opacity: 0.6;
  }
}
.p-item-slider .sp-arrow::before {
  position: absolute;
  background-color: transparent;
  font-family: "ifonts-M";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.4rem;
  width: auto;
  height: auto;
  content: "\e002";
}
.p-item-slider .sp-arrow::after {
  content: none;
}
.p-item-slider .sp-previous-arrow {
  left: 0;
}
.p-item-slider .sp-next-arrow {
  right: 0;
}

.p-item-slider__item--see-more {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #0082c3;
  margin-right: 1px;
}
@media (min-width: 768px) {
  .p-item-slider__item--see-more {
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .p-item-slider__item--see-more {
    padding: 4px;
    max-width: 90px;
    min-height: 167px;
  }
}
.p-item-slider__item--see-more .p-item-slider__item-link {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .p-item-slider__item--see-more .p-item-slider__item-link {
    height: 166px;
  }
}
@media (max-width: 767px) {
  .p-item-slider__item--see-more .p-item-slider__item-link {
    height: 127px;
  }
}
.p-item-slider__item--see-more .p-item-slider__item-link span {
  position: relative;
  padding-left: 16px;
  font-weight: bold;
  font-size: 1.2rem;
}
.p-item-slider__item--see-more .p-item-slider__item-link span:before {
  content: "\e003";
}
.p-item-slider__item--see-more .p-item-slider__item-link span::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 16px;
  width: 16px;
  height: 16px;
  text-decoration: none;
}

/* ************************** */
/*
 owl-carousel style for PC and SP
 */
/* ************************** */
.owl-nav {
  background-color: rgba(239, 111, 14, 0.5);
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .owl-nav {
    display: none;
  }
}

.owl-prev, .owl-next {
  width: 35px;
  height: 126px;
  background-color: #707C80 !important;
  opacity: 0.6;
}
.owl-prev span, .owl-next span {
  display: block;
  position: relative;
  width: 35px;
  height: 126px;
  font-size: 0;
}
.owl-prev span::before, .owl-next span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 2.4rem;
  width: auto;
  height: auto;
  background-color: transparent;
}

.owl-prev {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.owl-prev span:before {
  content: "\e002";
}

.owl-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.owl-next span:before {
  content: "\e003";
}

.disabled.owl-prev, .disabled.owl-next {
  opacity: 0;
}

.owl-dots {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .owl-dots {
    display: none;
  }
}

.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 24px 4px 4px;
  background-color: #F0F0F0 !important;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
}
.owl-dot.active {
  background-color: #0082C3 !important;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: calc(100% + 1px);
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* //////////////////////////////////////////////////////////////////////////
   Component
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Utility
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Project
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Plugin
////////////////////////////////////////////////////////////////////////// */
/*# sourceMappingURL=../../maps/catalog/subcategory-manufacturer/detail.css.map */