
@charset "UTF-8";
/* @start color */
/* @end color */
/*
@styleguide
@title info

reset.cssは共通システム側にあったため含めてません。

デフォルトfont-sizeは14pxです。

画像パスはローカルになっています。

*/
* {
  box-sizing: border-box;
}
a, a:visited, a:hover, a:active {
  color: #4c4a40;
}
html {
  font-size: 62.5%;
}
body {
  font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.4rem;
  color: #4c4a40;
}
.wrapper {
  position: relative;
}
/*
* head style
*/
.cocoloni {
  background: #fff;
  padding: .3em;
  text-align: center;
}
.header {
  background: #A2E65C;
}
.header__title {
  font-size: 1.8rem;
  color: #fff;
  padding: 1em;
  text-align: center;
}
/*
* footer style
*/
.footer {
  background: #A2E65C;
}
.copy {
  font-size: 1rem;
  color: #fff;
  padding: 1em;
  text-align: center;
}
/*
* main style
*/
.main {
  padding: 2em 1.2em 5em;
}
.section   .section {
  margin-top: 24px;
}
/*
@styleguide
@title text

テキストに対して使用します。

    <p class="text">テキスト</p>

<p class="text">テキスト</p>

    <p class="text"><strong class="text__strong">強調テキスト</strong></p>

<p class="text"><strong class="text__strong">強調テキスト</strong></p>

    <p class="text textCenter">テキスト中央寄せ</p>

<p class="text textCenter">テキスト中央寄せ</p>

    <p class="text textRight">テキスト右寄せ</p>

<p class="text textRight">テキスト右寄せ</p>

*/
.text {
  line-height: 1.4;
  margin: 1em 0;
}
.text__strong {
  color: #FF5757;
  font-weight: bold;
}
.text__small {
  font-size: 1.2rem;
  display: block;
  margin-top: .4em;
}
.textCenter {
  text-align: center;
}
.textRight {
  text-align: right;
}
/*
@styleguide
@title subhead

小見出しとして使用します。

    <h1 class="subhead">サブタイトル</h1>

<h1 class="subhead">サブタイトル</h1>

    <h2 class="subhead">サブタイトル</h2>

<h2 class="subhead">サブタイトル</h2>

*/
.subhead {
  font-size: 1.6rem;
  border-bottom: #A2E65C 2px solid;
  font-weight: bold;
  margin-bottom: 32px;
  padding: .5em .2em;
}
.btnBlock {
  margin: 32px 16px;
}
h2.subhead {
  margin-bottom: 16px;
}
/*
@styleguide
@title button

ボタンスタイルを生成します。aタグ、inputタグ、buttonタグに使用できます。

    <a class="btn">aタグボタン</a>

<a class="btn">aタグボタン</a>

    <button class="btn">buttonタグボタン</button>

<button class="btn">buttonタグボタン</button>

    <input type="submit" class="btn" value="inputタグボタン">

<input type="submit" class="btn" value="inputタグボタン">

*/
.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #e1e1e1), color-stop(0, #fff));
  background: -webkit-linear-gradient(#fff, #e1e1e1);
  background: linear-gradient(#fff, #e1e1e1);
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  color: #4c4a40;
  display: block;
  margin: 8px auto 0;
  padding: .8em;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
  font-size: 100%;
}
input.btn {
  padding: .5em;
}
.btn   .btn {
/*  margin-top: 8px; */
}
/*
@styleguide
@title carrierLogo

キャリアロゴのimgタグに使用します。

    <img alt="au" class="carrierLogo" src="${imagepath}">

<img alt="au" class="carrierLogo" src="../assets/image/logo_au.png">

*/
.carrierLogo {
  display: block;
  margin: auto;
  width: 140px;
}
/*
@styleguide
@title asideLink

補足リンクとして使用。

    <a class="asideLink">補足リンク</a>

<a class="asideLink">補足リンク</a>

*/
.asideLink {
  border-bottom: 1px solid #000;
  color: #000;
  display: inline-block;
  line-height: 1.2;
  text-decoration: none;
}
/*
@styleguide
@title list

リストスタイルを生成します。

    <ul class="list">
      <li class="list__item">
        <a href="" class="list__target">リスト</a>
      </li>
    </ul>

<ul class="list"><li class="list__item"><a href="" class="list__target">リスト</a></li></ul>

*/
.list {
  list-style: none;
  margin: 0 16px;
  padding: 0;
}
.list__item {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
}
.list__item   .list__item {
  margin-top: 8px;
}
.list__target {
  color: #4c4a40;
  display: block;
  padding: 1em 1.6em 1em 1em;
  position: relative;
  text-decoration: none;
}
.list__target::after {
  border-right: 1px solid #4c4a40;
  border-top: 1px solid #4c4a40;
  bottom: 0;
  content: "";
  height: 6px;
  margin: auto;
  position: absolute;
  right: .8em;
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
}
/*
@styleguide
@title form

formスタイルを生成します。

    <form class="form">
      <div class="form__group">
        <label class="form__label">
        お名前<span class="form__label__required">必須</span>
        </label>
        <input type="text" class="form__item">
      </div>
      <div class="form__group">
        <label class="form__label">
        住所
        </label>
        <select class="form__item">
          <option>住所セレクト</option>
        </select>
      </div>
      <div class="form__group">
        <label class="form__label">
        ご意見
        </label>
        <textarea rows="5" cols="20" class="form__item">
        </textarea>
      </div>
    </form>

<form class="form">
  <div class="form__group">
    <label class="form__label">
    お名前<span class="form__label__required">必須</span>
    </label>
    <input type="text" class="form__item">
  </div>
  <div class="form__group">
    <label class="form__label">
    住所
    </label>
    <select class="form__item">
      <option>住所セレクト</option>
    </select>
  </div>
  <div class="form__group">
    <label class="form__label">
    ご意見
    </label>
    <textarea rows="5" cols="20" class="form__item">
    </textarea>
  </div>
</form>
*/
.form__group {
  margin: 12px 0;
}
.form__label {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}
.form__label__required {
  font-size: 1rem;
  background: #FF5757;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  text-align: center;
}
.form__item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: block;
  padding: 10px;
  resize: vertical;
  width: 100%;
}
.form__item.error {
  background: #ffd4da;
}
.form select {
  background-image: url("https://websmart.zappallas.com/web_image?url=http%3A%2F%2Fwebmember.smart-srv%2Fweb_image%3Furl%3Dhttps%253A%252F%252Fwebsmart.zappallas.com%252Fweb_image%253Furl%253D81ad21b8cf8af24e3f35b8b927eb400b06f1250cf53ac39464c95c86acb0ae652c0799d5cbae9429c639c5df2a1f4a36323fc419eb4ca4fac89b655ac56993dccb6c90089e66bc37058e461f3589f033c97aae5a321a171fe8405756fc5d28e6e8405756fc5d28e6e8405756fc5d28e6e8405756fc5d28e6deb7ba2d41d4c96f5ead87121f502d8ace6cd67a1b55ac82ce6cd67a1b55ac82ce6cd67a1b55ac82a34449b798fc94a77d661acf9d8cb5ce2663af411145fc78ce6cd67a1b55ac82ce6cd67a1b55ac82ce6cd67a1b55ac82ce6cd67a1b55ac82ce6cd67a1b55ac82ce6cd67a1b55ac82ce6cd67a1b55ac82ce6cd67a1b55ac82ce6cd67a1b55ac82560b98f245dc5681c20616f5466299a84829996281c16b989aee82fb2a793bfe2e5b821bb4058cba7c05e5d5c0f4085263ae6ddcc8843dcf3ae100dee04f2fb030464dc77ec9118174f5845a8bc82b83a509cb2d2be58e21897c857a4080cf576969c4ad7a386fabc437b56e54db40c46ba69b0fc3164cc38f82de0b52b878c49188163b3a5c77e963ae6ddcc8843dcf63ae6ddcc8843dcfdff79fd2c51f5049cc4ed668ce94be0a63ae6ddcc8843dcf4617b86859b2437fc3ca88e668219aeb0592f93a1fd3e93951319b8eea52f331a22b1594922b842bfbcc7525d7e5865494eb03c6a764db8444631e0e71d678bc5740867c689c14fea4bfce1f8d46c28068c4ad17f02475d6d17cd99c9f07e0fcc3f3e8538ff508a76fb062e9519ee4d0a6b6979c0d605793a02495c43c932c79135c94e6cf009c073e973d6b07851f07b73df95385cfd5640a49ddbe49563ff80c162988f60c4ed97ece02c8f382c0a87b346b9baa2a291c88b5fcbb8b03526831c545702720b87cb7b94907b5d9060e69a210e507a59e6456c664853ddbaab2ec0f46ab4c75efb46976fff6ff3abe779dab9121c4270b94a7813f8d2401ee66af4494fb906895624280b8d8dd463219ca7c53fc47f0805db10fe2f274a79398213f9f4a225fbea8f7b8d2e9e2c139562e2dc8833dd90a9802c3f530b136f606c49eb04430266c6d643aa08cf90894d6047b5404ab78da3d9282a3a800e1660229509877bfeb9cd00508fef06b226a473ea395f49fad25562d3326ab41ed089034fa3f7b5d24edb78dcc7a8f9f5952f25f1ba6115e62eec40e48f99571ca3549d90d7586c86172c06b7bc2cd2cb6228a5f707575e16516b763ac81a5e4c55a60%2526decrypt%253D1%26decrypt%3D1");
  background-position: right 0 top 50%;
  background-repeat: no-repeat;
}
/*
@styleguide
@title error

formのバリデーションでのエラー表示で使用します。

    <lable class="error">必須項目です</label>

<label class="error">必須項目です</label>
 */
