@charset "UTF-8";
/*----------------------------------------------------
グローバルナビブレイクポイント
/* ハンバーガーメニューの切り替わるポイント。
----------------------------------------------------*/
/* gnav.jsの変数「gNav_bpoint」も数値を合わせる */
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* slickのautoスライドの時などに、画面をタップするとスライドが動かなくなるのを防ぐ */
/* safariでボタンを押した際に出てくる青枠を消す */
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
よく使う疑似要素、小技
----------------------------------------------------*/
/* ボックス影 */
/* 反転*/
/* 文字幅が指定幅を超えたときに「...」を表示する */
/* icon 横にぐるっと回転 */
/* 親要素よりも幅を超えて表示 */
/* 矢印 */
/*----------------------------------------------------
矢印つきボタン
----------------------------------------------------*/
/*----------------------------------------------------
読み込み
----------------------------------------------------*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/* Light/Medium */
/* Regular/Medium */
/*----------------------------------------------------
google font
----------------------------------------------------*/
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------

//html例：<p>テキスト<a href="" class="link_text">こちら</a>テキス</p>

----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
中央から下線 

//html例：<a class="link" href="><span>home</span></a>
----------------------------------------------------*/
/*----------------------------------------------------
左から下線 

//html例：<a class="link_L" href="><span>home</span></a>
----------------------------------------------------*/
/*----------------------------------------------------
グローバルナビブレイクポイント
/* ハンバーガーメニューの切り替わるポイント。
----------------------------------------------------*/
/* gnav.jsの変数「gNav_bpoint」も数値を合わせる */
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* slickのautoスライドの時などに、画面をタップするとスライドが動かなくなるのを防ぐ */
/* safariでボタンを押した際に出てくる青枠を消す */
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
よく使う疑似要素、小技
----------------------------------------------------*/
/* ボックス影 */
/* 反転*/
/* 文字幅が指定幅を超えたときに「...」を表示する */
/* icon 横にぐるっと回転 */
/* 親要素よりも幅を超えて表示 */
/* 矢印 */
/*----------------------------------------------------
矢印つきボタン
----------------------------------------------------*/
/*----------------------------------------------------
読み込み
----------------------------------------------------*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/* Light/Medium */
/* Regular/Medium */
/*----------------------------------------------------
google font
----------------------------------------------------*/
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------

//html例：<p>テキスト<a href="" class="link_text">こちら</a>テキス</p>

----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
中央から下線 

