@charset "UTF-8";
.datepicker--cells {
  display: flex;
  flex-wrap: wrap;
}

.datepicker--cell {
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 32px;
  z-index: 1;
}

.datepicker--cell.-focus- {
  background: #f0f0f0;
}

.datepicker--cell.-current- {
  color: #2761f2;
}

.datepicker--cell.-current-.-focus- {
  color: #4a4a4a;
}

.datepicker--cell.-current-.-in-range- {
  color: #2761f2;
}

.datepicker--cell.-in-range- {
  background: rgba(39, 97, 242, 0.1);
  color: #4a4a4a;
  border-radius: 0;
}

.datepicker--cell.-in-range-.-focus- {
  background-color: rgba(39, 97, 242, 0.2);
}

.datepicker--cell.-disabled- {
  cursor: default;
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-in-range- {
  color: #a1a1a1;
}

.datepicker--cell.-disabled-.-current-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-range-from- {
  border: 1px solid rgba(39, 97, 242, 0.5);
  background-color: rgba(39, 97, 242, 0.1);
  border-radius: 4px 0 0 4px;
}

.datepicker--cell.-range-to- {
  border: 1px solid rgba(39, 97, 242, 0.5);
  background-color: rgba(39, 97, 242, 0.1);
  border-radius: 0 4px 4px 0;
}

.datepicker--cell.-selected-, .datepicker--cell.-selected-.-current- {
  color: #fff;
  background: #2761f2;
}

.datepicker--cell.-range-from-.-range-to- {
  border-radius: 4px;
}

.datepicker--cell.-selected- {
  border: none;
}

.datepicker--cell.-selected-.-focus- {
  background: #2761f2;
}

.datepicker--cell:empty {
  cursor: default;
}

.datepicker--days-names {
  display: flex;
  flex-wrap: wrap;
  margin: 8px 0 3px;
}

.datepicker--day-name {
  color: #ff87b7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}

.-only-timepicker- .datepicker--content, .datepicker--body, .datepicker-inline .datepicker--pointer {
  display: none;
}

.datepicker--cell-day {
  width: 14.28571%;
}

.datepicker--cells-months {
  height: 170px;
}

.datepicker--cell-month {
  width: 33.33%;
  height: 25%;
}

.datepicker--cells-years, .datepicker--years {
  height: 170px;
}

.datepicker--cell-year {
  width: 25%;
  height: 33.33%;
}

.datepickers-container {
  position: absolute;
  left: 0;
  top: 0;
}

@media print {
  .datepickers-container {
    display: none;
  }
}
.datepicker {
  background: #fff;
  border: 1px solid #dbdbdb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-sizing: content-box;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  width: 250px;
  position: absolute;
  left: -100000px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s;
  z-index: 100;
}

.datepicker.-from-top- {
  transform: translateY(-8px);
}

.datepicker.-from-right- {
  transform: translateX(8px);
}

.datepicker.-from-bottom- {
  transform: translateY(8px);
}

.datepicker.-from-left- {
  transform: translateX(-8px);
}

.datepicker.active {
  opacity: 1;
  transform: translate(0);
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s;
}

.datepicker-inline .datepicker {
  border-color: #d7d7d7;
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  transform: none;
}

.datepicker--content {
  box-sizing: content-box;
  padding: 4px;
}

.datepicker--pointer {
  position: absolute;
  background: #fff;
  border-top: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  width: 10px;
  height: 10px;
  z-index: -1;
}

.datepicker--nav-action:hover, .datepicker--nav-title:hover {
  background: #f0f0f0;
}

.-top-center- .datepicker--pointer, .-top-left- .datepicker--pointer, .-top-right- .datepicker--pointer {
  top: calc(100% - 4px);
  transform: rotate(135deg);
}

.-right-bottom- .datepicker--pointer, .-right-center- .datepicker--pointer, .-right-top- .datepicker--pointer {
  right: calc(100% - 4px);
  transform: rotate(225deg);
}

.-bottom-center- .datepicker--pointer, .-bottom-left- .datepicker--pointer, .-bottom-right- .datepicker--pointer {
  bottom: calc(100% - 4px);
  transform: rotate(315deg);
}

.-left-bottom- .datepicker--pointer, .-left-center- .datepicker--pointer, .-left-top- .datepicker--pointer {
  left: calc(100% - 4px);
  transform: rotate(45deg);
}

.-bottom-left- .datepicker--pointer, .-top-left- .datepicker--pointer {
  left: 10px;
}

.-bottom-right- .datepicker--pointer, .-top-right- .datepicker--pointer {
  right: 10px;
}

.-bottom-center- .datepicker--pointer, .-top-center- .datepicker--pointer {
  left: calc(50% - 10px / 2);
}

.-left-top- .datepicker--pointer, .-right-top- .datepicker--pointer {
  top: 10px;
}

.-left-bottom- .datepicker--pointer, .-right-bottom- .datepicker--pointer {
  bottom: 10px;
}

.-left-center- .datepicker--pointer, .-right-center- .datepicker--pointer {
  top: calc(50% - 10px / 2);
}

.datepicker--body.active {
  display: block;
}

.datepicker--nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #efefef;
  min-height: 32px;
  padding: 4px;
}

.-only-timepicker- .datepicker--nav {
  display: none;
}

.datepicker--nav-action, .datepicker--nav-title {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.datepicker--nav-action {
  width: 32px;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker--nav-action.-disabled- {
  visibility: hidden;
}

.datepicker--nav-action svg {
  width: 32px;
  height: 32px;
}

.datepicker--nav-action path {
  fill: none;
  stroke: #9c9c9c;
  stroke-width: 2px;
}

.datepicker--nav-title {
  border-radius: 4px;
  padding: 0 8px;
}

.datepicker--buttons, .datepicker--time {
  border-top: 1px solid #efefef;
  padding: 4px;
}

.datepicker--nav-title i {
  font-style: normal;
  color: #9c9c9c;
  margin-left: 5px;
}

.datepicker--nav-title.-disabled- {
  cursor: default;
  background: 0 0;
}

.datepicker--buttons {
  display: flex;
}

.datepicker--button {
  color: #2761f2;
  cursor: pointer;
  border-radius: 4px;
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 32px;
}

.datepicker--button:hover {
  color: #4a4a4a;
  background: #f0f0f0;
}

.datepicker--time {
  display: flex;
  align-items: center;
  position: relative;
}

.datepicker--time.-am-pm- .datepicker--time-sliders {
  flex: 0 1 138px;
  max-width: 138px;
}

.-only-timepicker- .datepicker--time {
  border-top: none;
}

.datepicker--time-sliders {
  flex: 0 1 153px;
  margin-right: 10px;
  max-width: 153px;
}

.datepicker--time-label {
  display: none;
  font-size: 12px;
}

.datepicker--time-current {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 14px;
  text-align: center;
  margin: 0 0 0 10px;
}

.datepicker--time-current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.datepicker--time-current-hours, .datepicker--time-current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}

.datepicker--time-current-hours:after, .datepicker--time-current-minutes:after {
  content: "";
  background: #f0f0f0;
  border-radius: 4px;
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.datepicker--time-current-hours.-focus-:after, .datepicker--time-current-minutes.-focus-:after {
  opacity: 1;
}

.datepicker--time-current-ampm {
  text-transform: uppercase;
  align-self: flex-end;
  color: #9c9c9c;
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.datepicker--time-row {
  display: flex;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(to right, #dedede, #dedede) left 50%/100% 1px no-repeat;
}

.datepicker--time-row:first-child {
  margin-bottom: 4px;
}

.datepicker--time-row input[type=range] {
  background: 0 0;
  cursor: pointer;
  flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.datepicker--time-row input[type=range]::-ms-tooltip {
  display: none;
}

.datepicker--time-row input[type=range]:hover::-webkit-slider-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:hover::-moz-range-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:hover::-ms-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:focus {
  outline: 0;
}

.datepicker--time-row input[type=range]:focus::-webkit-slider-thumb {
  background: #2761f2;
  border-color: #2761f2;
}

.datepicker--time-row input[type=range]:focus::-moz-range-thumb {
  background: #2761f2;
  border-color: #2761f2;
}

.datepicker--time-row input[type=range]:focus::-ms-thumb {
  background: #2761f2;
  border-color: #2761f2;
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  margin-top: -6px;
}

.datepicker--time-row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}

.datepicker--time-row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -ms-transition: background 0.2s;
  transition: background 0.2s;
}

.datepicker--time-row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-moz-range-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-fill-lower {
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-fill-upper {
  background: 0 0;
}

.datepicker--time-row span {
  padding: 0 12px;
}

.datepicker--time-icon {
  color: #9c9c9c;
  border: 1px solid;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  margin: 0 5px -1px 0;
  width: 1em;
  height: 1em;
}

.datepicker--time-icon:after, .datepicker--time-icon:before {
  content: "";
  background: currentColor;
  position: absolute;
}

.datepicker--time-icon:after {
  height: 0.4em;
  width: 1px;
  left: calc(50% - 1px);
  top: calc(50% + 1px);
  transform: translateY(-100%);
}

.datepicker--time-icon:before {
  width: 0.4em;
  height: 1px;
  top: calc(50% + 1px);
  left: calc(50% - 1px);
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(39, 97, 242, 0.1);
  color: #ccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(39, 97, 242, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: 0 0;
  border: none;
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
}

body,
input[type=submit] {
  -webkit-text-size-adjust: 100%;
}

html {
  color: #333;
  background: #fff;
  font-size: 12px;
  line-height: 1.6;
  word-break: break-all;
  overflow-y: scroll;
}

body {
  background: #fff;
  margin: 0;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input,
select,
textarea {
  font-size: 16px;
}

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

textarea {
  resize: vertical;
}

:-ms-input-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

::placeholder {
  color: #999;
}

:-ms-input-placeholder {
  font-size: 12px;
}

::-moz-placeholder {
  font-size: 12px;
}

::placeholder {
  font-size: 12px;
}

button,
input[type=submit],
select {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

dl, dt, dd {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

body,
#wrapper,
.outer-block {
  min-width: 320px;
}

#wrapper {
  overflow: hidden;
  position: relative;
}

.inner-block {
  position: relative;
  padding: 0 20px;
}

[data-name=mojs-shape] {
  pointer-events: none;
}

@media only screen and (min-width: 640px) {
  #wrapper {
    background-color: #f9f9f9;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    min-width: 700px;
    min-height: 100vh;
  }

  main {
    background-color: #fff;
    border-radius: 15px;
    -ms-grid-row-align: center;
        align-self: center;
    margin: 40px auto;
    width: 640px;
    overflow: hidden;
  }

  footer {
    margin: auto 0 0;
  }
}
/* スクロールバー全体 */
::-webkit-scrollbar {
  width: 10px;
}

/* スクロールバーの軌道 */
::-webkit-scrollbar-track {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* スクロールバーの動く部分 */
::-webkit-scrollbar-thumb {
  background-color: #ccc;
  opacity: 0.25;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

@media print {
  .no_print {
    display: none !important;
  }
}
/* -----------------------------------------------
* Base エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.c-header .search-box {
  display: flex;
  border: 2px solid #ccc;
}
@media only screen and (max-width: 639px) {
  .c-header .search-box {
    display: none;
  }
}
.c-header .search-box input[type=text] {
  width: 160px;
  font-size: 12px;
  padding: 0 10px;
  line-height: 2.2;
}
.c-header .search-box button {
  width: 2em;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: #2761f2;
}
.c-header .search-box button .fa-search {
  left: -1.5px;
  position: relative;
}
@media only screen and (max-width: 639px) {
  .c-header .login-box.login {
    display: none;
  }
}
.c-header .my-menu {
  display: none;
  position: absolute;
  top: 50px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  z-index: 999;
}
@media only screen and (max-width: 639px) {
  .c-header .my-menu {
    top: 40px;
    font-size: 12px;
  }
}
.c-header .my-menu li:not(.border) {
  padding: 5px 15px;
}
.c-header .my-menu li:not(.border) a {
  display: block;
  margin: -5px -15px;
  padding: 5px 10px;
}
.c-header .my-menu li:not(.border) a:hover {
  background-color: #eee;
}
.c-header .my-menu li:not(.border) .icon {
  margin-right: 0.2em;
}
.c-header .my-menu li.nick-name {
  padding: 5px 10px;
  background-color: #2761f2;
  color: #fff;
}
.c-header .my-menu li.border {
  border-top: 1px solid #ccc;
  height: 1px;
}
@media only screen and (min-width: 640px) {
  .c-header .menu-box {
    display: none;
  }
}
.c-header .menu-box .hamburger {
  position: absolute;
  top: 5px;
  left: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-header .menu-box .hamburger span,
.c-header .menu-box .hamburger span:before,
.c-header .menu-box .hamburger span:after {
  content: "";
  display: block;
  height: 1.6px;
  width: 18px;
  border-radius: 4px;
  background-color: #ff87b7;
  position: absolute;
}
.c-header .menu-box .hamburger span:before {
  bottom: 8px;
}
.c-header .menu-box .hamburger span:after {
  top: 8px;
}
.c-header .menu-box .menu {
  display: none;
  position: fixed;
  top: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 16px;
  z-index: 99;
  background: #effaff;
}
.c-header .menu-box .menu li {
  display: flex;
  border-bottom: 1px solid #2761f2;
}
.c-header .menu-box .menu li a {
  flex-grow: 1;
  padding: 15px;
  color: #2761f2;
  font-weight: 900;
  font-size: 12px;
  background: #fff;
}
.c-header .menu-box .menu li .menu-search {
  flex-grow: 1;
  display: flex;
  background: #fff;
}
.c-header .menu-box .menu li .menu-search input[type=text] {
  flex-grow: 1;
  padding: 0 15px;
  border-top: 1px solid #2761f2;
}
.c-header .menu-box .menu li .menu-search button {
  padding: 10px 15px;
  font-size: 1em;
  color: #fff;
  background: #2761f2;
  border-top: 1px solid #2761f2;
  border-bottom: 1px solid #2761f2;
}
.c-header .menu-box.open .hamburger span {
  background-color: transparent;
}
.c-header .menu-box.open .hamburger span::before {
  bottom: 0;
  transform: rotate(45deg);
}
.c-header .menu-box.open .hamburger span::after {
  top: 0;
  transform: rotate(-45deg);
}
.c-header .inner-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
@media only screen and (min-width: 640px) {
  .c-header .inner-block {
    height: 70px;
  }
}
.c-header .inner-block .logo {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
.c-header .inner-block .left,
.c-header .inner-block .right {
  display: flex;
  width: 80px;
}
@media only screen and (min-width: 640px) {
  .c-header .inner-block .left,
.c-header .inner-block .right {
    width: 200px;
  }
}
.c-header .inner-block .left {
  justify-content: flex-start;
}
.c-header .inner-block .right {
  justify-content: flex-end;
}
.c-header .inner-block .env {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #fff;
  color: #f00;
  font-weight: bold;
  font-size: 30px;
  opacity: 75%;
}
.c-header .logo img {
  width: 117px;
  height: 20px;
}
@media only screen and (min-width: 640px) {
  .c-header .logo img {
    width: 180px;
    height: 30px;
  }
}
.c-header .right img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.c-header .c-btn {
  font-size: 12px;
  line-height: 27px;
  width: 80px;
}

/* --------------------------------
c-footer
----------------------------------- */
.c-footer {
  background-color: #ccc;
  font-size: 10px;
  padding: 15px 0;
  text-align: center;
}

/* --------------------------------
c-btn
----------------------------------- */
.c-btn {
  background: #ff87b7;
  box-shadow: 0px 2px 1px 1px rgba(255, 255, 255, 0.2) inset, 0px -2px 1px 1px rgba(0, 0, 0, 0.1) inset;
  border-radius: 100px;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 56px;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 639px) {
  .c-btn {
    line-height: 46px;
  }
}
.c-btn.back {
  background-color: #8e8e8e;
  box-shadow: none;
}
.c-btn.gray {
  background-color: #999;
}
.c-btn.blue {
  background-color: #2761f2;
}
.c-btn.orange {
  background-color: #ffa500;
}
.c-btn.minimum {
  width: auto;
  line-height: 1em;
  padding: 0 1em;
  font-size: 12px;
}
.c-btn.square {
  border-radius: 8px;
  padding: 15px 0px;
}
.c-btn:disabled {
  background-color: #999 !important;
  cursor: not-allowed;
}

/* --------------------------------
c-hint-btn
----------------------------------- */
.c-hint-btn {
  background-color: #fff;
  border-radius: 50%;
  color: #2761f2;
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  top: 5px;
  right: 5px;
  text-align: center;
  width: 13px;
  height: 13px;
  line-height: 13px;
}
.c-hint-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
}

/* --------------------------------
c-dialog
----------------------------------- */
#cover-bg {
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  z-index: 998;
  transition: opacity 0.5s;
}
#cover-bg.is-open {
  opacity: 1;
  pointer-events: auto;
}

#loading,
.c-dialog {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  overflow: auto;
  transition: opacity 0.3s;
  -webkit-overflow-scrolling: touch;
  perspective: 500px;
}
#loading.is-open,
.c-dialog.is-open {
  opacity: 1;
  pointer-events: auto;
}
#loading .content,
.c-dialog .content {
  padding: 40px 30px 110px;
  width: 100%;
}
@media only screen and (max-width: 639px) {
  #loading .content,
.c-dialog .content {
    padding: 70px 20px;
  }
}
#loading .inner,
.c-dialog .inner {
  background-color: #fff;
  border-radius: 5px;
  margin: auto;
  padding: 30px 20px;
  position: relative;
  width: 100%;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: transform;
  transform: rotateX(15deg);
  transform-origin: center top;
}
@media only screen and (min-width: 640px) {
  #loading .inner,
.c-dialog .inner {
    width: 520px;
  }
}
#loading.is-open .inner,
.c-dialog.is-open .inner {
  transform: rotateX(0);
}
#loading .close-btn,
.c-dialog .close-btn {
  background: url(/assets/img/ico-delete-0d539ad54055cc125ad11513976e4996.svg) no-repeat center center/12px auto #3d3d3d;
  border-radius: 100px;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 639px) {
  #loading .close-btn,
.c-dialog .close-btn {
    display: none;
  }
}
#loading .dialog-ttl,
.c-dialog .dialog-ttl {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 25px;
  text-align: center;
}
@media only screen and (max-width: 639px) {
  #loading .dialog-ttl,
.c-dialog .dialog-ttl {
    font-size: 16px;
  }
}
#loading .dialog-ttl .small,
.c-dialog .dialog-ttl .small {
  font-size: 14px;
}
#loading .dialog-btn,
.c-dialog .dialog-btn {
  border-top: 1px solid #eee;
  display: flex;
  margin: 25px -20px -30px;
}
#loading .dialog-btn > *,
.c-dialog .dialog-btn > * {
  flex: 1;
  font-size: 13px;
  line-height: 40px;
  text-align: center;
}
#loading .dialog-btn > * + *,
.c-dialog .dialog-btn > * + * {
  border-left: 1px solid #eee;
}
#loading .dialog-btn .btn-cancel,
.c-dialog .dialog-btn .btn-cancel {
  color: #999;
  font-weight: 900;
}
#loading .dialog-btn .btn-accept,
.c-dialog .dialog-btn .btn-accept {
  color: #b72735;
  font-weight: 900;
}
#loading .ctrl-area,
.c-dialog .ctrl-area {
  padding: 10px 5px;
}
#loading .ctrl-area .inner-block,
.c-dialog .ctrl-area .inner-block {
  flex-direction: column;
  padding: 0;
}
#loading .ctrl-area .c-btn,
.c-dialog .ctrl-area .c-btn {
  margin: 10px 0;
}
#loading .ctrl-area .c-btn:not(:first-child),
.c-dialog .ctrl-area .c-btn:not(:first-child) {
  margin-left: auto;
}
#loading .spinner,
.c-dialog .spinner {
  width: 64px;
  height: 64px;
  margin: auto;
  /*
  border: 4px $cl-gray02 solid;
  border-top: 4px $theme-primary solid;
  */
  border-top: 32px #2761f2 solid;
  border-radius: 50%;
  -webkit-animation: spin-anime 1s infinite linear;
          animation: spin-anime 1s infinite linear;
}
@-webkit-keyframes spin-anime {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin-anime {
  100% {
    transform: rotate(360deg);
  }
}

#dialog-opinion-detail .txt-wrap {
  display: flex;
  justify-content: space-between;
}
#dialog-opinion-detail .img-wrap {
  flex-shrink: 0;
  margin-left: 15px;
}
#dialog-opinion-detail .item-ttl {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
#dialog-opinion-detail .item-txt {
  font-size: 12px;
  margin-top: 15px;
}

#dialog-opinion-one-words .inner {
  transform: none;
}

#dialog-vote-flow-top3 .img {
  text-align: center;
}
#dialog-vote-flow-top3 .img img {
  max-width: 375px;
  width: 100%;
}

