@charset "UTF-8";
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ================================
# フォームコントロール　初期化
=================================*/
/* =========type="text" テキスト============
<input class="text-init" type="text">
===========================================*/
input.text-init {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  /* border: 1px solid rgba(0, 0, 0, 0.16); */
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  /* font-size: 1em; */
  padding: 0.4em 0.8em;
  width: 100%;
}

input.text-init:focus {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: none;
  outline: none;
}

/* ===END=== */
/* =========textarea　テキストエリア============
<textarea class="textarea-init"></textarea>
===============================================*/
textarea.textarea-init {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  /* font-size: 1em; */
  height: 213px;
  padding: 0.4em 0.8em;
  width: 100%;
}

textarea.textarea-init:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

/* ===END=== */
/* =========type="radio" ラジオボタン============
<label><input class="radio-init" type="radio" name="radio-name"><span>ラジオ１</span></label>
<label><input class="radio-init" type="radio" name="radio-name"><span>ラジオ２</span></label>
<label><input class="radio-init" type="radio" name="radio-name"><span>ラジオ３</span></label>
===============================================*/
.radio-init {
  display: none;
}

.radio-init + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
  font-size: inherit;
}

.radio-init + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
  content: "";
  display: block;
  height: 12px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
}

.radio-init + span::after {
  -webkit-transform: translateY(-50%);
  background: #3B69FF;
  /* border: 1px solid transparent; */
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 4px;
  opacity: 0;
  /* padding: 2px; */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 6px;
}

.radio-init:checked + span::after {
  opacity: 1;
}

/* ===END=== */
/* =========type="checkbox" チェックボックス============
<label><input class="check-init" type="checkbox" name="check-name"><span>チェック１</span></label>
<label><input class="check-init" type="checkbox" name="check-name"><span>チェック２</span></label>
<label><input class="check-init" type="checkbox" name="check-name"><span>チェック３</span></label>
======================================================*/
.check-init {
  display: none;
}

.check-init + span {
  cursor: pointer;
  display: inline-block;
  /* margin: 0 0.2em 0; */
  padding: 0 0 0 36px;
  position: relative;
}

.check-init + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1.2em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2em;
}

.check-init + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #3B69FF;
  border-left: 3px solid #3B69FF;
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1em;
}

.check-init:checked + span::after {
  opacity: 1;
}

/* ===END=== */
/* =======select ドロップダウンメニュー=================
<select class="select-init">
  <option>セレクトA</option>
  <option>セレクトB</option>
  <option>セレクトC</option>
</select>
======================================================*/
.select-init {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent url(img/icoon-mono.png) no-repeat center right 0.5 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  /* font-size: 1em; */
  padding: 0em 0.8em;
  width: 50%;
}

.select-init::-ms-expand {
  display: none;
}

.select-init:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

/* ===END=== */
/* ===============type="submit" ボタン=================
<input class="submit-init" type="submit" value="送信">
======================================================*/
.submit-init {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  border: none;
  border-radius: 0;
  color: #333;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  text-decoration: none;
}

.submit-init:hover, .submit-init:focus {
  outline: none;
}

.submit-init::-moz-focus-inner {
  border: none;
  padding: 0;
}

/* ===END=== */
/* ===============ファイル選択=================
<label id="file-init-label" for="file-init">ファイルを選択</label><input type="file" id="file-init">
<input type="text" id="file-init-name" disabled>
==============================================*/
#file-init {
  display: none;
}

#file-init-label {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  cursor: pointer;
  padding: 0.4em 0.8em;
}

#file-init-name {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: none;
  border-radius: 0;
  color: inherit;
  display: none;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0;
  width: 100%;
}