//html例：<a class="link" href="><span>home</span></a>
----------------------------------------------------*/
/*----------------------------------------------------
左から下線 

//html例：<a class="link_L" href="><span>home</span></a>
----------------------------------------------------*/
/*----------------------------------------------------
フェードイン
----------------------------------------------------*/
/*----------------------------------------------------
上下左右に消える
----------------------------------------------------*/
/* 下にスッと消える*/
/* 上にスッと消える*/
/*----------------------------------------------------
上下左右から表示
----------------------------------------------------*/
/* 下から上にフワッと出てくる */
/* 上から下にフワッと出てくる */
/* 左から右にスッと出てくる*/
/* 右から左にスッと出てくる*/
/*----------------------------------------------------
bgが左右から流れ、その後、テキストが表示される。

.bg_fromLeft_toRight {
 @include bg_fromLeft_toRight;
}

html構成
<div class=" target">
  <span>
    <img src="<?php echo get_template_directory_uri(); ?>/assets/images/top/introduction/catch.png" alt="写真も、動画も。無限の可能性を撮る">
  </span>
</div>
----------------------------------------------------*/
/* 左から右に流れる */
/* 右から左に流れる */
/*----------------------------------------------------
ふわふわ 動き続ける
----------------------------------------------------*/
/* 上下にふわふわ */
/* ホバーすると上にテキストが透明になって、下から出てくる */
@-webkit-keyframes textMove {
  0% {
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(1em);
            transform: translateY(1em);
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes textMove {
  0% {
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(1em);
            transform: translateY(1em);
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/* くるくる回り続ける */
@-webkit-keyframes fadeUpAnimeCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes fadeUpAnimeCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 60px;
  padding: 40px 0;
  background: url(../images/smile/top/buken/bg.jpg);
}
@media all and (min-width: 1131px) {
  main {
    margin-top: 80px;
    padding: 68px 0;
  }
}
main.sale {
  background-image: url(../images/smile/top/buken/bg_sale.jpg);
  color: #4E3D2A;
}

.detailHead {
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 3px 4px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 4px 1px rgba(0, 0, 0, 0.1);
  padding: 12px 20px 14px 24px;
  border-left: solid 4px #2662B4;
}
.detailHead .cat {
  display: inline-block;
  font-size: 11px;
  line-height: 15px;
  color: #2662B4;
  letter-spacing: 0.1em;
  margin: 0 0 0.5em;
  padding: 0 1em;
  border: solid 1px #2662B4;
  border-radius: 100vh;
  vertical-align: top;
}
.detailHead .title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.detailHead {
  /* 751- */
}
@media all and (min-width: 751px) {
  .detailHead {
    padding: 20px 20px 20px 32px;
    border-left-width: 12px;
    letter-spacing: -0.4em;
  }
  .detailHead .cat {
    display: inline-block;
    font-size: 15px;
    line-height: 24px;
    margin: 0.16em 1.2em 0 0;
  }
  .detailHead .title {
    display: inline-block;
    font-size: 24px;
  }
}

main.sale .detailHead {
  border-left-color: #F09830;
}

/*----------------------------------------------------
フォーム
----------------------------------------------------*/
#form {
  margin: 36px 0 70px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #form {
    margin: 50px 0;
  }
}
#form .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 48px;
}
#form .title .main {
  background-color: #2662B4;
  width: 100%;
  font-size: 14px;
  text-align: left;
  padding-left: 1.6em;
}
#form .title .closebtn {
  background-color: #84B0ED;
  width: 84px;
  font-size: 12px;
  text-align: center;
}
#form .title .closebtn::after {
  display: inline-block;
  margin-left: 0.3em;
  font-size: 0.8em;
  content: "▲";
}
#form .title .closebtn.close::after {
  content: "▼";
}
#form .title {
  /* 751- */
}
@media all and (min-width: 751px) {
  #form .title {
    line-height: 60px;
  }
  #form .title .main {
    font-size: 16px;
  }
  #form .title .closebtn {
    cursor: pointer;
    width: 105px;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #form .title .closebtn:hover {
    background: #6496DC;
  }
  #form .title .closebtn::after {
    margin-left: 0.5em;
  }
}
#form .formBox {
  background-color: #fff;
  padding: 1px 12px 40px;
  font-size: 13px;
  line-height: 1.3;
}
#form .formBox.close {
  display: none;
}
#form .formBox h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
#form .formBox .cBox {
  letter-spacing: -0.4em;
}
#form .formBox .cBox li {
  display: inline-block;
  letter-spacing: normal;
  margin-top: 0.9em;
  padding-left: 1.7em;
  position: relative;
  line-height: 1.2;
}
#form .formBox .cBox li::before, #form .formBox .cBox li::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 1.2em;
  height: 1.2em;
  text-align: center;
  line-height: 1em;
}
#form .formBox .cBox li::before {
  background: #E2EBED;
  border-radius: 2px;
  border: solid 1px #CFE1E2;
}
#form .formBox .cBox li::after {
  opacity: 0;
  background: #18498B;
  width: 0.7em;
  height: 0.7em;
  margin: 0.3em 0 0 0.26em;
  border-radius: 100vh;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#form .formBox .cBox li.checked::after {
  opacity: 1;
}
#form .formBox .select .wrap {
  display: inline-block;
  position: relative;
}
#form .formBox .select .wrap::before {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "▼";
  display: block;
  width: 0.8em;
  height: 0.8em;
  font-size: 0.8em;
  margin-top: -0.4em;
  line-height: 1.1;
  color: #34373B;
  z-index: 2;
}
#form .formBox .select select {
  display: inline-block;
  background: #E2EBED;
  padding: 0.8em 1.2em;
  width: 120px;
}
#form .formBox .select .wave {
  margin: 0 0.5em;
}
#form .formBox {
  /* -750 */
}
@media all and (max-width: 751px) {
  #form .formBox .block {
    margin-top: 36px;
  }
  #form .formBox h3 {
    border-bottom: solid 1px #E4E4E4;
    padding-bottom: 8px;
  }
  #form .formBox .cBox li {
    width: 100%;
  }
  #form .formBox .cBox.area li {
    width: 50%;
  }
  #form .formBox .select {
    padding-top: 10px;
  }
}
#form .formBox {
  /* 751- */
}
@media all and (min-width: 751px) {
  #form .formBox {
    padding: 20px 45px 35px;
    font-size: 14px;
  }
  #form .formBox .block {
    position: relative;
    padding: 20px 0 0px 120px;
    border-bottom: solid 1px #E4E4E4;
  }
  #form .formBox h3 {
    position: absolute;
    top: 20px;
    left: 0;
  }
  #form .formBox .cBox li {
    margin: 0 30px 20px 0;
    cursor: pointer;
  }
  #form .formBox .select {
    padding-bottom: 20px;
  }
  #form .formBox .select select {
    padding: 0.8em 1.4em;
    width: 140px;
  }
}
#form .btn_area {
  margin-top: 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#form .btn_area .submit_btn,
