@charset "UTF-8";
/* Do not remove the comments below. It's the markers used by wiredep to inject
   sass dependencies when defined in the bower.json of your dependencies */
/*共通メインスタイル*/
html, body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Meiryo UI", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  line-height: 1em;
  color: #232323;
  background-color: #F2F5F2;
}

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a > img {
  /*画像下に余白ができるのを回避*/
  vertical-align: bottom;
}

input,
textarea,
select {
  font-family: "Segoe UI", "Meiryo UI", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1rem;
  border: 1px solid #D5D5D5;
  border-radius: 0;
  background-color: #FFF;
}
input:disabled,
textarea:disabled,
select:disabled {
  background-color: #B7B7B7;
  color: #707070;
}
input:focus,
textarea:focus,
select:focus {
  outline: 0.25rem solid rgba(50, 150, 255, 0.5);
  outline-offset: -2px;
}

select {
  background-color: inherit;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 2.5rem;
}

textarea {
  resize: vertical;
}

button:focus {
  outline: 0.25rem solid rgba(50, 150, 255, 0.5);
  outline-offset: -2px;
}

p {
  margin: 0;
}

input,
textarea {
  padding: 0.5em;
  width: 100%;
}
input:-moz-read-only, textarea:-moz-read-only {
  background-color: #F2F5F2;
}
input:read-only,
textarea:read-only {
  background-color: #F2F5F2;
}
input:-moz-read-only:focus, textarea:-moz-read-only:focus {
  outline-color: rgba(0, 74.1463414634, 152, 0.5);
}
input:read-only:focus,
textarea:read-only:focus {
  outline-color: rgba(0, 74.1463414634, 152, 0.5);
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #9C9C9C;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
  color: #9C9C9C;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #9C9C9C;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #9C9C9C;
}
input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: #9C9C9C;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #9C9C9C;
}
input:placeholder-shown,
textarea:placeholder-shown {
  color: #9C9C9C;
}

label {
  font-weight: normal;
}

/***********
共通クラス
************/
/*コンテンツの各ブロックに付与*/
.content-wrapper {
  margin-bottom: 1rem;
}

.content {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(35, 35, 35, 0.6);
          box-shadow: 0px 0px 6px 0px rgba(35, 35, 35, 0.6);
}

/*コンテンツタイトル*/
.contentTitle {
  display: block;
  font-size: 1.25rem;
  margin: 0;
  padding: 1em 1rem;
  font-weight: bold;
  line-height: 1em;
  border-bottom: 1px solid #9DCE96;
}

.contentContainer {
  padding: 1rem;
}

.contentBlock {
  margin-bottom: 2rem;
}

/*コンテンツサブタイトル*/
.contentSubTitle {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1em;
  line-height: 1em;
}

/*代表的なリンク*/
.standardLinkStyle a {
  display: inline-block;
  padding: 1em 1em 1em 2.25em;
  width: 100%;
  background-color: #0BA541;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
  position: relative;
}
.standardLinkStyle a:hover {
  background-color: #80BB7D;
}
.standardLinkStyle a:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 0.5em solid transparent;
  border-left-color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*シンプルなリンク*/
.simpleLink {
  color: #71AD6D;
  cursor: pointer;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  text-decoration: none;
}
.simpleLink:hover {
  color: #C1E3BD;
  text-decoration: underline;
}

/*説明・注釈的テキスト*/
.descriptionText, .descriptionText-min {
  display: block;
  margin: 0.25em 0;
}
.contentTitle .descriptionText, .contentTitle .descriptionText-min {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.descriptionText-min {
  font-size: 0.8rem;
  margin: 0 0 0.25rem 0;
}

/*ボタン*/
.button {
  font-size: 1em;
  padding: 0 0.75em;
  height: 32px;
  line-height: 32px;
  border-radius: 4px;
  color: inherit;
  text-align: center;
  border: none;
  outline: none;
  background-color: #B7B7B7;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(35, 35, 35, 0.7);
          box-shadow: 0px 1px 0px 0px rgba(35, 35, 35, 0.7);
  cursor: pointer;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(208.5, 208.5, 208.5)), to(#B7B7B7));
  background-image: -webkit-linear-gradient(rgb(208.5, 208.5, 208.5), #B7B7B7);
  background-image: linear-gradient(rgb(208.5, 208.5, 208.5), #B7B7B7);
  /* 濃いアクセントカラーのボタン */
  /* 薄いアクセントカラーのボタン */
}
.button:focus {
  outline: 1px dotted #9C9C9C;
  outline-offset: 1px;
}
.button:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(221.25, 221.25, 221.25)), to(rgb(195.75, 195.75, 195.75)));
  background-image: -webkit-linear-gradient(rgb(221.25, 221.25, 221.25), rgb(195.75, 195.75, 195.75));
  background-image: linear-gradient(rgb(221.25, 221.25, 221.25), rgb(195.75, 195.75, 195.75));
  outline: none;
}
.button:active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(221.25, 221.25, 221.25)), to(rgb(221.25, 221.25, 221.25)));
  background-image: -webkit-linear-gradient(rgb(221.25, 221.25, 221.25), rgb(221.25, 221.25, 221.25));
  background-image: linear-gradient(rgb(221.25, 221.25, 221.25), rgb(221.25, 221.25, 221.25));
}
.button.darkButton {
  color: #FFFFFF;
  background-color: #0BA541;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(14.1875, 212.8125, 83.8352272727)), to(#0BA541));
  background-image: -webkit-linear-gradient(rgb(14.1875, 212.8125, 83.8352272727), #0BA541);
  background-image: linear-gradient(rgb(14.1875, 212.8125, 83.8352272727), #0BA541);
}
.button.darkButton:focus {
  outline: 1px dotted #9C9C9C;
  outline-offset: 1px;
}
.button.darkButton:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(15.78125, 236.71875, 93.2528409091)), to(rgb(12.59375, 188.90625, 74.4176136364)));
  background-image: -webkit-linear-gradient(rgb(15.78125, 236.71875, 93.2528409091), rgb(12.59375, 188.90625, 74.4176136364));
  background-image: linear-gradient(rgb(15.78125, 236.71875, 93.2528409091), rgb(12.59375, 188.90625, 74.4176136364));
  outline: none;
}
.button.darkButton:active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(15.78125, 236.71875, 93.2528409091)), to(rgb(15.78125, 236.71875, 93.2528409091)));
  background-image: -webkit-linear-gradient(rgb(15.78125, 236.71875, 93.2528409091), rgb(15.78125, 236.71875, 93.2528409091));
  background-image: linear-gradient(rgb(15.78125, 236.71875, 93.2528409091), rgb(15.78125, 236.71875, 93.2528409091));
}
.button.thinButton {
  background-color: #80BB7D;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(160.7121212121, 204.5151515152, 158.4848484848)), to(#80BB7D));
  background-image: -webkit-linear-gradient(rgb(160.7121212121, 204.5151515152, 158.4848484848), #80BB7D);
  background-image: linear-gradient(rgb(160.7121212121, 204.5151515152, 158.4848484848), #80BB7D);
}
.button.thinButton:focus {
  outline: 1px dotted #9C9C9C;
  outline-offset: 1px;
}
.button.thinButton:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(177.0681818182, 213.2727272727, 175.2272727273)), to(rgb(144.3560606061, 195.7575757576, 141.7424242424)));
  background-image: -webkit-linear-gradient(rgb(177.0681818182, 213.2727272727, 175.2272727273), rgb(144.3560606061, 195.7575757576, 141.7424242424));
  background-image: linear-gradient(rgb(177.0681818182, 213.2727272727, 175.2272727273), rgb(144.3560606061, 195.7575757576, 141.7424242424));
  outline: none;
}
.button.thinButton:active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(177.0681818182, 213.2727272727, 175.2272727273)), to(rgb(177.0681818182, 213.2727272727, 175.2272727273)));
  background-image: -webkit-linear-gradient(rgb(177.0681818182, 213.2727272727, 175.2272727273), rgb(177.0681818182, 213.2727272727, 175.2272727273));
  background-image: linear-gradient(rgb(177.0681818182, 213.2727272727, 175.2272727273), rgb(177.0681818182, 213.2727272727, 175.2272727273));
}
.button:disabled {
  background-color: #D5D5D5;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #EEEEEE;
}
.button:disabled:focus, .button:disabled:hover, .button:disabled:active {
  background-color: #D5D5D5;
  background-image: none;
}

