@charset "utf-8";
/* CSS Document */

* {
  background: #f2f2f2;
  margin: 0;
  padding: 0;
  color: #4d4d4d;
  font-size: 14px;
  font-family: Helvetica, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", sans-serif;
}
body {
  text-align: center;
}
a {
  color: #3399ff;
}
hr {
  border: none;
  border-bottom: 1px solid #666;
  margin: 15px 0;
}

hr.dot {
  border: none;
  border-bottom: 1px dotted #999;
  margin: 15px 0;
}

/*共通*/
#wrapper {
  width: 90%;
  margin: 1em auto;
  text-align: left;
}

.kome {
  margin-left: 1em !important;
  text-indent: -1em;
  text-align: left;
  font-size: 90%;
  display: block;
}
.img-sp {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0.2em 0;
}
/*キャリア選択プルダウン*/
select#carrierSelection {
  width: 100%;
  padding: 0.8em;
  margin: 0.8em 0;
  background: #fff;
  color: #3399ff;
  border: #3399ff 1px solid;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}
select#carrierSelection option {
  background: #fff;
  color: #3399ff;
}
/*-----ボタン-----*/
/*決定*/
#nextButton {
  width: 100%;
  padding: 0.8em;
  margin: 0.8em 0;
  background: #008eeb;
  color: #ffffff;
  border: #008eeb 1px solid;
  border-radius: 5px;
  cursor: pointer;
}
/*戻る*/
#backButton {
  width: 100%;
  padding: 0.8em;
  margin: 0.2em 0 0 0;
  background: #ffffff;
  color: #008eeb;
  border: #008eeb 1px solid;
  border-radius: 5px;
  cursor: pointer;
}
/*電話を受ける*/
#receivedButton {
  width: 100%;
  padding: 0.8em;
  margin: 0.8em 0;
  background: #008eeb;
  color: #ffffff;
  border: #008eeb 1px solid;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
#receivedButton:before {
  content: "";
  display: inline-block;
  background-image: url(img/icon-tel.png);
  background-size: contain;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0.5em;
  top: 0.5em;
}
/*-----リンク-----*/
/*電話をかける*/
.link-tell {
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
}
.link-tell a {
  display: block;
  padding: 0.8em;
  margin: 0.5em 0;
  background: #4caf50;
  color: #ffffff;
  border: #4caf50 1px solid;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.link-tell a:before {
  content: "";
  display: inline-block;
  background-image: url(img/icon-tel.png);
  background-size: contain;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0.5em;
  top: 0.5em;
}
/*次へ*/
.link-next:disabled {
  background-color: #b9c2c6;
  border: unset;
  pointer-events: none;
}
.link-next {
  width: 100%;
  display: block;
  padding: 0.8em;
  margin: 10px 0;
  background: #008eeb;
  color: #ffffff;
  border: #008eeb 1px solid;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
/*完了*/
.link-end {
  padding: 0;
  margin: 2em 0 0.8em 0;
  width: 100%;
}
.link-end a {
  display: block;
  padding: 0.8em;
  margin: 0;
  background: #008eeb;
  color: #ffffff;
  border: #008eeb 1px solid;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
/*------テキスト-----*/
h1 {
  text-align: center;
}
.txt-standard {
  margin: 0.8em 0;
}
/*電話番号*/
.txt-telnum {
  text-align: center;
  background: #fff;
  color: #f44336;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  font-weight: bold;
  border-radius: 5px;
}
.txt-telnum span.telnum {
  font-size: 32px;
  background: none;
}
.txt-telnum-long {
  text-align: center;
  background: #fff;
  text-align: center;
  font-size: 26px;
  margin: 10px 0;
  padding: 10px 0;
  font-weight: bold;
  border-radius: 5px;
}
.txt-telnum-long span.telnum {
  font-size: 26px;
  background: none;
}

.tel-push {
  background: #008eeb;
  color: #fff;
  font-weight: bold;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  padding: 5px 8px;
  margin: 0 2px;
  border-radius: 5px;
}

.txt-telnum-input {
  width: 100%;
  background: #fff;
  font-size: 26px;
  margin: 10px 0;
  padding: 10px 0;
  font-weight: bold;
  border-radius: 5px;
}

/*手順*/
ol.txt-step {
  margin: 0 0 0 1.5em;
  padding: 0;
  counter-reset: li;
  list-style: none;
}
ol.txt-step > li {
  position: relative;
  margin: 0 auto 20px;
  line-height: 1.8em;
}
ol.txt-step > li:before {
  counter-increment: li;
  content: counter(li) ".";
  position: absolute;
  display: block;
  text-align: center;
  left: -1em;
  width: 1em;
  top: -0.1em;
  font-size: 30px;
  color: #bbb;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

ol.txt-step-mini {
  margin: 0 0 0 1.5em;
  padding: 0;
  counter-reset: li;
  list-style: none;
}
ol.txt-step-mini > li {
  position: relative;
  margin: 0 auto 20px;
}
ol.txt-step-mini > li:before {
  counter-increment: li;
  content: "(" counter(li) ")";
  position: absolute;
  display: block;
  text-align: center;
  left: -1.5em;
  width: 1em;
  top: 0.2em;
  font-size: 18px;
  color: #bbb;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.txt-step-no {
  font-weight: normal;
  margin-right: 5px;
  font-size: 30px;
  color: #bbb;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