#form .btn_area .reset_btn {
  width: 100%;
  max-width: 150px;
}
#form .btn_area .submit_btn {
  padding-right: 20px;
}
#form .btn_area .reset_btn {
  padding-left: 20x;
}
@media screen and (max-width: 350px) {
  #form .btn_area .submit_btn {
    padding-right: 0;
    margin-bottom: 10px;
  }
  #form .btn_area .reset_btn {
    padding-left: 0;
  }
}
#form .btn_area input,
#form .btn_area button {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #ffffff;
  background: #2662B4;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 38px;
  text-align: center;
  border-radius: 100vh;
  width: 100%;
  max-width: 176px;
  margin: 0 auto;
  border: solid 1px #2662B4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.15));
}
#form .btn_area button {
  background: #42A9AD;
  border: solid 1px #42A9AD;
}
#form .btn_area {
  /* 751- */
}
@media all and (min-width: 751px) {
  #form .btn_area {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  #form .btn_area .submit_btn,
  #form .btn_area .reset_btn {
    width: 176px;
    max-width: none;
  }
  #form .btn_area .submit_btn {
    padding-right: 8px;
  }
  #form .btn_area .reset_btn {
    padding-left: 8px;
  }
  #form .btn_area input,
  #form .btn_area button {
    font-size: 14px;
    line-height: 40px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #form .btn_area input:hover,
  #form .btn_area button:hover {
    color: #42A9AD;
    background: #FFFFFF;
  }
}

main.sale #form .title .main {
  background-color: #F09830;
}
main.sale #form .title .closebtn {
  background-color: #FFB966;
}
main.sale #form .title {
  /* 751- */
}
@media all and (min-width: 751px) {
  main.sale #form .title .closebtn:hover {
    background: #FDA845;
  }
}
main.sale #form .formBox .block {
  padding-left: 0;
}
main.sale #form .formBox .cBox li::before {
  background: #FFF1DE;
  border-color: #FFD098;
}
main.sale #form .formBox .cBox li::after {
  background: #F09830;
}
main.sale #form .btn_area input {
  background: #F09830;
  border-color: #F09830;
  /* 751- */
}
@media all and (min-width: 751px) {
  main.sale #form .btn_area input:hover {
    color: #F09830;
    background: #FFFFFF;
  }
}
main.sale #form .btn_area button {
  background: #4E3D2A;
  border-color: #4E3D2A;
  /* 751- */
}
@media all and (min-width: 751px) {
  main.sale #form .btn_area button:hover {
    color: #4E3D2A;
    background: #FFFFFF;
  }
}