#dialog-opinion-thumbnail .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#dialog-opinion-thumbnail .inner .dialog-ttl {
  width: 100%;
}

/* --------------------------------
c-input
----------------------------------- */
.c-input {
  border: 1px solid #eee;
  border-radius: 5px;
  display: block;
  padding: 0 15px;
  width: 100%;
  height: 44px;
}

/* --------------------------------
c-textarea
----------------------------------- */
.c-textarea {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}
.c-textarea .dummy {
  overflow: hidden;
  visibility: hidden;
  min-height: 1.6em;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.c-textarea .input {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  resize: none;
}

/* --------------------------------
c-datepicker
----------------------------------- */
.c-datepicker {
  padding-right: 30px;
  height: 1.6em;
  text-align: right;
  cursor: pointer;
}
.c-datepicker.datetime-picker {
  background: url(/assets/img/ico-time-8f27df054760c4320ea28d4320bb1b08.svg) no-repeat right center/18px auto;
}
.c-datepicker.month-picker {
  background: url(/assets/img/ico-calendar-0cdd418a6e54139810d60d699d87b0f5.svg) no-repeat right center/18px auto;
}

.datepicker--buttons,
.datepicker--time {
  padding: 15px 5px;
}

.datepicker--time-row:first-child {
  margin-bottom: 10px;
}

/* --------------------------------
c-input-file
----------------------------------- */
.c-input-file {
  display: inline-block;
  position: relative;
}
.c-input-file input[type=file] {
  display: none;
}
.c-input-file .img-delete {
  background: url(/assets/img/ico-delete-0d539ad54055cc125ad11513976e4996.svg) no-repeat center center/8px auto #3d3d3d;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
}
.c-input-file .thumb {
  background: url(/assets/img/ico-image-909a120b5c3a1c4b943b4b51f30ec88e.svg) no-repeat center center/cover;
  border-radius: 100px;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.c-input-file.is-selected .img-delete {
  pointer-events: auto;
  opacity: 1;
}
.c-input-file.is-selected .thumb {
  border-radius: 0;
  width: 65px;
  height: 65px;
}
.c-input-file.is-selected .thumb img {
  border-radius: 3px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 65px;
  height: 65px;
}

/* --------------------------------
ttl-area
----------------------------------- */
.ttl-area {
  background: url(/assets/img/ttl-bg01-db99f36c2c1a85bc810dafbc46b86bcf.svg) no-repeat left top/auto 100%, url(/assets/img/ttl-bg02-26ca70616ec3d2007c01fd76fe4f6d6e.svg) no-repeat right top/auto 100%;
  padding: 45px 0 25px;
  min-height: 232px;
  text-align: center;
}
.ttl-area .inner-block {
  padding: 0;
}
.ttl-area .error-anime-container {
  position: relative;
  width: 100%;
  height: 280px;
}
@media only screen and (max-width: 639px) {
  .ttl-area .error-anime-container {
    height: 150px;
  }
}
.ttl-area .error-anime img {
  padding: 0;
  position: absolute;
  right: 0;
  bottom: 80px;
  margin: auto;
  font-size: 5em;
  width: 110px;
  height: 110px;
}
@media only screen and (max-width: 639px) {
  .ttl-area .error-anime img {
    width: 60px;
    height: 60px;
    bottom: 50px;
  }
}
.ttl-area .error-anime img:nth-child(1) {
  left: -3.2em;
  -webkit-animation: bound-down-anim 1.2s 0s infinite;
          animation: bound-down-anim 1.2s 0s infinite;
}
@media only screen and (max-width: 639px) {
  .ttl-area .error-anime img:nth-child(1) {
    left: -2.2em;
  }
}
.ttl-area .error-anime img:nth-child(2) {
  left: 3.2em;
  -webkit-animation: bound-down-anim 1.2s 0.6s infinite;
          animation: bound-down-anim 1.2s 0.6s infinite;
}
@media only screen and (max-width: 639px) {
  .ttl-area .error-anime img:nth-child(2) {
    left: 2.2em;
  }
}
.ttl-area .error-anime img:nth-child(3) {
  opacity: 0;
}
.ttl-area .error-anime img:nth-child(3) {
  left: -3.2em;
  -webkit-animation: bound-up-anim 1.2s 0.6s infinite;
          animation: bound-up-anim 1.2s 0.6s infinite;
}
@media only screen and (max-width: 639px) {
  .ttl-area .error-anime img:nth-child(3) {
    left: -2.2em;
  }
}
.ttl-area .error-anime img:nth-child(4) {
  opacity: 0;
}
.ttl-area .error-anime img:nth-child(4) {
  left: 3.2em;
  -webkit-animation: bound-up-anim 1.2s 1.2s infinite;
          animation: bound-up-anim 1.2s 1.2s infinite;
}
@media only screen and (max-width: 639px) {
  .ttl-area .error-anime img:nth-child(4) {
    left: 2.2em;
  }
}
@-webkit-keyframes bound-down-anim {
  0% {
    opacity: 1;
    top: 0;
    transform: scale(1);
  }
  48% {
    opacity: 1;
    top: 90%;
    transform: scale(1);
  }
  49% {
    opacity: 1;
    top: 90%;
    transform: scale(1.2, 0.8);
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bound-down-anim {
  0% {
    opacity: 1;
    top: 0;
    transform: scale(1);
  }
  48% {
    opacity: 1;
    top: 90%;
    transform: scale(1);
  }
  49% {
    opacity: 1;
    top: 90%;
    transform: scale(1.2, 0.8);
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes bound-up-anim {
  0% {
    opacity: 1;
    top: 90%;
    transform: scale(1.2, 0.8);
  }
  48% {
    opacity: 1;
    top: 1%;
    transform: scale(1);
  }
  49% {
    opacity: 1;
    top: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bound-up-anim {
  0% {
    opacity: 1;
    top: 90%;
    transform: scale(1.2, 0.8);
  }
  48% {
    opacity: 1;
    top: 1%;
    transform: scale(1);
  }
  49% {
    opacity: 1;
    top: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.ttl-area .img {
  margin: 30px 0 0;
  padding: 0 150px;
}
@media only screen and (max-width: 639px) {
  .ttl-area .img {
    margin: 10px 0 0;
    padding: 0 50px;
  }
}
.ttl-area .ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}
@media only screen and (max-width: 639px) {
  .ttl-area .ttl {
    font-size: 16px;
  }
}
.ttl-area .txt {
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0;
}
@media only screen and (max-width: 639px) {
  .ttl-area .txt {
    font-size: 12px;
    padding: 0 20px;
  }
}
.ttl-area .step-list {
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
}
.ttl-area .step-list li {
  background-color: #2761f2;
  border: 1px solid #2761f2;
  border-radius: 100px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  text-align: center;
  width: 40px;
  line-height: 38px;
  z-index: 2;
}
.ttl-area .step-list li + li {
  margin-left: 40px;
}
.ttl-area .step-list li::after {
  background-color: #2761f2;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 1px);
  width: 1000px;
  height: 2px;
  z-index: -1;
}
.ttl-area .step-list li.current ~ li {
  background-color: #fff;
  border-color: #eee;
  color: #999;
}
.ttl-area .step-list li.current::after, .ttl-area .step-list li.current ~ li::after {
  background-color: #eee;
}
.ttl-area .step-list li.current::before {
  border: 1px solid #fff;
  border-radius: 100px;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 34px;
  height: 34px;
}

.ttl-area.error {
  background: url(/assets/img/ttl-bg09-b6a6826acdfcd81ebadefb40d5100939.svg) no-repeat bottom;
}

.ttl-area.finish {
  background-image: url(/assets/img/ttl-bg03-b081485c423e40103c4fce27e15a31ab.svg), url(/assets/img/ttl-bg04-2b6341d18173995ca56d1668e923d8d3.svg);
}

.ttl-area.result {
  background-image: url(/assets/img/ttl-bg05-57975f6f20d4efac77af2ce4faaf85df.svg), url(/assets/img/ttl-bg06-a50d91331f407387ab1810e08c000935.svg);
  border-bottom: 1px solid #eee;
  min-height: 300px;
  padding-top: 20px;
}
.ttl-area.result .txt-wrap {
  font-size: 24px;
  line-height: 1.3;
  position: relative;
  height: 270px;
}
.ttl-area.result .ttl,
.ttl-area.result .txt {
  position: relative;
  z-index: 1;
}
.ttl-area.result .ttl {
  padding-top: 90px;
}

#ttl-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#ttl-bg * {
  transform-origin: center center;
}
#ttl-bg #shape-bg {
  -webkit-animation: bow 2s ease-out infinite;
          animation: bow 2s ease-out infinite;
}
#ttl-bg #shape-flag,
#ttl-bg #shape-line {
  opacity: 0;
  -webkit-animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.2, 1) forwards;
          animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.2, 1) forwards;
}
#ttl-bg #shape-line {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#ttl-bg #group > path,
#ttl-bg #group > circle,
#ttl-bg #group > ellipse {
  opacity: 0;
  -webkit-animation: fadeIn 0.6s ease-in-out forwards;
          animation: fadeIn 0.6s ease-in-out forwards;
}
#ttl-bg #group > path:nth-child(5n+0),
#ttl-bg #group > circle:nth-child(5n+0),
#ttl-bg #group > ellipse:nth-child(5n+0) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#ttl-bg #group > path:nth-child(5n+1),
#ttl-bg #group > circle:nth-child(5n+1),
#ttl-bg #group > ellipse:nth-child(5n+1) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#ttl-bg #group > path:nth-child(5n+2),
#ttl-bg #group > circle:nth-child(5n+2),
#ttl-bg #group > ellipse:nth-child(5n+2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
#ttl-bg #group > path:nth-child(5n+3),
#ttl-bg #group > circle:nth-child(5n+3),
#ttl-bg #group > ellipse:nth-child(5n+3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#ttl-bg #group > path:nth-child(5n+4),
#ttl-bg #group > circle:nth-child(5n+4),
#ttl-bg #group > ellipse:nth-child(5n+4) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes bow {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  70% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1);
  }
  90% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bow {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  70% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1);
  }
  90% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --------------------------------
edit-area
----------------------------------- */
.edit-area .inner-block {
  padding: 0;
}

.edit-box {
  border-bottom: 1px solid #eee;
  display: block;
  padding: 18px 20px;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: box-shadow;
}
.edit-box:focus-within {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}
.edit-box + .edit-box {
  margin-top: -1px;
}
.edit-box .label {
  color: #2761f2;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
  white-space: nowrap;
}
.edit-box .label.is-required::before {
  background-color: #ff87b7;
  border-radius: 100px;
  content: "";
  display: block;
  margin: -2px 0 0;
  width: 5px;
  height: 5px;
}
.edit-box .txt {
  font-size: 16px;
}
.edit-box input {
  font-family: inherit;
  font-weight: inherit;
  display: block;
  width: 100%;
}
.edit-box input:disabled,
.edit-box textarea:disabled,
.edit-box .edit-select.disabled {
  background-color: #ccc !important;
  color: #fff !important;
  padding: 5px 10px;
  cursor: not-allowed;
}
.edit-box input:disabled.edit-select,
.edit-box textarea:disabled.edit-select,
.edit-box .edit-select.disabled.edit-select {
  background-image: unset;
}
.edit-box input:disabled.c-datepicker,
.edit-box textarea:disabled.c-datepicker,
.edit-box .edit-select.disabled.c-datepicker {
  padding-right: 30px;
  height: auto;
}
.edit-box.column {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.edit-box.column .label {
  margin: 3px 20px 0 0;
}
.edit-box.column-2-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.edit-box.column-2-1 :nth-child(1) {
  -ms-grid-column-align: start;
      justify-self: start;
}
.edit-box.column-2-1 :nth-child(2) {
  -ms-grid-column-align: end;
      justify-self: end;
}
.edit-box.column-2-1 :nth-child(3) {
  -ms-grid-column-align: stretch;
      justify-self: stretch;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
.edit-box .hashtags .tag {
  display: inline-block;
  margin-right: 10px;
  color: #999;
  border-bottom: 1px solid #999;
  margin-top: 6px;
}
.edit-box .hashtags .tag span {
  margin-right: 6px;
  margin-left: 2px;
}

.edit-select {
  background: url(/assets/img/ico-edit-a3c8c9417ca5cad994decfc7def6e543.svg) no-repeat right center/auto 12px;
  display: inline-block;
  font-size: 16px;
  text-align: left;
  padding-right: 20px;
}
.edit-select.modal {
  background: url(/assets/img/ico-edit-a3c8c9417ca5cad994decfc7def6e543.svg) no-repeat right center/auto 12px;
  display: inline-block;
  font-size: 16px;
  text-align: left;
  padding-right: 35px;
}

.edit-checkbox {
  display: block;
  padding: 20px 20px 0;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: box-shadow;
}
.edit-checkbox:focus-within {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}
.edit-checkbox .label {
  font-size: 14px;
  margin-bottom: 6px;
  white-space: nowrap;
}
.edit-checkbox .label.is-required::before {
  background-color: #ff87b7;
  border-radius: 100px;
  content: "";
  display: block;
  margin: -2px 0 0;
  width: 5px;
  height: 5px;
}
.edit-checkbox input[type=checkbox] {
  display: none;
}
.edit-checkbox input[type=checkbox] + label,
.edit-checkbox input[type=checkbox] + input[type=hidden] + label {
  display: block;
  position: relative;
  padding-left: 28px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.edit-checkbox input[type=checkbox] + label:last-child,
.edit-checkbox input[type=checkbox] + input[type=hidden] + label:last-child {
  margin-bottom: 0;
}
.edit-checkbox input[type=checkbox] + label:before,
.edit-checkbox input[type=checkbox] + input[type=hidden] + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #2761f2;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  transition: all 0.12s, border-color 0.08s;
}
.edit-checkbox input[type=checkbox]:checked + label:before,
.edit-checkbox input[type=checkbox]:checked + input[type=hidden] + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

/* --------------------------------
ctrl-area
----------------------------------- */
.ctrl-area {
  padding: 30px 15px;
}
.ctrl-area .inner-block {
  display: flex;
}
.ctrl-area .c-btn:not(:first-child) {
  margin-left: 20px;
}
.ctrl-area .c-btn.back {
  flex-shrink: 1.75;
}
.ctrl-area.row .inner-block {
  flex-wrap: wrap;
}
.ctrl-area.row .c-btn {
  width: 100%;
}
.ctrl-area.row .c-btn:not(:first-child) {
  margin: 15px 0 0;
}
.ctrl-area .questionnaire {
  padding: 0 25px;
}
@media only screen and (max-width: 639px) {
  .ctrl-area .questionnaire {
    padding: 0 5px;
  }
}
.ctrl-area .balloon {
  background-color: #fff;
  width: 80%;
  text-align: center;
  color: #333;
  border-radius: 15px;
  display: inline-block;
  position: relative;
  top: -40px;
  font-size: 12px;
  line-height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  border-style: solid;
  border-width: 3px;
  border-color: #ff87b7;
}
.ctrl-area .balloon::before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
}
.ctrl-area .balloon.blue {
  border-color: #2761f2;
}
.ctrl-area .balloon.orange {
  border-color: #ffa500;
}

/* --------------------------------
share-area
----------------------------------- */
.share-area .inner-block {
  padding: 0;
}

[class*=share-box-] {
  border: solid #eee;
  border-width: 1px 0;
  display: block;
  padding: 20px;
}
[class*=share-box-] + [class*=share-box-] {
  margin-top: -1px;
}

.share-box-url .input-wrap {
  position: relative;
}
.share-box-url input {
  border: 1px solid #ccc;
  border-radius: 100px;
  display: block;
  padding: 0 105px 0 15px;
  width: 100%;
  height: 44px;
}
.share-box-url .c-btn {
  border-radius: 0 100px 100px 0;
  font-size: 12px;
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 44px;
  line-height: 44px;
}

.share-box-sns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.share-box-sns .head {
  color: #2761f2;
  font-size: 12px;
  font-weight: bold;
}
.share-box-sns .body {
  display: flex;
  align-items: center;
}
.share-box-sns .btn-group {
  width: 36px;
}
.share-box-sns .btn-group + .btn-group {
  margin-left: 10px;
}
@media only screen and (max-width: 639px) {
  .share-box-sns .qr {
    display: none;
  }
}

.share-box-qr {
  border-bottom: 0;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .share-box-qr {
    display: none;
  }
}
.share-box-qr .img img {
  max-width: 115px;
}
.share-box-qr .txt {
  color: #2761f2;
  font-size: 12px;
  font-weight: bold;
}

#dialog-vote-share-sns .share-box-sns {
  display: flex;
  justify-content: center;
}

.youtube-use {
  text-align: center;
  padding: 20px 0 0;
}
.youtube-use p {
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 640px) {
  .youtube-use iframe {
    max-width: 100%;
  }
}

/* --------------------------------
summary-area
----------------------------------- */
.summary-area {
  padding: 30px 0;
}
.summary-area .inner-block {
  flex-wrap: wrap;
}
.summary-area .favorite-btn + .ttl,
.summary-area .favorite-btn + .ttl + .txt {
  margin-right: 100px;
}
.summary-area .ttl {
  top: -8px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
@media only screen and (max-width: 639px) {
  .summary-area .ttl {
    font-size: 16px;
  }
}
.summary-area .txt {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 10px;
}
@media only screen and (max-width: 639px) {
  .summary-area .txt {
    margin-bottom: 0px;
  }
}
.summary-area .hashtags {
  margin-top: 10px;
}
.summary-area .hashtags .tag:not(:first-child) {
  margin-left: 10px;
}
.summary-area .admin-box {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  margin-bottom: -25px;
}
.summary-area .admin-box .admin-btn {
  background-color: #ff87b7;
  color: white;
  margin: 0;
  display: block;
  line-height: 22px;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}
.summary-area .admin-box .admin-btn.blue {
  background-color: #2761f2;
}
.summary-area .admin-box .admin-btn.orange {
  background-color: #ffa500;
}
.summary-area .admin-box .admin-btn.gray {
  background-color: #999;
}

.user-list-btn {
  background: url(/assets/img/ico-list-4c60c53a966208f820c3b56b557a8d7c.svg) no-repeat left center/13px auto;
  color: #999;
  display: inline-block;
  font-weight: bold;
  font-size: 10px;
  margin: 3px 0 5px;
  padding: 2px 0 2px 20px;
}
.user-list-btn .num {
  font-size: 14px;
}

.navi-buttons {
  display: flex;
  justify-content: center;
  padding: 5px 0px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  width: 220px;
  height: auto;
  padding: 10px 0;
  margin-top: 15px;
  margin-bottom: -20px;
}
@media only screen and (max-width: 639px) {
  .navi-buttons {
    border: none;
    border-radius: 100px;
    margin-left: auto;
    margin-right: auto;
    left: calc((100% - 250px) / 2);
    z-index: 1;
    position: fixed;
    bottom: 15px;
    padding: 15px;
    margin: 0;
    background: #fff;
    width: 250px;
  }
}
.navi-buttons .admin-btn.blue {
  color: #333;
  display: block;
  line-height: 0;
  padding: 0;
  font-size: 12px;
  position: relative;
  padding: 0px 10px;
}
@media only screen and (max-width: 639px) {
  .navi-buttons .admin-btn.blue {
    background-color: #fff;
  }
}
.navi-buttons .admin-btn.blue img {
  width: 18px;
  height: 18px;
}
.navi-buttons .admin-btn.blue span {
  line-height: normal;
}
@media only screen and (max-width: 639px) {
  .navi-buttons .admin-btn.blue span {
    font-weight: bold;
  }
}
.navi-buttons .navi-favorite-btn {
  position: relative;
  top: 0;
  right: 0;
  padding: 0;
  width: auto;
  height: auto;
  padding: 0px 10px;
}
.navi-buttons .navi-favorite-btn img {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-size: contain;
}
.navi-buttons .navi-favorite-btn::before, .navi-buttons .navi-favorite-btn::after {
  display: none;
}
.navi-buttons .navi-favorite-btn::before {
  display: none;
}
.navi-buttons .navi-favorite-btn::after {
  display: none;
}
.navi-buttons .navi-favorite-btn.is-selected::before, .navi-buttons .navi-favorite-btn.is-selected::after {
  -webkit-animation: rotate 0.6s;
          animation: rotate 0.6s;
}
.navi-buttons .navi-favorite-btn.is-selected::before {
  opacity: 0;
}
.navi-buttons .navi-favorite-btn.is-selected::after {
  opacity: 1;
}
.navi-buttons .navi-favorite-btn .balloon {
  color: #333;
  font-size: 12px;
}
@media only screen and (max-width: 639px) {
  .navi-buttons .navi-favorite-btn .balloon {
    background-color: #fff;
    font-weight: bold;
  }
}

.favorite-btn {
  padding-bottom: 38px;
  text-align: center;
  position: absolute;
  top: -10px;
  right: 20px;
  width: 86px;
  height: 61px;
}
.favorite-btn::before, .favorite-btn::after {
  background: no-repeat center center/cover;
  content: "";
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 28px;
  height: 28px;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: opacity;
}
.favorite-btn::before {
  background-image: url(/assets/img/ico-star-79634fab833a43d74539c90fa1ce1f37.svg);
}
.favorite-btn::after {
  background-image: url(/assets/img/ico-star-fill-334134631b70c5c2418823901e5f0d17.svg);
  opacity: 0;
  z-index: 1;
}
.favorite-btn.is-selected::before, .favorite-btn.is-selected::after {
  -webkit-animation: rotate 0.6s;
          animation: rotate 0.6s;
}
.favorite-btn.is-selected::before {
  opacity: 0;
}
.favorite-btn.is-selected::after {
  opacity: 1;
}

@-webkit-keyframes rotate {
  0%, 50%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  65% {
    transform: rotate(-5deg);
  }
}

@keyframes rotate {
  0%, 50%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  65% {
    transform: rotate(-5deg);
  }
}
/* --------------------------------
graph-area
----------------------------------- */
.graph-area {
  border-top: 1px solid #eee;
  padding: 20px 0 30px;
}

.graph-switch {
  display: flex;
  margin: 0 0 20px auto;
  width: 120px;
}
.graph-switch li {
  border: 1px solid #eee;
  cursor: pointer;
  flex: 1;
  position: relative;
  height: 30px;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: background, border;
}
.graph-switch li + li {
  margin-left: -1px;
}
.graph-switch li::before, .graph-switch li::after {
  background: no-repeat center center/cover;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 15px;
  height: 15px;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: opacity;
}
.graph-switch li::after {
  opacity: 0;
}
.graph-switch li:first-child {
  border-radius: 100px 0 0 100px;
}
.graph-switch li:last-child {
  border-radius: 0 100px 100px 0;
}
.graph-switch li.bar-chart::before {
  background-image: url(/assets/img/ico-bar-chart-4b7069c322cc6ff9c4e8a6fd70267750.svg);
}
.graph-switch li.bar-chart::after {
  background-image: url(/assets/img/ico-bar-chart_white-6fcd74bf7a43789a0a566eba56a38888.svg);
}
.graph-switch li.pie-chart::before {
  background-image: url(/assets/img/ico-pie-chart-41091f133d9ff831a3a4089bf726e365.svg);
}
.graph-switch li.pie-chart::after {
  background-image: url(/assets/img/ico-pie-chart_white-9c4899cb164e65fca773e8c849629647.svg);
}
.graph-switch li.is-active {
  background-color: #ff87b7;
  border-color: #ff87b7;
  pointer-events: none;
}
.graph-switch li.is-active::before {
  opacity: 0;
}
.graph-switch li.is-active::after {
  opacity: 1;
}

.graph-switch-target:nth-of-type(n+2) {
  display: none;
}

.result-bar-list li + li,
.result-pie-list li + li {
  margin-top: 15px;
}
.result-bar-list .ico-rank,
.result-pie-list .ico-rank {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 15px;
  white-space: nowrap;
}
.result-bar-list .ico-rank .large,
.result-pie-list .ico-rank .large {
  font-size: 16px;
}
.result-bar-list .ico-rank.rank1, .result-bar-list .ico-rank.rank2, .result-bar-list .ico-rank.rank3,
.result-pie-list .ico-rank.rank1,
.result-pie-list .ico-rank.rank2,
.result-pie-list .ico-rank.rank3 {
  background: no-repeat left 6px/23px auto;
  font-size: 14px;
  padding-left: 32px;
}
.result-bar-list .ico-rank.rank1 .large, .result-bar-list .ico-rank.rank2 .large, .result-bar-list .ico-rank.rank3 .large,
.result-pie-list .ico-rank.rank1 .large,
.result-pie-list .ico-rank.rank2 .large,
.result-pie-list .ico-rank.rank3 .large {
  font-size: 20px;
}
.result-bar-list .ico-rank.rank1 ~ .ttl, .result-bar-list .ico-rank.rank2 ~ .ttl, .result-bar-list .ico-rank.rank3 ~ .ttl,
.result-pie-list .ico-rank.rank1 ~ .ttl,
.result-pie-list .ico-rank.rank2 ~ .ttl,
.result-pie-list .ico-rank.rank3 ~ .ttl {
  margin-top: 3px;
}
.result-bar-list .ico-rank.rank1,
.result-pie-list .ico-rank.rank1 {
  background-image: url(/assets/img/ico-rank1-bea05960c288fa4c7cb884856fc62551.svg);
  color: #cfa600;
}
.result-bar-list .ico-rank.rank2,
.result-pie-list .ico-rank.rank2 {
  background-image: url(/assets/img/ico-rank2-6fcc0b5a45ddf91c0688930de8db9fe5.svg);
  color: #bebebe;
}
.result-bar-list .ico-rank.rank3,
.result-pie-list .ico-rank.rank3 {
  background-image: url(/assets/img/ico-rank3-f5f6af6198670d026ccb07bd907530e8.svg);
  color: #9e6820;
}
.result-bar-list .ttl,
.result-pie-list .ttl {
  line-height: 1.4;
}
.result-bar-list .point,
.result-pie-list .point {
  font-size: 12px;
}

.result-bar-list .ttl-wrap {
  display: flex;
  align-items: center;
}
.result-bar-list .rank-image {
  width: 30%;
}
.result-bar-list .rank-image.rank1 {
  width: 60%;
}
.result-bar-list .rank-image img {
  border-radius: 5px;
}
.result-bar-list .bar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
.result-bar-list .bar {
  border: 1px solid #eee;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  width: calc(100% - 50px);
  height: 15px;
}
.result-bar-list .bar .meter {
  background-color: #31acff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.result-pie-list li {
  display: flex;
  align-items: center;
  /*    &:last-child {
        padding-left: calc(60px + 15px);
      }*/
}
.result-pie-list .ico-color,
.result-pie-list .point {
  flex-shrink: 0;
}
.result-pie-list .ico-rank {
  color: #2761f2;
  padding-left: 32px;
  width: 60px;
}
.result-pie-list .ico-color {
  display: inline-block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.result-pie-list .ttl {
  margin-left: 10px;
}
.result-pie-list .point {
  margin: 0 0 0 auto;
  padding-left: 15px;
  text-align: right;
  white-space: nowrap;
}

.pie-graph {
  margin-bottom: 45px;
  text-align: center;
}
.pie-graph canvas {
  display: inline-block !important;
}

/* --------------------------------
point-area
----------------------------------- */
.point-area {
  border-top: 1px solid #eee;
  padding: 20px 0 30px;
}

.table-switch {
  background: url(/assets/img/ico-table-switch-1a01e112ce48ece4ecf7953b63e014c9.svg) no-repeat 15px center/15px auto #ff87b7;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  display: block;
  margin: 0 0 15px auto;
  font-size: 11px;
  line-height: 30px;
  padding: 0 18px 0 40px;
}

.table-switch-target:nth-of-type(n+2) {
  display: none;
}

.point-table .head.is-fixed,
.point-detail-table .head.is-fixed {
  position: fixed;
}
@media only screen and (min-width: 640px) {
  .point-table .head.is-fixed,
.point-detail-table .head.is-fixed {
    margin: auto;
    right: 0;
    width: 640px;
  }
}
.point-table .comment,
.point-detail-table .comment {
  background: url(/assets/img/ico-comment-7d89c4d4b577d9bd05a1d6ef92454b83.svg) no-repeat center top/20px auto;
  color: #2761f2;
  font-size: 10px;
  display: inline-block;
  line-height: 1;
  margin: 0 -5px 0 auto;
  padding-top: 24px;
  text-align: center;
  min-width: 30px;
}

.point-table {
  font-size: 11px;
  margin: 0 -20px;
  padding-top: 40px;
  position: relative;
  width: calc(100% + 40px);
}
.point-table .row {
  display: flex;
}
.point-table .row .cell {
  display: flex;
  align-items: center;
}
.point-table .row .cell:first-child {
  flex-grow: 1;
}
.point-table .row .cell:nth-child(n+2) {
  flex-shrink: 0;
  justify-content: center;
  text-align: center;
  width: 42px;
}
.point-table .head {
  background-color: #31acff;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.point-table .head .row {
  height: 40px;
}
.point-table .head .cell {
  justify-content: center;
  text-align: center;
}
.point-table .head .cell + .cell {
  border-left: 1px solid #fff;
}
.point-table .body .row {
  border-bottom: 1px solid #eee;
}
.point-table .body .row:nth-child(even) {
  background-color: #f6f6f6;
}
.point-table .body .row:nth-child(n+11) {
  display: none;
}
.point-table .body .cell:first-child {
  padding: 15px;
}
.point-table .body .cell:nth-child(n+2) {
  font-weight: bold;
  line-height: 1.3;
  padding: 5px;
}
.point-table .body .cell + .cell {
  border-left: 1px solid #eee;
}
.point-table .rank {
  color: #2761f2;
  font-weight: bold;
  margin-right: 12px;
  white-space: nowrap;
}
.point-table .ttl {
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  text-decoration: underline;
}
.point-table .ttl:not(:last-child) {
  margin-right: 12px;
}

.point-detail-table {
  font-size: 11px;
  margin: 0 -20px;
  padding-top: 52px;
  position: relative;
  width: calc(100% + 40px);
}
.point-detail-table .row {
  display: flex;
}
.point-detail-table .row .cell {
  display: flex;
  align-items: center;
  flex: 1;
}
.point-detail-table .row .cell:not(:only-child) {
  justify-content: center;
  text-align: center;
}
.point-detail-table .head {
  background-color: #31acff;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.point-detail-table .head .row {
  height: 52px;
}
.point-detail-table .head .cell {
  justify-content: center;
  text-align: center;
}
.point-detail-table .head .cell + .cell {
  border-left: 1px solid #fff;
}
.point-detail-table .body .row-group:nth-child(even) {
  background-color: #f6f6f6;
}
.point-detail-table .body .row-group:nth-child(n+11) {
  display: none;
}
.point-detail-table .body .row {
  border-bottom: 1px solid #eee;
}
.point-detail-table .body .cell {
  padding: 5px 15px;
}
.point-detail-table .body .cell:only-child {
  padding: 15px;
}
.point-detail-table .body .cell + .cell {
  border-left: 1px solid #eee;
}
.point-detail-table .rank {
  color: #2761f2;
  font-weight: bold;
  margin-right: 12px;
  white-space: nowrap;
}
.point-detail-table .ttl {
  margin-right: 12px;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  text-decoration: underline;
}
.point-detail-table .c-hint-btn {
  position: absolute;
  top: 5px;
  right: 5px;
}
.point-detail-table [class*=sort-btn-] {
  cursor: pointer;
  position: relative;
}
.point-detail-table [class*=sort-btn-]::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #2761f2 transparent transparent transparent;
  margin: auto;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}
.point-detail-table [class*=sort-btn-].is-active::before {
  border-width: 8px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
}
.point-detail-table .sort-btn-asc::before {
  transform: rotate(180deg);
}

.point-table-add {
  margin-top: 20px;
}

/* --------------------------------
selection-list
----------------------------------- */
.selection-list {
  margin-top: 15px;
  counter-reset: selectionNum;
}
.selection-list .item,
.selection-list .op-single,
.selection-list .op-top3 .main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 35px;
  position: relative;
}
.selection-list .item:not(:first-child) {
  margin-top: 18px;
}
.selection-list .item:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 18px;
}
.selection-list .item .item-txt,
.selection-list .item .img-wrap,
.selection-list .item .item-add {
  display: none;
}
.selection-list .item-delete {
  background-color: #999;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}
.selection-list .item-delete::before {
  background-color: #fff;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 10px;
  height: 2px;
}
.selection-list .txt-wrap {
  flex-grow: 1;
}
.selection-list .img-wrap {
  flex-shrink: 0;
  margin-left: 15px;
}
.selection-list .img-wrap .thumb {
  cursor: pointer;
}
.selection-list .item-ttl {
  display: flex;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.selection-list .item-ttl::before {
  color: #2761f2;
  counter-increment: selectionNum 1;
  content: counter(selectionNum, decimal-leading-zero) ".";
  flex-shrink: 0;
  width: 2em;
  white-space: nowrap;
}
.selection-list .item-txt {
  margin-top: 10px;
}
.selection-list .item-txt:not(.c-textarea) {
  font-size: 13px;
}
.selection-list .item-add {
  background-color: #2761f2;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin-top: 15px;
  text-align: center;
  line-height: 30px;
  width: 110px;
}
.selection-list .add:first-child {
  padding-left: 0;
}
.selection-list .add .item-delete {
  display: none !important;
}
.selection-list .add .item-ttl::before {
  color: #ccc;
}
.selection-list .op-single,
.selection-list .op-top3 {
  border-bottom: 1px solid #eee;
  display: flex;
  margin: 0 -20px;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: background, transform;
}
.selection-list .op-single.is-selected,
.selection-list .op-top3.is-selected {
  background-color: #effaff;
}
.selection-list .op-single input[type=radio],
.selection-list .op-top3 input[type=radio] {
  display: none;
}
.selection-list .op-single {
  cursor: pointer;
  padding: 20px;
}
.selection-list .op-single.is-selected .item-ttl .ico-check {
  background-color: #ff87b7;
  border-color: #ff87b7;
}
.selection-list .op-single .item-ttl {
  padding-left: 35px;
  position: relative;
}
.selection-list .op-single .item-ttl .ico-check {
  background: url(/assets/img/ico-check-1e338494f953fbdcbe0a049bda76d211.svg) no-repeat center center/10px auto #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: background-color, border;
}
.selection-list .op-top3 {
  width: calc(100vw + 215px);
  min-height: 100px;
}
@media only screen and (min-width: 640px) {
  .selection-list .op-top3 {
    width: calc(640px + 215px);
  }
}
.selection-list .op-top3.is-open {
  transform: translateX(-215px);
}
.selection-list .op-top3.is-open .main::before {
  transform: rotate(180deg);
}
.selection-list .op-top3.is-open .main::after {
  opacity: 1;
}
.selection-list .op-top3.is-selected .main {
  padding-left: 55px;
}
.selection-list .op-top3.is-selected .main::before {
  background-color: #effaff;
  box-shadow: 0 0 0 5px #effaff;
}
.selection-list .op-top3.is-selected .ico-rank {
  transform: translateX(0);
}
.selection-list .op-top3 .main {
  cursor: pointer;
  flex-shrink: 0;
  padding: 20px 40px 20px 20px;
  position: relative;
  width: 100vw;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: padding;
}
@media only screen and (min-width: 640px) {
  .selection-list .op-top3 .main {
    width: 640px;
  }
}
.selection-list .op-top3 .main::before, .selection-list .op-top3 .main::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}
.selection-list .op-top3 .main::before {
  background: url(/assets/img/arrow-right-5017b80cc4f49a95708fe82ed279d326.svg) no-repeat center center/cover #fff;
  box-shadow: 0 0 0 5px #fff;
  display: inline-block;
  right: 15px;
  width: 7px;
  height: 12px;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: box-shadow, opacity, transform;
}
.selection-list .op-top3 .main::after {
  background-color: #eee;
  opacity: 0;
  right: 18px;
  width: 1px;
  height: 100%;
}
.selection-list .op-top3 .vote {
  display: flex;
  align-items: center;
  padding-right: 20px;
  width: 215px;
}
.selection-list .op-top3 .ico-rank {
  background-color: #ff87b7;
  border-radius: 0 10px 10px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-40px);
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: transform;
  text-align: center;
  width: 35px;
  height: 75px;
}
.selection-list .op-top3 .ico-rank::before {
  background: url(/assets/img/ico-check-1e338494f953fbdcbe0a049bda76d211.svg) no-repeat center center/auto 100%;
  content: "";
  margin-bottom: 4px;
  width: 8px;
  height: 6px;
}
.selection-list .op-top3 .ico-rank .large {
  font-size: 22px;
}

