@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;
}
main.sale .detailHead .cat {
  color: #F09830;
  border-color: #F09830;
}

.singleBody {
  margin-top: 16px;
  background: #ffffff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.1);
  padding: 10px 20px 30px;
}
.singleBody .lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-top: 10px;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 30px;
}
.singleBody {
  /* -750 */
}
@media all and (max-width: 751px) {
  .singleBody .slideWrap {
    margin-left: -10px;
    width: calc(100% + 20px);
  }
}
.singleBody {
  /* 751- */
}
@media all and (min-width: 751px) {
  .singleBody {
    margin-top: 38px;
    padding: 40px 80px 70px;
  }
  .singleBody .lead {
    padding-top: 0;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
  .singleBody .mainColumn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .singleBody .slideWrap {
    width: 60%;
  }
  .singleBody .mainInfo {
    width: 35%;
  }
}

.slideWrap {
  width: 100%;
}

#mainSlider {
  width: 100%;
  margin: 0 auto 10px;
}

#mainSlider li img {
  width: 100%;
}

#thumbSlider li img {
  width: 96%;
  margin: 0 auto;
}

#thumbSlider {
  position: relative;
}
#thumbSlider .slick-list {
  z-index: 1;
}
#thumbSlider .slick-prev,
#thumbSlider .slick-next {
  text-indent: -999px;
  font-size: 0;
  position: absolute;
  top: 12px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100vh;
  background: #2662B4;
  z-index: 2;
  -webkit-box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.15);
}
#thumbSlider .slick-prev::before,
#thumbSlider .slick-next::before {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 9px;
  line-height: 20px;
  display: block;
  color: #FFFFFF;
  z-index: 2;
}
#thumbSlider .slick-prev,
#thumbSlider .slick-next {
  /* 751- */
}
@media all and (min-width: 751px) {
  #thumbSlider .slick-prev,
  #thumbSlider .slick-next {
    top: 28px;
  }
}
#thumbSlider .slick-prev {
  left: -10px;
}
#thumbSlider .slick-prev::before {
  content: "◀";
}
#thumbSlider .slick-next {
  right: -10px;
}
#thumbSlider .slick-next::before {
  content: "▶";
}

main.sale #thumbSlider .slick-prev,
main.sale #thumbSlider .slick-next {
  background: #F09830;
}

.singleBody .mainInfo {
  margin-top: 30px;
}
.singleBody .mainInfo ul {
  font-size: 14px;
  line-height: 1.5;
}
.singleBody .mainInfo li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #E4E4E4;
  padding: 1em 0;
}
.singleBody .mainInfo li:first-child {
  padding-top: 0;
}
.singleBody .mainInfo h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #2662B4;
  width: 7em;
}
.singleBody .mainInfo p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0.05em;
}
.singleBody .mainInfo li.price h2 {
  padding-top: 0.4em;
}
.singleBody .mainInfo li.price p {
  vertical-align: bottom;
}
.singleBody .mainInfo li.price em {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-style: normal;
  padding-right: 0.05em;
}
.singleBody .mainInfo {
  /* 751- */
}
@media all and (min-width: 751px) {
  .singleBody .mainInfo {
    margin-top: 0;
  }
  .singleBody .mainInfo ul {
    font-size: 15px;
  }
  .singleBody .mainInfo li {
    padding: 1em 0;
  }
  .singleBody .mainInfo h2 {
    width: 6em;
  }
  .singleBody .mainInfo li.price h2 {
    padding-top: 0.4em;
  }
  .singleBody .mainInfo li.price em {
    font-size: 20px;
  }
}
@media all and (min-width: 1131px) {
  .singleBody .mainInfo ul {
    font-size: 16px;
  }
  .singleBody .mainInfo li {
    padding: 1.3em 0;
  }
  .singleBody .mainInfo h2 {
    width: 7em;
  }
  .singleBody .mainInfo li.price h2 {
    padding-top: 0.4em;
  }
  .singleBody .mainInfo li.price em {
    font-size: 22px;
  }
}

main.sale .singleBody .mainInfo h2 {
  color: #938A66;
}

#myMap {
  margin-top: 30px;
}
#myMap iframe {
  width: 100%;
  height: 340px;
}
#myMap {
  /* 751- */
}
@media all and (min-width: 751px) {
  #myMap {
    margin-top: 70px;
  }
  #myMap iframe {
    height: 400px;
  }
}