/*aタグにbuttonクラスをつけた場合のaタグスタイルリセット*/
a.button {
  text-decoration: none;
  display: inline-block;
}
a.button:focus {
  color: inherit;
}
a.button:hover {
  cursor: pointer;
  color: inherit;
}

/* カレンダーボタン・タイムボタン */
.timeButton, .calendarButton {
  width: 32px;
  height: 32px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  position: relative;
  background-color: #80BB7D;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(160.7121212121, 204.5151515152, 158.4848484848)), to(#80BB7D));
  background-image: -webkit-linear-gradient(rgb(160.7121212121, 204.5151515152, 158.4848484848), #80BB7D);
  background-image: linear-gradient(rgb(160.7121212121, 204.5151515152, 158.4848484848), #80BB7D);
}
.timeButton:focus, .calendarButton:focus {
  outline: 1px dotted #9C9C9C;
  outline-offset: 1px;
}
.timeButton:hover, .calendarButton:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(177.0681818182, 213.2727272727, 175.2272727273)), to(rgb(144.3560606061, 195.7575757576, 141.7424242424)));
  background-image: -webkit-linear-gradient(rgb(177.0681818182, 213.2727272727, 175.2272727273), rgb(144.3560606061, 195.7575757576, 141.7424242424));
  background-image: linear-gradient(rgb(177.0681818182, 213.2727272727, 175.2272727273), rgb(144.3560606061, 195.7575757576, 141.7424242424));
  outline: none;
}
.timeButton:active, .calendarButton:active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(177.0681818182, 213.2727272727, 175.2272727273)), to(rgb(177.0681818182, 213.2727272727, 175.2272727273)));
  background-image: -webkit-linear-gradient(rgb(177.0681818182, 213.2727272727, 175.2272727273), rgb(177.0681818182, 213.2727272727, 175.2272727273));
  background-image: linear-gradient(rgb(177.0681818182, 213.2727272727, 175.2272727273), rgb(177.0681818182, 213.2727272727, 175.2272727273));
}
.timeButton:after, .calendarButton:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.calendarButton:after {
  background-image: url(/Subscribe/Contents/Images/calendar_icon.svg);
}

.timeButton:after {
  background-image: url(/Subscribe/Contents/Images/clock_icon.svg);
}

.inputButton-lineUp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.inputButton-lineUp .button {
  margin-left: 0.25em;
}

.radio-container, .checkbox-container {
  padding: 8px 0;
  margin: 0 1em 0 0;
  display: inline-block;
  position: relative;
}

.radio-container .dummyCrtl, .checkbox-container .dummyCrtl {
  display: block;
  height: 20px;
  width: 20px;
  -webkit-box-shadow: 0 1px 3px 0 #707070 inset;
          box-shadow: 0 1px 3px 0 #707070 inset;
  clear: both;
  float: left;
  position: relative;
  background-color: #FFF;
  cursor: pointer;
}

.radio-container .labelText, .checkbox-container .labelText {
  display: block;
  margin-left: 24px;
  line-height: 20px;
  cursor: pointer;
}

/* チェックボックス */
.checkbox-container > input[type=checkbox] {
  position: absolute;
  display: block;
  opacity: 0;
  overflow: hidden;
}
.checkbox-container > input[type=checkbox]:checked + .dummyCrtl:after {
  content: "";
  display: block;
  height: 14px;
  width: 8px;
  border-right: 3px solid #126f8c;
  border-bottom: 3px solid #126f8c;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%) rotate(45deg);
          transform: translate(-50%, -60%) rotate(45deg);
}
.checkbox-container > input[type=checkbox]:disabled + .dummyCrtl {
  background-color: #D5D5D5;
  cursor: default;
}
.checkbox-container > input[type=checkbox]:disabled ~ .labelText {
  color: rgb(162.5, 162.5, 162.5);
  cursor: default;
}
/*ラジオボタン*/
.radio-container > input[type=radio] {
  position: absolute;
  display: block;
  opacity: 0;
  overflow: hidden;
}
.radio-container > input[type=radio]:checked + .dummyCrtl:after {
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  border-radius: 6px;
  background-color: #126f8c;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.radio-container > input[type=radio]:disabled + .dummyCrtl {
  background-color: #D5D5D5;
  cursor: default;
}
.radio-container > input[type=radio]:disabled ~ .labelText {
  color: rgb(162.5, 162.5, 162.5);
  cursor: default;
}
.radio-container .dummyCrtl {
  border-radius: 10px;
}
/*****************
 擬似テーブルのスタイル
 以下の構造にしてください。
 <ul class="mockTableItemList">
   <li class="mockTable-block">
     <div class="mockTable-itemName"><span class="itemName-inner">アイテムの名前・ラベル</span></div>
     <div class="mockTable-item">対応するアイテム。inputとか</div>
  </li>
</ul>

-- Emmet展開用 --
ul.mockTableItemList>li.mockTable-block*2>(div.mockTable-itemName>span.itemName-inner)+(div.mockTable-item)

※スマホ向けで一覧の表示がPC向け以降でテーブルのような表示になります。（flexbox利用）
※タブレット向けでテーブルのようなスタイルにしたい場合は、mockTableItemListと同一の所に「mockTableTab」を付与してください。
※「任意」ラベルがつきます。「必須」にしたい場合はitemName-innerと同一の所に「required」を付与してください。
   例）<div class="mockTable-itemName required"><span class="itemName-inner required">アイテムの名前・ラベル</span></div>
※「任意」のラベルも必要ない場合はitemName-innerクラスと同一の所に「noneRequiredTag」クラスを付与してください。。
 *****************/