.vote-box {
  overflow: hidden;
}
.vote-box .label {
  background-color: #31acff;
  color: #fff;
  margin: -18px -20px 0;
  padding: 12px 20px;
  text-align: center;
}
.vote-box .selection-list {
  margin-top: 0;
}
.vote-box .selection-list li:last-child.op-single,
.vote-box .selection-list li:last-child.op-top3 {
  margin-bottom: -20px;
  border-bottom: none;
}

.vote-top3-list {
  display: flex;
  width: 100%;
}
.vote-top3-list li {
  background-color: #fff;
  box-shadow: 0px -2px 1px 0 #ccc inset;
  border: 1px solid #ccc;
  color: #999;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  height: 50px;
  line-height: 46px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-duration: 0.6s;
  transition-property: background, color, box-shadow;
  width: 32%;
}
.vote-top3-list li .large {
  font-size: 22px;
}
.vote-top3-list li:first-child {
  border-radius: 100px 0 0 100px;
  text-indent: 4px;
  width: 34%;
}
.vote-top3-list li:last-child {
  border-radius: 0 100px 100px 0;
  text-indent: -2px;
  width: 34%;
}
.vote-top3-list li:not(:first-child) {
  border-left: 0;
}
.vote-top3-list li:not(:first-child).is-active {
  padding-left: 0;
}
.vote-top3-list li.is-selected {
  background-color: #ff87b7;
  box-shadow: 0px 2px 1px 1px rgba(255, 255, 255, 0.2) inset, 0px -2px 1px 1px rgba(0, 0, 0, 0.1) inset;
  border: none;
  color: #fff;
  padding: 1px;
  transition-duration: 1s;
}