#myPoint {
  margin-top: 55px;
}
#myPoint .wrap {
  position: relative;
  background: #EDF3F4;
  padding: 30px 10px 25px;
}
#myPoint h2 {
  position: absolute;
  left: 0;
  top: -12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
  width: 90px;
  background: #2662B4;
}
#myPoint h2:before, #myPoint h2:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 1;
}
#myPoint h2:before {
  top: 0;
  right: -8px;
  border-width: 12px 8px;
  border-color: #2662B4 transparent transparent transparent;
  border-style: solid;
}
#myPoint h2:after {
  bottom: 0;
  right: -8px;
  border-width: 12px 8px;
  border-color: transparent transparent #2662B4 transparent;
  border-style: solid;
}
#myPoint li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.83;
  margin-top: 1em;
  padding-left: 1.8em;
  background: url(../images/smile/common/icon_point.svg) no-repeat;
  background-position: left top 5px;
  background-size: auto 1.2em;
}
#myPoint li:first-child {
  margin-top: 0;
}
#myPoint {
  /* 751- */
}
@media all and (min-width: 751px) {
  #myPoint {
    margin-top: 75px;
  }
  #myPoint .wrap {
    max-width: 940px;
    margin: 0 auto;
    padding: 50px 50px 40px;
  }
  #myPoint h2 {
    top: -17px;
    font-size: 16px;
    line-height: 34px;
    width: 147px;
  }
  #myPoint h2:before {
    right: -12px;
    border-width: 17px 12px;
  }
  #myPoint h2:after {
    right: -12px;
    border-width: 17px 12px;
  }
  #myPoint li {
    margin-top: 0.7em;
    padding-left: 2em;
    font-size: 16px;
    line-height: 1.67;
    background-position: left top 5px;
  }
}

main.sale #myPoint .wrap {
  background: #F8F3E4;
}
main.sale #myPoint h2 {
  background: #4E3D2A;
}
main.sale #myPoint h2::before {
  border-top-color: #4E3D2A;
}
main.sale #myPoint h2::after {
  border-bottom-color: #4E3D2A;
}
main.sale #myPoint li {
  background-image: url(../images/smile/common/icon_point_sale.svg);
}

#myDetails {
  margin-top: 30px;
}
#myDetails h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 13px;
  line-height: 40px;
  letter-spacing: 0.05em;
  text-align: center;
  background: #2662B4;
}
#myDetails ul {
  padding-top: 10px;
  font-size: 12px;
  line-height: 1.5;
}
#myDetails li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #E4E4E4;
  padding: 1em 0;
}
#myDetails h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #2662B4;
  width: 8em;
  margin-right: 2%;
}
#myDetails p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0.05em;
}
#myDetails {
  /* 751- */
}
@media all and (min-width: 751px) {
  #myDetails {
    margin-top: 60px;
  }
  #myDetails h2 {
    font-size: 16px;
    line-height: 50px;
    letter-spacing: 0.1em;
  }
  #myDetails ul {
    padding-top: 24px;
    font-size: 14px;
  }
  #myDetails .lt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #myDetails .ltText {
    line-height: 1.8;
  }
  #myDetails li {
    width: 48%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: solid 1px #E4E4E4;
    padding: 1.4em 0;
  }
  #myDetails h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #2662B4;
  }
  #myDetails p {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    letter-spacing: 0.05em;
  }
}

main.sale #myDetails h2 {
  background: #F09830;
}
main.sale #myDetails h3 {
  color: #938A66;
}

#myContact {
  padding-top: 40px;
}
#myContact h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
#myContact .shoulder {
  margin-top: 0.7em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #2662B4;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
#myContact {
  /* 751- */
}
@media all and (min-width: 751px) {
  #myContact {
    padding-top: 70px;
  }
  #myContact h2 {
    font-size: 30px;
  }
  #myContact .shoulder {
    font-size: 20px;
  }
}
@media all and (min-width: 1131px) {
  #myContact h2 {
    font-size: 38px;
  }
}

main.sale #myContact .shoulder {
  color: #F09830;
}

input[type=text],
input[type=email],
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FAFAFA;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  width: 100%;
}

input[type=text],
input[type=email],
select,
textarea {
  padding: 15px;
  -webkit-box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.15);
  /* 751- */
}
@media all and (min-width: 751px) {
  input[type=text],
  input[type=email],
  select,
  textarea {
    padding: 23px 20px;
    -webkit-box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.15);
  }
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  display: block;
  position: relative;
  cursor: pointer;
  margin: -0.2em 1.5em 0 0em;
}
input[type=checkbox]::before,
input[type=radio]::before {
  /* ベース */
  content: "";
  position: absolute;
  display: block;
  background: #FAFAFA;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
  top: -4px;
}
input[type=checkbox]::after,
input[type=radio]::after {
  /* チェックを入れた時の表示 */
  content: "";
  position: absolute;
  display: block;
  background: #2662B4;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 4px;
  left: 7px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
input[type=checkbox]:checked::after,
input[type=radio]:checked::after {
  opacity: 1;
}
input[type=checkbox],
input[type=radio] {
  /* 751- */
}
@media all and (min-width: 751px) {
  input[type=checkbox]::before,
  input[type=radio]::before {
    width: 34px;
    height: 34px;
    -webkit-box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.2);
  }
  input[type=checkbox]::after,
  input[type=radio]::after {
    width: 15px;
    height: 15px;
    top: 7px;
    left: 10px;
  }
}