.mockTableItemList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mockTableItemList .mockTable-block {
  padding: 1rem 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #EEEEEE;
}
.mockTableItemList .mockTable-block:nth-child(odd) {
  background-color: #EBF6EA;
}
.mockTableItemList .mockTable-block select {
  background-color: #FFF;
}
.mockTableItemList .mockTable-block .mockTable-itemName {
  padding-bottom: 0.25em;
  font-weight: bold;
}
.mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner {
  /*任意*/
  /*必須*/
  /*任意・必須のラベル不要*/
}
.mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner:before {
  content: "任意";
  margin-right: 0.5em;
  font-size: 0.5rem;
  padding: 0.2em 0.25em;
  background-color: #D5D5D5;
  color: #FFFFFF;
}
.mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner.required:before {
  content: "必須";
  background-color: #FEF0F0;
  color: #C71919;
}
.mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner.noneRequiredTag:before {
  content: none;
}
@media screen and (min-width: 992px) {
  .mockTableItemList .mockTable-block {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    border-bottom: 1px solid #FFF;
  }
  .mockTableItemList .mockTable-block .mockTable-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
    border-left: 1px solid #FFF;
    padding: 1rem 0.5em;
    background-color: #F4F4F4;
  }
  .mockTableItemList .mockTable-block .mockTable-itemName {
    padding: 1rem 0 1rem 0.5rem;
    width: 30%;
    max-width: 200px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #C1E3BD;
    font-weight: normal;
  }
  .mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner {
    position: relative;
    margin-top: 0.5rem;
    display: inline-block;
    width: 100%;
  }
  .mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner.noneRequiredTag {
    padding-top: 0;
    margin-top: 0;
  }
  .mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner:before {
    position: absolute;
    top: -1rem;
    left: 0;
    line-height: 1em;
  }
  .mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner .subName {
    font-size: 0.5rem;
    padding-right: 0.5em;
  }
}
@media screen and (min-width: 992px) and (min-width: 768px) {
  .mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner .subName {
    display: block;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .mockTableItemList.mockTableTab .mockTable-block {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    border-bottom: 1px solid #FFF;
  }
  .mockTableItemList.mockTableTab .mockTable-block .mockTable-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
    border-left: 1px solid #FFF;
    padding: 1rem 0.5em;
    background-color: #F4F4F4;
  }
  .mockTableItemList.mockTableTab .mockTable-block .mockTable-itemName {
    padding: 1rem 0 1rem 0.5rem;
    width: 30%;
    max-width: 200px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #C1E3BD;
    font-weight: normal;
  }
  .mockTableItemList.mockTableTab .mockTable-block .mockTable-itemName .itemName-inner {
    position: relative;
    margin-top: 0.5rem;
    display: inline-block;
    width: 100%;
  }
  .mockTableItemList.mockTableTab .mockTable-block .mockTable-itemName .itemName-inner.noneRequiredTag {
    padding-top: 0;
    margin-top: 0;
  }
  .mockTableItemList.mockTableTab .mockTable-block .mockTable-itemName .itemName-inner:before {
    position: absolute;
    top: -1rem;
    left: 0;
    line-height: 1em;
  }
  .mockTableItemList.mockTableTab .mockTable-block .mockTable-itemName .itemName-inner .subName {
    font-size: 0.5rem;
    padding-right: 0.5em;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .mockTableItemList.mockTableTab .mockTable-block .mockTable-itemName .itemName-inner .subName {
    display: block;
    padding-right: 0;
  }
}

/* バリデーションエラーメッセージ */
.validationErrorMessage {
  display: block;
  background-color: #FEF0F0;
  color: #E52222;
  font-size: 0.8rem;
  padding: 0.25em;
  margin: 0.5em 0 0.25em;
}

/* AngularStrap datepicker */
.datepicker .bsDatepicker-iconRight, .datepicker .bsDatepicker-iconLeft {
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
}

.datepicker .bsDatepicker-iconRight:before, .datepicker .bsDatepicker-iconLeft:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 0.5em solid transparent;
  position: absolute;
  top: 0;
  left: -0.25em;
}

.datepicker {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border: 1px solid #80BB7D;
  padding: 0.25rem;
}
.datepicker.dropdown-menu {
  width: 260px;
  /*height: 250px;*/
}
.datepicker.dropdown-menu button {
  outline: none;
  border: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.datepicker.dropdown-menu tbody {
  /*height: 180px;*/
}
.datepicker.dropdown-menu tbody button {
  padding: 6px;
}
.datepicker.dropdown-menu tbody button:hover {
  background-color: #9DCE96;
}
.datepicker.dropdown-menu.datepicker-mode-1 tbody button, .datepicker.dropdown-menu.datepicker-mode-2 tbody button {
  height: 65px;
}
.datepicker thead .text-center {
  border-bottom: 1px solid #D5D5D5;
}
.datepicker .bsDatepicker-iconLeft:before {
  border-right-color: #232323;
}
.datepicker .bsDatepicker-iconRight:before {
  border-left-color: #232323;
}
.datepicker .text-muted {
  color: #D5D5D5;
}
.datepicker tbody td button.btn-today {
  background-color: #C1E3BD;
  color: #232323;
}
.datepicker tbody td button.btn-primary {
  background-color: #0BA541;
  color: #FFFFFF;
}
.datepicker.datepicker-mode-0 thead th.dow:first-child {
  background-color: #fde5ea;
  width: 1.25em;
}
.datepicker.datepicker-mode-0 thead th.dow:last-child {
  background-color: #e0eaf7;
  width: 1.25em;
}

/* timepicker */
.timepicker.dropdown-menu {
  padding: 0 4px;
}
.timepicker.dropdown-menu button {
  outline: none;
  border: 0px;
}
.timepicker.dropdown-menu tbody button {
  padding: 6px;
}
.timepicker.dropdown-menu .btn-primary {
  background-color: #0BA541;
}

/*画面背景*/
input:disabled {
  -webkit-appearance: none;
}

.content-wrapper {
  margin-bottom: 2em;
}

.content {
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #9DCE96;
  background-color: rgba(255, 255, 255, 0.85);
}

.contentTitle {
  border-radius: 4px 4px 0 0;
  background-image: url(/Subscribe/Contents/Images/fire.png);
  background-repeat: no-repeat;
  background-position: 0.5em center;
  padding-left: 40px;
  background-size: auto 40%;
}

.contentSubTitle {
  border-left: 4px solid #71AD6D;
  padding-left: 0.5em;
}

.standardLinkStyle a {
  border-radius: 4px;
  background-color: #FFF;
  border: 1px solid #9DCE96;
  color: #44733F;
  position: relative;
  padding: 1em 2.25em 1em 1em;
}
.standardLinkStyle a:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border: 2px solid transparent;
  border-top-color: #0BA541;
  border-right-color: #0BA541;
  position: absolute;
  top: 50%;
  right: 1.5em;
  -webkit-transform: rotate(45deg) translateY(-60%);
          transform: rotate(45deg) translateY(-60%);
}
.standardLinkStyle a:before {
  content: none;
}

.calendarButton:after {
  background-image: url(/Subscribe/Contents/Images/calendar_icon.svg);
}

.timeButton:after {
  background-image: url(/Subscribe/Contents/Images/clock_icon.svg);
}

.validationErrorMessage {
  font-weight: bold;
  background-color: transparent;
  margin: 0.5em 0 0;
}
@media screen and (min-width: 992px) {
  .validationErrorMessage {
    margin: 0;
  }
}

.modal-backdrop {
  background-color: rgba(35, 35, 35, 0.7);
}

.modal-content {
  border-radius: 0;
}

.modal .operateButtonWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1em;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.modal .operateButtonWrap .button {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  margin: 0 0.25em;
  max-width: 50%;
}

