@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);
}

/* ==========================================================================
	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;
  }
}
/* ==========================================================================
	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;
  }
}
/* ==========================================================================
	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;
            }
        }
    }
}
*/
/* ==========================================================================
	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;
}

/*
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;
}

/* ==========================================================================
	top
========================================================================== */
@media (max-width: 480px) {
  .p-top .u-mt--20 {
    margin-top: 10px;
  }
}
/* ==========================================================================
	accessRanking
========================================================================== */
.p-accessRanking .c-boxList > li {
  width: calc((100% - 60px) / 5);
}
.p-accessRanking .c-boxList .c-boxList__img {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
}
.p-accessRanking .c-label--place {
  margin-bottom: 8px;
}
.p-accessRanking .c-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.p-accessRanking .c-text--provide {
  font-size: 1.2rem !important;
  display: block;
  margin-top: 4px;
}
.p-accessRanking .c-text--provide span {
  margin: 0;
  font-size: 1.2rem;
}
.p-accessRanking .c-text--provide a {
  color: #0082c3;
}
.p-accessRanking .c-text--provide a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (min-width: 1200px) {
  .p-accessRanking .c-boxList > li {
    width: calc((100% - 80px) / 5);
  }
  .p-accessRanking .c-boxList .c-boxList__img {
    width: 120px !important;
    height: 120px !important;
  }
}
@media (max-width: 768px) {
  .p-accessRanking .c-boxList {
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
  }
  .p-accessRanking .c-boxList > li {
    width: calc((100% - 40px) / 3);
    max-width: 200px;
    min-width: 127px;
  }
  .p-accessRanking .c-boxList > li:nth-of-type(4), .p-accessRanking .c-boxList > li:last-of-type {
    margin-top: 20px;
  }
  .p-accessRanking .c-boxList::after {
    content: "";
    display: block;
    width: calc((100% - 40px) / 3);
    max-width: 200px;
    min-width: 127px;
  }
  .p-accessRanking .c-boxList .c-boxList__img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 480px) {
  .p-accessRanking .c-boxList {
    max-width: 100%;
    flex-wrap: wrap;
  }
  .p-accessRanking .c-boxList > li {
    width: calc((100% - 20px) / 2);
  }
  .p-accessRanking .c-boxList > li:nth-of-type(3), .p-accessRanking .c-boxList > li:nth-of-type(4), .p-accessRanking .c-boxList > li:last-of-type {
    margin-top: 20px;
  }
  .p-accessRanking .c-boxList > li:last-of-type {
    margin-left: 0;
    margin-right: auto;
  }
  .p-accessRanking .c-boxList::after {
    display: none;
  }
  .p-accessRanking .c-boxList .c-boxList__img {
    width: 120px;
    height: 120px;
  }
}
/* ==========================================================================
	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;
}

/* ==========================================================================
	hotNews
========================================================================== */
.p-hotNews .c-ico {
  position: relative;
  width: 20px;
  height: 18px;
  top: 4px;
}
.p-hotNews .c-ico::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0082c3;
}
.p-hotNews .c-label {
  position: relative;
}
.p-hotNews .c-label::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-hotNews .c-flex {
  margin-top: 10px;
}
.p-hotNews .c-flex > .c-lineList {
  width: calc(100% - 220px);
}
.p-hotNews .c-flex > .c-lineList > li > a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #0082c3;
  text-decoration: none;
}
.p-hotNews .c-flex > .c-lineList > li > a:hover h3 {
  text-decoration: underline;
}
.p-hotNews .c-flex > .c-lineList h3 {
  display: inline;
}
.p-hotNews .c-flex > .c-lineList h3 + span {
  margin-left: 4px;
}
.p-hotNews .c-flex > .c-lineList span + span {
  margin-left: 4px;
}
.p-hotNews .c-flex > .c-lineList .c-ico--img {
  font-size: 2rem;
  display: inline-block;
}
.p-hotNews figure {
  max-width: 200px;
  margin-left: 20px;
}
.p-hotNews figure a {
  color: #373d3f;
  text-decoration: none;
}
.p-hotNews figure a:hover {
  text-decoration: none;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.p-hotNews figcaption {
  margin-top: 10px;
  font-size: 1.4rem;
}
.p-hotNews--thumbnail {
  box-sizing: border-box;
  flex-wrap: wrap;
}
.p-hotNews--thumbnail a {
  text-decoration: none !important;
}
.p-hotNews--thumbnail li {
  max-width: 200px;
  min-width: 140px;
  margin-top: 20px;
  width: calc(100% - 60px)/4;
}
.p-hotNews--thumbnail .p-newsList-title {
  font-weight: normal;
  font-size: 1.4rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.p-hotNews--thumbnail .p-newsList--thumbnail__img.c-boxList__img {
  max-height: 200px;
  min-height: 140px;
  height: 100%;
}

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

@media (max-width: 768px) {
  .p-hotNews .c-flex > .c-lineList {
    width: 100%;
  }
  .p-hotNews .c-flex > .c-lineList > li > a {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    color: #373d3f;
  }
  .p-hotNews .c-flex > .c-lineList > li > a:hover {
    opacity: 0.6;
  }
  .p-hotNews .c-flex > .c-lineList > li > a:hover h3 {
    text-decoration: none;
  }
  .p-hotNews .c-flex > .c-lineList h3 {
    font-weight: bold;
  }
  .p-hotNews .p-hotNews__text {
    display: block;
    width: calc(100% - 80px - 12px);
    /*Chrome用*/
    overflow: hidden;
  }
  .p-hotNews .c-ico {
    height: 1rem;
    top: 0;
  }
  .p-hotNews .c-ico::before {
    font-size: 2rem;
  }
  .p-hotNews .c-label {
    top: -3px;
    font-size: 1rem;
  }
  .p-hotNews--thumbnail.c-boxList {
    margin: 10px 0 0 0;
  }
  .p-hotNews--thumbnail.c-boxList .c-boxList__img {
    height: 80px;
  }
  .p-hotNews--thumbnail li {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .p-hotNews--thumbnail li + li {
    border-top: #eaedef 1px solid;
  }
  .p-hotNews--thumbnail li:last-child {
    border-bottom: #eaedef 1px solid;
  }
  .p-hotNews--thumbnail a {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    color: #373d3f;
    text-decoration: none;
    padding: 10px 0;
  }
  .p-hotNews--thumbnail a:hover {
    opacity: 0.6;
  }
  .p-hotNews--thumbnail a:hover h3 {
    text-decoration: none;
  }
  .p-hotNews--thumbnail .p-newsList-title {
    width: calc(100% - 80px - 12px);
    display: inline;
    font-weight: bold;
  }
  .p-hotNews--thumbnail .p-newsList--thumbnail__img.c-boxList__img {
    width: 80px;
    height: 80px;
    max-height: auto;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    margin: 0 12px 0 0;
  }
  .p-hotNews--thumbnail .p-newsList--thumbnail__img.c-boxList--pr__img {
    background-color: white;
  }
  .p-hotNews__img {
    box-sizing: border-box;
    width: 80px;
    height: 80px;
    position: relative;
    background-color: #f0f0f0;
    margin: 0 12px 0 0;
  }
  .p-hotNews__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-hotNews__img--pr {
    background-color: white;
  }
}
@media (max-width: 480px) {
  .p-hotNews .c-flex {
    margin-top: 0;
  }
  .p-hotNews--thumbnail.c-boxList {
    margin: 0;
  }
}
/* ==========================================================================
	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;
  }
}
/* ==========================================================================
	checkNew
========================================================================== */
.p-checkNew .c-heading--main small {
  margin-left: 0;
  font-size: 1.6rem;
  font-weight: bold;
}
.p-checkNew .js-leadText {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.p-checkNew .c-boxList {
  justify-content: flex-start;
}
.p-checkNew .c-boxList > li:not(:last-of-type) {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .p-checkNew .c-heading--main small {
    display: inline-block;
    font-size: 1.4rem;
  }
  .p-checkNew .c-boxList {
    justify-content: space-between;
  }
  .p-checkNew .c-boxList > li {
    max-width: inherit;
  }
  .p-checkNew .c-boxList > li:not(:last-of-type) {
    margin-right: inherit;
  }
  .p-checkNew .c-boxList > li .c-boxList__img {
    height: 120px;
  }
}
@media (max-width: 480px) {
  .p-checkNew .c-heading--main small {
    display: block;
  }
  .p-checkNew .c-boxList > li {
    max-width: 144px;
  }
  .p-checkNew .c-boxList > li .c-boxList__img {
    height: 80px;
  }
}
/* ==========================================================================
	exchange
========================================================================== */
.p-exchange .c-heading {
  display: flex;
  flex-wrap: wrap;
}
.p-exchange .c-heading span {
  flex-wrap: nowrap;
  margin-left: auto;
  font-size: 1.2rem;
  font-weight: normal;
  color: #91a1a6;
}
.p-exchange .c-flex {
  justify-content: space-between;
  align-items: center;
}
.p-exchange .c-lineList {
  margin-top: 10px;
}
.p-exchange .c-lineList > li {
  padding: 10px 0;
}
.p-exchange .c-lineList > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-exchange__type {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
.p-exchange__type > img {
  width: auto;
  max-height: 35px;
  margin-bottom: 4px;
}

.p-exchange__rate {
  font-size: 1.2rem;
  text-align: center;
}

.p-exchange__change {
  font-size: 1.2rem;
  text-align: center;
}

/* ==========================================================================
	weather
========================================================================== */
.p-weather {
  font-size: 1.2rem;
}
.p-weather .c-flex {
  width: 100%;
  justify-content: space-between;
  margin: 20px 0;
}

.p-weather__prefectures,
.p-weather__area {
  box-sizing: border-box;
  position: relative;
  width: 45%;
}
.p-weather__prefectures select,
.p-weather__area select {
  border-radius: 4px;
  width: 100%;
  padding: 4px;
  border: 1px solid #91a1a6;
  font-size: 1.2rem;
}
.p-weather__prefectures select option,
.p-weather__area select option {
  padding: 4px;
  color: #373d3f;
  background-color: white;
  border: 1px solid #91a1a6;
}
.p-weather__prefectures select option:hover,
.p-weather__area select option:hover {
  color: white;
  background-color: #ffce33;
}
.p-weather__prefectures::after,
.p-weather__area::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 900;
  content: "\f107";
  pointer-events: none;
  color: #91a1a6;
}

.p-weather__ttl {
  font-size: 1.4rem;
  text-align: center;
}

.p-weather__list {
  display: flex;
  flex-wrap: nowrap;
}
.p-weather__list > li {
  box-sizing: border-box;
  width: 33.3333333333%;
  text-align: center;
}
.p-weather__list > li + li {
  border-left: 1px solid #cccccc;
}

.p-weather__ico {
  box-sizing: border-box;
  position: relative;
  width: 80px;
  height: 40px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}

.p-weather__ico--default::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #373d3f;
}

.p-weather__ico--100 {
  background-image: url("../../images/static/weather/sun.svg?tm=20190207");
}

.p-weather__ico--101 {
  background-image: url("../../images/static/weather/sun.svg?tm=20190207"), url("../../images/static/weather/cloud.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--101::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--102 {
  background-image: url("../../images/static/weather/sun.svg?tm=20190207"), url("../../images/static/weather/rain.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--102::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--104 {
  background-image: url("../../images/static/weather/sun.svg?tm=20190207"), url("../../images/static/weather/snow.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--104::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--110 {
  background-image: url("../../images/static/weather/sun.svg?tm=20190207"), url("../../images/static/weather/cloud.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--110::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--112 {
  background-image: url("../../images/static/weather/sun.svg?tm=20190207"), url("../../images/static/weather/rain.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--112::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--115 {
  background-image: url("../../images/static/weather/sun.svg?tm=20190207"), url("../../images/static/weather/snow.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--115::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--200 {
  background-image: url("../../images/static/weather/cloud.svg?tm=20190207");
}

.p-weather__ico--201 {
  background-image: url("../../images/static/weather/cloud.svg?tm=20190207"), url("../../images/static/weather/sun.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--201::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--202 {
  background-image: url("../../images/static/weather/cloud.svg?tm=20190207"), url("../../images/static/weather/rain.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--202::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--204 {
  background-image: url("../../images/static/weather/cloud.svg?tm=20190207"), url("../../images/static/weather/snow.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--204::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--210 {
  background-image: url("../../images/static/weather/cloud.svg?tm=20190207"), url("../../images/static/weather/sun.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--210::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--212 {
  background-image: url("../../images/static/weather/cloud.svg?tm=20190207"), url("../../images/static/weather/rain.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--212::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--215 {
  background-image: url("../../images/static/weather/cloud.svg?tm=20190207"), url("../../images/static/weather/snow.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--215::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--300 {
  background-image: url("../../images/static/weather/rain.svg?tm=20190207");
}

.p-weather__ico--301 {
  background-image: url("../../images/static/weather/rain.svg?tm=20190207"), url("../../images/static/weather/sun.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--301::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--302 {
  background-image: url("../../images/static/weather/rain.svg?tm=20190207"), url("../../images/static/weather/cloud.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--302::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--303 {
  background-image: url("../../images/static/weather/rain.svg?tm=20190207"), url("../../images/static/weather/snow.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--303::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--308 {
  background-image: url("../../images/static/weather/storm.svg?tm=20190207");
}

.p-weather__ico--311 {
  background-image: url("../../images/static/weather/rain.svg?tm=20190207"), url("../../images/static/weather/sun.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--311::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--313 {
  background-image: url("../../images/static/weather/rain.svg?tm=20190207"), url("../../images/static/weather/cloud.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--313::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--314 {
  background-image: url("../../images/static/weather/rain.svg?tm=20190207"), url("../../images/static/weather/snow.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--314::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--400 {
  background-image: url("../../images/static/weather/snow.svg?tm=20190207");
}

.p-weather__ico--401 {
  background-image: url("../../images/static/weather/snow.svg?tm=20190207"), url("../../images/static/weather/sun.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--401::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--402 {
  background-image: url("../../images/static/weather/snow.svg?tm=20190207"), url("../../images/static/weather/cloud.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--402::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--403 {
  background-image: url("../../images/static/weather/snow.svg?tm=20190207"), url("../../images/static/weather/rain.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--403::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--406 {
  background-image: url("../../images/static/weather/blizzard.svg?tm=20190207");
}

.p-weather__ico--411 {
  background-image: url("../../images/static/weather/snow.svg?tm=20190207"), url("../../images/static/weather/sun.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--411::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--413 {
  background-image: url("../../images/static/weather/snow.svg?tm=20190207"), url("../../images/static/weather/cloud.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--413::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--414 {
  background-image: url("../../images/static/weather/snow.svg?tm=20190207"), url("../../images/static/weather/rain.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--414::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--700 {
  background-image: url("../../images/static/weather/moon.svg?tm=20190207");
}

.p-weather__ico--701 {
  background-image: url("../../images/static/weather/moon.svg?tm=20190207"), url("../../images/static/weather/cloud.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--701::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--702 {
  background-image: url("../../images/static/weather/moon.svg?tm=20190207"), url("../../images/static/weather/rain.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--702::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--703 {
  background-image: url("../../images/static/weather/moon.svg?tm=20190207"), url("../../images/static/weather/snow.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--703::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--704 {
  background-image: url("../../images/static/weather/cloud.svg?tm=20190207"), url("../../images/static/weather/moon.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--704::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--705 {
  background-image: url("../../images/static/weather/rain.svg?tm=20190207"), url("../../images/static/weather/moon.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--705::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--706 {
  background-image: url("../../images/static/weather/snow.svg?tm=20190207"), url("../../images/static/weather/moon.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--706::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--707 {
  background-image: url("../../images/static/weather/moon.svg?tm=20190207"), url("../../images/static/weather/cloud.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--707::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--708 {
  background-image: url("../../images/static/weather/moon.svg?tm=20190207"), url("../../images/static/weather/rain.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--708::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--709 {
  background-image: url("../../images/static/weather/moon.svg?tm=20190207"), url("../../images/static/weather/snow.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--709::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--710 {
  background-image: url("../../images/static/weather/cloud.svg?tm=20190207"), url("../../images/static/weather/moon.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--710::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--711 {
  background-image: url("../../images/static/weather/rain.svg?tm=20190207"), url("../../images/static/weather/moon.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--711::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__ico--712 {
  background-image: url("../../images/static/weather/snow.svg?tm=20190207"), url("../../images/static/weather/moon.svg?tm=20190207");
  background-position: left center, right center;
}
.p-weather__ico--712::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #373d3f;
}

.p-weather__temperature {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.p-weather__temperature--low {
  color: #0082c3;
}
.p-weather__temperature--higt {
  color: #cc3838;
  position: relative;
}
.p-weather__temperature--higt::before {
  content: "|";
  display: inline-block;
  margin: 0 2px;
  color: #373d3f;
}

.p-weather__precipitation li + li {
  margin-top: 4px;
}

/* ==========================================================================
	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;
}

/* //////////////////////////////////////////////////////////////////////////
   Component
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Utility
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Plugin
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Project
////////////////////////////////////////////////////////////////////////// */
/*# sourceMappingURL=maps/detail.css.map */