.selection-list.voted .op-single,
.selection-list.voted .op-top3 .main,
.selection-list.opened .op-single,
.selection-list.opened .op-top3 .main {
  cursor: auto;
}
.selection-list.voted .ico-check,
.selection-list.voted .op-top3 .main::before,
.selection-list.opened .ico-check,
.selection-list.opened .op-top3 .main::before {
  display: none;
}
.selection-list.voted .item-ttl,
.selection-list.opened .item-ttl {
  padding-left: 0;
}

/* --------------------------------
option-list
----------------------------------- */
.option-list li + li {
  border-top: 1px solid #eee;
  margin-top: 15px;
  padding-top: 18px;
}
.option-list label,
.option-list .head,
.option-list .txt {
  display: block;
}
.option-list input[type=radio] {
  display: none;
}
.option-list .head {
  font-size: 15px;
  font-weight: bold;
  padding-left: 30px;
  position: relative;
}
.option-list .head::before {
  background: url(/assets/img/ico-check-1e338494f953fbdcbe0a049bda76d211.svg) no-repeat center center/10px auto #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: background-color, border;
}
.option-list .txt {
  font-size: 13px;
  margin-top: 8px;
}
.option-list .toggle {
  display: none;
  margin-top: 10px;
}
.option-list input[type=radio]:checked + .head::before {
  background-color: #ff87b7;
  border-color: #ff87b7;
}
.option-list input[type=radio]:checked ~ .toggle {
  display: block;
}