/*----------------------------------------------------
検索結果
----------------------------------------------------*/
#searchResult {
  border-bottom: 4px solid white;
  padding-bottom: 20px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#searchResult .number {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: bold;
}
#searchResult .number span {
  display: inline-block;
  margin: 0 10px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 37px;
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: bold;
  color: #18498B;
}
#searchResult .number {
  /* 751- */
}
@media all and (min-width: 751px) {
  #searchResult .number {
    font-size: 17px;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  #searchResult .number span {
    font-size: 60px;
    letter-spacing: -0.04em;
    line-height: 1;
  }
}
#searchResult .selectBtn {
  display: inline-block;
  background-color: #fff;
  padding: 5px 69px 5px 20px;
  border-radius: 46px;
  font-weight: bold;
  position: relative;
  -webkit-box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.16);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.6667;
}
#searchResult .selectBtn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #CFE1E2 transparent transparent transparent;
  border-width: 10px 6px;
  right: 10px;
  top: 12px;
}

main.sale #searchResult .number span {
  color: #4E3D2A;
}
main.sale #searchResult .selectBtn::before {
  border-top-color: #F09830;
}

/*----------------------------------------------------
物件リスト
----------------------------------------------------*/
#bukenList .titleArea {
  background: #2662B4;
  padding: 51px 0 70px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #bukenList .titleArea {
    padding: 59px 0 81px;
  }
}
#bukenList .ltCat {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #bukenList .ltCat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 30px 0;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    font-size: 13px;
  }
  #bukenList .ltCat a {
    background-color: #2662B4;
    border: solid 1px #2662B4;
    padding: 3px 10px;
    color: #ffffff;
    border-radius: 46px;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
  #bukenList .ltCat a:hover {
    color: #2662B4;
    background-color: #ffffff;
  }
}
#bukenList {
  /* 物件一覧 */
}
#bukenList .lt {
  /* -750 */
}
@media all and (max-width: 751px) {
  #bukenList .lt {
    margin-bottom: 40px;
  }
  #bukenList .lt li {
    margin-bottom: 23px;
  }
}
#bukenList .lt {
  /* 751- */
}
@media all and (min-width: 751px) {
  #bukenList .lt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 40px;
    -webkit-column-gap: 29px;
       -moz-column-gap: 29px;
            column-gap: 29px;
    margin-bottom: 40px;
  }
  #bukenList .lt li {
    width: 47%;
  }
}
#bukenList .lt {
  /* CT⇨センターの意味*/
}
@media all and (min-width: 1101px) {
  #bukenList .lt li {
    width: 31%;
  }
  #bukenList .lt::after {
    content: "";
    display: block;
    width: 30%; /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
  }
}
#bukenList .imgArea {
  position: relative;
  border-radius: 10px 10px 0 0;
}
#bukenList .imgArea .bukenInfo {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  right: 14px;
  color: white;
  border: 1px solid white;
  border-radius: 30px;
  padding: 2px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6667;
  /* 751- */
}
@media all and (min-width: 751px) {
  #bukenList .imgArea .bukenInfo {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.6667;
  }
}
#bukenList .imgArea a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#bukenList .imgArea img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#bukenList .imgArea {
  overflow: hidden;
}
#bukenList .imgArea a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#bukenList .textArea {
  background-color: white;
  padding: 20px 25px 25px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.16);
  /* 751- */
}
@media all and (min-width: 751px) {
  #bukenList .textArea {
    padding: 20px 25px 32px;
  }
}
#bukenList .textArea .title {
  margin-bottom: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.6667;
}
#bukenList .textArea .title a {
  position: relative;
  color: #0D2341;
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#bukenList .textArea .title a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #0D2341;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#bukenList .textArea .title a {
  /* 751- */
}
@media all and (min-width: 751px) {
  #bukenList .textArea .title a:hover {
    opacity: 0.8;
  }
  #bukenList .textArea .title a:hover::after {
    left: 0%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0); /* x軸方向に縮小で0にして消えてるように見せる */
    width: 0%;
  }
}
#bukenList .textArea .title a::after {
  bottom: 0;
}
#bukenList .textArea .title {
  /* 751- */
}
@media all and (min-width: 751px) {
  #bukenList .textArea .title {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.6667;
  }
}
#bukenList .textArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
#bukenList .textArea .item:last-child {
  margin-bottom: 0px;
}
#bukenList .textArea .item .itemName {
  width: 75px;
}
#bukenList .textArea .item {
  /* 751- */
}
@media all and (min-width: 751px) {
  #bukenList .textArea .item .itemName {
    width: 30%;
  }
  #bukenList .textArea .item .contents {
    width: 70%;
  }
}
#bukenList .textArea .itemName span {
  display: inline-block;
  padding: 2px 5px;
  background-color: #E2EBED;
  border-radius: 11px;
  color: #2662B4;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0em;
  line-height: 1.6667;
  /* 751- */
}
@media all and (min-width: 751px) {
  #bukenList .textArea .itemName span {
    font-size: 13px;
    letter-spacing: 0em;
    line-height: 1.6667;
  }
}
#bukenList .textArea .contents {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.6667;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