.deleteModalWrapper .deleateButton-wrap {
  margin: 1rem 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  /* 削除するボタン */
  /* 削除しない(戻る)ボタン */
}
@media screen and (min-width: 768px) {
  .deleteModalWrapper .deleateButton-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.deleteModalWrapper .deleateButton-wrap .deleteButton {
  margin: 1rem 0;
}
@media screen and (min-width: 768px) {
  .deleteModalWrapper .deleateButton-wrap .deleteButton {
    margin: 0 auto;
    padding: 0 3rem;
  }
}
.deleteModalWrapper .deleateButton-wrap .notDeleteButton {
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .deleteModalWrapper .deleateButton-wrap .notDeleteButton {
    margin: 0;
  }
}

.ime-enabled {
  ime-mode: active;
}

.ime-disabled {
  ime-mode: disabled;
}

.alert {
  position: fixed;
  top: 60px;
  z-index: 2;
}

.alert.top {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70%;
}

.alert.top-left {
  left: 1rem;
}

.alert.top-right {
  right: 1rem;
}

.alert strong {
  display: block;
}

.alert button {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#transparentModalWrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}

#loadingViewWrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-transition: 350ms linear all;
  transition: 350ms linear all;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#loadingViewWrap.ng-enter {
  opacity: 0.2;
}
#loadingViewWrap.ng-leave.ng-leave-active {
  opacity: 0;
}
#loadingViewWrap.ng-enter.ng-enter-active, #loadingViewWrap.ng-leave {
  opacity: 1;
}
#loadingViewWrap .loadingText {
  color: white;
  display: block;
  padding-top: 0.25em;
}
#loadingViewWrap .spinner {
  text-align: center;
}
#loadingViewWrap .spinner > div {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
#loadingViewWrap .spinner .bounce1 {
  -webkit-animation-delay: -0.46s;
  animation-delay: -0.46s;
}
#loadingViewWrap .spinner .bounce2 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
#loadingViewWrap .spinner .bounce3 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
#loadingViewWrap .spinner .bounce4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.operateButton-wrap {
  margin: 1rem 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  /* 次へボタン */
  /* 戻るボタン */
}
@media screen and (min-width: 768px) {
  .operateButton-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.operateButton-wrap .nextButton {
  margin: 1rem 0;
  padding: 0 3rem;
}
@media screen and (min-width: 768px) {
  .operateButton-wrap .nextButton {
    position: relative;
    margin: 0 auto;
  }
}
.operateButton-wrap .returnButton {
  font-size: 0.8em;
  padding: 0 3rem;
}
@media screen and (min-width: 768px) {
  .operateButton-wrap .returnButton {
    left: 0;
    position: absolute;
  }
}

.mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner {
  /* 任意・必須の基本*/
  /*必須*/
}
.mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner:before {
  font-size: 0.75rem;
}
@media screen and (min-width: 992px) {
  .mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner:before {
    top: -1.25rem;
  }
}
.mockTableItemList .mockTable-block .mockTable-itemName .itemName-inner.required:before {
  background-color: #C71919;
  color: #FEF0F0;
}
@media screen and (min-width: 768px) {
  .mockTableItemList.mockTableTab .mockTable-block .mockTable-itemName .itemName-inner:before {
    top: -1.25rem;
  }
}

input.ng-touched.ng-invalid, input.ng-dirty.ng-invalid, select.ng-touched.ng-invalid, select.ng-dirty.ng-invalid, textarea.ng-touched.ng-invalid, textarea.ng-dirty.ng-invalid {
  background-color: #FEF0F0;
  border: 1px solid #E52222;
}

.formTableItemList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.formTableItemList .formTable-block {
  padding: 1rem 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #EEEEEE;
}
.formTableItemList .formTable-block:nth-child(odd) {
  background-color: #EBF6EA;
}
.formTableItemList .formTable-block select {
  background-color: #FFF;
}
.formTableItemList .formTable-block .formTable-itemName {
  padding-bottom: 0.25em;
}
.formTableItemList .formTable-block .formTable-itemName .formTable-itemTitle {
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.formTableItemList .formTable-block .formTable-itemName .formTable-itemTitle .required {
  padding: 0.2rem 0.05rem 0.2rem 0.2rem;
  margin-right: 0.5rem;
  white-space: nowrap;
  line-height: 1;
  font-size: 0.75rem;
  background-color: #C71919;
  color: #FEF0F0;
}
.formTableItemList .formTable-block .formTable-itemName .itemName-inner-block {
  display: block;
}
@media screen and (min-width: 992px) {
  .formTableItemList .formTable-block {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    border-bottom: 1px solid #FFF;
  }
  .formTableItemList .formTable-block .formTable-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
    border-left: 1px solid #FFF;
    padding: 1rem 0.5em;
    background-color: #F4F4F4;
  }
  .formTableItemList .formTable-block .formTable-item.noInput {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .formTableItemList .formTable-block .formTable-itemName {
    padding: 1rem 0 1rem 0.5rem;
    width: 30%;
    max-width: 200px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #C1E3BD;
  }
  .formTableItemList .formTable-block .formTable-itemName .formTable-itemTitle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: normal;
  }
  .formTableItemList .formTable-block .formTable-itemName .formTable-itemTitle .itemName-inner {
    width: 100%;
  }
  .formTableItemList .formTable-block .formTable-itemName .formTable-itemTitle .required {
    padding: 0.2rem 0.05rem 0.2rem 0.2rem;
    float: left;
    left: 0.5rem;
    margin-bottom: 0.1rem;
  }
  .formTableItemList .formTable-block .formTable-itemName .formTable-itemTitle .noneRequiredTag {
    margin-right: 0.5em;
    padding: 0.2em 0.25em;
    background-color: #D5D5D5;
    color: #FFFFFF;
    font-size: 0.75rem;
    padding-top: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) and (min-width: 992px) {
  .formTableItemList .formTable-block .formTable-itemName .formTable-itemTitle .noneRequiredTag {
    top: -1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .formTableItemList.formTableTab .formTable-block {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    border-bottom: 1px solid #FFF;
  }
  .formTableItemList.formTableTab .formTable-block .formTable-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
    border-left: 1px solid #FFF;
    padding: 1rem 0.5em;
    background-color: #F4F4F4;
  }
  .formTableItemList.formTableTab .formTable-block .formTable-item.noInput {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .formTableItemList.formTableTab .formTable-block .formTable-itemName {
    padding: 1rem 0 1rem 0.5rem;
    width: 30%;
    max-width: 200px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #C1E3BD;
  }
  .formTableItemList.formTableTab .formTable-block .formTable-itemName .formTable-itemTitle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: normal;
  }
  .formTableItemList.formTableTab .formTable-block .formTable-itemName .formTable-itemTitle .itemName-inner {
    width: 100%;
  }
  .formTableItemList.formTableTab .formTable-block .formTable-itemName .formTable-itemTitle .required {
    padding: 0.2rem 0.05rem 0.2rem 0.2rem;
    float: left;
    left: 0.5rem;
    margin-bottom: 0.1rem;
  }
  .formTableItemList.formTableTab .formTable-block .formTable-itemName .formTable-itemTitle .noneRequiredTag {
    margin-right: 0.5em;
    padding: 0.2em 0.25em;
    background-color: #D5D5D5;
    color: #FFFFFF;
    font-size: 0.75rem;
    padding-top: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .formTableItemList.formTableTab .formTable-block .formTable-itemName .formTable-itemTitle .noneRequiredTag {
    top: -1.25rem;
  }
}

.btn-visually-hidden {
  display: block;
  position: absolute;
  height: 32px;
  opacity: 0;
  overflow: hidden;
  left: 0;
  right: 0;
  margin: 1rem auto;
  padding: 0 2rem;
}
@media screen and (min-width: 992px) {
  .btn-visually-hidden {
    padding: unset;
    margin-top: 0;
    width: 25%;
  }
}
@media screen and (min-width: 992px) {
  .btn-visually-hidden.nextBtn {
    padding: unset;
    margin-top: 0;
    left: 12.5%;
    width: 20%;
  }
}

/*****************
main.css
main.htmlのスタイル(全体のレイアウト)
******************/
.layout-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.layout-inner {
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header {
  height: 42px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 3px 0 rgba(35, 35, 35, 0.6);
          box-shadow: 0 0 3px 0 rgba(35, 35, 35, 0.6);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.footer {
  background-color: #0BA541;
  color: #FFFFFF;
  padding: 0rem 1rem;
}

.main-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1rem;
  min-height: 1px; /*IE flexbox バグ対策*/
  margin-top: 42px;
}
@media screen and (min-width: 992px) {
  .main-wrapper {
    padding: 1rem 1rem 0 65px;
  }
}

.main-wrap {
  padding: 0;
  max-width: 980px;
  margin: 0 auto;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 1001;
}

.main-wrapper {
  padding: 1em 1em 0;
  /*border-bottom: $font-size solid #816B5F;*/
}
@media screen and (min-width: 992px) {
  .main-wrapper {
    padding: 1.5rem 65px 0 65px;
  }
}

.main-wrap {
  padding-bottom: 42px;
}

body.error-wrapper {
  background-position: top right;
}

/*stepナビゲーション*/
.stepNavWrap {
  position: relative;
}
.stepNavWrap .stepNav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: transparent;
}
@media screen and (min-width: 992px) {
  .stepNavWrap .stepNav {
    background-color: #C1E3BD;
  }
}
.stepNavWrap .stepNav > li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  font-weight: bold;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  display: none;
}
@media screen and (min-width: 992px) {
  .stepNavWrap .stepNav > li {
    display: block;
  }
}
.stepNavWrap .stepNav > li:after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  position: absolute;
}
.stepNavWrap .stepNav > li.stepNavActive {
  -webkit-box-flex: 2;
  -webkit-flex: 2 0 auto;
      -ms-flex: 2 0 auto;
          flex: 2 0 auto;
  background-color: #44733F;
  color: #FFFFFF;
  display: block;
  margin: 0 2rem;
}
.stepNavWrap .stepNav > li.stepNavActive:before {
  content: "";
  display: block;
  position: absolute;
  left: -2rem;
  top: 0;
  width: 0;
  height: 0;
  border: 2rem solid #44733F;
  border-left-color: #FFF;
  border-right-color: transparent;
}
@media screen and (min-width: 992px) {
  .stepNavWrap .stepNav > li.stepNavActive:before {
    border-left-color: #C1E3BD;
  }
}
.stepNavWrap .stepNav > li.stepNavActive:after {
  content: "";
  display: block;
  position: absolute;
  right: -4rem;
  top: 0;
  width: 0;
  height: 0;
  border: 2rem solid transparent;
  border-left-color: #44733F;
  border-right-color: transparent;
}
.stepNavWrap .stepNav > li:first-child.stepNavActive {
  margin-left: 0;
}
.stepNavWrap .stepNav > li:first-child.stepNavActive:before {
  content: none;
}
.stepNavWrap .stepNav > li:last-child.stepNavActive {
  margin-right: 0;
}
.stepNavWrap .stepNav > li:last-child.stepNavActive:after {
  content: none;
}
.stepNavWrap .stepNav > li.stepNavActive.lastStep:after {
  content: none;
}
.stepNavWrap .remainingStep {
  display: block;
  position: absolute;
  bottom: 0;
  right: 2.25rem;
  color: #FFFFFF;
  font-size: 0.8em;
}
@media screen and (min-width: 992px) {
  .stepNavWrap .remainingStep {
    display: none;
  }
}
.stepNavWrap .remainingStep .stepNumber {
  padding: 0 0.25em;
}

/******************
headerのスタイル
******************/
.header-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 42px;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: solid 2px #0BA541;
  background-color: #0BA541;
}
@media screen and (min-width: 992px) {
  .header-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    background-color: #FFFFFF;
  }
}
.header-container .siteTitle {
  margin: auto;
  color: #FFFFFF;
  font-size: 1rem;
  padding: 0.8rem 0.8rem 0.8rem 1rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (min-width: 992px) {
  .header-container .siteTitle {
    color: #000;
    margin: 0;
  }
}
.header-container .siteTitle a {
  color: inherit;
  text-decoration: none;
}
.header-container .subTitle {
  font-size: 0.5em;
  display: block;
}
.header-container .companyLogo-container {
  display: none;
}
@media screen and (min-width: 992px) {
  .header-container .companyLogo-container {
    display: block;
    padding: 0.8rem 1rem 0.8rem 0.8rem;
    margin-left: auto;
  }
  .header-container .companyLogo-container img {
    width: 47px;
  }
}

@media screen and (min-width: 992px) {
  .header-container .companyLogo-container img {
    width: 100px;
  }
}
.header-container .siteTitle img {
  max-height: 40px;
  max-width: 220px;
}
.header-container .siteTitle .siteTitle_pc {
  display: none;
}
@media screen and (min-width: 992px) {
  .header-container .siteTitle img {
    max-height: 40px;
    max-width: 290px;
  }
  .header-container .siteTitle .siteTitle_pc {
    display: inline-block;
  }
  .header-container .siteTitle .siteTitle_sp {
    display: none;
  }
}

.footerWrap {
  height: 100%;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .footerWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 40px;
  }
}
.footerWrap .footerPrivacy {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48%;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  line-height: 1;
  text-align: center;
  padding: 1rem 0 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .footerWrap .footerPrivacy {
    text-align: left;
    padding: 0.5rem 0;
  }
}
.footerWrap .footerPrivacy a {
  color: #fff;
  font-size: 0.9rem;
}
.footerWrap .copyrightWrap {
  text-align: center;
  line-height: 1;
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .footerWrap .copyrightWrap {
    text-align: right;
    width: 100%;
  }
}