.error:not(.form__item) {
  font-size: 1.2rem;
  background: #ffd4da;
  border: 1px solid #FF5757;
  border-radius: 5px;
  color: #FF5757;
  display: block;
  margin-top: 8px;
  padding: 4px 8px;
}

.flush {
  font-size: 1.2rem;
  background: #dfffd4;
  border: 1px solid #6fc144;
  border-radius: 5px;
  color: #617560;
  display: block;
  margin-top: 8px;
  padding: 4px 8px;
}

/*
@styleguide
@title table

formの確認画面などで使用します。

    <table class="table">
      <tr class="table__tr">
        <td class="table__td">氏名</td>
        <td class="table__td">name</td>
      </tr>
      <tr class="table__tr">
        <td class="table__td">電話番号</td>
        <td class="table__td">telno</td>
      </tr>
    </table>

<table class="table">
  <tr class="table__tr">
    <td class="table__td">氏名</td>
    <td class="table__td">name</td>
  </tr>
  <tr class="table__tr">
    <td class="table__td">電話番号</td>
    <td class="table__td">telno</td>
  </tr>
</table>

 */
.table {
  max-width: 100%;
  width: 100%;
}
.table__tr:nth-child(odd) {
  background: #E5FFCB;
}
.table__td {
  border: 1px solid  #A2E65C;
  padding: 12px 8px;
}

