@charset "UTF-8";
/*
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700");
*/
/**

  @mixin
---------------------------------------------------------
  _clearfix.scss
--------------------------------------------------------
  Use @include clearfix(); in your CSS
--------------------------------------------------------- */
/**
  @breakpoints mixin
-----------------------------------------------------
@include for-size(phone-only){}
@include for-size(tablet-portrait-up){}
@include for-size(tablet-landscape-up){}
@include for-size(desktop){}
@include for-size(desktop-up){}
-----------------------------------------------------  
@mixin for-size($size) {
  @if $size == phone-only {//スマホオンリー
    @media all and  (max-width: 640px) { @content; }
  } @else if $size == tablet-portrait-up {
    @media all and  (min-width: 639px) { @content; }
  } @else if $size == tablet-landscape-up {
    @media all and  (min-width: 885px) { @content; }
  }  @else if $size == desktop { 
    @media all and  (min-width: 1000px) { @content; }
  }  @else if $size == desktop-up { 
    @media all and  (min-width: 1300px) { @content; }
  } 
}*/
/**
  @breakpoints mixin (PC-first)
-----------------------------------------------------

-----------------------------------------------------  */
/**
  @bgimg.scss bgimg 
--------------------------------------------------------
  Use @include bgimg(); in your CSS
--------------------------------------------------------- */
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 
@include base-text2($size); 
@include base-text_en($size);
in your CSS
--------------------------------------------------------- */
/**
  @align-height
--------------------------------------------------------
@include align-height(); in your CSS
--------------------------------------------------------- */
/**
  @link_button
--------------------------------------------------------
@include link_button($width,$SP_width); in your CSS
--------------------------------------------------------- */
/*--------------------------------------------------------------
下層ページ　コンテンツレイアウト(左右半々)
ページ共通
----HTML---------------------------------------------------------------
<div class="listA">
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
   <div class="listA__item__inner__right">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
  </div>
 </div>
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img class="_sp" src="https://placehold.jp/150x150.png" alt="">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
   <div class="listA__item__inner__right">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
  </div>
 </div>
</div>
-----css--------------------------------------------------------------
.listA{
 @include sec_content_listA();
}
-------------------------------------------------------------------*/
/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerA {
  display: table;
  width: 100%;
}

@media all and (max-width: 639px) {
  .innerA {
    display: block;
  }
}

.innerA .left, .innerA .right {
  width: 48%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerA .left, .innerA .right {
    width: 100%;
    float: none;
  }
}

.innerA .right {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerA .right {
    margin-left: 0;
    margin-top: 15px;
  }
}

.innerA .left_s {
  width: 30%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerA .left_s {
    width: 100%;
    float: none;
  }
}

.innerA .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerA .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  display: table;
  width: 100%;
}

@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}

.innerB .left, .innerB .right {
  width: 48%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left, .innerB .right {
    width: 100%;
    float: none;
  }
}

.innerB .right {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}

.innerB .left_s {
  width: 30%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}

.innerB .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

/*-----------------------------------------------------------------------------
ぶろぐ
<section id="entry" class="common_page__sec">
 <div class="single">
 <div class="nakaA">
  <h3>新着情報</h3>
  <div class="entry__cotent">
   <p class="data"><span>2018.09.20</span></p>
   <p class="entry__title">
   タイトルホームページを公開致しました</p>

   <div class="entry__cotent__text">
   本文ホームページを公開致しました</div>
   </div>
  </div>
 </div>
</section>
--------------------------------------------------------------------------------*/
#entry {
  margin-top: 50px;
  padding-bottom: 100px;
}

@media all and (max-width: 800px) {
  #entry {
    padding-bottom: 50px;
  }
}

#entry .entry__cotent {
  background: #fff;
  padding: 30px;
  font-family: "YakuHanJP", "Noto Sans JP";
}

@media all and (max-width: 800px) {
  #entry .entry__cotent {
    padding: 15px;
  }
}

#entry .entry__cotent .data span {
  background: #F2F2F2;
  padding: .3em .5em;
}

#entry .entry__cotent .entry__title {
  border-bottom: 1px solid #ff8000;
  margin-bottom: 15px;
  margin-top: 15px;
  color: #ff8000;
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .1em;
  font-weight: 900;
}