/*****************
申込：各種約款同意画面のスタイル
******************/
.subscribeAgreementWrapper {
  /* 個人情報の取り扱い */
}
.subscribeAgreementWrapper .privacyPolicy-container {
  display: block;
  height: 250px;
  overflow-y: auto;
  padding: 1em;
  border: 1px solid #EBF6EA;
}
.subscribeAgreementWrapper .pdfDownload {
  margin: 1em 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
}
.subscribeAgreementWrapper .pdfDownload .pdfDLButton {
  margin-bottom: 0.25em;
}
.subscribeAgreementWrapper .pdfDownload .pdfSizeWrap {
  font-size: 0.8rem;
  padding-left: 0.5em;
}
.subscribeAgreementWrapper .pdfDownload .pdfSizeWrap > span {
  display: block;
}
.subscribeAgreementWrapper .agreementCheck {
  text-align: center;
}
.subscribeAgreementWrapper .agreementNextGo {
  text-align: center;
  padding-top: 1rem;
}
.subscribeAgreementWrapper .agreementNextGo .button {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .subscribeAgreementWrapper .agreementNextGo .button {
    width: auto;
    padding: 0 3rem;
  }
}

.subscribeAgreementWrapper .agreementCheck {
  border-top: 1px solid #EBF6EA;
  padding-top: 1em;
}
.subscribeAgreementWrapper .agreementCheck .checkbox-container > input[type=checkbox]:checked ~ .dummyCrtl:after {
  content: "";
  display: block;
  height: 14px;
  width: 8px;
  border-right: 3px solid #126f8c;
  border-bottom: 3px solid #126f8c;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%) rotate(45deg);
          transform: translate(-50%, -60%) rotate(45deg);
}
.subscribeAgreementWrapper ul.roundBrackets {
  list-style: none;
}
.subscribeAgreementWrapper ul.roundBrackets li {
  text-indent: -2.5em;
}
.subscribeAgreementWrapper .privacyPolicyWrap h4 {
  margin: 0.5em 0;
  padding: 0.5rem;
  background-color: #FFFAF0;
}
.subscribeAgreementWrapper .privacyPolicyWrap p, .subscribeAgreementWrapper .privacyPolicyWrap li {
  line-height: 1.4;
}
.subscribeAgreementWrapper .privacyPolicyWrap p + h4,
.subscribeAgreementWrapper .privacyPolicyWrap ul + h4,
.subscribeAgreementWrapper .privacyPolicyWrap ol + h4 {
  margin-top: 2em;
}
.subscribeAgreementWrapper .privacyPolicyWrap dt {
  font-weight: bold;
  padding-left: 0.5em;
  margin-bottom: 0.5em;
}
.subscribeAgreementWrapper .privacyPolicyWrap dd {
  margin-left: 0.5em;
  margin-bottom: 1em;
  line-height: 1.5em;
}
.subscribeAgreementWrapper .privacyPolicyWrap ol, .subscribeAgreementWrapper .privacyPolicyWrap ul {
  padding-left: 1.75em;
}
.subscribeAgreementWrapper .privacyPolicyWrap ol li, .subscribeAgreementWrapper .privacyPolicyWrap ul li {
  margin-bottom: 0.5em;
}