/* --------------------------------
user-list
----------------------------------- */
.user-list {
  font-size: 0;
}
.user-list li {
  background-color: #eee;
  border-radius: 100px;
  font-size: 12px;
  display: inline-block;
  margin: 0 5px 5px 0;
  padding: 3px 10px;
  text-align: center;
}

/* --------------------------------
comment-list
----------------------------------- */
.comment-list {
  font-size: 0;
}
.comment-list li {
  font-size: 12px;
  line-height: 1.5;
}
.comment-list li + li {
  border-top: 1px solid #eee;
  margin-top: 12px;
  padding-top: 12px;
}
.comment-list li .one-word-user {
  margin: 0 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.comment-list li .one-word-user span {
  margin: 0 0px 0 5px;
}

/* --------------------------------
errors-area
<div class="errors-area">
  <ul>
    <li>メールアドレスを入力してください</li>
    <li>メールアドレスを入力してください</li>
  </ul>
</div>
----------------------------------- */
.errors-area {
  padding: 18px 20px;
}
.errors-area ul li {
  font-size: 14px;
  font-weight: bold;
  color: #ff87b7;
}
.errors-area.hide {
  display: none;
}
.errors-area.api-errors {
  display: none;
}

/* --------------------------------
countdown-area
----------------------------------- */
.countdown-area .countdown-box {
  padding-top: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: #ff87b7;
}

/* --------------------------------
feed-list
----------------------------------- */
.feed-list {
  overflow-y: auto;
  overflow-x: hidden;
}
.feed-list .none {
  font-size: 16px;
  background: #fff;
  padding: 40px 25px;
  border: 1px solid #cccccc;
}
@media only screen and (max-width: 639px) {
  .feed-list .none {
    font-size: 12px;
    padding: 20px;
  }
}
.feed-list .vote {
  position: relative;
  /* ★の位置を調整 BGN */
  margin-top: -12px;
  padding-top: 12px;
  margin-right: -32px;
  padding-right: 32px;
  /* ★の位置を調整 END */
}
@media only screen and (max-width: 639px) {
  .feed-list .vote {
    margin-right: -40px;
    padding-right: 40px;
  }
}
.feed-list .vote:not(:last-child) {
  padding-bottom: 12px;
}
.feed-list .favorite-btn + .pallet .title {
  padding-right: 30px;
}
@media only screen and (max-width: 639px) {
  .feed-list .favorite-btn + .pallet .title {
    padding-right: 45px;
  }
}
.feed-list .pallet {
  display: block;
  background-color: #fff;
  border: 0.1px solid #ccc;
  /*    box-shadow: 0 2px 4px rgb(0 0 0 / 18%);*/
  padding: 12px 16px;
}
@media only screen and (max-width: 639px) {
  .feed-list .pallet {
    padding: 12px 0px;
  }
}
.feed-list .pallet .title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 800;
}
@media only screen and (max-width: 639px) {
  .feed-list .pallet .title {
    font-size: 12px;
    padding-left: 8px;
  }
}
.feed-list .pallet .title .fas {
  display: none;
}
.feed-list .pallet .thumb {
  margin-bottom: 8px;
  width: 30%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 639px) {
  .feed-list .pallet .thumb {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 8px;
  }
}
.feed-list .pallet .detail {
  display: flex;
  font-size: 12px;
}
@media only screen and (max-width: 639px) {
  .feed-list .pallet .detail {
    padding: 0px 10px;
  }
}
.feed-list .pallet .detail p:not(:last-child):after {
  content: "";
  margin-right: 10px;
}
.feed-list .pallet .hashtags {
  margin-bottom: 5px;
  color: #2761f2;
}
@media only screen and (max-width: 639px) {
  .feed-list .pallet .hashtags {
    display: flex;
    flex-direction: column;
    padding: 0px 10px;
    align-items: flex-start;
  }
}
.feed-list .pallet .hashtags .tag {
  display: inline-block;
}
.feed-list .pallet .hashtags .tag:hover {
  text-decoration: underline;
}
.feed-list .pallet .hashtags .tag:not(:last-child) {
  margin-right: 5px;
}
.feed-list .pallet .foot {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
@media only screen and (max-width: 639px) {
  .feed-list .pallet .foot {
    padding: 0px 8px;
  }
}
.feed-list .pallet .foot .creator img {
  height: 1.5em;
  width: 1.5em;
  margin-right: 2px;
  border-radius: 50%;
  display: inline-block;
}
.feed-list .pallet .foot .creator p {
  display: inline;
}
.feed-list .pallet .foot .share-btn {
  font-size: 16px;
}
.feed-list .share-menu {
  display: none;
}
.feed-list .share-menu .menu {
  position: absolute;
  right: 50px;
  z-index: 997;
  display: flex;
  margin-top: -10px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}
.feed-list .share-menu .menu a {
  margin: 0px 8px;
}
.feed-list .share-menu .menu img {
  width: 2.5em;
}

/* --------------------------------
c-link
----------------------------------- */
.c-link {
  color: #2761f2;
  text-decoration: underline;
}

/* --------------------------------
ad-sence-area
----------------------------------- */
.ad-sence-area {
  text-align: center;
}
.ad-sence-area.bottom {
  margin: 30px 0 0;
}

.pc-only {
  display: block;
}
@media only screen and (max-width: 639px) {
  .pc-only {
    display: none;
  }
}

/* --------------------------------
alert-area
----------------------------------- */
.alert-area {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #ff87b7;
  color: #fff;
  padding: 10px;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

/* --------------------------------
paid-decoration-area
----------------------------------- */
.paid-decoration-area {
  padding: 8px 0;
}
.paid-decoration-area h2 {
  text-align: center;
  color: white;
  font-weight: 800;
}
.paid-decoration-area.GUEST {
  background-image: linear-gradient(135deg, #459522 0%, #b1ea4d 50%, #459522 100%);
}
.paid-decoration-area.LOGIN {
  background-image: linear-gradient(135deg, #0277bd 0%, #4fc3f7 50%, #0277bd 100%);
}
.paid-decoration-area.ONE_PRIME {
  background-image: linear-gradient(135deg, #b8751e 0%, #ffce08 50%, #b8751e 100%);
}

/* --------------------------------
vote-info-area
----------------------------------- */
.vote-info-area .inner-block {
  padding: 0;
}

.vote-info-box {
  border-bottom: 1px solid #eee;
  display: block;
  padding: 18px 20px;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: box-shadow;
}
.vote-info-box + .vote-info-box {
  margin-top: -1px;
}
.vote-info-box .label {
  color: #2761f2;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
  white-space: nowrap;
}
.vote-info-box .txt {
  font-size: 16px;
}
@media only screen and (max-width: 639px) {
  .vote-info-box .txt {
    font-size: 12px;
  }
}
.vote-info-box.column {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.vote-info-box.column .label {
  margin: 3px 20px 0 0;
  min-width: 85px;
}

.vote-info-hashtags .vote-info-tag {
  display: inline-block;
  margin-right: 8px;
  font-size: 12px;
}
.vote-info-hashtags i {
  margin-right: -0.2em;
}

.vote-info-opinions {
  display: flex;
  flex-direction: column;
  width: 100%;
  counter-reset: selectionNum;
}

.vote-info-opinion {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.vote-info-opinion + .vote-info-opinion {
  padding-top: 8px;
  border-top: 1px solid #eee;
}
.vote-info-opinion:not(:last-child) {
  padding-bottom: 8px;
}
.vote-info-opinion .description {
  display: flex;
  flex-direction: column;
}
.vote-info-opinion .description .name {
  font-weight: bold;
}
.vote-info-opinion .description .name::before {
  color: #2761f2;
  counter-increment: selectionNum 1;
  content: counter(selectionNum, decimal-leading-zero) ".";
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 4px;
}
.vote-info-opinion .description .memo {
  font-size: 12px;
}
.vote-info-opinion .img-wrap {
  flex-shrink: 0;
  margin-left: 15px;
}
.vote-info-opinion .img-wrap .thumb {
  border-radius: 0;
  width: 65px;
  height: 65px;
}
.vote-info-opinion .img-wrap img {
  border-radius: 3px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 65px;
  height: 65px;
}

/* --------------------------------
term-area
----------------------------------- */
.term-area > article {
  counter-reset: articleNum;
}
.term-area > article > p::before {
  counter-increment: articleNum 1;
  content: counter(articleNum) ".";
  margin-right: 0.2em;
}
.term-area .sub-article {
  margin-left: 1em;
  counter-reset: subArticleNum;
}
.term-area .sub-article > p::before {
  counter-increment: subArticleNum 1;
  content: counter(subArticleNum, disc);
  margin-right: 0.2em;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
.site-top #wrapper {
  background-color: #fff;
}
.site-top .c-footer {
  background-color: #2761f2;
  font-size: 12px;
}
.site-top .c-footer a {
  color: #fff;
}
.site-top .c-footer .questionnaire {
  position: relative;
  margin: 12px 0 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 639px) {
  .site-top .c-footer .questionnaire {
    margin: 0 0 16px;
  }
}
.site-top .c-footer .questionnaire:before,
.site-top .c-footer .questionnaire:after {
  z-index: 0;
  margin-top: 55px;
  display: block;
  content: "";
  border: 1em solid #d90606;
}
.site-top .c-footer .questionnaire:before {
  left: 10px;
  top: 1px;
  position: relative;
  border-left-width: 16px;
  border-left-color: transparent;
}
.site-top .c-footer .questionnaire:after {
  right: 10px;
  top: 1px;
  position: relative;
  border-right-width: 16px;
  border-right-color: transparent;
}
.site-top .c-footer .questionnaire span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1rem 2rem;
  color: #fff;
  background: #fa4141;
  font-size: 24px;
  font-weight: 800;
}
@media only screen and (max-width: 639px) {
  .site-top .c-footer .questionnaire span {
    font-size: 16px;
  }
}
.site-top .c-footer .questionnaire span:before,
.site-top .c-footer .questionnaire span:after {
  position: absolute;
  bottom: -10px;
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  border-style: solid;
  border-color: #b70505 transparent transparent transparent;
}
.site-top .c-footer .questionnaire span:before {
  left: 0;
  border-width: 10px 0 0 10px;
}
.site-top .c-footer .questionnaire span:after {
  right: 0;
  border-width: 10px 10px 0 0;
}
.site-top .c-footer .menu {
  margin-bottom: 10px;
  font-size: 16px;
}
@media only screen and (max-width: 639px) {
  .site-top .c-footer .menu {
    display: none;
  }
}
.site-top .c-footer .menu ul {
  display: flex;
  justify-content: center;
}
.site-top .c-footer .menu ul li {
  margin: 8px 16px;
}
.site-top .campaign-area {
  background: linear-gradient(-45deg, #ffff00, #ff007f, #007fff, #00ff00);
  background-size: 400% 400%;
  -webkit-animation: gradient 10s ease infinite;
          animation: gradient 10s ease infinite;
}
@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.site-top .campaign-area .campaign {
  font-size: 24px;
  padding: 12px 24px;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 639px) {
  .site-top .campaign-area .campaign {
    font-size: 16px;
    padding: 12px 16px;
  }
}
.site-top .pickup {
  padding: 48px 0 20px;
  background-color: #effaff;
}
@media only screen and (max-width: 639px) {
  .site-top .pickup {
    padding: 24px 0 12px;
  }
}
.site-top .pickup .pickup-cell {
  width: 15%;
  height: 192px;
  margin-right: 24px;
  border-radius: 8px;
  counter-increment: gallery-cell;
}
@media only screen and (max-width: 639px) {
  .site-top .pickup .pickup-cell {
    width: 66%;
    height: 184px;
  }
}
.site-top .pickup .vote {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 0.1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}
.site-top .pickup .vote .thumb {
  height: 120px;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}
.site-top .pickup .vote .thumb img {
  height: 100%;
  margin: 0 -50%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-top .pickup .vote .title {
  margin: 0;
  padding: 8px 12px;
  height: 4em;
  font-size: 16px;
  font-weight: 800;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 639px) {
  .site-top .pickup .vote .title {
    font-size: 12px;
  }
}
.site-top .pickup .flickity-page-dots .dot {
  background: #ff87b7;
}
.site-top .pickup .flickity-prev-next-button {
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 639px) {
  .site-top .pickup .flickity-prev-next-button {
    width: 32px;
    height: 32px;
  }
}
.site-top .pickup .flickity-prev-next-button.next {
  color: #ff87b7;
}
.site-top .pickup .flickity-prev-next-button.previous {
  color: #ff87b7;
}
.site-top .promotion {
  text-align: center;
  background-image: url("");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.site-top .promotion .ttl-area {
  background-image: url(/assets/img/ttl-bg03-b081485c423e40103c4fce27e15a31ab.svg), url(/assets/img/ttl-bg04-2b6341d18173995ca56d1668e923d8d3.svg);
  height: 680px;
}
@media only screen and (max-width: 639px) {
  .site-top .promotion .ttl-area {
    font-size: 16px;
    padding: 40px 0;
    height: auto;
  }
}
.site-top .promotion .ttl-area .ttl {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.3;
  margin: 24px;
  color: #999;
}
@media only screen and (max-width: 639px) {
  .site-top .promotion .ttl-area .ttl {
    font-size: 16px;
    position: relative;
    top: 24px;
    margin: 0px;
  }
}
.site-top .promotion .ttl-area .ttl br {
  display: none;
}
@media only screen and (max-width: 639px) {
  .site-top .promotion .ttl-area .ttl br {
    display: inline;
  }
}
.site-top .promotion .txt {
  padding: 0px 0 16px;
  font-size: 20px;
  position: relative;
  z-index: 1;
  top: 100px;
}
@media only screen and (max-width: 639px) {
  .site-top .promotion .txt {
    font-size: 12px;
    top: 32px;
    padding: 40px 0;
  }
}
.site-top .promotion .txt .txt-br {
  display: none;
}
@media only screen and (max-width: 639px) {
  .site-top .promotion .txt .txt-br {
    display: block;
  }
}
.site-top .promotion .txt h1 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 900;
}
.site-top .promotion .txt h2 {
  display: inline-block;
  text-align: left;
  font-size: 16px;
}
.site-top .promotion .c-btn {
  display: inline-block;
  width: 320px;
  padding: 10px 0;
  font-size: 24px;
  margin: 15px 0px 30px;
  top: 135px;
  position: relative;
}
@media only screen and (max-width: 639px) {
  .site-top .promotion .c-btn {
    width: 200px;
    font-size: 16px;
    padding: 0;
    margin: 0 0 30px;
    top: 24px;
  }
}
.site-top .promotion #ttl-bg {
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 639px) {
  .site-top .promotion #ttl-bg {
    top: -8px;
  }
}
.site-top .contents {
  background-color: #effaff;
  padding: 100px 200px 30px;
}
@media only screen and (max-width: 639px) {
  .site-top .contents {
    padding: 64px 10px 20px;
  }
}
.site-top .two-pane {
  display: -ms-grid;
  display: grid;
  gap: 80px;
  -ms-grid-columns: 3fr 80px minmax(100px, 1fr);
  grid-template-columns: 3fr minmax(100px, 1fr);
}
@media only screen and (max-width: 639px) {
  .site-top .two-pane {
    gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.site-top .pagetop {
  position: fixed;
  right: 0px;
  bottom: 215.5px;
  background: #ff87b7;
  cursor: pointer;
}
@media only screen and (max-width: 639px) {
  .site-top .pagetop {
    bottom: 108px;
  }
}
.site-top .pagetop > a {
  width: 36px;
  height: 36px;
  background: url(/assets/img/arrow-top-4f3ac8c9169d55b9625145d83d476548.svg) center center no-repeat;
  background-size: 20px auto;
  display: block;
  cursor: pointer;
}
.site-top .feed {
  position: relative;
}
.site-top .feed input[type=radio] {
  display: none;
}
.site-top .feed .tab {
  display: inline-block;
  padding: 5px 0;
  width: 100px;
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #ccc;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}
@media only screen and (max-width: 639px) {
  .site-top .feed .tab {
    font-size: 12px;
    width: 30%;
  }
}
.site-top .feed input[type=radio]:checked + .tab {
  background-color: #2761f2;
  font-weight: 900;
}
@media only screen and (max-width: 639px) {
  .site-top .feed input[type=radio]:checked + .tab {
    width: 30%;
  }
}
.site-top .feed .sort {
  position: absolute;
  top: 10px;
  right: 0;
}
@media only screen and (max-width: 639px) {
  .site-top .feed .sort {
    top: 3px;
  }
}
.site-top .feed .sort .edit-select {
  padding-right: 10px;
}
.site-top .feed .tab-content {
  display: none;
  margin: 0;
  padding: 0;
}
.site-top .feed #tab-all:checked ~ #content-feed,
.site-top .feed #tab-media:checked ~ #content-feed {
  display: block;
}
@media only screen and (max-width: 639px) {
  .site-top .feed #tab-all:checked ~ #content-feed .none,
.site-top .feed #tab-media:checked ~ #content-feed .none {
    margin: 0;
  }
}
.site-top .feed .tab-content {
  max-height: 1600px;
}
@media only screen and (max-width: 639px) {
  .site-top .feed .tab-content {
    max-height: unset;
  }
}
.site-top .right-pane {
  display: flex;
  flex-direction: column;
}
.site-top .right-pane .twitter {
  flex-grow: 1;
}
@media only screen and (max-width: 639px) {
  .site-top .right-pane .twitter {
    display: none;
  }
}
.site-top .right-pane .timeline {
  max-height: 480px;
  width: 100%;
  overflow-y: auto;
}
.site-top .twitter {
  margin-bottom: 20px;
}
@media only screen and (max-width: 639px) {
  .site-top .twitter {
    display: none;
  }
}
.site-top .twitter .header {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: block;
  padding: 5px 0;
  text-align: center;
  background: #2761f2;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}
.site-top .twitter .timeline {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.site-top .ad {
  display: flex;
  flex-direction: column;
}
.site-top .ad > * {
  margin: 10px 0 0;
  box-shadow: 2px 2px 5px #ccc;
}
.site-top .ad > *:hover {
  box-shadow: none;
}
.site-top .ad img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100px;
}
@media only screen and (max-width: 639px) {
  .site-top .ad img {
    height: 120px;
  }
}

/* -----------------------------------------------
* SearchList ページ用
-------------------------------------------------- */
.feed.search-list {
  position: relative;
  margin: 20px 10px;
}
.feed.search-list input[type=radio] {
  display: none;
}
.feed.search-list .tab {
  display: inline-block;
  width: 100px;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #ccc;
  color: #fff;
  font-size: 16px;
  padding: 5px 0px;
  cursor: pointer;
}
@media only screen and (max-width: 639px) {
  .feed.search-list .tab {
    width: 30%;
  }
}
.feed.search-list input[type=radio]:checked + .tab {
  background-color: #2761f2;
  width: 100px;
  padding: 5px 0px;
}
@media only screen and (max-width: 639px) {
  .feed.search-list input[type=radio]:checked + .tab {
    width: 30%;
  }
}
.feed.search-list .sort {
  position: absolute;
  top: 20px;
  right: 0;
}
.feed.search-list .sort .edit-select {
  padding-right: 10px;
}
.feed.search-list .tab-content {
  display: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}
.feed.search-list #tab-all:checked ~ #content-feed,
.feed.search-list #tab-media:checked ~ #content-feed {
  display: block;
}

/* -----------------------------------------------
* vote ページ用
-------------------------------------------------- */
.page-vote .step {
  display: none;
}
.page-vote .step-0 {
  display: block;
}
.page-vote .selection-list.create .item-add {
  display: none !important;
}
.page-vote .input-oneword-list li:not(:first-child) {
  margin-top: 20px;
}
.page-vote .input-oneword-list .ico-rank {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  margin-right: 15px;
}
@media only screen and (max-width: 639px) {
  .page-vote .input-oneword-list .ico-rank {
    font-size: 16px;
  }
}
.page-vote .input-oneword-list .ico-rank.rank1, .page-vote .input-oneword-list .ico-rank.rank2, .page-vote .input-oneword-list .ico-rank.rank3 {
  background: no-repeat left 7px/22px auto;
  padding-left: 32px;
}
@media only screen and (max-width: 639px) {
  .page-vote .input-oneword-list .ico-rank.rank1, .page-vote .input-oneword-list .ico-rank.rank2, .page-vote .input-oneword-list .ico-rank.rank3 {
    background: no-repeat left 5px/18px auto;
    padding-left: 25px;
  }
}
.page-vote .input-oneword-list .ico-rank.rank1 {
  background-image: url(/assets/img/ico-rank1-bea05960c288fa4c7cb884856fc62551.svg);
  color: #cfa600;
}
.page-vote .input-oneword-list .ico-rank.rank2 {
  background-image: url(/assets/img/ico-rank2-6fcc0b5a45ddf91c0688930de8db9fe5.svg);
  color: #bebebe;
}
.page-vote .input-oneword-list .ico-rank.rank3 {
  background-image: url(/assets/img/ico-rank3-f5f6af6198670d026ccb07bd907530e8.svg);
  color: #9e6820;
}
.page-vote .input-oneword-list .ico-rank .rank {
  white-space: nowrap;
}
.page-vote .input-oneword-list .ico-rank .ttl {
  flex-grow: 1;
}
.page-vote .input-oneword-list .c-textarea {
  margin-top: 5px;
  border-bottom: 1px solid #ccc;
}

/* -----------------------------------------------
* CardPayment ページ用
-------------------------------------------------- */
.card-payment {
  min-height: auto;
}
.card-payment .card-payment-ttl {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 800;
}
@media only screen and (max-width: 639px) {
  .card-payment .card-payment-ttl {
    font-size: 16px;
  }
}
.card-payment .card-payment-txt {
  font-size: 16px;
  margin: 20px 0 0;
}
@media only screen and (max-width: 639px) {
  .card-payment .card-payment-txt {
    font-size: 12px;
  }
}
.card-payment .card-payment-vote-title {
  font-size: 16px;
  margin: 32px 0;
  color: #2761f2;
  font-weight: 800;
}
@media only screen and (max-width: 639px) {
  .card-payment .card-payment-vote-title {
    font-size: 12px;
    margin: 24px 0 16px;
  }
}
.card-payment .cards-area img {
  width: 64px;
  height: 40px;
  background-size: cover;
  margin: 12px 0px 8px;
}
@media only screen and (max-width: 639px) {
  .card-payment .cards-area img {
    width: auto;
    height: 32px;
  }
}
.card-payment .amount {
  display: flex;
  justify-content: space-between;
}
.card-payment .amount h2 {
  font-size: 16px;
  font-weight: 800;
}
@media only screen and (max-width: 639px) {
  .card-payment .amount h2 {
    font-size: 12px;
  }
}
.card-payment .amount div {
  font-size: 16px;
  font-weight: 800;
  color: #2761f2;
  text-align: right;
  vertical-align: middle;
  display: table-cell;
}
@media only screen and (max-width: 639px) {
  .card-payment .amount div {
    font-size: 12px;
  }
}
.card-payment .card-numbers {
  display: flex;
}
.card-payment .card-numbers input {
  border: 2px solid #ccc;
  border-radius: 4px;
  text-align: center;
  padding: 4px 8px;
  margin: 0 4px 0 0;
}
.card-payment .card-numbers input:last-child {
  margin: 0;
}
.card-payment .card-expire {
  border: 2px solid #ccc;
  padding: 4px 8px;
  border-radius: 4px;
}
.card-payment .card-expire-icon {
  font-size: 20px;
  margin: 0 8px;
}

/* -----------------------------------------------
* SelectPayment. ページ用
-------------------------------------------------- */
.select-payment {
  min-height: auto;
}
.select-payment .select-payment-ttl {
  margin-left: 0;
  font-size: 24px;
  font-weight: 800;
}
@media only screen and (max-width: 639px) {
  .select-payment .select-payment-ttl {
    font-size: 16px;
  }
}
.select-payment .select-payment-vote-title {
  font-size: 16px;
  margin: 32px 16px;
  color: #2761f2;
  font-weight: 800;
}
@media only screen and (max-width: 639px) {
  .select-payment .select-payment-vote-title {
    font-size: 12px;
    margin: 24px 12px;
  }
}
.select-payment .select-payment-txt {
  font-size: 16px;
  margin: 0;
}
@media only screen and (max-width: 639px) {
  .select-payment .select-payment-txt {
    font-size: 12px;
  }
}
.select-payment .select-payment-box {
  display: block;
  padding: 0;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
  transition-property: box-shadow;
}
.select-payment .select-payment-box .txt {
  margin: 24px 0;
  font-size: 16px;
  font-weight: bold;
}
.select-payment .c-btn.square {
  background-color: #fff;
  margin: 24px 0;
  padding: 8px 0;
  border: 2px solid #ccc;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}
@media only screen and (max-width: 639px) {
  .select-payment .c-btn.square {
    margin: 16px 0 20px;
  }
}
.select-payment .c-btn.square .credit {
  width: auto;
  height: 40px;
  background-size: cover;
  margin: 12px 0px 0px;
}
@media only screen and (max-width: 639px) {
  .select-payment .c-btn.square .credit {
    height: 28px;
  }
}
.select-payment .c-btn.square .carrier {
  width: auto;
  height: 24px;
  background-size: cover;
  margin: 20px 8px 0px;
}
@media only screen and (max-width: 639px) {
  .select-payment .c-btn.square .carrier {
    height: 16px;
  }
}
.select-payment .c-btn.square p {
  color: #333;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: -8px;
}
@media only screen and (max-width: 639px) {
  .select-payment .c-btn.square p {
    font-size: 16px;
  }
}

/* -----------------------------------------------
* CarrierPayment ページ用
-------------------------------------------------- */
.carrier-payment {
  min-height: auto;
}
.carrier-payment .carrier-payment-ttl {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 800;
}
@media only screen and (max-width: 639px) {
  .carrier-payment .carrier-payment-ttl {
    font-size: 16px;
  }
}
.carrier-payment .carrier-payment-txt {
  font-size: 16px;
  margin: 20px 0 0;
}
@media only screen and (max-width: 639px) {
  .carrier-payment .carrier-payment-txt {
    font-size: 12px;
  }
}
.carrier-payment .carriers-area img {
  width: auto;
  height: 20px;
  margin: 12px 8px;
}
@media only screen and (max-width: 639px) {
  .carrier-payment .carriers-area img {
    width: auto;
    height: 16px;
  }
}
.carrier-payment .amount {
  display: flex;
  justify-content: space-between;
}
.carrier-payment .amount h2 {
  font-size: 16px;
  font-weight: 800;
}
@media only screen and (max-width: 639px) {
  .carrier-payment .amount h2 {
    font-size: 12px;
  }
}
.carrier-payment .amount div {
  font-size: 16px;
  font-weight: 800;
  color: #2761f2;
  text-align: right;
  vertical-align: middle;
  display: table-cell;
}
@media only screen and (max-width: 639px) {
  .carrier-payment .amount div {
    font-size: 12px;
  }
}
.carrier-payment .selection-list {
  margin-top: 0;
  padding: 0 18px;
}
.carrier-payment .selection-list .op-single {
  padding: 32px 20px;
}
.carrier-payment .selection-list .op-single .item-ttl {
  line-height: normal;
}
@media only screen and (max-width: 639px) {
  .carrier-payment .selection-list .op-single .item-ttl {
    font-size: 12px;
  }
}
.carrier-payment .selection-list .op-single .item-ttl .ico-check {
  top: 1.8px;
}
@media only screen and (max-width: 639px) {
  .carrier-payment .selection-list .op-single .item-ttl .ico-check {
    top: 0px;
  }
}
.carrier-payment .selection-list .item-ttl::before {
  display: none;
}

/* -----------------------------------------------
* SelectPlan ページ用
-------------------------------------------------- */
.select-plan {
  min-height: auto;
}
.select-plan .select-plan-ttl {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 800;
}
@media only screen and (max-width: 639px) {
  .select-plan .select-plan-ttl {
    font-size: 16px;
  }
}
.select-plan .select-plan-txt {
  font-size: 16px;
  margin: 20px 0 0;
}
@media only screen and (max-width: 639px) {
  .select-plan .select-plan-txt {
    font-size: 12px;
    margin: 16px 0 0;
  }
}

.plan-name-box {
  text-align: center;
  margin-bottom: -8px;
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 639px) {
  .plan-name-box {
    margin-bottom: 0px;
  }
}
.plan-name-box .plan-name {
  position: relative;
  display: inline-block;
  margin: 16px 8px 32px;
  padding: 8px 16px;
  width: 30%;
  color: #fff;
  font-size: 16px;
  background: #ccc;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 639px) {
  .plan-name-box .plan-name {
    max-width: 100%;
    width: 32%;
  }
}
.plan-name-box .plan-name.active {
  background: #2761f2;
  font-weight: 800;
  display: flex;
  text-align: center;
}
.plan-name-box .plan-name.active::before {
  content: "";
  position: absolute;
  top: 85%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #2761f2;
}
@media only screen and (max-width: 639px) {
  .plan-name-box .plan-name {
    margin: 16px 0px 16px;
    font-size: 12px;
    text-align: center;
  }
}
.plan-name-box input[type=radio] {
  display: none;
}

.plan-description {
  border-bottom: 1px solid #ccc;
}
.plan-description ul {
  display: flex;
  justify-content: space-around;
  margin-bottom: 12px;
}
@media only screen and (max-width: 639px) {
  .plan-description ul {
    margin-bottom: 8px;
  }
}
.plan-description ul li {
  display: flex;
  text-align: center;
  font-size: 16px;
  display: table-cell;
  vertical-align: middle;
  width: 30%;
}
@media only screen and (max-width: 639px) {
  .plan-description ul li {
    font-size: 12px;
  }
}
.plan-description ul li.active {
  color: #2761f2;
  font-weight: 800;
}
.plan-description .campaign {
  color: red !important;
  border-radius: 8px;
}
.plan-description .campaign .tag {
  font-weight: bold;
}
.plan-description .campaign .usual-price {
  text-decoration: line-through;
  color: #999;
  margin: 0 4px 0 0;
}
.plan-description .campaign .campaign-price {
  font-weight: 800;
  margin: 0 0 0 4px;
}
@media only screen and (max-width: 639px) {
  .plan-description {
    display: block;
  }
}
.plan-description .plan-description-title {
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  margin-bottom: 16px;
  margin-top: 8px;
}
@media only screen and (max-width: 639px) {
  .plan-description .plan-description-title {
    margin-top: 8px;
    font-size: 12px;
    margin-bottom: 12px;
  }
}

.plan-buttons .c-btn {
  margin-left: 0 !important;
}

/* -----------------------------------------------
* user 系　共通スタイル
-------------------------------------------------- */
.user-ttl-area {
  background: url(/assets/img/ttl-bg01-db99f36c2c1a85bc810dafbc46b86bcf.svg) no-repeat left top/auto 100%, url(/assets/img/ttl-bg02-26ca70616ec3d2007c01fd76fe4f6d6e.svg) no-repeat right top/auto 100%;
  padding: 45px 0 25px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.user-ttl-area img {
  margin: 30px 0 0;
  padding: 0 150px;
}
@media only screen and (max-width: 639px) {
  .user-ttl-area img {
    margin: 10px 0 0;
    padding: 0 50px;
  }
}
.user-ttl-area .ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}
@media only screen and (max-width: 639px) {
  .user-ttl-area .ttl {
    font-size: 16px;
  }
}
.user-ttl-area .txt {
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0;
}
.user-ttl-area .txt .re-login-br {
  display: none;
}
@media only screen and (max-width: 639px) {
  .user-ttl-area .txt {
    font-size: 12px;
  }
  .user-ttl-area .txt .re-login-br {
    display: block;
  }
}

.user-msg-area {
  padding: 30px 15px;
  text-align: center;
}
.user-msg-area .msg {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}
.user-msg-area .msg-img {
  margin: 15px 0 0;
  padding: 0 100px;
  width: 100%;
}

.user-ctn-area {
  padding: 5px 15px;
}
.user-ctn-area .ctn {
  color: #9E9E9E;
  font-size: 15px;
}

.external-login-area {
  text-align: center;
  margin: 20px 20px;
  padding: 20px 15px;
  box-shadow: 2px 2px 4px #999;
  border-radius: 5px;
}
.external-login-area .inner-block {
  padding: 0;
}
.external-login-area .ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 20px;
}
@media only screen and (max-width: 639px) {
  .external-login-area .ttl {
    font-size: 16px;
  }
}
.external-login-area .sns-box {
  display: flex;
  justify-content: space-evenly;
  margin: 20px 0;
}
@media only screen and (max-width: 639px) {
  .external-login-area .sns-box {
    margin: 10px 0;
  }
}
.external-login-area .sns-box .btn-group {
  width: 50px;
  margin: 15px 0;
}
@media only screen and (max-width: 639px) {
  .external-login-area .sns-box .btn-group {
    width: 35px;
  }
}
.external-login-area .caution-box {
  text-align: left;
}

.breadcrumb {
  margin: 20px auto -20px;
  width: 640px;
}
@media only screen and (max-width: 639px) {
  .breadcrumb {
    margin: 0;
    padding: 10px 5px;
    background-color: #f9f9f9;
  }
}
.breadcrumb li {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 639px) {
  .breadcrumb li {
    font-size: 12px;
  }
}
.breadcrumb li a {
  color: #999;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.breadcrumb li:first-child:before {
  /* 家アイコンを表示 */
  font-family: "Font Awesome 5 Free";
  content: "";
  color: #ff87b7;
}
.breadcrumb li:not(:first-child):before {
  /* ▶を表示 */
  font-family: "Font Awesome 5 Free";
  content: "";
  color: #ccc;
  margin: 0 0.2em;
}

.my-feed-contents {
  padding: 30px 10px 20px;
}
@media only screen and (max-width: 639px) {
  .my-feed-contents {
    padding: 20px 10px 20px;
  }
}

.my-feed-area {
  position: relative;
}
.my-feed-area .tab {
  display: inline-block;
  padding: 5px 0;
  width: 100px;
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #ccc;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}
@media only screen and (max-width: 639px) {
  .my-feed-area .tab {
    font-size: 12px;
    width: 30%;
  }
}
.my-feed-area #tab-media {
  display: none;
}
.my-feed-area #tab-all {
  display: none;
}
.my-feed-area input[type=radio]:checked + .tab {
  background-color: #2761f2;
  font-weight: 900;
}
.my-feed-area .tab-content {
  display: none;
  margin: 0;
  padding: 0;
  padding-bottom: 50px !important;
}
.my-feed-area #tab-all:checked ~ #content-feed,
.my-feed-area #tab-media:checked ~ #content-feed {
  display: block;
}
.my-feed-area .pallet .title .fas {
  display: inline-block;
}

/* -----------------------------------------------
* PreRegist ページ用
-------------------------------------------------- */
.edit-area.pre-regit .term-box {
  overflow: auto;
  height: 200px;
  margin: 20px;
  padding: 16px;
  background: #ffffe0;
  border: 1px solid #ccc;
}
.edit-area.pre-regit .term-box .rule-title {
  font-weight: 900;
  font-size: 1.5em;
}
.edit-area.pre-regit .term-box article {
  margin-top: 10px;
}
.edit-area.pre-regit .term-box article a {
  font-weight: 900;
}
.edit-area.pre-regit .edit-checkbox {
  padding-top: 0;
}

/* -----------------------------------------------
* Login ページ用
-------------------------------------------------- */
.ctrl-area.login.forgot-password {
  text-align: right;
  padding: 0px 15px 30px;
}
@media only screen and (max-width: 639px) {
  .ctrl-area.login.forgot-password {
    padding: 0px 0px 10px;
  }
}
.ctrl-area.login.forgot-password .inner-block {
  justify-content: flex-end;
}
.ctrl-area.login.go-regist-area {
  text-align: center;
  margin: 20px 0;
  padding: 20px 15px;
}
.ctrl-area.login.go-regist-area .inner-block {
  display: block;
}
.ctrl-area.login.go-regist-area .ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}
@media only screen and (max-width: 639px) {
  .ctrl-area.login.go-regist-area .ttl {
    font-size: 16px;
  }
}
.ctrl-area.login.go-regist-area .recommend-box {
  margin: 20px 0;
  text-align: left;
}
.ctrl-area.login.go-regist-area .c-btn {
  margin-left: 0;
}

/* -----------------------------------------------
* MyPageTop ページ用
-------------------------------------------------- */
.ctrl-area.mypage {
  padding: 20px 20px 0px;
}
@media only screen and (max-width: 639px) {
  .ctrl-area.mypage {
    font-size: 12px;
    padding: 15px 0px 0px;
  }
}
.ctrl-area.mypage .c-btn {
  line-height: inherit;
  font-size: 16px;
}
@media only screen and (max-width: 639px) {
  .ctrl-area.mypage .c-btn {
    font-size: 12px;
    padding: 10px 0;
  }
}
.ctrl-area.mypage .c-btn .icon {
  display: block;
  margin: 5px 0;
  font-size: 1em;
}
.ctrl-area.mypage .c-btn.large {
  padding: 15px 0;
  font-size: 16px;
}
@media only screen and (max-width: 639px) {
  .ctrl-area.mypage .c-btn.large {
    font-size: 12px;
    padding: 10px 0;
  }
}
.ctrl-area.mypage .c-btn.large .icon {
  display: inline-block;
  font-size: 1em;
}
.ctrl-area.mypage .c-link {
  color: #999;
  text-decoration: none;
  font-size: 16px;
  padding: 0 0 15px;
}
@media only screen and (max-width: 639px) {
  .ctrl-area.mypage .c-link {
    font-size: 12px;
    padding-top: 0;
  }
}

/* -----------------------------------------------
* Preference ページ用
-------------------------------------------------- */
.edit-area.preference .c-input-file .thumb {
  width: 100px;
  height: 100px;
}
.edit-area.preference .c-input-file .thumb img {
  width: 100px;
  height: 100px;
}
.edit-area.preference .c-input-file.is-selected .thumb {
  width: 200px;
  height: 200px;
}
.edit-area.preference .c-input-file.is-selected .thumb img {
  width: 200px;
  height: 200px;
}
.edit-area.preference .edit-box .txt-sub {
  margin-top: 10px;
}
.edit-area.preference #isDeleteProfileImage1 {
  display: none;
}

.ctrl-area.preference.leave {
  padding-top: 0;
}
.ctrl-area.preference.leave .inner-block {
  justify-content: flex-end;
}

.ttl-area.guide {
  min-height: 0px;
}
@media only screen and (max-width: 639px) {
  .ttl-area.guide {
    padding: 30px 0 25px;
  }
}

.edit-area.guide .edit-box.column {
  position: relative;
  display: block;
  cursor: pointer;
}
.edit-area.guide .edit-box.terms {
  position: relative;
  display: block;
  cursor: default;
}
.edit-area.guide .accordion-content {
  padding: 15px;
  counter-reset: accordionNum;
}
.edit-area.guide .accordion-box-first {
  padding-bottom: 0;
}
.edit-area.guide .accordion-list {
  display: flex;
  counter-reset: stepNum;
  overflow: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.edit-area.guide .accordion-item {
  padding: 10px;
  border: 2px solid #ccc;
  margin-bottom: 15px;
  width: 100%;
}
.edit-area.guide .accordion-content-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #999;
}
.edit-area.guide .description {
  width: 200px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.edit-area.guide .down {
  content: "";
  position: relative;
  float: right;
  margin-top: 5.6px;
  width: 10px;
  height: 10px;
  border: 1.6px solid;
  border-color: transparent transparent #999 #999;
  transform: rotate(-45deg);
  display: inline-block;
  top: -4px;
}
.edit-area.guide .up {
  content: "";
  position: relative;
  float: right;
  margin-top: 5.6px;
  width: 10px;
  height: 10px;
  border: 1.6px solid;
  border-color: #999 #999 transparent transparent;
  transform: rotate(-45deg);
  display: inline-block;
  top: 4px;
}
.edit-area.guide .accordion-question {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #999;
  cursor: pointer;
  margin-right: 12px;
}
.edit-area.guide .accordion-question::before {
  counter-increment: accordionNum 1;
  content: "Q" counter(accordionNum) "：";
}
.edit-area.guide .accordion-answer {
  padding: 0px 0px 24px;
  font-size: 12px;
}
.edit-area.guide .edit-box .accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 1.6px;
  transform: rotate(90deg);
  background: #ff87b7;
  transition: all 0.3s ease-in-out;
}
.edit-area.guide .edit-box .rule-title {
  display: none;
}
.edit-area.guide .edit-box article {
  margin-top: 10px;
}
.edit-area.guide .edit-box article a {
  font-weight: bold;
  color: #2761f2;
}
.edit-area.guide .edit-box article .raw-mail-to {
  color: #333;
  font-weight: normal;
  text-decoration: underline;
}
.edit-area.guide .edit-box article .terms-privacy {
  color: #333;
  font-weight: normal;
  text-decoration: underline;
}
.edit-area.guide .edit-box article .contact {
  text-decoration: underline;
  cursor: pointer;
  font-weight: normal;
  color: #333;
}
.edit-area.guide .edit-box .label {
  color: #2761f2;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
  white-space: nowrap;
}
.edit-area.guide .edit-box .label.is-required::before {
  background-color: #ff87b7;
  border-radius: 100px;
  content: "";
  display: block;
  margin: -2px 0 0;
  width: 5px;
  height: 5px;
}
.edit-area.guide .edit-box .accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 1.6px;
  background: #ff87b7;
  transition: all 0.2s ease-in-out;
}
.edit-area.guide .edit-box .accordion-title.open::before {
  transform: rotate(180deg);
}
.edit-area.guide .edit-box .accordion-title.open::after {
  opacity: 0;
}
.edit-area.guide .accordion-img {
  position: relative;
  margin-top: 20px;
}
.edit-area.guide .fa-chevron-right {
  font-size: 30px;
  display: inline-block;
  margin-top: 225px;
  color: #2761f2;
  padding: 20px;
}
.edit-area.guide .step-list {
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
}
.edit-area.guide .accordion-item .step {
  color: #ff87b7;
  font-size: 12px;
  font-weight: bold;
}
.edit-area.guide .step::before {
  margin-right: 0.5em;
  counter-increment: stepNum 1;
  content: counter(stepNum);
  flex-shrink: 0;
  white-space: nowrap;
  background-color: #ff87b7;
  border: #ff87b7;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 2px 8px;
}
@media only screen and (max-width: 639px) {
  .edit-area.guide .step::before {
    font-size: 12px;
  }
}
.edit-area.guide .step-list li::before {
  border: 1px solid #fff;
  border-radius: 100px;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 34px;
  height: 34px;
}

/* -----------------------------------------------
* サイトトップ エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* 検索結果 エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* vote系 Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* user系 Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* guide系 Page エントリーポイント
-------------------------------------------------- */
/*# sourceMappingURL=style.css.map */