::-webkit-input-placeholder {
  color: #C2C4C7;
  font-size: 13px;
  /* 751- */
}

::-moz-placeholder {
  color: #C2C4C7;
  font-size: 13px;
  /* 751- */
}

:-ms-input-placeholder {
  color: #C2C4C7;
  font-size: 13px;
  /* 751- */
}

::-ms-input-placeholder {
  color: #C2C4C7;
  font-size: 13px;
  /* 751- */
}

::placeholder {
  color: #C2C4C7;
  font-size: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  ::-webkit-input-placeholder {
    font-size: 14px;
  }
  ::-moz-placeholder {
    font-size: 14px;
  }
  :-ms-input-placeholder {
    font-size: 14px;
  }
  ::-ms-input-placeholder {
    font-size: 14px;
  }
  ::placeholder {
    font-size: 14px;
  }
}

main.sale input[type=checkbox]::after,
main.sale input[type=radio]::after {
  background: #F09830;
}

#form {
  padding: 15px 0 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #form {
    padding: 30px 0 0;
  }
}
#form input[type=text] {
  max-width: 600px;
}
#form input[name=property] {
  max-width: 100%;
}
#form textarea {
  height: 276px;
  line-height: 1.78;
  /* 751- */
}
@media all and (min-width: 751px) {
  #form textarea {
    height: 300px;
  }
}
#form .mwform-file-delete {
  display: none;
}
#form .row {
  margin-top: 30px;
}
#form .row:first-child {
  margin-top: 0;
  margin-bottom: 40px;
}
#form .row .label {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 0.6em;
}
#form .row .label .req {
  display: inline-block;
  margin-left: 8px;
  color: #3862AE;
  font-size: 11px;
  line-height: 14px;
  padding: 0 0.6em;
  border: solid 1px #3862AE;
  border-radius: 100vh;
}
#form .row {
  /* 751- */
}
@media all and (min-width: 751px) {
  #form .row .label {
    font-size: 14px;
  }
  #form .row .label .req {
    margin-left: 10px;
    line-height: 15px;
  }
}
#form .agree_check label,
#form .contents.radio label {
  font-size: 13px;
  line-height: 26px;
}
#form .agree_check .mwform-checkbox-field,
#form .agree_check .mwform-radio-field,
#form .contents.radio .mwform-checkbox-field,
#form .contents.radio .mwform-radio-field {
  display: block;
  margin: 0 0 15px;
}
#form .agree_check .mwform-checkbox-field-text,
#form .agree_check .mwform-radio-field-text,
#form .contents.radio .mwform-checkbox-field-text,
#form .contents.radio .mwform-radio-field-text {
  padding-left: 40px;
}
#form .agree_check,
#form .contents.radio {
  /* 751- */
}
@media all and (min-width: 751px) {
  #form .agree_check,
  #form .contents.radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #form .agree_check label,
  #form .contents.radio label {
    font-size: 14px;
    line-height: 34px;
    cursor: pointer !important;
  }
  #form .agree_check .mwform-checkbox-field,
  #form .agree_check .mwform-radio-field,
  #form .contents.radio .mwform-checkbox-field,
  #form .contents.radio .mwform-radio-field {
    margin: 0 30px 0 0;
  }
  #form .agree_check .mwform-checkbox-field-text,
  #form .agree_check .mwform-radio-field-text,
  #form .contents.radio .mwform-checkbox-field-text,
  #form .contents.radio .mwform-radio-field-text {
    padding-left: 44px;
  }
}
#form .agree {
  text-align: center;
  margin-top: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #form .agree {
    margin-top: 40px;
  }
}
#form .agree p {
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 2.1;
  /* 751- */
}
@media all and (min-width: 751px) {
  #form .agree p {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.75;
  }
}
#form .agree p a {
  color: #436F96;
  text-decoration: underline;
}
#form .agree .agree_check {
  display: inline-block;
  text-align: left;
  margin: 30px auto 20px;
}
#form .agree .agree_check .error {
  text-align: center;
}
#form .agree .agree_check {
  /* 751- */
}
@media all and (min-width: 751px) {
  #form .agree .agree_check {
    margin: 40px auto 30px;
  }
}
#form .error {
  padding-top: 10px;
  font-size: 12px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #form .error {
    font-size: 14px;
  }
}