#entry .entry__cotent .entry__cotent__text {
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通

#page_top{
 @include page_top();
}
-------------------------------------------------------------------*/
/*------------------------------------------------------
下層ページパンくず共通
<div id="pankuzu_list">
    <div class="box">
     <div class="nakaA">
      <ul>
       <li>
        <a href="">TOP</a>
       </li>
       <li>会社概要</li>
      </ul>
     </div>
    </div>
   </div>

#pankuzu_list{
 @include pankuzu_list();
}
 in your CSS
-------------------------------------------------*/
#pc-price_2 {
  margin-top: 170px;
}

@media all and (max-width: 639px) {
  #pc-price_2 {
    margin-top: 50px;
  }
}

#pc-price_2 h4 {
  text-align: center;
  font-size: 40px;
  font-family: "YakuHanJP","Noto Sans Japanese";
  letter-spacing: .02em;
  font-weight: 300;
  color: $base_color;
  text-align: center;
  margin-bottom: 80px;
}

@media all and (max-width: 639px) {
  #pc-price_2 h4 {
    margin-bottom: 50px;
  }
}

#pc-price_2 .section-contents {
  width: 976px;
  padding: 0;
  display: block;
  margin: auto;
}

@media all and (max-width: 974px) {
  #pc-price_2 .section-contents {
    width: 100%;
  }
}

#pc-price_2 .section-contents ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 800px) {
  #pc-price_2 .section-contents ul {
    display: block;
  }
}

#pc-price_2 .section-contents ul li {
  width: 20%;
  position: relative;
  height: 100%;
}

@media all and (max-width: 800px) {
  #pc-price_2 .section-contents ul li {
    width: 100%;
    margin-bottom: 50px;
  }
  #pc-price_2 .section-contents ul li:last-child {
    margin-bottom: 0;
  }
}

#pc-price_2 .section-contents ul li:before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background: $base_color;
  position: absolute;
  top: 0;
  left: 0;
}

@media all and (max-width: 800px) {
  #pc-price_2 .section-contents ul li:before {
    display: none;
  }
}

#pc-price_2 .section-contents ul li:last-child:after {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background: $base_color;
  position: absolute;
  top: 0;
  right: 0;
}

@media all and (max-width: 800px) {
  #pc-price_2 .section-contents ul li:last-child:after {
    display: none;
  }
}

#pc-price_2 .section-contents ul li .pc-price_2__item .read {
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .1em;
  text-align: center;
  font-weight: 500;
  padding: 15px 10px;
  border-bottom: 3px solid $base_color;
  color: $base_color;
}

@media all and (max-width: 800px) {
  #pc-price_2 .section-contents ul li .pc-price_2__item .read {
    background: $base_color;
    border-bottom: 0;
    color: #fff;
  }
}