/*****************
申込：お客様情報のスタイル
******************/
.subscribeCustomer-wrapper {
  /*郵便番号(申込関連共通)*/
  /* 申込のきかっけ */
  /* 連絡可能時間 */
  /* 次へ */
}
.subscribeCustomer-wrapper .postalCode-wrap .postalCodeSearch {
  display: block;
}
@media screen and (min-width: 768px) {
  .subscribeCustomer-wrapper .postalCode-wrap .postalCodeSearch {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.subscribeCustomer-wrapper .postalCode-wrap .postalCode {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.subscribeCustomer-wrapper .postalCode-wrap .postalCode .postalCodeBefore {
  width: 5em;
}
.subscribeCustomer-wrapper .postalCode-wrap .postalCode .hyphen {
  padding: 0 0.5em;
}
.subscribeCustomer-wrapper .postalCode-wrap .postalCode .postalCodeAfter {
  width: 7em;
}
@media screen and (min-width: 768px) {
  .subscribeCustomer-wrapper .postalCode-wrap .postalCode {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
    max-width: 14.5em;
  }
}
.subscribeCustomer-wrapper .postalCode-wrap .postalCodeSearchButton {
  font-size: 0.8rem;
  margin: 0.5em 0 0.25em;
}
@media screen and (min-width: 768px) {
  .subscribeCustomer-wrapper .postalCode-wrap .postalCodeSearchButton {
    margin: 0 0 0 0.5em;
  }
}
.subscribeCustomer-wrapper .postalCode-wrap .annotations {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.25em;
}
.subscribeCustomer-wrapper .postalCode-wrap .annotations small {
  display: block;
}
.subscribeCustomer-wrapper .applyTrigger-wrap {
  /* テキストエリアを並べる場合 */
}
.subscribeCustomer-wrapper .applyTrigger-wrap .radio-container {
  padding-right: 1em;
}
.subscribeCustomer-wrapper .applyTrigger-wrap .withTextWrap > span {
  display: block;
}
@media screen and (min-width: 992px) {
  .subscribeCustomer-wrapper .applyTrigger-wrap .withTextWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.subscribeCustomer-wrapper .applyTrigger-wrap .withTextWrap .otherWrap, .subscribeCustomer-wrapper .applyTrigger-wrap .withTextWrap .salesmanName-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.subscribeCustomer-wrapper .applyTrigger-wrap .withTextWrap .salesmanName-wrap {
  font-size: 0.8rem;
  padding-top: 5px;
  padding-bottom: 5px;
}
.subscribeCustomer-wrapper .applyTrigger-wrap .withTextWrap .salesmanName-wrap .salesmanName-label {
  font-size: 0.8rem;
  width: 80px;
}
.subscribeCustomer-wrapper .applyTrigger-wrap .withTextWrap .salesmanName-wrap .salesmanName {
  font-size: 0.8rem;
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
  max-width: 10em;
  width: 10em;
}
@media screen and (min-width: 992px) {
  .subscribeCustomer-wrapper .applyTrigger-wrap .withTextWrap .salesmanName-wrap .salesmanName {
    margin-left: 0.5em;
  }
}
.subscribeCustomer-wrapper .applyTrigger-wrap .withTextWrap .otherWrap .otherText {
  font-size: 0.8rem;
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
  max-width: 10em;
  width: 10em;
}
@media screen and (min-width: 992px) {
  .subscribeCustomer-wrapper .applyTrigger-wrap .withTextWrap .otherWrap .otherText {
    margin-left: 0.5em;
  }
}
.subscribeCustomer-wrapper .contactTime {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
}
.subscribeCustomer-wrapper .contactTime .contactTime-startWrap,
.subscribeCustomer-wrapper .contactTime .contactTime-endWrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: 15em;
}
.subscribeCustomer-wrapper .contactTime .contactTime-startWrap .contactTime-start,
.subscribeCustomer-wrapper .contactTime .contactTime-startWrap .contactTime-end,
.subscribeCustomer-wrapper .contactTime .contactTime-endWrap .contactTime-start,
.subscribeCustomer-wrapper .contactTime .contactTime-endWrap .contactTime-end {
  max-width: 12em;
}
.subscribeCustomer-wrapper .contactTime .contactTime-hyphen {
  padding: 0 0.25em;
  -webkit-transform: none;
          transform: none;
}
.subscribeCustomer-wrapper .customerNextGo {
  text-align: center;
  padding-top: 1rem;
}
.subscribeCustomer-wrapper .customerNextGo .button {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .subscribeCustomer-wrapper .customerNextGo .button {
    width: auto;
    padding: 0 3rem;
  }
}

.subscribeCustomer-wrapper .userMailAdd-wrap {
  margin: 1.5em 0;
}
.subscribeCustomer-wrapper .customerDataInput-wrap {
  margin: 1.5em 0;
}
.subscribeCustomer-wrapper .attentionMessage {
  display: block;
  color: #E52222;
  margin-top: 0.25em;
}
@media screen and (min-width: 768px) {
  .subscribeCustomer-wrapper .attentionMessage {
    display: inline;
    margin: 0;
  }
}
.subscribeCustomer-wrapper .mockTable-item .itemSubName {
  font-size: 0.8em;
  display: inline-block;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .subscribeCustomer-wrapper .mockTable-item .itemSubName {
    margin-top: 0;
  }
}
.subscribeCustomer-wrapper .formTable-item .itemSubName {
  font-size: 0.8em;
  display: inline-block;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .subscribeCustomer-wrapper .formTable-item .itemSubName {
    margin-top: 0;
  }
}
.subscribeCustomer-wrapper .loginIdCheck-wrap .loginIDCheckSearch {
  display: block;
}
@media screen and (min-width: 768px) {
  .subscribeCustomer-wrapper .loginIdCheck-wrap .loginIDCheckSearch {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.subscribeCustomer-wrapper .loginIdCheck-wrap .loginIDCheckSearch .loginIDCheckButton {
  font-size: 0.8em;
  margin: 0.5em 0 0.25em;
}
@media screen and (min-width: 768px) {
  .subscribeCustomer-wrapper .loginIdCheck-wrap .loginIDCheckSearch .loginIDCheckButton {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    margin: 0 0 0 0.25em;
  }
}
.subscribeCustomer-wrapper .loginIdCheck-wrap .annotations {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.25em;
}
.subscribeCustomer-wrapper .loginIdCheck-wrap .annotations small {
  display: block;
}
.subscribeCustomer-wrapper .imageExample-wrap {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 992px) {
  .subscribeCustomer-wrapper .imageExample-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.subscribeCustomer-wrapper .imageExample-wrap .imageExample {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5em;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  border: 1px black solid;
}
@media screen and (min-width: 992px) {
  .subscribeCustomer-wrapper .imageExample-wrap .imageExample {
    margin-bottom: 0;
    margin-right: 0.5em;
    max-width: 25%;
  }
}
.subscribeCustomer-wrapper .imageExample-wrap .imageExample > img {
  width: 100%;
}
.subscribeCustomer-wrapper .imageExample-wrap .imageExamplePropane {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5em;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  border: 1px black solid;
}
@media screen and (min-width: 992px) {
  .subscribeCustomer-wrapper .imageExample-wrap .imageExamplePropane {
    margin-bottom: 0;
    margin-right: 0.5em;
    max-width: 35%;
  }
}
.subscribeCustomer-wrapper .imageExample-wrap .imageExamplePropane > img {
  width: 100%;
}
.subscribeCustomer-wrapper .attentionOptionMessage {
  display: block !important;
  color: #E52222;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 0.25em !important;
}
.subscribeCustomer-wrapper .pb-0 {
  padding-bottom: 0;
}
.subscribeCustomer-wrapper .mr-1 {
  margin-right: 0.25rem !important;
}
.subscribeCustomer-wrapper .checkSpan {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
  margin-top: 3px;
}

.subscribeLink-wrapper .nowPaymentData-wrap {
  margin: 1.5em 0;
}
.subscribeLink-wrapper .otherSelectMessage-wrap {
  margin: 1em 0;
  padding: 1em;
  background-color: #EBF6EA;
  border-radius: 4px;
}
.subscribeLink-wrapper .attentionOptionMessage {
  display: block !important;
  color: #E52222;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 0.25em !important;
}
.subscribeLink-wrapper .verticalCenter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.subscribeConfirm-wrapper .confirmData-block {
  margin: 1.5em 0;
}
.subscribeConfirm-wrapper .modifyButton-wrap {
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .subscribeConfirm-wrapper .modifyButton-wrap {
    text-align: center;
  }
}
.subscribeConfirm-wrapper .modifyButton-wrap .modifyButton {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .subscribeConfirm-wrapper .modifyButton-wrap .modifyButton {
    width: auto;
    margin: 0 auto;
    padding: 0 3em;
  }
}
.subscribeConfirm-wrapper .bottomInfo {
  margin: 2em 0 2em 0;
}
.subscribeConfirm-wrapper .bottomInfo span {
  font-size: 0.9em;
}
.subscribeConfirm-wrapper .verticalCenter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.subscribeComplete-wrap .completed-block {
  margin: 1.5em 0;
}
.subscribeComplete-wrap .operateButton-wrap .returnTopButton {
  margin: 0 auto;
}

.subscribeConfirmMail-wrapper .imageExample-wrap {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 992px) {
  .subscribeConfirmMail-wrapper .imageExample-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.subscribeConfirmMail-wrapper .imageExample-wrap .imageExample {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5em;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  border: 1px black solid;
}
@media screen and (min-width: 992px) {
  .subscribeConfirmMail-wrapper .imageExample-wrap .imageExample {
    margin-bottom: 0;
    margin-right: 0.5em;
    max-width: 25%;
  }
}
.subscribeConfirmMail-wrapper .imageExample-wrap .imageExample > img {
  width: 100%;
}
.subscribeConfirmMail-wrapper .imageExample-wrap .imageExamplePropane {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border: 1px black solid;
}
@media screen and (min-width: 992px) {
  .subscribeConfirmMail-wrapper .imageExample-wrap .imageExamplePropane {
    margin-bottom: 0;
    margin-right: 0.5em;
    max-width: 35%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}
.subscribeConfirmMail-wrapper .imageExample-wrap .imageExamplePropane > img {
  width: 100%;
}
.subscribeConfirmMail-wrapper .imageExample-wrap .textExample {
  display: block;
  max-width: 100%;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 992px) {
  .subscribeConfirmMail-wrapper .imageExample-wrap .textExample {
    margin-bottom: 0;
    margin-right: 0.5em;
    max-width: 100%;
  }
}
.subscribeConfirmMail-wrapper .imageExample-wrap .textExample .areaText > p {
  color: #E52222;
  font-size: 0.8em;
}
.subscribeConfirmMail-wrapper .imageExample-wrap .textExample .attentionMessage {
  display: block;
  color: #E52222;
  margin-top: 0.25em;
}
@media screen and (min-width: 768px) {
  .subscribeConfirmMail-wrapper .imageExample-wrap .textExample .attentionMessage {
    display: inline;
    margin: 0;
  }
}
.subscribeConfirmMail-wrapper .mailSettingMessage-wrap {
  margin: 1em 0;
  padding: 1em;
  background-color: #EBF6EA;
  border-radius: 4px;
}

.contractCompanyConfirm-wrap {
  padding: 1em;
}
.contractCompanyConfirm-wrap .contractCompanyConfirmImage-wrap {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
}
.contractCompanyConfirm-wrap .contractCompanyConfirmImage-wrap .contractCompanyConfirmText {
  display: block;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.contractCompanyConfirm-wrap .contractCompanyConfirmImage-wrap .contractCompanyConfirmImage {
  display: block;
  width: 100%;
  height: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  border: 1px black solid;
}
.contractCompanyConfirm-wrap .contractCompanyConfirmImagePropane-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2em;
  margin-bottom: 1em;
}
.contractCompanyConfirm-wrap .contractCompanyConfirmImagePropane-wrap .contractCompanyConfirmImagePropane {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border: 1px black solid;
}

.linkForSocialPlus-wrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.linkForSocialPlus-wrapper .nowPaymentData-wrap {
  margin: 1.5em 0;
}
.linkForSocialPlus-wrapper .otherSelectMessage-wrap {
  margin-bottom: 1em;
  padding: 1em;
  background-color: #EBF6EA;
  border-radius: 4px;
}
.linkForSocialPlus-wrapper .attentionOptionMessage {
  display: block !important;
  color: #E52222;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 0.25em !important;
}
.linkForSocialPlus-wrapper .imageExample-wrap {
  margin-bottom: 1.5em;
  margin-top: 1.5em;
}
@media screen and (min-width: 992px) {
  .linkForSocialPlus-wrapper .imageExample-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.linkForSocialPlus-wrapper .imageExample-wrap .imageExample {
  display: block;
  width: 100%;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  border: 1px black solid;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .linkForSocialPlus-wrapper .imageExample-wrap .imageExample {
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 0.5em;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}
.linkForSocialPlus-wrapper .imageExample-wrap .imageExample > img {
  width: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.linkForSocialPlus-wrapper .attentionMessage {
  display: block;
  color: #E52222;
  margin-top: 0.25em;
}
@media screen and (min-width: 768px) {
  .linkForSocialPlus-wrapper .attentionMessage {
    display: inline;
    margin: 0;
  }
}
.linkForSocialPlus-wrapper .mb-5 {
  margin-bottom: 20px !important;
}
.linkForSocialPlus-wrapper .submit-wrap {
  padding: 0.5rem 0 1rem 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .linkForSocialPlus-wrapper .submit-wrap {
    padding: 0.5rem 0 1.5rem 0;
  }
}
.linkForSocialPlus-wrapper .submit-wrap button {
  width: 60%;
  max-width: 240px;
}
@media (max-width: 991px) {
  .linkForSocialPlus-wrapper .submit-wrap.bg-green-150 {
    background-color: #ebf6ea;
  }
}
.linkForSocialPlus-wrapper .submit-wrap hr {
  border: none;
  border-top: solid 1px #ccc;
  margin: 1rem 0;
}
.linkForSocialPlus-wrapper .formTable-block.bg-white {
  background: #fff;
  border: none;
}
@media (max-width: 991px) {
  .linkForSocialPlus-wrapper .formTableItemList .formTable-block {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
  .linkForSocialPlus-wrapper .formTableItemList .formTable-block.noLine {
    border-bottom: none;
  }
}
.linkForSocialPlus-wrapper .description-wrap {
  display: block;
  padding: 0.25em 0;
}
@media (max-width: 991px) {
  .linkForSocialPlus-wrapper .description-wrap {
    padding: 0.25em 0.5em;
  }
  .linkForSocialPlus-wrapper .description-wrap.bg-green-150 {
    background-color: #ebf6ea;
  }
}

.sendConfirmCode-wrap {
  padding: 1em;
  border-bottom: 1px solid #9DCE96;
}

.modal .msgSeparator {
  margin-top: 1em;
}
.modal .operateButtonWrap {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}
.modal .operateButtonWrap .button {
  max-width: 45%;
}
.modal .operateButtonWrap .confirmButton {
  margin: 0 auto;
}

.snsLinkageOverwriteConfirm-wrapper .addLineApp h1,
.snsLinkageOverwriteConfirm-wrapper .addLineApp h2,
.snsLinkageOverwriteConfirm-wrapper .addLineApp h3,
.snsLinkageOverwriteConfirm-wrapper .addLineApp h4 {
  line-height: 1.2;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp p {
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp p br {
  display: none;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp p small {
  display: block;
  font-weight: bolder;
}
@media screen and (min-width: 768px) {
  .snsLinkageOverwriteConfirm-wrapper .addLineApp p br {
    display: block;
  }
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp-head img {
  float: right;
  margin-top: -15px;
}
@media screen and (min-width: 768px) {
  .snsLinkageOverwriteConfirm-wrapper .addLineApp-head img {
    width: 75px;
    margin-right: 80px;
  }
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp-title {
  border: solid 2px #E52222;
  color: #E52222;
  padding: 10px;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .snsLinkageOverwriteConfirm-wrapper .addLineApp-title {
    text-align: center;
  }
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp-subTitle {
  font-size: 1rem;
  border-left: solid 4px #0BA541;
  padding: 0.5rem 0 0.5rem 0.5rem;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp-subTitle.text-danger {
  border-color: #E52222;
  color: #E52222;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp-subTitle br {
  display: none;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .h3 {
  font-size: 0.9rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0.5rem;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .h3 img {
  margin-right: 5px;
  margin-top: 6px;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .text-primary {
  color: #1b78e1;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .text-danger {
  color: #E52222;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .mb-5 {
  margin-bottom: 40px !important;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .mt-5 {
  margin-top: 40px !important;
}
@media screen and (min-width: 768px) {
  .snsLinkageOverwriteConfirm-wrapper .addLineApp .mt-5 {
    margin-top: 1em !important;
  }
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp hr {
  border: none;
  border-top: solid 1px #999;
  margin: 1.5rem 0;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp hr::after {
  content: "";
  display: block;
  clear: both;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .btn {
  outline: none;
  border: solid 1px #999;
  background-color: transparent;
  font-weight: bolder;
  border-radius: 0.2rem;
  height: 40px;
  padding-left: 1rem;
  padding-right: 1rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 90%;
  color: #222;
  text-decoration: none;
  font-size: 0.9rem;
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  line-height: 1.4;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .btn img {
  margin-right: 3px;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .btn:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .snsLinkageOverwriteConfirm-wrapper .addLineApp .btn {
    min-width: 300px;
  }
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .btn-success {
  background-color: #00b900;
  color: #fff;
  border: none;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .btn-primary {
  background-color: #1b78e1;
  color: #fff;
  border: none;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .btn-lg {
  height: auto;
  display: block;
  padding-top: 0.5rem;
  padding-right: 10px;
  padding-left: 10px;
  position: relative;
  width: 100%;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .btn .text-lg {
  font-size: 1.1rem;
  display: block;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .btn .border-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: dashed 1px #fff;
  height: 40px;
  padding-right: 25px;
  margin-top: 0.5rem;
  font-size: 3.7vw;
}
@media (min-width: 490px) {
  .snsLinkageOverwriteConfirm-wrapper .addLineApp .btn .border-top {
    font-size: 1.1rem;
  }
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .btn .icon-arrow-right {
  position: absolute;
  right: 5px;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .btn-outline-primary {
  color: #0BA541;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .btn-outline-secondary {
  color: #222;
}
.snsLinkageOverwriteConfirm-wrapper .addLineApp .text-center {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .snsLinkageOverwriteConfirm-wrapper .addLineApp .text-md-right {
    text-align: right !important;
  }
  .snsLinkageOverwriteConfirm-wrapper .addLineApp .d-md-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .snsLinkageOverwriteConfirm-wrapper .addLineApp .flex-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 48%;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    max-width: 400px;
  }
}
.snsLinkageOverwriteConfirm-wrapper .attentionOptionMessage {
  display: block !important;
  color: #E52222;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 0.25em !important;
}

/* Do not remove the comments below. It's the markers used by gulp-inject to inject
   all your sass files automatically */