main.sale #form .row .label .req {
  color: #D84C56;
  border-color: #D84C56;
}

#count {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #count {
    display: block;
    position: fixed;
    position: -webkit-fixed;
    right: 0;
    top: 380px;
    width: 74px;
    background-color: #436F96;
  }
  #count p {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #fff;
  }
  #count p span {
    font-size: 34px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #FFFF00;
  }
}

.btn_area {
  text-align: center;
}

.submit_btn input,
.submit_btn button,
.back_btn input,
.back_btn button,
.submit_btn input,
.submit_btn button {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #ffffff;
  background: #42A9AD;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 44px;
  text-align: center;
  border-radius: 100vh;
  width: 220px;
  margin: 0 auto;
  border: solid 1px #42A9AD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 751- */
}
@media all and (min-width: 751px) {
  .submit_btn input,
  .submit_btn button,
  .back_btn input,
  .back_btn button,
  .submit_btn input,
  .submit_btn button {
    font-size: 16px;
    line-height: 58px;
    width: 276px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .submit_btn input:hover,
  .submit_btn button:hover,
  .back_btn input:hover,
  .back_btn button:hover,
  .submit_btn input:hover,
  .submit_btn button:hover {
    color: #42A9AD;
    background: #FFFFFF;
  }
}
.submit_btn button,
.back_btn button,
.submit_btn button {
  background: #AAAAAA;
  border-color: #AAAAAA;
  /* 751- */
}
@media all and (min-width: 751px) {
  .submit_btn button:hover,
  .back_btn button:hover,
  .submit_btn button:hover {
    color: #AAAAAA;
    background: #FFFFFF;
  }
}

.back_btn {
  display: none;
}

.mw_wp_form_confirm .btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 40px 0 0 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  .mw_wp_form_confirm .btn_area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 60px 0 0 0;
  }
}
.mw_wp_form_confirm .back_btn {
  display: block;
  margin-bottom: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .mw_wp_form_confirm .back_btn {
    margin: 0 10px;
  }
}
.mw_wp_form_confirm .submit_btn {
  /* 751- */
}
@media all and (min-width: 751px) {
  .mw_wp_form_confirm .submit_btn {
    margin: 0 10px;
  }
}

main.sale .submit_btn input,
main.sale .submit_btn button {
  background: #4E3D2A;
  border-color: #4E3D2A;
  /* 751- */
}
@media all and (min-width: 751px) {
  main.sale .submit_btn input:hover,
  main.sale .submit_btn button:hover {
    color: #4E3D2A;
    background: #FFFFFF;
  }
}

.mw_wp_form_confirm .agree {
  display: none;
}
.mw_wp_form_confirm .label {
  opacity: 0.7;
  cursor: default;
}
.mw_wp_form_confirm .label::after {
  content: "：";
}
.mw_wp_form_confirm .row:first-child .label::after {
  display: none;
}
.mw_wp_form_confirm .label .req {
  display: none !important;
}
.mw_wp_form_confirm .row .contents,
.mw_wp_form_confirm .contents.radio {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.78;
  /* 751- */
}
@media all and (min-width: 751px) {
  .mw_wp_form_confirm .row .contents,
  .mw_wp_form_confirm .contents.radio {
    font-size: 17px;
  }
}

#myContact .thanks_page {
  text-align: left;
  padding: 20px 0;
}
#myContact .thanks_page h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  padding-bottom: 1em;
}
#myContact .thanks_page p {
  margin-top: 2em;
  font-size: 13px;
  line-height: 1.5;
}
#myContact .thanks_page {
  /* 751- */
}
@media all and (min-width: 751px) {
  #myContact .thanks_page {
    padding: 30px 0;
  }
  #myContact .thanks_page h2 {
    font-size: 24px;
  }
  #myContact .thanks_page p {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
#myContact .thanks_page .submit_btn {
  margin-top: 30px;
}
#myContact .thanks_page .submit_btn a {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #ffffff;
  background: #42A9AD;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 44px;
  text-align: center;
  border-radius: 100vh;
  width: 220px;
  margin: 0 auto;
  border: solid 1px #42A9AD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#myContact .thanks_page .submit_btn {
  /* 751- */
}
@media all and (min-width: 751px) {
  #myContact .thanks_page .submit_btn {
    margin-top: 60px;
  }
  #myContact .thanks_page .submit_btn a {
    font-size: 16px;
    line-height: 58px;
    width: 276px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #myContact .thanks_page .submit_btn a:hover {
    color: #42A9AD;
    background: #FFFFFF;
  }
}
/*# sourceMappingURL=smile-single.css.map */