/* --- /assets/css/styleに無いが必要なstyle ---*/
.header img {
  width:100%;
}
.header {
/*  background-color:transparent !important; */
}


/* ------------------- n_ito --------------------- */

/*
@styleguide
@form input

<input type="text" class="inputtext" />

*/
.inputtext {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #4c4a40;
  display: block;
  margin: 8px auto 0;
  padding: .8em;
  position: relative;
  text-align: left;
  text-decoration: none;
  width: 100%;
}
.mb10 {
	margin-bottom:10px;
}

/*
@styleguide
@form checkbox

<input type="checkbox" />

*/
.mail_mag {
    padding: 6px;
}
.mail_mag input[type=radio],
.mail_mag input[type=checkbox] {
    display: inline-block;
    margin-right: 6px;
}
.mail_mag input[type=radio] + label,
.mail_mag input[type=checkbox] + label {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
}

@media (min-width: 1px) {
    .mail_mag input[type=radio],
    .mail_mag input[type=checkbox] {
        display: none;
        margin: 0;
    }
    .mail_mag input[type=radio] + label,
    .mail_mag input[type=checkbox] + label {
        padding: 0 0 0 24px;
    }
    .mail_mag input[type=radio] + label::before,
    .mail_mag input[type=checkbox] + label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 18px;
        height: 18px;
        margin-top: -9px;
        background: #FFF;
    }
    .mail_mag input[type=radio] + label::before {
        border: 2px solid #ccc;
        border-radius: 30px;
    }
    .mail_mag input[type=checkbox] + label::before {
        border: 2px solid #ccc;
    }
    .mail_mag input[type=radio]:checked + label::after,
    .mail_mag input[type=checkbox]:checked + label::after {
        content: "";
        position: absolute;
        top: 50%;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
    }
    .mail_mag input[type=radio]:checked + label::after {
        left: 5px;
        width: 8px;
        height: 8px;
        margin-top: -4px;
        background: #E71063;
        border-radius: 8px;
    }
    .mail_mag input[type=checkbox]:checked + label::after {
        left: 3px;
        width: 16px;
        height: 8px;
        margin-top: -8px;
        border-left: 3px solid #E71063;
        border-bottom: 3px solid #E71063;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}


/*!
 * Social Buttons for Twitter Bootstrap v1.0.0
 *
 * Copyright 2013 Adam Neumann
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 */

.btn-facebook {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #2b4b90;
  *background-color: #133783;
  background-image: -moz-linear-gradient(top, #3b5998, #133783);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3b5998), to(#133783));
  background-image: -webkit-linear-gradient(top, #3b5998, #133783);
  background-image: -o-linear-gradient(top, #3b5998, #133783);
  background-image: linear-gradient(to bottom, #3b5998, #133783);
  background-repeat: repeat-x;
  border-color: #133783 #133783 #091b40;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3b5998', endColorstr='#ff133783', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-facebook:hover,
.btn-facebook:focus,
.btn-facebook:active,
.btn-facebook.active,
.btn-facebook.disabled,
.btn-facebook[disabled] {
  color: #ffffff;
  background-color: #133783;
  *background-color: #102e6d;
}

.btn-facebook:active,
.btn-facebook.active {
  background-color: #0d2456 \9;
}

.btn-twitter {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #1c95d0;
  *background-color: #0271bf;
  background-image: -moz-linear-gradient(top, #2daddc, #0271bf);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2daddc), to(#0271bf));
  background-image: -webkit-linear-gradient(top, #2daddc, #0271bf);
  background-image: -o-linear-gradient(top, #2daddc, #0271bf);
  background-image: linear-gradient(to bottom, #2daddc, #0271bf);
  background-repeat: repeat-x;
  border-color: #0271bf #0271bf #014473;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2daddc', endColorstr='#ff0271bf', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-twitter:hover,
.btn-twitter:focus,
.btn-twitter:active,
.btn-twitter.active,
.btn-twitter.disabled,
.btn-twitter[disabled] {
  color: #ffffff;
  background-color: #0271bf;
  *background-color: #0262a6;
}

.btn-twitter:active,
.btn-twitter.active {
  background-color: #01538d \9;
}

.btn-github {
  color: #000000;
  text-shadow: 0 0.7px 0 rgba(0, 0, 0, 0.1);
  background-color: #f2f2f2;
  *background-color: #e6e6e6;
  background-image: -moz-linear-gradient(top, #fafafa, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fafafa), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #fafafa, #e6e6e6);
  background-image: -o-linear-gradient(top, #fafafa, #e6e6e6);
  background-image: linear-gradient(to bottom, #fafafa, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #c0c0c0;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-github:hover,
.btn-github:focus,
.btn-github:active,
.btn-github.active,
.btn-github.disabled,
.btn-github[disabled] {
  color: #000000;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}

.btn-github:active,
.btn-github.active {
  background-color: #cdcdcd \9;
}

.btn-pinterest {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #c51e25;
  *background-color: #ab171e;
  background-image: -moz-linear-gradient(top, #d62229, #ab171e);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#d62229), to(#ab171e));
  background-image: -webkit-linear-gradient(top, #d62229, #ab171e);
  background-image: -o-linear-gradient(top, #d62229, #ab171e);
  background-image: linear-gradient(to bottom, #d62229, #ab171e);
  background-repeat: repeat-x;
  border-color: #ab171e #ab171e #680e12;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd62229', endColorstr='#ffab171e', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-pinterest:hover,
.btn-pinterest:focus,
.btn-pinterest:active,
.btn-pinterest.active,
.btn-pinterest.disabled,
.btn-pinterest[disabled] {
  color: #ffffff;
  background-color: #ab171e;
  *background-color: #95141a;
}

.btn-pinterest:active,
.btn-pinterest.active {
  background-color: #7e1116 \9;
}

.btn-linkedin {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #60a9ce;
  *background-color: #4393bb;
  background-image: -moz-linear-gradient(top, #73b8db, #4393bb);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#73b8db), to(#4393bb));
  background-image: -webkit-linear-gradient(top, #73b8db, #4393bb);
  background-image: -o-linear-gradient(top, #73b8db, #4393bb);
  background-image: linear-gradient(to bottom, #73b8db, #4393bb);
  background-repeat: repeat-x;
  border-color: #4393bb #4393bb #2f6783;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff73b8db', endColorstr='#ff4393bb', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-linkedin:hover,
.btn-linkedin:focus,
.btn-linkedin:active,
.btn-linkedin.active,
.btn-linkedin.disabled,
.btn-linkedin[disabled] {
  color: #ffffff;
  background-color: #4393bb;
  *background-color: #3c84a8;
}

.btn-linkedin:active,
.btn-linkedin.active {
  background-color: #367595 \9;
}

.btn-google-plus {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #d34332;
  *background-color: #c53727;
  background-image: -moz-linear-gradient(top, #dd4b39, #c53727);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dd4b39), to(#c53727));
  background-image: -webkit-linear-gradient(top, #dd4b39, #c53727);
  background-image: -o-linear-gradient(top, #dd4b39, #c53727);
  background-image: linear-gradient(to bottom, #dd4b39, #c53727);
  background-repeat: repeat-x;
  border-color: #c53727 #c53727 #85251a;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdd4b39', endColorstr='#ffc53727', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-google-plus:hover,
.btn-google-plus:focus,
.btn-google-plus:active,
.btn-google-plus.active,
.btn-google-plus.disabled,
.btn-google-plus[disabled] {
  color: #ffffff;
  background-color: #c53727;
  *background-color: #b03123;
}

.btn-google-plus:active,
.btn-google-plus.active {
  background-color: #9a2b1f \9;
}

.btn-instagram {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5c88ab;
  *background-color: #3f729b;
  background-image: -moz-linear-gradient(top, #6f97b6, #3f729b);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#6f97b6), to(#3f729b));
  background-image: -webkit-linear-gradient(top, #6f97b6, #3f729b);
  background-image: -o-linear-gradient(top, #6f97b6, #3f729b);
  background-image: linear-gradient(to bottom, #6f97b6, #3f729b);
  background-repeat: repeat-x;
  border-color: #3f729b #3f729b #294a65;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6f97b6', endColorstr='#ff3f729b', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-instagram:hover,
.btn-instagram:focus,
.btn-instagram:active,
.btn-instagram.active,
.btn-instagram.disabled,
.btn-instagram[disabled] {
  color: #ffffff;
  background-color: #3f729b;
  *background-color: #386589;
}

.btn-instagram:active,
.btn-instagram.active {
  background-color: #305777 \9;
}

.btn-dropbox {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #2e95e0;
  *background-color: #2181cf;
  background-image: -moz-linear-gradient(top, #37a3eb, #2181cf);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#37a3eb), to(#2181cf));
  background-image: -webkit-linear-gradient(top, #37a3eb, #2181cf);
  background-image: -o-linear-gradient(top, #37a3eb, #2181cf);
  background-image: linear-gradient(to bottom, #37a3eb, #2181cf);
  background-repeat: repeat-x;
  border-color: #2181cf #2181cf #16588d;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff37a3eb', endColorstr='#ff2181cf', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-dropbox:hover,
.btn-dropbox:focus,
.btn-dropbox:active,
.btn-dropbox.active,
.btn-dropbox.disabled,
.btn-dropbox[disabled] {
  color: #ffffff;
  background-color: #2181cf;
  *background-color: #1d73b9;
}

.btn-dropbox:active,
.btn-dropbox.active {
  background-color: #1a66a3 \9;
}

.btn-bitbucket {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #285991;
  *background-color: #205081;
  background-image: -moz-linear-gradient(top, #2d5f9c, #205081);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2d5f9c), to(#205081));
  background-image: -webkit-linear-gradient(top, #2d5f9c, #205081);
  background-image: -o-linear-gradient(top, #2d5f9c, #205081);
  background-image: linear-gradient(to bottom, #2d5f9c, #205081);
  background-repeat: repeat-x;
  border-color: #205081 #205081 #112a44;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2d5f9c', endColorstr='#ff205081', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-bitbucket:hover,
.btn-bitbucket:focus,
.btn-bitbucket:active,
.btn-bitbucket.active,
.btn-bitbucket.disabled,
.btn-bitbucket[disabled] {
  color: #ffffff;
  background-color: #205081;
  *background-color: #1b436d;
}

.btn-bitbucket:active,
.btn-bitbucket.active {
  background-color: #163758 \9;
}

.btn-dribbble {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #de447f;
  *background-color: #cb396f;
  background-image: -moz-linear-gradient(top, #ea4c89, #cb396f);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ea4c89), to(#cb396f));
  background-image: -webkit-linear-gradient(top, #ea4c89, #cb396f);
  background-image: -o-linear-gradient(top, #ea4c89, #cb396f);
  background-image: linear-gradient(to bottom, #ea4c89, #cb396f);
  background-repeat: repeat-x;
  border-color: #cb396f #cb396f #91264e;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffea4c89', endColorstr='#ffcb396f', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-dribbble:hover,
.btn-dribbble:focus,
.btn-dribbble:active,
.btn-dribbble.active,
.btn-dribbble.disabled,
.btn-dribbble[disabled] {
  color: #ffffff;
  background-color: #cb396f;
  *background-color: #ba3163;
}

.btn-dribbble:active,
.btn-dribbble.active {
  background-color: #a62b59 \9;
}

.btn-flickr {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #f63198;
  *background-color: #ff0084;
  background-image: -moz-linear-gradient(top, #f051a5, #ff0084);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f051a5), to(#ff0084));
  background-image: -webkit-linear-gradient(top, #f051a5, #ff0084);
  background-image: -o-linear-gradient(top, #f051a5, #ff0084);
  background-image: linear-gradient(to bottom, #f051a5, #ff0084);
  background-repeat: repeat-x;
  border-color: #ff0084 #ff0084 #b3005c;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff051a5', endColorstr='#ffff0084', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-flickr:hover,
.btn-flickr:focus,
.btn-flickr:active,
.btn-flickr.active,
.btn-flickr.disabled,
.btn-flickr[disabled] {
  color: #ffffff;
  background-color: #ff0084;
  *background-color: #e60077;
}

.btn-flickr:active,
.btn-flickr.active {
  background-color: #cc006a \9;
}

.btn-foursquare {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #079dcd;
  *background-color: #0072b1;
  background-image: -moz-linear-gradient(top, #0cbadf, #0072b1);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0cbadf), to(#0072b1));
  background-image: -webkit-linear-gradient(top, #0cbadf, #0072b1);
  background-image: -o-linear-gradient(top, #0cbadf, #0072b1);
  background-image: linear-gradient(to bottom, #0cbadf, #0072b1);
  background-repeat: repeat-x;
  border-color: #0072b1 #0072b1 #004165;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0cbadf', endColorstr='#ff0072b1', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-foursquare:hover,
.btn-foursquare:focus,
.btn-foursquare:active,
.btn-foursquare.active,
.btn-foursquare.disabled,
.btn-foursquare[disabled] {
  color: #ffffff;
  background-color: #0072b1;
  *background-color: #006298;
}

.btn-foursquare:active,
.btn-foursquare.active {
  background-color: #00517e \9;
}

.btn-renren {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #3773ab;
  *background-color: #33669a;
  background-image: -moz-linear-gradient(top, #397cb6, #33669a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#397cb6), to(#33669a));
  background-image: -webkit-linear-gradient(top, #397cb6, #33669a);
  background-image: -o-linear-gradient(top, #397cb6, #33669a);
  background-image: linear-gradient(to bottom, #397cb6, #33669a);
  background-repeat: repeat-x;
  border-color: #33669a #33669a #204061;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff397cb6', endColorstr='#ff33669a', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-renren:hover,
.btn-renren:focus,
.btn-renren:active,
.btn-renren.active,
.btn-renren.disabled,
.btn-renren[disabled] {
  color: #ffffff;
  background-color: #33669a;
  *background-color: #2d5987;
}

.btn-renren:active,
.btn-renren.active {
  background-color: #264d74 \9;
}

.btn-skype {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #43bbe8;
  *background-color: #00aff0;
  background-image: -moz-linear-gradient(top, #70c3e2, #00aff0);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#70c3e2), to(#00aff0));
  background-image: -webkit-linear-gradient(top, #70c3e2, #00aff0);
  background-image: -o-linear-gradient(top, #70c3e2, #00aff0);
  background-image: linear-gradient(to bottom, #70c3e2, #00aff0);
  background-repeat: repeat-x;
  border-color: #00aff0 #00aff0 #0077a3;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff70c3e2', endColorstr='#ff00aff0', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-skype:hover,
.btn-skype:focus,
.btn-skype:active,
.btn-skype.active,
.btn-skype.disabled,
.btn-skype[disabled] {
  color: #ffffff;
  background-color: #00aff0;
  *background-color: #009cd7;
}

.btn-skype:active,
.btn-skype.active {
  background-color: #008abd \9;
}

.btn-stackexchange {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #3a70b0;
  *background-color: #185397;
  background-image: -moz-linear-gradient(top, #5184c1, #185397);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5184c1), to(#185397));
  background-image: -webkit-linear-gradient(top, #5184c1, #185397);
  background-image: -o-linear-gradient(top, #5184c1, #185397);
  background-image: linear-gradient(to bottom, #5184c1, #185397);
  background-repeat: repeat-x;
  border-color: #185397 #185397 #0e2f55;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5184c1', endColorstr='#ff185397', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-stackexchange:hover,
.btn-stackexchange:focus,
.btn-stackexchange:active,
.btn-stackexchange.active,
.btn-stackexchange.disabled,
.btn-stackexchange[disabled] {
  color: #ffffff;
  background-color: #185397;
  *background-color: #154781;
}

.btn-stackexchange:active,
.btn-stackexchange.active {
  background-color: #113b6b \9;
}

.btn-trello {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #438ab4;
  *background-color: #27709b;
  background-image: -moz-linear-gradient(top, #569cc4, #27709b);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#569cc4), to(#27709b));
  background-image: -webkit-linear-gradient(top, #569cc4, #27709b);
  background-image: -o-linear-gradient(top, #569cc4, #27709b);
  background-image: linear-gradient(to bottom, #569cc4, #27709b);
  background-repeat: repeat-x;
  border-color: #27709b #27709b #18445e;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff569cc4', endColorstr='#ff27709b', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-trello:hover,
.btn-trello:focus,
.btn-trello:active,
.btn-trello.active,
.btn-trello.disabled,
.btn-trello[disabled] {
  color: #ffffff;
  background-color: #27709b;
  *background-color: #226187;
}

.btn-trello:active,
.btn-trello.active {
  background-color: #1d5372 \9;
}

.btn-tumblr {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #34526e;
  *background-color: #2a4763;
  background-image: -moz-linear-gradient(top, #3a5976, #2a4763);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3a5976), to(#2a4763));
  background-image: -webkit-linear-gradient(top, #3a5976, #2a4763);
  background-image: -o-linear-gradient(top, #3a5976, #2a4763);
  background-image: linear-gradient(to bottom, #3a5976, #2a4763);
  background-repeat: repeat-x;
  border-color: #2a4763 #2a4763 #13202d;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3a5976', endColorstr='#ff2a4763', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-tumblr:hover,
.btn-tumblr:focus,
.btn-tumblr:active,
.btn-tumblr.active,
.btn-tumblr.disabled,
.btn-tumblr[disabled] {
  color: #ffffff;
  background-color: #2a4763;
  *background-color: #223a51;
}

.btn-tumblr:active,
.btn-tumblr.active {
  background-color: #1b2d3f \9;
}

.btn-vk {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #50739a;
  *background-color: #426187;
  background-image: -moz-linear-gradient(top, #5a7fa6, #426187);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5a7fa6), to(#426187));
  background-image: -webkit-linear-gradient(top, #5a7fa6, #426187);
  background-image: -o-linear-gradient(top, #5a7fa6, #426187);
  background-image: linear-gradient(to bottom, #5a7fa6, #426187);
  background-repeat: repeat-x;
  border-color: #426187 #426187 #293c54;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5a7fa6', endColorstr='#ff426187', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-vk:hover,
.btn-vk:focus,
.btn-vk:active,
.btn-vk.active,
.btn-vk.disabled,
.btn-vk[disabled] {
  color: #ffffff;
  background-color: #426187;
  *background-color: #3a5576;
}

.btn-vk:active,
.btn-vk.active {
  background-color: #314865 \9;
}

.btn-weibo {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #f14f4f;
  *background-color: #e64141;
  background-image: -moz-linear-gradient(top, #f85959, #e64141);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f85959), to(#e64141));
  background-image: -webkit-linear-gradient(top, #f85959, #e64141);
  background-image: -o-linear-gradient(top, #f85959, #e64141);
  background-image: linear-gradient(to bottom, #f85959, #e64141);
  background-repeat: repeat-x;
  border-color: #e64141 #e64141 #c11919;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff85959', endColorstr='#ffe64141', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-weibo:hover,
.btn-weibo:focus,
.btn-weibo:active,
.btn-weibo.active,
.btn-weibo.disabled,
.btn-weibo[disabled] {
  color: #ffffff;
  background-color: #e64141;
  *background-color: #e32a2a;
}

.btn-weibo:active,
.btn-weibo.active {
  background-color: #d81c1c \9;
}

.btn-xing {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #155c5d;
  *background-color: #074c4d;
  background-image: -moz-linear-gradient(top, #1f6768, #074c4d);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1f6768), to(#074c4d));
  background-image: -webkit-linear-gradient(top, #1f6768, #074c4d);
  background-image: -o-linear-gradient(top, #1f6768, #074c4d);
  background-image: linear-gradient(to bottom, #1f6768, #074c4d);
  background-repeat: repeat-x;
  border-color: #074c4d #074c4d #010707;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1f6768', endColorstr='#ff074c4d', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-xing:hover,
.btn-xing:focus,
.btn-xing:active,
.btn-xing.active,
.btn-xing.disabled,
.btn-xing[disabled] {
  color: #ffffff;
  background-color: #074c4d;
  *background-color: #053536;
}

.btn-xing:active,
.btn-xing.active {
  background-color: #031e1e \9;
}

.btn-youtube {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #a72121;
  *background-color: #6e0610;
  background-image: -moz-linear-gradient(top, #cd332d, #6e0610);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#cd332d), to(#6e0610));
  background-image: -webkit-linear-gradient(top, #cd332d, #6e0610);
  background-image: -o-linear-gradient(top, #cd332d, #6e0610);
  background-image: linear-gradient(to bottom, #cd332d, #6e0610);
  background-repeat: repeat-x;
  border-color: #6e0610 #6e0610 #250205;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcd332d', endColorstr='#ff6e0610', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-youtube:hover,
.btn-youtube:focus,
.btn-youtube:active,
.btn-youtube.active,
.btn-youtube.disabled,
.btn-youtube[disabled] {
  color: #ffffff;
  background-color: #6e0610;
  *background-color: #56050c;
}

.btn-youtube:active,
.btn-youtube.active {
  background-color: #3e0309 \9;
}
p.cardBland {
    width: 190px;
    margin: 0 auto;
}
p.cardBland img {
    vertical-align: middle;
}
.main {
    max-width: 640px;
    margin: 0 auto;
}
button:hover {
    cursor: pointer;
}
li { list-style-type: none }

.stepBar {
  position: relative;
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
  *zoom: 1;
}
.stepBar .step {
  position: relative;
  float: left;
  display: inline-block;
  line-height: 40px;
/*  padding: 0 40px 0 20px; */
  background-color: #bbb;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size:0.8em;
}
.stepBar .step:before, .stepBar .step:after {
  position: absolute;
  left: -6px;
  display: block;
  content: '';
  background-color: #bbb;
  border-left: 4px solid #FFF;
  width: 20px;
  height: 20px;
}
.stepBar .step:after {
  top: 0;
  -moz-transform: skew(30deg);
  -ms-transform: skew(30deg);
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
}
.stepBar .step:before {
  bottom: 0;
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
}
.stepBar .step:first-child {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.stepBar .step:first-child:before, .stepBar .step:first-child:after {
  content: none;
}
.stepBar .step:last-child {
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: url("https://websmart.zappallas.com/web_image?url=http://webpayment.smart-srv/image?id=11281") no-repeat right center;
}
.stepBar .step:last-child.current {
  color: #FFF;
  background: url("https://websmart.zappallas.com/web_image?url=http://webpayment.smart-srv/image?id=11284 ") no-repeat right center;
}
.stepBar .step.current {
  color: #FFF;
  background-color: #A2E65C;
}
.stepBar .step.current:before, .stepBar .step.current:after {
  background-color: #A2E65C;
}
.stepBar.step2 .step {
  width: 50%;
}
.stepBar.step3 .step {
  width: 33.333%;
}
.stepBar.step4 .step {
  width: 25%;
  height: 40px;
}
.stepBar.step5 .step {
  width: 20%;
}
.stepBar img {
    top: -6px;
    position: relative;
    left: -4px;
    z-index: 2;
}
/* ------------------- n_ito --------------------- */
/* --星読み既存用20170110--*/
.billingtitle1 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding: 0px 10px;
    font-weight: bold;
}

.billingtitle2 {
    font-size: 1.6rem;
    margin-top:40px;
    margin-bottom: 30px;
    padding: 0px 10px;
    font-weight: bold;
}

p.textCenter {
    font-size: 1.6rem;
    margin-bottom: 30px;
    margin-top: 30px;
}


.hr-text {
	line-height: 1em;
	position: relative;
	outline: 0;
	border: 0;
	color: #bbbbbb;
	text-align: center;
	height: 1.5em;
	margin: 50px 5px;
}
.hr-text:before {
	content: '';
	background: -webkit-linear-gradient(left, #e2e2e2, #e2e2e2, #e2e2e2);
	background: linear-gradient(to right, #e2e2e2, #e2e2e2, #e2e2e2);
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 3px;
}
.hr-text:after {
	content: attr(data-content);
	position: relative;
	display: inline-block;
	padding: 0 .5em;
	line-height: 1.5em;
	font-weight: bold;
	color: #bbbbbb;
	font-size: 1.6rem;
	background-color: #fcfcfa;
}

.billingtitle2 span {
    display: block;
    font-size: 12px;
    padding: 10px 0px 0px 0px;
    color: #90bf2f;
}
/*--星読み既存用20170110--*/
/* 2021/12/20 sb勝手用入会・ログイン画面修正対応 */

  .docomo, .au, .softbank{
    box-shadow: 0px 7px 7px -7px rgb(0 0 0 / 10%), 7px 7px 7px -7px rgb(0 0 0 / 10%);
    height: 64px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
  }

  .credit{
    border-left: 8px solid #4C4A40;
    padding: 10px;
    box-shadow: 0px 2px 3px 0px rgb(0 0 0 / 15%);
    border-top: none;
    border-right: none;
    border-bottom: none;
    height: 64px;
  }

  .credit-img{
    zoom: 0.5;
  }

  .docomo{
    cursor: pointer;
  }

  input#docomologo {
    height: 30px !important;
  }

  .au{
    padding: 0.8em;
    margin-top: 16px;
  }

.au_border{
    border-left: 8px solid #EB5405;
  }

  .au img{
    zoom: 0.6 !important;
  }

  .softbank{
    border-left: 8px solid #B9BDC0;
  }

  .sb-guide{
    margin: 28px 0 20px 0;
  }

  .carrier-regist-btn{
    background: #fff;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
    border-radius: 4px;
    height: 64px;
  }

  .carrier-regist-btn p,
  .career-btn p{
    font-family: Source Han Sans JP, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    line-height: 16px;
    text-align: center;
    color: #4C4A40;
  }

  .carrier-regist-btn p{
    margin-top: 6px;
    margin-bottom: 10px;
  }

  .carrier-regist-btn input,
  .carrier-regist-btn img{
    zoom: 0.7;
  }

  .sb-notice{
    font-family: Source Han Sans JP, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #4C4A40;
    margin: 20px auto 12px auto;
  }

  .carrier-regist-btn a,
  a{
    text-decoration: none;
  }

/* 2021/12/20 sb勝手用入会・ログイン画面修正対応 */

/* 2021/12/21 ログイン画面のSNSログインボタン */
.career-btn{
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e1e1e1',GradientType=0 );
  border-radius: 4px;
  height: 64px;
  display: -ms-flexbox;
  -ms-flex-align: center;
  align-items: center;
}

.career-btn a{
  background: #fff;
}

.adress-login-btn {
  height: 52px;
  background: #fff;
  box-shadow: 2px 2px 4px rgb(0 0 0 / 15%);
}

.adress-login {
  font-family: Source Han Sans JP, sans-serif !important;
  font-style: normal !important;
  font-weight: bold !important;
  font-size: 14px !important;
  line-height: 23px !important;
  text-align: center !important;
  color: #4C4A40 !important;
  padding-top: 8px;
}

.adress-login span{
  font-size: 11px;
}

.login-btn-back{
  background: #F2F3F4;
  padding: 28px 20px;
  margin: auto -2.4em;
}

.btn-frame{
  display: flex;
  height: 40px;
  justify-content: center;
}

.btn-yahoo{
  background: #FF0033;
  color: #fff;
  padding: 10px;
  border-radius: 0px 4px 4px 0px;
  font-family: Source Han Sans JP, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  width: -webkit-fill-available;
}

.yahoo-icon{
  background: #FFFFFF;
  border: 1px solid #FF0033;
  box-sizing: border-box;
  border-radius: 4px 0px 0px 4px;
}

.yahoo-icon img{
  padding: 8px 20px;
  border-radius: 4px 0px 0px 4px;
}

.sns-logo{
  margin-left: auto;
}

.sns-logo img{
  padding-right: 20px;
  margin-top: -3px;
}

.sns-name{
  margin-right:auto;
  margin-left: -20px;
}

.btn-facebook-new{
  background: #1877F2;
  color: #fff;
  padding: 10px 0px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  text-align: center;
  margin: 10px auto;
  border: 1px solid #1877f2;
}

.sns-name span{
  padding-left: 16px;
  font-family: Source Han Sans JP, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  padding-top:10px;
}

.btn-twitter-new{
  background: #1D9BF0;
  color: #fff;
  padding: 10px 0px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  text-align: center;
  border: 1px solid #1D9BF0;
  margin: auto;
}
/* 2021/12/21 ログイン画面のSNSログインボタン */

/*メールアドレスでログインするフォーム*/
.address-login-form {
  padding: 10px 20px 20px 20px;
  border-left: 8px solid rgb(185, 189, 192);
  border-top-left-radius: 2px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  box-shadow: 2px 4px 4px rgb(0 0 0 / 15%);
  background: #fff;
  margin-top: -5px;
}
.address-login-form-au {
  padding: 10px 20px 20px 20px;
  border-left: 8px solid rgb(235, 84, 5);
  border-top-left-radius: 2px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  box-shadow: 2px 4px 4px rgb(0 0 0 / 15%);
  background: #fff;
  margin-top: -5px;
}
.login-btn-back input,
.address-login-form input{
  height: 44px;
}

.content-area {
  margin: 0 10px !important;
}

.mb-8{
  margin-bottom: 8px;
}

.mb-20{
  margin-bottom: 20px;
}

form.docomo-form{
  display: contents !important;
}

.no-clear{
  text-decoration-line: underline;
  border-bottom: none;
}

.pass-forget{
  font-family: Source Han Sans JP, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  text-decoration-line: underline;
  color: #4C4A40;
  border-bottom: none;
}

.billingtitle3{
  font-family: Source Han Sans JP, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  color: #4C4A40;
}

.billing-sub{
  font-family: Source Han Sans JP, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #4C4A40;
}

.add-notice{
  margin-top: 20px;
}

.hr-text-area{
  margin: 40px auto 20px auto !important;
}

.sns-notice{
  font-family: Source Han Sans JP, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #4C4A40;
}

.mail-log-form{
  height: 44px;
}

.sb-mail-btn{
  width: 100%;
  border-radius: 4px !important;
  margin: 12px auto;
  background: #B9BDC0;
  border: 1px solid #B9BDC0;
  font-family: Source Han Sans JP, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  -webkit-appearance: none;
}
.sb-mail-btn-au{
  width: 100%;
  border-radius: 4px !important;
  margin: 12px auto;
  background: #EB5405;
  border: 1px solid #EB5405;
  font-family: Source Han Sans JP, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  -webkit-appearance: none;
}
.no-regi-use{
  margin-bottom: 20px;
  height: 44px;
  color: #4C4A40;
  font-family: Source Han Sans JP, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
}

.login-footer-btn a{
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #ffffff;
  padding: 12px 0;
  border-radius: 4px;
  border: 1px solid #bbbbbb;
  font-size: 14px;
  font-family: Source Han Sans JP, sans-serif;
  margin-top: 40px;
}

/* a-3最初から手続するボタン */
.start-over{
  margin-top: 0px !important;
}

.pt-20{
  padding-top: 20px;
}

.pb-24{
  padding-bottom: 24px !important;
}

.regi-area{
  padding-bottom: 144px;
}

.mail-check-area{
  padding-bottom: 66px !important;
}

.sb-mail-area{
  padding-bottom: 60px !important;
}

.pay-change{
  padding-bottom: 122px;
}

.sns-block{
  margin: 32px 16px 8px 16px !important;
}

.mb-0{
  margin-bottom: 0 !important;
}

.pb-122{
  padding-bottom: 122px;
}

.regi-docomo{
  border: #fff;
  margin: 6px auto;
  cursor: pointer;
  height: 64px;
}

.main{
  overflow-x: hidden;
}

@media screen and (max-width: 428px){
  .btn-yahoo{
    padding: 10px 14px;
    width: -webkit-fill-available;
  }
}

@media screen and (max-width: 376px){
  .btn-yahoo{
    font-size: 12px;
  }
}

@media screen and (max-width: 321px){
  .btn-frame {
    height: 50px;
  }
  .yahoo-icon img{
    padding: 13px 20px;
  }
  .btn-yahoo{
    font-size: 10px;
  }
}

input.mail-login-btn {
  background: #88cf00;
  background: -webkit-linear-gradient(top, #88cf00 0%, #69b700 100%);
  background: linear-gradient(to bottom, #88cf00 0%, #69b700 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#88cf00', endColorstr='#69b700',GradientType=0 );
  color: #ffffff;
  font-size: 1.4rem;
  border: 1px solid #69b700;
  width: 100%;
  padding: 9px 0;
  border-radius: 4px;
  margin: 24px 0 12px;
  font-weight: bold;
}