/* ===END=== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}

html, body {
  font-size: 16px;
  line-height: 1.75;
  color: #262626;
  letter-spacing: .1em;
  font-family: 'Helvetica Neue','Helvetica','Arial',sans-serif;
  margin: 0;
  background-color: #fff;
}

body.modal-open {
  overflow: hidden;
  padding-right: 15px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul > li:first-child {
  margin-right: 10px;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:hover {
  opacity: .85;
  -webkit-transition: .3s;
  transition: .3s;
}

table {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: white;
}

table th, table td {
  padding: 4px 8px;
  border: 1px solid #ddd;
}

td input {
  max-width: 100%;
}

@media (max-width: 767px) {
  html, body {
    font-size: 4.27vw;
    line-height: 1.5625;
    letter-spacing: 0;
  }
}

/* ===スクロールバーカスタム=== */
/* ================================
# ヘッダー
=================================*/
.l-header {
  height: 80px;
  background-color: #fff;
  padding-right: 50px;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .l-header {
    height: auto;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* ================================
# HOME 画面
=================================*/
.l-home {
  margin: 0 50px;
}

.l-home.l-home-deliver {
  margin: 0 0;
}

@media screen and (max-width: 768px) {
  .l-home {
    margin: 0 0;
  }
}

.l-home-header {
  margin-bottom: 50px;
  background-color: #fffcf2;
  padding: 30px 50px;
}

.l-home-header.l-home-header-deliver {
  padding: 15px 25px;
}

@media screen and (max-width: 768px) {
  .l-home-header {
    padding: 30px 15px;
  }
}

.l-home-main {
  background-color: #fffcf2;
  padding: 40px 20px;
}

.l-subPage {
  padding: 80px 0 0;
  min-height: 100vh;
  background-position: right bottom;
}

.l-subPage__in {
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
}

.l-topPage {
  padding: 100px 0;
  background-size: cover;
  min-height: 100vh;
  background-position: right bottom;
}

.l-topPage__in {
  margin: 0 5%;
}

/* ================================
# お客様画面
=================================*/
.l-customer-header {
  background-color: #c2272d;
  height: 96px;
  padding: 30px 0;
  margin-bottom: 30px;
}

.l-customer-header img {
  width: 174px;
  display: block;
  margin: 0 auto;
}

.l-customer-main {
  padding: 0 20px 80px;
}

.c-border-color__follow {
  border: 5px solid #bcd3fd;
}

.c-border-color__like {
  border: 5px solid #fdbcc3;
}

.c-border-color__unfollow {
  border: 5px solid #ebbcfd;
}

.c-border-color__tweetschedule {
  border: 5px solid #97ffb6;
}

.c-color__info {
  color: #1e1eb4;
}

.c-color__warning {
  color: #ff5757;
}

.c-event-none {
  pointer-events: none;
}

.now-loading .c-loading-area {
  position: relative;
}

.now-loading .c-loading-area:before {
  content: '';
  background: url("../img/spin.svg") no-repeat;
  background-size: 50px;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fffcf2;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.c-moveTop {
  width: 80px !important;
  padding: 10px 0 !important;
  position: absolute;
  left: 10px;
  top: 10px;
}

.c-hover {
  cursor: pointer;
}

.c-hover:hover {
  opacity: .85;
  -webkit-transition: .3s;
  transition: .3s;
}

.c-icon-home {
  display: block !important;
  margin-bottom: 5px;
}

.c-heading {
  font-size: 24px;
  padding: 0px 20px;
  color: black;
}

.c-circle-title-green {
  text-align: center;
  position: relative;
  z-index: 0;
  font-weight: normal;
}

.c-circle-title-green:after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1ea939;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: -1;
}

.c-circle-title-orange {
  text-align: center;
  position: relative;
  z-index: 0;
  font-weight: normal;
}

.c-circle-title-orange:after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e85513;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: -1;
}

.c-border-updown__desc {
  padding: 0 20px;
}

.c-border-updown__desc:before {
  content: '';
  width: 70%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #9c9c9c 6px, transparent 6px, transparent 9px);
  background-size: 9px 9px;
  margin: 0 auto 15px;
}

.c-border-updown__desc:after {
  content: '';
  width: 70%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #9c9c9c 6px, transparent 6px, transparent 9px);
  background-size: 9px 9px;
  margin: 15px auto 0;
}

.c-border-updown__desc--follow {
  padding: 0 20px;
}

.c-border-updown__desc--follow:before {
  content: '';
  width: 70%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #375cff 6px, transparent 6px, transparent 9px);
  background-size: 9px 9px;
  margin: 0 auto 15px;
}

.c-border-updown__desc--follow:after {
  content: '';
  width: 70%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #375cff 6px, transparent 6px, transparent 9px);
  background-size: 9px 9px;
  margin: 15px auto 0;
}

.c-border-updown__desc--like {
  padding: 0 20px;
}

.c-border-updown__desc--like:before {
  content: '';
  width: 70%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #bd4242 6px, transparent 6px, transparent 9px);
  background-size: 9px 9px;
  margin: 0 auto 15px;
}

.c-border-updown__desc--like:after {
  content: '';
  width: 70%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #bd4242 6px, transparent 6px, transparent 9px);
  background-size: 9px 9px;
  margin: 15px auto 0;
}

.c-border-updown__desc--unfollow {
  padding: 0 20px;
}

.c-border-updown__desc--unfollow:before {
  content: '';
  width: 70%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #a537ff 6px, transparent 6px, transparent 9px);
  background-size: 9px 9px;
  margin: 0 auto 15px;
}

.c-border-updown__desc--unfollow:after {
  content: '';
  width: 70%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #a537ff 6px, transparent 6px, transparent 9px);
  background-size: 9px 9px;
  margin: 15px auto 0;
}

.c-border-updown__desc--tweetschedule {
  padding: 0 20px;
}

.c-border-updown__desc--tweetschedule:before {
  content: '';
  width: 70%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #4a9c2a 6px, transparent 6px, transparent 9px);
  background-size: 9px 9px;
  margin: 0 auto 15px;
}

.c-border-updown__desc--tweetschedule:after {
  content: '';
  width: 70%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #4a9c2a 6px, transparent 6px, transparent 9px);
  background-size: 9px 9px;
  margin: 15px auto 0;
}

.c-form-wrap {
  width: 600px;
  max-width: 95%;
  margin: 0 auto;
}

.c-input {
  width: 100%;
  margin-bottom: 30px;
}

.c-input__label {
  display: inline-block;
  text-align: left;
  margin-right: 10px;
}

.c-input__txt {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: 42px;
  padding: 0 5px;
  border-radius: 4px;
  font-size: 18px;
}

.c-listItem {
  position: relative;
  overflow: hidden;
  padding: 15px 15px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  transition: .5s transform;
  border-radius: 4px;
}

.c-listItem--done {
  background: #e5e5e5;
  color: #888;
}

.c-icon--checked {
  font-size: 25px !important;
  color: rgba(89, 158, 175, 0.29);
  vertical-align: middle;
  cursor: pointer;
}

/* ===エディットボックス=== */
.c-inputArea {
  margin-bottom: 15px;
}

.c-inputText {
  padding: 5px;
  border-radius: 4px;
  height: 42px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e8e8e8;
}

/* ===keyword入力エディットボックス=== */
.c-editKeyword {
  width: calc((100% - 100px));
  display: inline-block;
}

/* ===AND OR NOT 選択ラジオ=== */
.c-logicOption {
  width: 100%;
  display: inline-block;
  padding: 7px 7px;
  font-size: 18px;
}

.l-home-deliver .c-logicOption {
  width: auto;
  padding: 10px 20px;
}

/* ===リンク表示（青色、アンダーライン）=== */
.c-link {
  cursor: pointer;
  color: blue;
  text-decoration: none;
}

.c-link:hover {
  text-decoration: underline;
}

/* ===モーダル表示=== */
.c-modal-panel-back {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(200, 200, 200, 0.5);
  overflow-y: scroll;
}

.c-modal-panel {
  width: 600px;
  background-color: white;
  padding: 30px;
  margin: 100px auto;
  max-width: 95%;
}

/* ================================
# 四角ボタン コンポーネント
=================================*/
.c-btn {
  border: none;
  padding: 10px 20px;
  background: #333;
  text-align: center;
  width: 160px;
  border-radius: 4px;
  color: #f1f1f1;
}

.c-btn:hover {
  opacity: .85;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .c-btn {
    display: block;
    margin: 0 auto 10px;
    width: 100%;
  }
}

.c-btn__square-soft {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #262626;
  overflow: hidden;
  background: linear-gradient(#f0f0f0 0%, #dcdcdc 100%);
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.c-btn__square-soft:active {
  /*押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  /*沈むように*/
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(#f0f0f0 0%, #dcdcdc 100%);
  /*グラデーションを明るく*/
}

/* ================================
# ボタンアニメーション  
=================================*/
.c-shiny-btn1 {
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.c-shiny-btn1:hover {
  text-decoration: none;
  color: #fff;
}

.c-shiny-btn1::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn 3s ease-in-out infinite;
}

@keyframes shiny-btn {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/* ================================
# ヘッダー　
=================================*/
.p-header {
  padding: 0 50px;
  background-color: rgba(238, 255, 252, 0.452);
}

.p-header__appname {
  font-size: 40px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 0 #9e9e9e, -2px -2px 0 #9e9e9e, -1px 1px 0 #9e9e9e, 1px -1px 0 #9e9e9e, 0px 1px 0 #9e9e9e,  0 -1px 0 #9e9e9e, -1px 0 0 #9e9e9e, 1px 0 0 #9e9e9e;
}

/* ================================
#　管理者用画面
=================================*/
.c-modal-panel-back .p-configure-input-dib {
  width: 200px;
}

.p-home__shop-info table {
  width: auto;
  margin: 0;
  background-color: #fffcf2;
}

.p-home__shop-info table th {
  text-align: right;
}

.p-home-header-btn {
  margin: 0;
}

.p-home-header-btnWrap {
  float: right;
}

.p-home-header-btnWrap .c-btn {
  background: #333;
}

.p-home-header-btnWrap img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .p-home-header-btnWrap {
    float: none;
  }
}

.p-home-table-sort-header:hover {
  background-color: #efefef;
  cursor: pointer;
}

.asc::after {
  content: "↓";
}

.desc::after {
  content: "↑";
}

.c-modal-panel.config .check-item-area label {
  font-size: 14px;
}

.c-modal-panel.config .check-item-area input {
  font-size: 18px;
}

.p-deliver-modal-top {
  border-bottom: 1px dashed #ddd;
}

.p-deliver-image {
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin: 0 auto;
  border: 1px dashed #ddd;
}

.p-deliver-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-deliver-select-image {
  text-align: center;
}

.p-deliver-modal-bottom {
  padding-top: 20px;
}

/* ================================
# お客様画面
=================================*/
.p-row-wrap {
  border-top: 1px solid #ddd;
  padding: 4px 10px;
}

.p-row-wrap:last-child {
  border-bottom: 1px solid #ddd;
}

.p-row-wrap:first-child {
  border-top: 1px solid #ddd;
}

.p-table-row-ttl {
  font-size: 14px;
}

.p-table-row-value {
  font-size: 18px;
  display: inline-block;
  margin-right: 20px;
}

.p-table-row-in-value {
  font-size: 18px;
  display: inline-block;
  padding: 0 10px;
}

.p-table-row-in-value:first-child {
  width: 150px;
}

.delivery-info__status {
  font-size: 20px;
}

/* ================================
# 配達者用画面
=================================*/
.l-deliver-view .c-btn {
  width: auto;
  margin: 0 0 0;
}

/* ================================
# タイトル　
=================================*/
.p-mainTitle {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.p-heading-area {
  margin-bottom: 0px;
  text-align: center;
  padding: 30px 10px;
  min-height: 383px;
}

/* ================================
#楕円のタイトル
=================================*/
.p-heading__follow {
  background-color: #bcd3fd;
}

.p-heading__like {
  background-color: #fdbcc3;
}

.p-heading__unfollow {
  background-color: #ebbcfd;
}

.p-heading__twtschedule {
  background-color: #97ffb6;
}

.p-heading__title {
  margin-bottom: 40px;
}

/* ================================
#　メニューバー
=================================*/
.p-menu-bar {
  position: absolute;
  top: 10px;
  right: 10px;
}

.p-menu-bar__item {
  display: inline-block;
  margin-right: 10px;
}

/* ================================
#　ユーザー情報
=================================*/
.p-userInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 600px;
  max-width: 95%;
  margin: 0 auto;
  position: relative;
  padding: 20px;
  box-shadow: 1px 1px 4px #555;
}

.p-userInfo__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto;
}

.p-userInfo__name {
  margin: 10px 0;
}

.p-userInfo__listitem-wrap {
  display: inline-block;
}

.p-userInfo__listitem {
  display: inline-block;
}

.p-userInfo__listitem:first-child {
  font-weight: bold;
}

.p-userInfo__list {
  margin-right: 10px;
}

.p-userInfo__head {
  text-align: left;
}

.p-userInfo__profile {
  text-align: left;
}

.p-userInfo__key::before {
  background: linear-gradient(#7c7c7c 0%, #747474 100%);
  color: #f1f1f1;
  padding: 5px;
  border-radius: 4px;
  font-size: 12px;
}

/* ================================
# message領域
=================================*/
.p-message-area {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 999;
  font-size: 0;
  width: 350px;
  height: 80px;
  background: white;
}

.p-message-area__status, .p-message-area__msg {
  display: inline-block;
}

.p-message-area__status {
  font-size: 30px;
  text-align: center;
  line-height: 80px;
  width: 60px;
  vertical-align: middle;
}

.p-message-area__msg {
  height: auto;
  width: 280px;
  font-size: 15px;
  vertical-align: middle;
  color: #262626;
}

.p-message-area__msg .p-message-area_msg-val {
  height: inherit;
}

/* ================================
# HOME画面　一覧画面の各リスト
=================================*/
/* ===sidebar=== */
.p-sidebar {
  width: 300px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: -300px;
  background-color: white;
  transition: 300ms ease-in;
  z-index: 99;
}

.p-sidebar.open {
  left: 0;
}

.p-sidebar .p-sidebar__btn {
  position: absolute;
  top: 10px;
  left: 305px;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  padding: 0;
}

.p-user-selected {
  color: red;
}

.p-sidebar__account:hover {
  opacity: .50;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

/* ===sidebar END=== */
.p-info-area {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  height: 100px;
  padding: 10px;
  background-color: #dcdcdc;
  border: 1px solid #3f3f3f;
}

.p-status__title {
  font-size: 20px;
  font-weight: bold;
}

.p-status-wrap .p-btn_home-like--exec {
  color: white;
  background: #FF7081;
}

.p-status-wrap .p-btn_home-like--stay {
  color: white;
  background: #fdbcc3;
}

.p-status-wrap .p-btn_home-follow--exec {
  color: white;
  background: #70a2ff;
}

.p-status-wrap .p-btn_home-follow--stay {
  color: white;
  background: #bcd3fd;
}

.p-status-wrap .p-btn_home-unfollow--exec {
  color: white;
  background: #a770ff;
}

.p-status-wrap .p-btn_home-unfollow--stay {
  color: white;
  background: #ebbcfd;
}

.p-status-wrap .p-btn_home-mail--exec {
  color: white;
  background: #ffdd92;
}

.p-status-wrap {
  text-align: center;
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
}

.p-status__item {
  display: inline-block;
  margin: 20px 20px;
  background-color: #dcdcdc;
  padding: 10px 20px;
  text-align: center;
  width: 160px;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .p-status__item {
    display: block;
    margin: 10px 10px;
    width: 95%;
  }
}

.p-main-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
}

.p-list-area {
  width: calc((100% - 40px)/2);
  max-width: 95%;
  margin: 10px 10px 0px;
}

.p-list-area:not(:last-child) {
  margin: 10px 10px 30px;
}

@media screen and (max-width: 768px) {
  .p-list-area {
    width: 95%;
  }
}

.p-list__row-item {
  display: inline-block;
  margin: 10px 0;
  vertical-align: middle;
  color: white;
}

.p-list__row-item:first-child {
  width: calc(100% - 80px);
}

.p-list__btn {
  font-size: 0.8rem;
  padding: 0.2rem;
  width: 70px;
  border-radius: 4px;
  background-color: #70a2ff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
  background: linear-gradient(#9b9b9b 0%, #7c7c7c 100%);
}

.p-list__btn--follow {
  font-size: 0.8rem;
  padding: 0.2rem;
  width: 70px;
  border-radius: 4px;
  background-color: #70a2ff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
  background: linear-gradient(#94b9ff 0%, #70a2ff 100%);
}

.p-list__btn--like {
  font-size: 0.8rem;
  padding: 0.2rem;
  width: 70px;
  border-radius: 4px;
  background-color: #FF7081;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
  background: linear-gradient(#ffa3ae 0%, #FF7081 100%);
}

.p-list__btn--twtschedule {
  font-size: 0.8rem;
  padding: 0.2rem;
  width: 70px;
  border-radius: 4px;
  background-color: #63d472;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
  background: linear-gradient(#adffb8 0%, #69dd69 100%);
}

.p-list-wrap {
  padding: 15px;
  background-color: #fff;
  height: 250px;
  overflow-y: scroll;
}

.p-list__keywordBtn {
  float: right;
  font-size: 15px !important;
  padding: 4px 15px !important;
}

.p-list {
  border-bottom: 1px solid #3f3f3f;
  padding: 15px 0;
}

.p-list__account {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
  color: #4DBFFF;
}

.p-list__account:hover {
  opacity: .85;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.p-list__date {
  display: inline-block;
  margin-bottom: 5px;
}

.p-list__content {
  width: 100%;
  display: block;
}

/* ================================
# 自動ツイート画面
=================================*/
.p-autotwt-wrap .c-input__label {
  width: auto;
  display: block;
  text-align: left;
  margin-top: 20px;
}

.p-autotwt-wrap .c-input__txt {
  width: 100%;
}

.p-list-autotwt {
  list-style: none;
}

.p-list-autotwt__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 5px;
}

.p-list-autotwt__wrap {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
}

.p-list-autotwt__date-ttl {
  display: inline-block;
  margin-bottom: 10px;
}

.p-list-autotwt__date-val {
  display: inline-block;
  margin-bottom: 10px;
}

.p-list-autotwt__content-ttl {
  display: inline-block;
}

.p-list-autotwt__content-val {
  display: inline-block;
}

/* ================================
# ユーザー登録画面
=================================*/
.p-error-area {
  color: red;
  margin: 20px 0;
}

/* ================================
# 自動イイネキーワード登録画面  
=================================*/
.l-likePage .p-input__option {
  width: calc(100% - 100px);
  display: inline-block;
}

.l-likePage .p-like-input__txt {
  width: 100%;
}

/* ================================
# フォロワーサーチキーワード登録画面  
=================================*/
.l-searchKeyPage .p-input__option {
  width: calc(100% - 100px);
  display: inline-block;
}

.l-searchKeyPage .p-like-input__txt {
  width: 100%;
}

/* ================================
# ターゲットアカウント登録画面  
=================================*/
.p-targetacnt-wrap .c-input__txt {
  width: 100%;
}

/* ================================
# フォロー解除設定画面  
=================================*/
.p-config-wrap .c-input__txt {
  width: auto;
}

/* ================================
#　バリデーションチェックエラー時のアニメーション
=================================*/
.p-flip-move {
  transition: transform 0.5s;
}

.p-flip-enter-active {
  opacity: 0;
  transform: translate3d(0, -30px, 0);
  transition: opacity 0.5s, transform 0.5s;
}

.p-flip-enter-to {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.p-flip-leave-active {
  position: absolute;
  transition: opacity 0.5s, transform 0.5s;
}

.p-flip-leave-to {
  opacity: 0;
  transform: translate3d(0, -30px, 0);
}

.u-color__white {
  color: white;
}

.u-color__blue {
  color: #375cff;
}

.u-bgcolor__blue {
  background: #375cff;
}

.u-color__red {
  color: #bd4242;
}

.u-color__purple {
  color: #a537ff;
}

.u-color__green {
  color: #4a9c2a;
}

.u-color__black {
  color: #444444;
}

.u-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.u-dib {
  display: inline-block;
}

.u-db {
  display: block;
}

.u-tb_only, .u-sp_only {
  display: none;
}

.u-tb_pc {
  display: inherit;
}

.u-sp_tb {
  display: none;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  transition: 3s;
}

.u-flex.start {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.u-flex.end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.u-flex.center {
  -webkit-justify-content: center;
  justify-content: center;
}

.u-flex.around {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.u-flex.between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.u-flex.stretch {
  -webkit-align-items: stretch;
  align-items: stretch;
}

.u-flex.ai_center {
  -webkit-align-items: center;
  align-items: center;
}

.u-flex.ai_start {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.u-flex.ai_end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.u-flex.nowrap {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.u-flex.column {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.u-flex.row {
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.u-flex.c_reverse {
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.u-flex.r_reverse {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.u-noshrink {
  flex: 0 0 auto;
}

.u-grow {
  flex: 1 1 auto;
}

.u-txt_center {
  text-align: center;
}

.u-txt_bold {
  font-weight: bold;
}

.u-txt_left {
  text-align: left;
}

.u-txt_right {
  text-align: right;
}

.u-no_mgn {
  margin-bottom: 0;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb45 {
  margin-bottom: 45px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-mb105 {
  margin-bottom: 105px;
}

.u-mb110 {
  margin-bottom: 110px;
}

.u-mb115 {
  margin-bottom: 115px;
}

.u-mb120 {
  margin-bottom: 120px;
}

.u-mb125 {
  margin-bottom: 125px;
}

.u-mb130 {
  margin-bottom: 130px;
}

.u-mb135 {
  margin-bottom: 135px;
}

.u-mb140 {
  margin-bottom: 140px;
}

.u-mb145 {
  margin-bottom: 145px;
}

.u-mb150 {
  margin-bottom: 150px;
}

.u-mb05em {
  margin-bottom: 0.5em;
}

.u-mb10em {
  margin-bottom: 1.0em;
}

.u-mb15em {
  margin-bottom: 1.5em;
}

.u-mb20em {
  margin-bottom: 2.0em;
}

.u-mb25em {
  margin-bottom: 2.5em;
}

.u-mb30em {
  margin-bottom: 3.0em;
}

@media (min-width: 768px) and (max-width: 960px) {
  .u-pc_only {
    display: none;
  }
  .u-tb_only {
    display: inherit;
  }
  .u-sp_only {
    display: none;
  }
  .u-tb_pc, .u-sp_tb {
    display: inherit;
  }
}

@media (max-width: 767px) {
  .u-pc_only, .u-tb_only {
    display: none;
  }
  .u-sp_only {
    display: inherit;
  }
  .u-tb_pc {
    display: none;
  }
  .u-sp_tb {
    display: inherit;
  }
  #u-map {
    padding-top: 250px;
  }
  .u-noshrink {
    flex: 1 1 auto;
    text-align: center;
  }
  .u-mb5 {
    margin-bottom: calc( 5  / 750 * 100vw);
  }
  .u-mb10 {
    margin-bottom: calc( 10 / 750 * 100vw);
  }
  .u-mb15 {
    margin-bottom: calc( 15 / 750 * 100vw);
  }
  .u-mb20 {
    margin-bottom: calc( 20 / 750 * 100vw);
  }
  .u-mb25 {
    margin-bottom: calc( 25 / 750 * 100vw);
  }
  .u-mb30 {
    margin-bottom: calc( 30 / 750 * 100vw);
  }
  .u-mb35 {
    margin-bottom: calc( 35 / 750 * 100vw);
  }
  .u-mb40 {
    margin-bottom: calc( 40 / 750 * 100vw);
  }
  .u-mb45 {
    margin-bottom: calc( 45 / 750 * 100vw);
  }
  .u-mb50 {
    margin-bottom: calc( 50 / 750 * 100vw);
  }
  .u-mb55 {
    margin-bottom: calc( 55 / 750 * 100vw);
  }
  .u-mb60 {
    margin-bottom: calc( 60 / 750 * 100vw);
  }
  .u-mb65 {
    margin-bottom: calc( 65 / 750 * 100vw);
  }
  .u-mb70 {
    margin-bottom: calc( 70 / 750 * 100vw);
  }
  .u-mb75 {
    margin-bottom: calc( 75 / 750 * 100vw);
  }
  .u-mb80 {
    margin-bottom: calc( 80 / 750 * 100vw);
  }
  .u-mb85 {
    margin-bottom: calc( 85 / 750 * 100vw);
  }
  .u-mb90 {
    margin-bottom: calc( 90 / 750 * 100vw);
  }
  .u-mb95 {
    margin-bottom: calc( 95 / 750 * 100vw);
  }
  .u-mb100 {
    margin-bottom: calc(100 / 750 * 100vw);
  }
  .u-mb105 {
    margin-bottom: calc(105 / 750 * 100vw);
  }
  .u-mb110 {
    margin-bottom: calc(110 / 750 * 100vw);
  }
  .u-mb115 {
    margin-bottom: calc(115 / 750 * 100vw);
  }
  .u-mb120 {
    margin-bottom: calc(120 / 750 * 100vw);
  }
  .u-mb125 {
    margin-bottom: calc(125 / 750 * 100vw);
  }
  .u-mb130 {
    margin-bottom: calc(130 / 750 * 100vw);
  }
  .u-mb135 {
    margin-bottom: calc(135 / 750 * 100vw);
  }
  .u-mb140 {
    margin-bottom: calc(140 / 750 * 100vw);
  }
  .u-mb145 {
    margin-bottom: calc(145 / 750 * 100vw);
  }
  .u-mb150 {
    margin-bottom: calc(150 / 750 * 100vw);
  }
}