main.sale #bukenList {
  background: url(../images/smile/top/buken/bg_sale.jpg);
}
main.sale #bukenList .textArea .title a {
  color: #3C300D;
}
main.sale #bukenList .textArea .itemName span {
  background-color: #EDE5CF;
  color: #3C300D;
}
main.sale #bukenList .textArea .contents {
  color: #3C300D;
}

/*----------------------------------------------------
ページナビ
----------------------------------------------------*/
.pageNavi {
  text-align: center;
}

.wp-pagenavi .pages {
  /* 総ページ数の非表示 例：「1/3」みたいなやつ */
  display: none;
}
.wp-pagenavi .next, .wp-pagenavi .prev, .wp-pagenavi .page, .wp-pagenavi .current {
  display: inline-block;
  background-color: white;
  margin-right: 20px;
  border-radius: 50%;
  padding: 13px 14px 11px 16px;
  width: 40px;
  height: 40px;
  border: none;
  color: #1F2A40;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0em;
  line-height: 1;
  -webkit-box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.16);
}
.wp-pagenavi .prev::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  left: 6px;
}
.wp-pagenavi .next, .wp-pagenavi .prev {
  position: relative;
  color: white;
}
.wp-pagenavi .next::before, .wp-pagenavi .prev::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #1F2A40;
  border-width: 5px 9px;
  top: 15px;
}
.wp-pagenavi .next:hover, .wp-pagenavi .prev:hover {
  color: #2662B4;
  background-color: #2662B4;
}
.wp-pagenavi .next:hover::before, .wp-pagenavi .prev:hover::before {
  border-color: transparent transparent transparent white;
}
.wp-pagenavi {
  /* 751- */
}
@media all and (min-width: 751px) {
  .wp-pagenavi .page:hover {
    background-color: #2662B4;
    color: white;
  }
}
.wp-pagenavi .current {
  background-color: #2662B4;
  color: white;
}

main.sale .wp-pagenavi .current {
  background-color: #F09830;
}
main.sale .wp-pagenavi .page:hover {
  background-color: #F09830;
}
main.sale .wp-pagenavi .next:hover, main.sale .wp-pagenavi .prev:hover {
  color: #F09830;
  background-color: #F09830;
}
/*# sourceMappingURL=smile-archive.css.map */