@media all and (max-width: 639px) {
  #pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__sp_table {
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main {
  padding: 15px 15px 0;
  margin-top: 15px;
}

@media all and (max-width: 639px) {
  #pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main {
    width: 50%;
    margin-top: 0;
  }
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .read_sub {
  background: #F2F2F2;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: .1em;
  margin-bottom: 5px;
  padding: .3em 0;
  font-weight: 400;
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .nedan {
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .1em;
  text-align: right;
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .nedan:before {
  content: "月々";
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: .1em;
  font-weight: 400;
  display: inline-block;
  letter-spacing: 0em;
  display: inline-block;
  border: 1px solid #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding-top: 6px;
  vertical-align: text-bottom;
  text-align: center;
  margin-right: 5px;
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .nedan span {
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-weight: 300;
  font-size: 36px;
  font-size: 2.25rem;
}

@media all and (max-width: 639px) {
  #pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .nedan span {
    font-size: 28px;
  }
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main.orange .read_sub {
  background: #ff8000;
  color: #fff;
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main.orange .nedan {
  color: #ff8000;
  font-weight: 500;
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main.orange .nedan:before {
  display: none;
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main.orange .nedan span {
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-weight: 300;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1em;
}

@media all and (max-width: 639px) {
  #pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main.orange .nedan span {
    font-size: 30px;
    line-height: 1.4em;
  }
}

@media all and (max-width: 639px) {
  #pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main.sp_full {
    width: 100%;
  }
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .orange2 {
  background: rgba(255, 128, 0, 0.1);
  padding: 10px;
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .orange2 .read_sub {
  background: #fff;
  color: $base_color;
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .orange2 .nedan {
  color: #ff8000;
  position: relative;
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .orange2 .nedan:before {
  display: none;
}

@media all and (max-width: 639px) {
  #pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .orange2 .nedan {
    text-align: center;
  }
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .orange2 .nedan span {
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-weight: 300;
  font-size: 30px;
  font-size: 1.875rem;
}

@media all and (max-width: 639px) {
  #pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .orange2 .nedan span {
    font-size: 28px;
  }
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .orange2 .nedan span.min {
  font-size: 22px;
  text-align: left;
  font-weight: 400;
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .orange2 .nedan span.min:before {
  content: "月々";
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: .1em;
  font-weight: 400;
  display: inline-block;
  letter-spacing: 0em;
  border-radius: 50%;
  vertical-align: text-bottom;
  text-align: center;
  margin-right: 5px;
  width: 30px;
  height: 30px;
  border: none;
  background: #fff;
  font-size: 10px;
  padding-top: 7px;
  position: absolute;
  left: 0;
}

#pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .orange2 .nedan span._plas {
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: .1em;
  line-height: 1em;
  display: block;
  margin-top: -.3em;
  color: $base_color;
}

@media all and (max-width: 639px) {
  #pc-price_2 .section-contents ul li .pc-price_2__item .pc-price_2__item__main .orange2 .nedan span._plas {
    display: inline-block;
  }
}

.pc_voc .bottom {
  margin-top: 80px;
}

.pc_voc .bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pc_voc .bottom ul li {
  width: 20%;
  padding: 10px;
  margin-bottom: 15px;
}

.pc_voc .bottom ul li img {
  width: 100%;
}

.pc_voc .bottom .bottom_text {
  text-align: right;
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  font-weight: 500;
}

#price_2 {
  margin-top: 170px;
}

#price_2 .price__contents__top .price__contents__top_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner {
    display: block;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__left {
  width: 40%;
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__left {
    width: 100%;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__left h4 {
  margin-top: 40px;
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: .1em;
  color: $base_color;
  font-weight: 400;
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__left h4 span {
  display: block;
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: .1em;
  margin-top: 15px;
}

@media all and (max-width: 800px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__left h4 {
    margin-top: 20px;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__left .price__contents__top_inner__left__bottom {
  margin-top: 10px;
}

@media all and (max-width: 800px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__left .price__contents__top_inner__left__bottom {
    margin-top: 30px;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__left .price__contents__top_inner__left__bottom .sub_read {
  color: $base_color;
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 23px;
  font-size: 1.4375rem;
  letter-spacing: .1em;
  font-weight: 500;
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__left .price__contents__top_inner__left__bottom .main {
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  margin-top: 10px;
}

@media all and (max-width: 800px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__left .price__contents__top_inner__left__bottom .main {
    padding-right: 30px;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__left .price__contents__top_inner__left__bottom .main.orange {
  color: #ff8000;
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right {
  width: 60%;
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right {
    width: 100%;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul {
    display: block;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li {
  width: 33.33333333%;
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li {
    width: 100%;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li img {
  width: 100%;
  display: block;
  margin: auto;
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .read {
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 23px;
  font-size: 1.4375rem;
  letter-spacing: .1em;
  font-weight: 700;
  margin: 0 0 10px;
}

@media all and (max-width: 800px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .read {
    font-size: 20px;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top {
  background: #4d4d4d;
  padding: 15px;
  color: #fff;
  text-align: center;
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top .sub_read {
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  margin-bottom: 5px;
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top .nedan {
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .1em;
  font-weight: 400;
}

@media all and (max-width: 800px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top .nedan {
    font-size: 14px;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top .nedan span {
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-weight: 300;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1em;
  margin-right: 5px;
  letter-spacing: 0;
}

@media all and (max-width: 800px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top .nedan span {
    font-size: 27px;
  }
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top .nedan span {
    font-size: 27px;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top.greey2 {
  background: rgba(77, 77, 77, 0.1);
  color: #4d4d4d;
  padding: 10px 15px;
}

@media all and (max-width: 800px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top.greey2 {
    padding: 20px 15px;
  }
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top.greey2 {
    padding: 10px 15px;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top.greey2 .nedan span {
  font-size: 30px;
}

@media all and (max-width: 800px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top.greey2 .nedan span {
    font-size: 20px;
  }
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li .price_2__item__top.greey2 .nedan span {
    font-size: 30px;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li:nth-child(1) .read {
  color: #4d4d4d;
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li:nth-child(1) .price_2__item__top {
  margin-right: 4px;
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li:nth-child(1) .price_2__item__top {
    margin: 0;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li:nth-child(2) .read {
  color: $base_color;
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li:nth-child(2) .price_2__item__top {
  margin: 0 2px;
  background: $base_color;
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li:nth-child(2) .price_2__item__top {
    margin: 0;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li:nth-child(2) .price_2__item__top.greey2 {
  background: rgba(0, 0, 91, 0.1);
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li:nth-child(3) .read {
  color: #ff8000;
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li:nth-child(3) .price_2__item__top {
  margin-left: 4px;
  background: #ff8000;
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li:nth-child(3) .price_2__item__top {
    margin: 0;
  }
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li:nth-child(3) .price_2__item__top.greey2 {
  background: rgba(255, 128, 0, 0.1);
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li ._sp_contes {
  display: none;
  border: 1px solid #F2F2F2;
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li ._sp_contes li {
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  background: #fff;
  padding: .8em .5em;
}

#price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li ._sp_contes li:nth-child(even) {
  background: #F2F2F2;
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__top .price__contents__top_inner .price__contents__top_inner__right ul li ._sp_contes {
    display: block;
  }
}

#price_2 .price__contents__bottom {
  margin-top: 10px;
  border-top: 3px solid $base_color;
  border-bottom: 3px solid $base_color;
}

@media all and (max-width: 639px) {
  #price_2 .price__contents__bottom {
    display: none;
  }
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc {
  width: 100%;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc .left {
  width: 40%;
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc .left ul li {
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .1em;
  padding: 15px;
  color: $base_color;
  background: #f9f9f9;
  line-height: 1.1em;
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc .left ul li:nth-child(even) {
  background: #f1f1f1;
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc .right {
  width: 60%;
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc .right .right__contens {
  width: 100%;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc .right .right__contens .right__contens__main {
  width: 33.33333333%;
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc .right .right__contens .right__contens__main .right__contens__main__inner ul li {
  font-family: "YakuHanJP", "Noto Sans JP";
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .1em;
  padding: 15px;
  color: #ff8000;
  background: #f9f9f9;
  text-align: center;
  line-height: 1em;
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc .right .right__contens .right__contens__main .right__contens__main__inner ul li.bea {
  color: #4d4d4d;
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc .right .right__contens .right__contens__main .right__contens__main__inner ul li.sta {
  color: $base_color;
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc .right .right__contens .right__contens__main .right__contens__main__inner ul li.off {
  color: #fff;
}

#price_2 .price__contents__bottom .price__contents__bottom__inner_pc .right .right__contens .right__contens__main .right__contens__main__inner ul li:nth-child(even) {
  background: #f1f1f1;
}

#price {
  margin-top: 60px;
}

@media all and (max-width: 639px) {
  #price {
    margin-top: 40px;
  }
}

#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text {
  padding: 0;
}

#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text ul {
  padding: 15px;
}

#price .price__contents__middle .price__contents__middle__item.left .price__contents__middle__item__text ul li {
  margin-right: 1.5em;
  margin-bottom: .8em;
}

#price .price__contents__bottom .price__contents__middle__item {
  background: none;
  width: 100%;
  float: none;
  margin-right: 0;
}

#price .price__contents__bottom .price__contents__middle__item .price__contents__middle__item__title {
  text-align: left;
  color: #333;
  font-size: 14px;
}

@media all and (max-width: 639px) {
  #lineup {
    margin-top: 100px;
  }
}
/*# sourceMappingURL=style_2.css.map */