@charset "UTF-8";
/* 変数ファイルインポート */
/*----------------------------------------------------------
*  共通変数
*----------------------------------------------------------*/
/*----------------------------------------------------------
*  mixin定義
*----------------------------------------------------------*/
/* clearfix */
/* transition */
@keyframes hover {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes hover_side {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.9;
  }
}
#tooltip {
  text-align: left;
  font-size: 14px;
  color: #515151;
  background: #fff;
  border: 1px solid #eaeaea;
  position: absolute;
  z-index: 100;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0px 5px 15px #dedede;
  z-index: 99999;
}

#tooltip:before {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  margin-left: -10px;
  z-index: 1;
}

#tooltip:after {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #eaeaea;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  margin-left: -10px;
}

#tooltip.top:after {
  border-top-color: transparent;
  border-bottom: 10px solid #111;
  top: -20px;
  bottom: auto;
}

#tooltip.left:after {
  left: 10px;
  margin: 0;
}

#tooltip.right:after {
  right: 10px;
  left: auto;
  margin: 0;
}

#tooltip img.karaoke_sample1 {
  width: 200px;
}

#tooltip img.karaoke_sample2 {
  width: 200px;
}

textarea {
  white-space: pre-wrap;
}

abbr {
  text-decoration: none;
  display: inline-block;
}

.album_delivery span.red {
  color: #fb3535;
}
.album_delivery .notes_box {
  background: #fffbdb;
  padding: 10px;
  margin: 10px 0 30px;
}
.album_delivery .notes_box .notes {
  font-size: 18px;
  color: #fb3535;
  text-align: center;
  display: block;
  margin-bottom: 8px;
}
.album_delivery .notes_box li {
  font-size: 12px !important;
  padding-left: 1em;
  text-indent: -1em;
  list-style-position: inside;
  padding-bottom: 5px;
}
.album_delivery .store_list {
  font-size: 20px;
  text-align: center;
}
.album_delivery .store_list_inner {
  background: #f7f7f7;
  padding: 20px;
  word-break: break-all;
}
.album_delivery .store_list_inner small {
  font-size: 12px;
}
.album_delivery .store_list_inner .store_list_top {
  display: table;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #d2d2d2;
}
.album_delivery .store_list_inner .store_list_top img {
  display: table-cell;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .album_delivery .store_list_inner .store_list_top img {
    display: block;
    margin: 0 auto 20px;
  }
}
.album_delivery .store_list_inner .store_list_top ul {
  display: table-cell;
  vertical-align: middle;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .album_delivery .store_list_inner .store_list_top ul {
    display: block;
    width: 100%;
  }
}
.album_delivery .store_list_inner .store_list_top ul li {
  font-size: 12px;
}
.album_delivery .store_list_inner .store_list_top ul li.album_name {
  font-size: 15px;
}
.album_delivery .store_list_inner .store_list_top ul li b {
  font-weight: bold;
}
.album_delivery .store_list_inner .store_list_bottom {
  padding: 15px 0;
}
.album_delivery .store_list_inner .store_list_bottom li {
  margin-bottom: 20px;
}
.album_delivery .store_list_inner .store_list_bottom li a {
  display: inline-block;
}
.album_delivery .store_list_inner .store_list_bottom li .ttl {
  margin: 0;
  padding: 0;
  font-size: 12px;
  display: inline-block;
  vertical-align: text-bottom;
}
.album_delivery .store_list_inner .store_list_bottom li .ttl span {
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
  color: #515151;
}
.album_delivery .store_list_inner .store_list_bottom li span {
  color: #515151;
  font-size: 12px;
  display: block;
}

.form__body, .list__body {
  width: 550px;
  margin: 0 auto;
}
.form__body ::selection, .list__body ::selection {
  background: #AEDED3;
  color: #515151;
}
@media screen and (max-width: 767px) {
  .form__body, .list__body {
    width: 100%;
  }
}
.form__body p, .list__body p {
  font-size: 16px;
}
.form__body p.red, .list__body p.red {
  color: #eb0000;
}
.form__body div.inner_form, .list__body div.inner_form {
  margin: 0 0 10px 25px;
}
.form__body dl, .list__body dl {
  padding-bottom: 20px;
}
.form__body dl .down_arrow_icon, .list__body dl .down_arrow_icon {
  float: right;
}
.form__body dl dt, .list__body dl dt {
  margin-bottom: 5px;
  font-size: 18px;
}
.form__body dl dt li span input, .list__body dl dt li span input {
  padding: 8px 15px;
  border: 1px solid #D4D4D4;
  border-radius: 3px;
  background-color: #FFFFFF;
  box-shadow: none;
  font-size: 16px;
  width: 100%;
  white-space: pre-wrap;
  color: #515151;
}
.form__body dl dt li span input:focus, .list__body dl dt li span input:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
.form__body dl dt label, .list__body dl dt label {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .form__body dl dt label, .list__body dl dt label {
    font-size: 16px;
  }
}
.form__body dl dt .counter, .list__body dl dt .counter {
  display: inline-block;
  padding: 0;
  float: right;
  font-size: 14px;
  color: #ABAAAA;
  margin: 8px 0 0 0;
}
.form__body dl.add_ttl, .list__body dl.add_ttl {
  font-size: 18px;
  font-weight: bold;
}
.form__body dl.select_short dd, .list__body dl.select_short dd {
  display: inline;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .form__body dl.select_short dd, .list__body dl.select_short dd {
    margin-right: 5px;
  }
}
.form__body dl dd .b2size, .list__body dl dd .b2size {
  display: inline-block;
  width: 2%;
}
.form__body dl dd .form__textArea_size, .list__body dl dd .form__textArea_size {
  padding: 8px 15px;
  border: 1px solid #5fd7bb;
  background: #f7fffd;
  border-radius: 3px;
  box-shadow: none;
  font-size: 16px;
  width: 100%;
  white-space: pre-wrap;
  color: #515151;
}
.form__body dl dd .form__textArea_size:focus, .list__body dl dd .form__textArea_size:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .form__textArea_size, .list__body dl dd .form__textArea_size {
    padding: 7px 10px;
  }
}
.form__body dl dd .form__textArea_20size, .list__body dl dd .form__textArea_20size {
  padding: 8px 15px;
  border: 1px solid #5fd7bb;
  background: #f7fffd;
  border-radius: 3px;
  box-shadow: none;
  font-size: 16px;
  width: 20%;
  color: #515151;
}
.form__body dl dd .form__textArea_20size:focus, .list__body dl dd .form__textArea_20size:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
.form__body dl dd .form__textArea_29size, .list__body dl dd .form__textArea_29size {
  padding: 8px 15px;
  border: 1px solid #5fd7bb;
  background: #f7fffd;
  border-radius: 3px;
  box-shadow: none;
  font-size: 16px;
  width: 29%;
  margin-right: 1%;
  color: #515151;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .form__textArea_29size, .list__body dl dd .form__textArea_29size {
    padding: 7px 10px;
  }
}
.form__body dl dd .form__textArea_29size:focus, .list__body dl dd .form__textArea_29size:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
.form__body dl dd .form__textArea_48size, .list__body dl dd .form__textArea_48size {
  padding: 8px 15px;
  border: 1px solid #5fd7bb;
  background: #f7fffd;
  border-radius: 3px;
  box-shadow: none;
  font-size: 16px;
  width: 48%;
  margin-right: 1%;
  color: #515151;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .form__textArea_48size, .list__body dl dd .form__textArea_48size {
    padding: 7px 10px;
  }
}
.form__body dl dd .form__textArea_48size:focus, .list__body dl dd .form__textArea_48size:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
.form__body dl dd .form__textArea_50size, .list__body dl dd .form__textArea_50size {
  padding: 8px 15px;
  border: 1px solid #5fd7bb;
  background: #f7fffd;
  border-radius: 3px;
  box-shadow: none;
  font-size: 16px;
  width: 50%;
  color: #515151;
}
.form__body dl dd .form__textArea_50size:focus, .list__body dl dd .form__textArea_50size:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
.form__body dl dd .form__textArea_70size, .list__body dl dd .form__textArea_70size {
  padding: 8px 15px;
  border: 1px solid #5fd7bb;
  background: #f7fffd;
  border-radius: 3px;
  box-shadow: none;
  font-size: 16px;
  width: 70%;
  color: #515151;
}
.form__body dl dd .form__textArea_70size:focus, .list__body dl dd .form__textArea_70size:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
.form__body dl dd .form__textArea_84size, .list__body dl dd .form__textArea_84size {
  padding: 8px 15px;
  border: 1px solid #5fd7bb;
  background: #f7fffd;
  border-radius: 3px;
  box-shadow: none;
  font-size: 16px;
  width: 84%;
  color: #515151;
}
.form__body dl dd .form__textArea_84size:focus, .list__body dl dd .form__textArea_84size:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
.form__body dl dd .form__textArea_90size, .list__body dl dd .form__textArea_90size {
  padding: 8px 15px;
  border: 1px solid #5fd7bb;
  background: #f7fffd;
  border-radius: 3px;
  box-shadow: none;
  font-size: 16px;
  width: 90%;
  color: #515151;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .form__textArea_90size, .list__body dl dd .form__textArea_90size {
    padding: 7px 10px;
  }
}
.form__body dl dd .form__textArea_90size:focus, .list__body dl dd .form__textArea_90size:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
.form__body dl dd .form__textArea_100size, .list__body dl dd .form__textArea_100size {
  padding: 8px 15px;
  border: 1px solid #5fd7bb;
  background: #f7fffd;
  border-radius: 3px;
  box-shadow: none;
  font-size: 16px;
  width: 100%;
  color: #515151;
}
.form__body dl dd .form__textArea_100size:focus, .list__body dl dd .form__textArea_100size:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
.form__body dl dd .text_info_off, .list__body dl dd .text_info_off {
  font-size: 12px;
  color: #8A8A8A;
  padding: 5px 0 5px 0;
  display: none;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .text_info_off, .list__body dl dd .text_info_off {
    font-size: 13px;
  }
}
.form__body dl dd .text_info_on, .list__body dl dd .text_info_on {
  font-size: 12px;
  color: #8A8A8A;
  padding: 5px 0 5px 0;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .text_info_on, .list__body dl dd .text_info_on {
    line-height: 0.9rem;
    font-size: 13px;
  }
}
.form__body dl dd .text_warning, .list__body dl dd .text_warning {
  font-size: 12px;
  color: #ff873c;
  display: none;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .text_warning, .list__body dl dd .text_warning {
    font-size: 13px;
  }
}
.form__body dl dd .text_error, .list__body dl dd .text_error {
  font-size: 12px;
  color: #FF2F2F;
  display: none;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .text_error, .list__body dl dd .text_error {
    font-size: 13px;
  }
}
.form__body dl dd .text_error_on, .list__body dl dd .text_error_on {
  font-size: 12px;
  color: #FF2F2F;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .text_error_on, .list__body dl dd .text_error_on {
    font-size: 13px;
  }
}
.form__body dl dd .text_error_caution, .list__body dl dd .text_error_caution {
  font-size: 12px;
  color: #ff6200;
  display: block;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .text_error_caution, .list__body dl dd .text_error_caution {
    font-size: 13px;
  }
}
.form__body dl dd select, .list__body dl dd select {
  padding: 8px 15px;
  border: 1px solid #5fd7bb;
  border-radius: 3px;
  background-color: #f7fffd;
  box-shadow: none;
  font-size: 16px;
  width: 50%;
  color: #515151;
  margin-right: 5px;
  height: 38px;
}
.form__body dl dd select:focus, .list__body dl dd select:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
@media screen and (max-width: 767px) {
  .form__body dl dd select, .list__body dl dd select {
    width: 100%;
    padding: 7px 10px;
    height: 36px;
  }
}
.form__body dl dd select.size74, .list__body dl dd select.size74 {
  padding: 8px 15px;
  border: 1px solid #D4D4D4;
  border-radius: 3px;
  background-color: #FFFFFF;
  box-shadow: none;
  font-size: 16px;
  width: 74%;
  color: #515151;
  margin-right: 5px;
  height: 38px;
}
.form__body dl dd select.size74:focus, .list__body dl dd select.size74:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
.form__body dl dd select.size40, .list__body dl dd select.size40 {
  padding: 8px 15px;
  border: 1px solid #D4D4D4;
  border-radius: 3px;
  background-color: #FFFFFF;
  box-shadow: none;
  font-size: 16px;
  width: 40%;
  color: #515151;
  margin-right: 5px;
  height: 38px;
}
.form__body dl dd select.size40:focus, .list__body dl dd select.size40:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
@media screen and (max-width: 767px) {
  .form__body dl dd select.size40, .list__body dl dd select.size40 {
    width: 30%;
  }
}
.form__body dl dd select.size30, .list__body dl dd select.size30 {
  padding: 8px 15px;
  border: 1px solid #D4D4D4;
  border-radius: 3px;
  background-color: #FFFFFF;
  box-shadow: none;
  font-size: 16px;
  width: 30%;
  color: #515151;
  margin-right: 5px;
  height: 38px;
}
.form__body dl dd select.size30:focus, .list__body dl dd select.size30:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
@media screen and (max-width: 767px) {
  .form__body dl dd select.size30, .list__body dl dd select.size30 {
    width: 20%;
  }
}
.form__body dl dd select.size20, .list__body dl dd select.size20 {
  padding: 8px 15px;
  border: 1px solid #D4D4D4;
  border-radius: 3px;
  background-color: #FFFFFF;
  box-shadow: none;
  font-size: 16px;
  width: 20%;
  color: #515151;
  margin-right: 5px;
  height: 38px;
}
.form__body dl dd select.size20:focus, .list__body dl dd select.size20:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
@media screen and (max-width: 767px) {
  .form__body dl dd select.size20, .list__body dl dd select.size20 {
    width: 10%;
  }
}
.form__body dl dd select.size10, .list__body dl dd select.size10 {
  padding: 8px 15px;
  border: 1px solid #D4D4D4;
  border-radius: 3px;
  background-color: #FFFFFF;
  box-shadow: none;
  font-size: 16px;
  width: 10%;
  color: #515151;
  margin-right: 5px;
  height: 38px;
}
.form__body dl dd select.size10:focus, .list__body dl dd select.size10:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
@media screen and (max-width: 767px) {
  .form__body dl dd select.size10, .list__body dl dd select.size10 {
    width: 5%;
  }
}
.form__body dl dd select.size_year, .list__body dl dd select.size_year {
  padding: 8px 15px;
  border: 1px solid #D4D4D4;
  border-radius: 3px;
  background-color: hsl(0, 0%, 100%);
  box-shadow: none;
  font-size: 16px;
  width: 17%;
  color: #515151;
  margin-right: 5px;
  margin-bottom: 5px;
  height: 38px;
}
.form__body dl dd select.size_year:focus, .list__body dl dd select.size_year:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
@media screen and (max-width: 767px) {
  .form__body dl dd select.size_year, .list__body dl dd select.size_year {
    width: 30%;
    padding: 7px 10px;
    height: 36px;
  }
}
.form__body dl dd select.size_month, .form__body dl dd .size_day, .list__body dl dd select.size_month, .list__body dl dd .size_day {
  padding: 8px 15px;
  border: 1px solid #D4D4D4;
  border-radius: 3px;
  background-color: #FFFFFF;
  box-shadow: none;
  font-size: 16px;
  width: 13%;
  color: #515151;
  margin-right: 5px;
  margin-bottom: 5px;
  height: 38px;
}
.form__body dl dd select.size_month:focus, .form__body dl dd .size_day:focus, .list__body dl dd select.size_month:focus, .list__body dl dd .size_day:focus {
  border: 1px solid #2bb393;
  outline: none;
  transition: border 0.2s ease;
}
@media screen and (max-width: 767px) {
  .form__body dl dd select.size_month, .form__body dl dd .size_day, .list__body dl dd select.size_month, .list__body dl dd .size_day {
    width: 20%;
    height: 36px;
    padding: 7px 10px;
  }
}
.form__body dl dd .upload_area, .list__body dl dd .upload_area {
  background: #fff;
  border: 2px dashed #D0D0D0;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .upload_area, .list__body dl dd .upload_area {
    height: 100px;
  }
}
.form__body dl dd .upload_area:hover, .list__body dl dd .upload_area:hover {
  background: #f5f5f5;
}
.form__body dl dd .upload_area img, .list__body dl dd .upload_area img {
  position: absolute;
  z-index: 1;
  opacity: 0.16;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.form__body dl dd .upload_area .inner, .list__body dl dd .upload_area .inner {
  text-align: center;
  padding: 30px 0;
  z-index: 2;
  position: inherit;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .upload_area .inner, .list__body dl dd .upload_area .inner {
    padding: 15px 10px 20px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
  }
}
.form__body dl dd .upload_area .inner .text_up, .list__body dl dd .upload_area .inner .text_up {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.form__body dl dd .upload_area .inner .text_up .text, .list__body dl dd .upload_area .inner .text_up .text {
  font-size: 18px;
  display: inline-block;
  padding: 0 0 15px 0;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .upload_area .inner .text_up .text, .list__body dl dd .upload_area .inner .text_up .text {
    font-size: 16px;
    padding: 0 0 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .form__body dl dd .upload_area .inner .text_up .text.spno, .list__body dl dd .upload_area .inner .text_up .text.spno {
    display: none;
  }
}
.form__body dl dd .upload_area .inner .text_up .upload_icon, .list__body dl dd .upload_area .inner .text_up .upload_icon {
  border-radius: 100%;
  border: 1px solid #D0D0D0;
  margin: 0 0 -16px 0;
  position: static;
  opacity: inherit;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .upload_area .inner .text_up .upload_icon, .list__body dl dd .upload_area .inner .text_up .upload_icon {
    margin: 0 0 -12px 0;
    width: 40px;
    display: inline-block;
  }
}
.form__body dl dd .upload_area .inner .text_up__inner .upload__area, .list__body dl dd .upload_area .inner .text_up__inner .upload__area {
  margin: 0 auto;
  display: flex;
  position: static;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 100px;
  transition: all 0.3s;
  border: 2px solid #EF8D4E;
  background: #fff;
  width: 120px;
  justify-content: center;
}
.form__body dl dd .upload_area .inner .text_up__inner .upload__area:hover, .list__body dl dd .upload_area .inner .text_up__inner .upload__area:hover {
  opacity: 0.6;
  transition: all 0.4s;
}
.form__body dl dd .upload_area .inner .text_up__inner .upload__area img, .list__body dl dd .upload_area .inner .text_up__inner .upload__area img {
  z-index: 1;
  position: unset;
  opacity: 1;
  margin: 0;
  width: 19px;
  margin-right: 10px;
}
.form__body dl dd .upload_area .inner .text_up__inner .upload__area input, .list__body dl dd .upload_area .inner .text_up__inner .upload__area input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.form__body dl dd .upload_area .inner .text_up .text_up__info, .list__body dl dd .upload_area .inner .text_up .text_up__info {
  font-size: 13px;
  text-align: center;
  padding: 0;
  margin: 10px 0 -10px 0px;
}
.form__body dl dd .upload_area .inner .text_up .text_up__info .bt_trash, .list__body dl dd .upload_area .inner .text_up .text_up__info .bt_trash {
  background: none;
  border: none;
}
.form__body dl dd .upload_area .inner .text_up .text_up__info .bt_trash .thumb_icon, .list__body dl dd .upload_area .inner .text_up .text_up__info .bt_trash .thumb_icon {
  width: 18px;
  position: relative;
  opacity: 0.9;
  vertical-align: bottom;
}
.form__body dl dd .upload_area .inner .text_up .text_up__info .bt_trash:hover, .list__body dl dd .upload_area .inner .text_up .text_up__info .bt_trash:hover {
  opacity: 0.6;
}
.form__body dl dd .upload_area .inner div.bar, .list__body dl dd .upload_area .inner div.bar {
  width: 68%;
  height: 18px;
  position: relative;
  background: #fff;
  border: 1px solid #d0d0d0;
  margin-bottom: 0;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  margin: 0 auto 5px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .form__body dl dd .upload_area .inner div.bar, .list__body dl dd .upload_area .inner div.bar {
    width: 100%;
  }
}
.form__body dl dd .upload_area .inner div.bar span.percent, .list__body dl dd .upload_area .inner div.bar span.percent {
  color: #fff;
  display: inherit;
  padding: 7px;
  background: #eb0000;
  width: 40%;
  height: 100%;
  position: absolute;
}
.form__body dl dd .upload_area .inner div.bar span.percent_str, .list__body dl dd .upload_area .inner div.bar span.percent_str {
  color: #fff;
  height: 100%;
  position: absolute;
  top: 0;
  left: 10px;
}
.form__body dl dd p.title, .list__body dl dd p.title {
  padding: 10px 0 10px 0;
  text-indent: 15px;
}
.form__body dl dd .movie, .list__body dl dd .movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 10px;
}
.form__body dl dd .movie iframe, .list__body dl dd .movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.form__body dl dd .at_mark, .list__body dl dd .at_mark {
  display: inline;
}
.form__body dl dd .form__valid, .list__body dl dd .form__valid {
  position: relative;
}
.form__body dl dd .form__valid:before, .list__body dl dd .form__valid:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background: #2bb393;
  border: 1px solid #2bb393;
  left: -7px;
  top: -15px;
  z-index: 1;
}
.form__body dl dd .form__valid:after, .list__body dl dd .form__valid:after {
  content: "";
  display: block;
  position: absolute;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 8px;
  height: 4px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: -3px;
  top: -10px;
  z-index: 1;
}
.form__body dl dd .form__valid .form__textArea_size,
.form__body dl dd .form__valid .form__textArea_20size,
.form__body dl dd .form__valid .form__textArea_29size,
.form__body dl dd .form__valid .form__textArea_48size,
.form__body dl dd .form__valid .form__textArea_50size,
.form__body dl dd .form__valid .form__textArea_70size,
.form__body dl dd .form__valid .form__textArea_84size,
.form__body dl dd .form__valid .form__textArea_90size,
.form__body dl dd .form__valid .form__textArea_100size, .list__body dl dd .form__valid .form__textArea_size,
.list__body dl dd .form__valid .form__textArea_20size,
.list__body dl dd .form__valid .form__textArea_29size,
.list__body dl dd .form__valid .form__textArea_48size,
.list__body dl dd .form__valid .form__textArea_50size,
.list__body dl dd .form__valid .form__textArea_70size,
.list__body dl dd .form__valid .form__textArea_84size,
.list__body dl dd .form__valid .form__textArea_90size,
.list__body dl dd .form__valid .form__textArea_100size {
  border: 1px solid #90bbb1;
  background: #fff;
}
.form__body dl dd .form__valid select, .list__body dl dd .form__valid select {
  border: 1px solid #90bbb1 !important;
  background-color: #fff;
}
.form__body dl dd .form__valid.form__valid_textarea, .list__body dl dd .form__valid.form__valid_textarea {
  display: block;
}
.form__body dl dd .form__valid.form__valid_textarea:before, .list__body dl dd .form__valid.form__valid_textarea:before {
  left: -7px;
  top: -6px;
}
.form__body dl dd .form__valid.form__valid_textarea:after, .list__body dl dd .form__valid.form__valid_textarea:after {
  left: -3px;
  top: -1px;
}
.form__body dl dd .form__error .form__textArea_size,
.form__body dl dd .form__error .form__textArea_20size,
.form__body dl dd .form__error .form__textArea_29size,
.form__body dl dd .form__error .form__textArea_48size,
.form__body dl dd .form__error .form__textArea_50size,
.form__body dl dd .form__error .form__textArea_70size,
.form__body dl dd .form__error .form__textArea_84size,
.form__body dl dd .form__error .form__textArea_90size,
.form__body dl dd .form__error .form__textArea_100size, .list__body dl dd .form__error .form__textArea_size,
.list__body dl dd .form__error .form__textArea_20size,
.list__body dl dd .form__error .form__textArea_29size,
.list__body dl dd .form__error .form__textArea_48size,
.list__body dl dd .form__error .form__textArea_50size,
.list__body dl dd .form__error .form__textArea_70size,
.list__body dl dd .form__error .form__textArea_84size,
.list__body dl dd .form__error .form__textArea_90size,
.list__body dl dd .form__error .form__textArea_100size {
  background: #FFE5E5;
  border: 1px solid #FF6E6E;
}
.form__body dl dd .form__error select, .list__body dl dd .form__error select {
  border: 1px solid #FF6E6E !important;
  background: url(/img/common/arrow_pd.svg) right 50% no-repeat #FFE5E5;
  background-size: 20px, 100%;
}
.form__body dl dd .form__error.form__valid_textarea, .list__body dl dd .form__error.form__valid_textarea {
  display: block;
}
.form__body dl dd .form__error.form__valid_textarea:before, .list__body dl dd .form__error.form__valid_textarea:before {
  left: -7px;
  top: -6px;
}
.form__body dl dd .form__error.form__valid_textarea:after, .list__body dl dd .form__error.form__valid_textarea:after {
  left: -3px;
  top: -1px;
}
.form__body dl dd .form__error input[type=checkbox] + label::before, .list__body dl dd .form__error input[type=checkbox] + label::before {
  border: solid #FF6E6E;
  background: #FFE5E5;
}
.form__body dl dd .form__warning .form__textArea_size,
.form__body dl dd .form__warning .form__textArea_20size,
.form__body dl dd .form__warning .form__textArea_29size,
.form__body dl dd .form__warning .form__textArea_48size,
.form__body dl dd .form__warning .form__textArea_50size,
.form__body dl dd .form__warning .form__textArea_70size,
.form__body dl dd .form__warning .form__textArea_84size,
.form__body dl dd .form__warning .form__textArea_90size,
.form__body dl dd .form__warning .form__textArea_100size, .list__body dl dd .form__warning .form__textArea_size,
.list__body dl dd .form__warning .form__textArea_20size,
.list__body dl dd .form__warning .form__textArea_29size,
.list__body dl dd .form__warning .form__textArea_48size,
.list__body dl dd .form__warning .form__textArea_50size,
.list__body dl dd .form__warning .form__textArea_70size,
.list__body dl dd .form__warning .form__textArea_84size,
.list__body dl dd .form__warning .form__textArea_90size,
.list__body dl dd .form__warning .form__textArea_100size {
  background: #ffede2;
  border: 1px solid #ff873c;
}
.form__body dl dd .form__warning select, .list__body dl dd .form__warning select {
  border: 1px solid #ff873c !important;
  background: url(/img/common/arrow_pd.svg) right 50% no-repeat #ffede2;
  background-size: 20px, 100%;
}
.form__body dl dd .form__warning.form__valid_textarea, .list__body dl dd .form__warning.form__valid_textarea {
  display: block;
}
.form__body dl dd .form__warning.form__valid_textarea:before, .list__body dl dd .form__warning.form__valid_textarea:before {
  left: -7px;
  top: -6px;
}
.form__body dl dd .form__warning.form__valid_textarea:after, .list__body dl dd .form__warning.form__valid_textarea:after {
  left: -3px;
  top: -1px;
}
.form__body dl dd .form__warning input[type=checkbox] + label::before, .list__body dl dd .form__warning input[type=checkbox] + label::before {
  border: solid #ff873c;
  background: #ffede2;
}
.form__body dl dd.limitless, .list__body dl dd.limitless {
  display: table;
  margin: 0 auto;
  margin-top: 10px;
}
.form__body dl dd.prev_in, .list__body dl dd.prev_in {
  margin-left: 20px;
  border-bottom: 1px solid #E4E4E4;
  padding: 0 0 5% 0;
}
.form__body dl p.info_small, .list__body dl p.info_small {
  text-align: center;
  padding-bottom: 10px;
  color: #868686;
}
.form__body dl dd.recruitment, .list__body dl dd.recruitment {
  text-align: center;
  font-size: 20px;
}
.form__body dl dd.recruitment p.ps_number, .list__body dl dd.recruitment p.ps_number {
  padding-bottom: 0;
  text-align: center;
  margin: 20px 0 0 0;
}
.form__body dl dd.recruitment p.ps_number span.number, .list__body dl dd.recruitment p.ps_number span.number {
  font-size: 24px;
  color: #eb0000;
}
.form__body dd.select, .list__body dd.select {
  padding-bottom: 0px;
  margin-bottom: 10px;
}
p.top_line {
  border-top: 1px solid #e2e2e2;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  p.top_line {
    margin-bottom: 0;
  }
}

ul li.bt {
  text-align: center;
  margin: 0px 0px 40px 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  ul li.bt {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }
}
ul li.bt.dp_no {
  display: none;
}
@media screen and (max-width: 767px) {
  ul li.bt.dp_no {
    display: block;
  }
}
ul li.bt .submit_bt {
  text-decoration: none;
  background: #FF873C;
  width: 330px;
  height: 60px;
  color: #fff;
  overflow: hidden;
  border: 2px solid #FF873C;
  border-radius: 200px;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.11);
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 970px) {
  ul li.bt .submit_bt:hover {
    cursor: pointer;
    animation: hover 0.6s forwards;
  }
}
@media screen and (min-width: 767px) and (max-width: 1038px) {
  ul li.bt .submit_bt {
    width: 68%;
  }
}
@media screen and (max-width: 767px) {
  ul li.bt .submit_bt {
    width: 100%;
    font-size: 16px;
    height: 48px;
  }
}
ul li.bt .submit_bt_1 {
  text-decoration: none;
  background: #7b7b7b;
  width: 260px;
  margin: 0 5px;
  height: 60px;
  color: #fff;
  overflow: hidden;
  border: 2px solid #ababab;
  border-radius: 200px;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.11);
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 970px) {
  ul li.bt .submit_bt_1:hover {
    cursor: pointer;
    animation: hover 0.6s forwards;
  }
}
@media screen and (max-width: 767px) {
  ul li.bt .submit_bt_1 {
    width: 46%;
    font-size: 16px;
    margin: 10px 5px 0 0;
    height: 48px;
    white-space: nowrap;
  }
}
ul li.bt .submit_bt_2 {
  text-decoration: none;
  background: #FF873C;
  width: 260px;
  margin: 0 5px;
  height: 60px;
  color: #fff;
  overflow: hidden;
  border: 2px solid #FF873C;
  border-radius: 200px;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.11);
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 970px) {
  ul li.bt .submit_bt_2:hover {
    cursor: pointer;
    animation: hover 0.6s forwards;
  }
}
@media screen and (max-width: 767px) {
  ul li.bt .submit_bt_2 {
    width: 46%;
    font-size: 16px;
    margin: 10px 2px 0 0;
    height: 48px;
  }
}
ul li.bt .submit_bt_3 {
  text-decoration: none;
  background: #7b7b7b;
  width: 330px;
  height: 60px;
  color: #fff;
  overflow: hidden;
  border: 2px solid #ababab;
  border-radius: 200px;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.11);
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 970px) {
  ul li.bt .submit_bt_3:hover {
    cursor: pointer;
    animation: hover 0.6s forwards;
  }
}
@media screen and (min-width: 767px) and (max-width: 1038px) {
  ul li.bt .submit_bt_3 {
    width: 68%;
  }
}
@media screen and (max-width: 767px) {
  ul li.bt .submit_bt_3 {
    width: 100%;
    font-size: 16px;
    height: 48px;
  }
}
ul li.bt .submit_bt_3.top_close_bt {
  width: 90%;
  margin: 20px 0 -20px 0;
}
ul li.bt .disable_bt {
  pointer-events: none;
  opacity: 0.3;
  box-shadow: none;
}
ul li.bt a.pop_link {
  color: #2bb393;
  text-decoration: underline !important;
  cursor: pointer;
  float: left;
  padding: 10px;
  font-size: 18px;
}
ul li.bt a.pop_link:hover {
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  ul li.bt a.pop_link {
    font-size: 16px;
  }
}

a.ps_add_bt, .add_bt {
  text-align: center;
  background: #efefef;
  width: 86%;
  padding: 15px;
  font-size: 20px;
  margin: 0 auto 20px;
  display: block;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  a.ps_add_bt, .add_bt {
    padding: 10px;
    font-size: 16px;
  }
}
a.ps_add_bt img, .add_bt img {
  vertical-align: top;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  a.ps_add_bt img, .add_bt img {
    width: 25px;
  }
}
a.ps_add_bt .badge_recom, .add_bt .badge_recom {
  background: #eb0000;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  padding: 2px;
  display: inline-block;
  position: absolute;
  left: -10px;
  width: 80px;
  text-align: center;
  top: 22px;
}
a.ps_add_bt:hover, .add_bt:hover {
  background: #E0E0E0;
  color: #515151 !important;
}

a.ps_add_bt_100, .add_bt_100 {
  text-align: center;
  background: #ffffff;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  margin: 0 auto 20px;
  display: block;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  border-radius: 100px;
  border: 1px solid;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  a.ps_add_bt_100, .add_bt_100 {
    padding: 10px;
    font-size: 16px;
  }
}
a.ps_add_bt_100 img, .add_bt_100 img {
  vertical-align: bottom;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  a.ps_add_bt_100 img, .add_bt_100 img {
    width: 25px;
  }
}
a.ps_add_bt_100:hover, .add_bt_100:hover {
  background: #ededed;
  color: #515151 !important;
}

select {
  width: 100%;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #999;
  background: #eee;
  background: url(/img/common/arrow_pd.svg) right 50% no-repeat;
  background-size: 20px, 100%;
}

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

@keyframes huerotator {
  0% {
    -webkit-filter: hue-rotate(-30deg);
    filter: hue-rotate(-30deg);
  }
  100% {
    -webkit-filter: hue-rotate(40deg);
    filter: hue-rotate(40deg);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  animation: fadeInDown 0.8s;
  -webkit-animation: fadeInDown 0.8s;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  animation: fadeInRightBig 0.6s;
}

.loader_parts {
  text-align: center;
}
.loader_parts.ball-clip-rotate > .loader_parts_inner {
  background-color: #000;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #D2D2D2;
  border-bottom-color: transparent;
  height: 30px;
  width: 30px;
  background: transparent !important;
  display: inline-block;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}

.loader_parts_container {
  position: relative;
}

.loader_parts_overlay {
  background: #FFF;
  opacity: 0.5;
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10000;
  display: none;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}
@keyframes scale {
  30% {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.song_fadeOutUp {
  animation: song_fadeOutUp 0.8s;
}

@keyframes song_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.song_fadeOutDown {
  animation: song_fadeOutDown 0.8s;
}

@keyframes song_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
div.upload_box {
  background: #f2f2f2;
  padding: 20px;
  margin-bottom: 20px;
}
div.upload_box dl dt {
  display: inline;
  width: auto;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  div.upload_box dl dt {
    display: block;
    width: 100%;
  }
}
div.upload_box dl dt p.file_title {
  padding-bottom: 0px;
  font-weight: bold;
  display: inline;
}
div.upload_box dl dd {
  display: inline-block;
}
div.upload_box dl div {
  margin-top: 5px;
  margin-bottom: 0;
  width: auto;
  display: inline-block;
  float: right;
}
div.upload_box dl div p.label_1 {
  color: #ca2929;
  font-size: 14px;
  border: 1px solid;
  padding: 2px 8px;
  border-radius: 5px;
  width: 140px;
  background: #fff3f3;
  display: inline-block;
}
div.upload_box dl div p.label_2 {
  color: #e66d29;
  font-size: 14px;
  border: 1px solid;
  padding: 2px 8px;
  border-radius: 5px;
  width: 140px;
  background: #fff7f2;
  display: inline-block;
}
div.upload_box dl div p.label_3 {
  color: #8a8a8a;
  font-size: 14px;
  border: 1px solid;
  padding: 2px 8px;
  border-radius: 5px;
  width: 80px;
  background: #fff;
  display: inline-block;
}
div.upload_box dl dd {
  width: 100%;
}
div.upload_box dl dd div.bar {
  width: 100%;
  height: 40px;
  position: relative;
  background: #fff;
  border: 1px solid #e0e0e0;
  margin-bottom: 0;
  border-radius: 4px;
}
div.upload_box dl dd div.bar span.percent {
  color: #fff;
  display: inherit;
  padding: 7px;
  background: #eb0000;
  width: 40%;
  height: 100%;
  position: absolute;
}
div.upload_box dl dd div.bar span.percent_str {
  color: #fff;
  height: 100%;
  position: absolute;
  top: 0;
  left: 10px;
}
div.upload_box ul li.bt {
  margin: 0;
}
@media screen and (max-width: 767px) {
  div.upload_box ul li.bt {
    text-align: center;
    width: 100%;
    font-size: 18px;
  }
}
div.upload_box ul li.bt .submit_bt_1 {
  width: 150px;
  height: 46px;
  font-size: 18px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  div.upload_box ul li.bt .submit_bt_1 {
    width: 46%;
    margin: 0;
    font-size: 18px;
  }
}
div.upload_box ul li.bt .submit_bt_2 {
  width: 150px;
  height: 46px;
  font-size: 18px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  div.upload_box ul li.bt .submit_bt_2 {
    width: 46%;
    font-size: 18px;
  }
}

.link_bt {
  color: #333 !important;
  text-decoration: none !important;
  font-weight: bold;
  display: inline-block;
  border: 1px solid #333 !important;
  padding: 10px;
  width: 180px;
  text-align: center;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.link_bt:hover {
  background: #333;
  color: #fff !important;
}

.asterisk {
  color: #f00;
  font-size: 10px;
  vertical-align: text-bottom;
  padding-left: 5px;
  font-weight: bold;
}

.optional {
  font-size: 12px;
  color: #a6a6a6;
  font-weight: 700;
  margin-left: 5px;
  vertical-align: middle;
  border: 1px solid;
  border-radius: 100px;
  padding: 2px 5px;
  display: inline-block;
}

.fadein1 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease 0s;
  visibility: hidden;
}

.fadein2 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease 0.2s;
  visibility: hidden;
}

.fadein3 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease 0.4s;
  visibility: hidden;
}

.fadein4 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease 0.6s;
  visibility: hidden;
}

.fadein5 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease 0.8s;
  visibility: hidden;
}

.fadein6 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease 1s;
  visibility: hidden;
}

.fadein7 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease 1.2s;
  visibility: hidden;
}

.fadein1.is-show, .fadein2.is-show, .fadein3.is-show, .fadein4.is-show, .fadein5.is-show, .fadein6.is-show, .fadein7.is-show {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.fade_list li {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
}
.fade_list li:nth-child(1) {
  transition: all 1s ease 0s;
}
.fade_list li:nth-child(2) {
  transition: all 1s ease 0.2s;
}
.fade_list li:nth-child(3) {
  transition: all 1s ease 0.4s;
}
.fade_list li:nth-child(4) {
  transition: all 1s ease 0.6s;
}
.fade_list li:nth-child(5) {
  transition: all 1s ease 0.8s;
}
.fade_list li:nth-child(6) {
  transition: all 1s ease 1s;
}
.fade_list li:nth-child(7) {
  transition: all 1s ease 1.2s;
}
.fade_list li:nth-child(8) {
  transition: all 1s ease 1.4s;
}
.fade_list li:nth-child(9) {
  transition: all 1s ease 1.6s;
}
.fade_list li:nth-child(10) {
  transition: all 1s ease 1.8s;
}
.fade_list li.is-show {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.text_error {
  color: #f00 !important;
  font-size: 12px !important;
  text-align: left !important;
  padding-top: 5px !important;
  font-weight: 600 !important;
  display: none;
}

.text_warning {
  color: #ff873c !important;
  font-size: 12px !important;
  text-align: left !important;
  padding-top: 5px !important;
  font-weight: 600 !important;
  display: none;
}

.ta-center {
  text-align: center !important;
}

:placeholder {
  color: #b7b7b7;
}

textarea::placeholder {
  color: #b7b7b7 !important;
}

.form__body dl dd .form__textArea_size::placeholder, .list__body dl dd .form__textArea_size::placeholder {
  color: #b7b7b7 !important;
}

.ttl_parent {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}

.parent_body {
  background: #f2f2f2;
  padding: 20px 20px 0;
  margin-bottom: 30px;
}

.radio_button {
  width: 50%;
}

.radio_button input[type=radio] + label {
  position: relative;
  margin-right: -7px;
  cursor: pointer;
  padding: 0 0 6px 24px;
  text-indent: 0px;
  display: block;
  width: 95%;
  border: 1px solid #dedede;
  padding: 12px;
  border-radius: 2px;
  text-align: center;
  font-weight: bold;
}

.radio_button input[type=radio]:checked + label {
  border: 1px solid #ff9600;
  color: #ff9600;
  background: #fff5ef;
}

.radio_button input[type=radio] + label::before,
.radio_button input[type=radio]:checked + label::after {
  display: none;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.text_small {
  font-size: 10px !important;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-15 {
  margin-bottom: 15px;
}

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

.lead_text {
  border-radius: 6px;
  padding: 10px 10px;
  display: block;
  background: #ebebeb;
  margin: 0 0 0px 20px;
  font-size: 13px;
}

.form__body.preview dl, .list__body.preview dl {
  margin-bottom: 0;
  border-bottom: 1px solid #dadada;
  padding: 10px 0;
}

header.top_hd {
  color: #fff;
  background: none;
  letter-spacing: 0px;
  border-bottom: 0;
  position: absolute;
  z-index: 3;
  width: 100%;
}
header.top_hd:link {
  color: #fff;
}
header.top_hd div.container {
  padding: 2px 0;
}
header.top_hd div.container a.sp_search {
  display: inline-block;
  width: 33px;
  height: 33px;
  margin: 8px 6px;
  border: 1px solid #fff;
  border-radius: 4px;
  cursor: pointer;
}
header.top_hd div.container a.sp_search:hover {
  background: rgba(255, 255, 255, 0.3);
  transition: all 1s;
}
@media screen and (max-width: 767px) {
  header.top_hd div.container a.sp_search {
    width: 31px;
    height: 31px;
  }
}
header.top_hd div.container a.sp_search img {
  margin: 5px;
}
header.top_hd ul.top_sns_bt {
  float: left;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  header.top_hd ul.top_sns_bt {
    float: none;
    text-align: center;
  }
}
header.top_hd ul.top_sns_bt li {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 5px;
}
@media screen and (min-width: 970px) {
  header.top_hd ul.top_sns_bt li:hover {
    cursor: pointer;
    animation: hover 0.6s forwards;
  }
}
header.top_hd nav {
  width: auto;
  display: inline-block;
  height: 0;
  float: right;
}
@media screen and (max-width: 767px) {
  header.top_hd nav {
    display: block !important;
    float: none !important;
  }
}
@media screen and (max-width: 767px) {
  header.top_hd nav ul.login {
    margin: 0 auto;
    width: 264px;
  }
}
header.top_hd nav ul.login li.login_area {
  float: right;
}
header.top_hd nav ul.login li.login_area .auth, header.top_hd nav ul.login li.login_area .registration {
  color: #fff;
  font-size: 14px;
  padding: 5px 10px !important;
  cursor: pointer;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  header.top_hd nav ul.login li.login_area .auth, header.top_hd nav ul.login li.login_area .registration {
    font-size: 12px;
  }
}
header.top_hd nav ul.login li.login_area a {
  display: inline-block;
  float: right;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 4px;
  margin: 8px;
}
header.top_hd nav ul.login li.login_area a:hover {
  background: rgba(255, 255, 255, 0.3);
  transition: all 1s;
}

.header_top .container {
  display: flex;
  justify-content: space-between;
  max-width: 98%;
}
.header_top .container .logo {
  width: 100px;
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .header_top .container .logo {
    width: 88px;
    padding: 12px;
  }
}
.header_top .container nav {
  margin-left: auto;
}
.header_top .container nav .login_link_for_login {
  border: 2px solid #fff !important;
  border-radius: 100px !important;
}
.header_top .container nav .login_link_for_login p {
  color: #fff !important;
}
.header_top .container nav .login_link_for_signup {
  border: 2px solid #FF873C !important;
  border-radius: 100px !important;
  display: none !important;
}
.header_top .container nav .login_link_for_signup p {
  color: #FF873C !important;
}
.header_top .container .sp_search {
  display: none !important;
}

.header_top.is-resize {
  z-index: 11;
  background: none;
  position: fixed;
  width: 100%;
  animation-duration: 0.4s;
  animation-name: slidein;
}
@media screen and (max-width: 767px) {
  .header_top.is-resize {
    background: #F4F7FA;
    z-index: 99999;
    bottom: 0;
    height: 56px;
  }
  .header_top.is-resize nav {
    margin-left: 0 !important;
    width: 100%;
  }
  .header_top.is-resize nav .login {
    width: 100%;
  }
  .header_top.is-resize nav .login .login_area {
    float: none !important;
    display: flex;
    width: 100%;
  }
  .header_top.is-resize nav .login .login_area .login_link_for_signup {
    float: none;
    text-decoration: none;
    background: #FF873C;
    overflow: hidden;
    border-radius: 200px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.1rem;
    width: 60%;
    border: none !important;
    padding: 2px;
    display: block !important;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1098039216);
  }
  .header_top.is-resize nav .login .login_area .login_link_for_signup .registration {
    font-size: 15px !important;
    color: #fff !important;
    text-align: center;
  }
  .header_top.is-resize nav .login .login_area .login_link_for_login {
    float: none;
    text-decoration: none;
    background: #2bb393;
    overflow: hidden;
    border-radius: 200px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.1rem;
    width: 35%;
    border: none !important;
    padding: 2px;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1098039216);
  }
  .header_top.is-resize nav .login .login_area .login_link_for_login .auth {
    font-size: 15px !important;
    color: #fff !important;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .header_top.is-resize .logo {
    display: none;
  }
}

@keyframes slidein {
  from {
    transform: translate(0, 60px);
  }
  to {
    transform: translate(0, 0);
  }
}
article.top .kv {
  min-height: 100vh;
  width: 100%;
  padding-bottom: 30px;
  z-index: 2;
  position: relative;
  overflow: hidden;
  background: #000;
}
@media screen and (max-width: 767px) {
  article.top .kv {
    background-position: 12% 0px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1038px) {
  article.top .kv {
    background-position: -17vh 0;
  }
}
article.top .kv .carousel {
  position: relative;
}
article.top .kv .carousel::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.431372549);
  z-index: 0;
  top: 0;
}
article.top .kv .carousel .kv_01 {
  background: url(/img/top/kv_01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100vh;
}
article.top .kv .carousel .kv_02 {
  background: url(/img/top/kv_02.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100vh;
}
article.top .kv .carousel .kv_03 {
  background: url(/img/top/kv_03.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100vh;
}
article.top .kv video.pc {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
  opacity: 0.7;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
}
@media screen and (max-width: 767px) {
  article.top .kv video.pc {
    display: none;
  }
}
article.top .kv video.sp {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
  opacity: 0.7;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: none;
}
@media screen and (max-width: 767px) {
  article.top .kv video.sp {
    display: block;
  }
}
article.top .kv .inner {
  position: absolute;
  left: 8%;
  top: 20%;
}
@media screen and (max-width: 767px) {
  article.top .kv .inner {
    right: 0px;
    padding: 20px;
    left: 0;
    top: 32%;
  }
}
@media screen and (min-width: 767px) and (max-width: 1038px) {
  article.top .kv .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
  }
}
article.top .kv .inner h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
article.top .kv .inner h1 .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  article.top .kv .inner h1 .sp {
    display: block;
  }
}
@media screen and (min-width: 767px) and (max-width: 1038px) {
  article.top .kv .inner h1 .sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  article.top .kv .inner h1 {
    font-size: 25px;
    letter-spacing: 0;
    margin-bottom: 26px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1038px) {
  article.top .kv .inner h1 {
    font-size: 3.7vh;
    margin-bottom: 40px;
  }
}
article.top .kv .inner .sub_title {
  font-weight: 800;
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
  display: block;
}
@media screen and (max-width: 767px) {
  article.top .kv .inner .sub_title {
    font-size: 12px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
}
article.top .kv .inner ul .bt {
  text-align: left;
}
article.top .signup_form_area {
  background: #fff;
  box-shadow: 10px 13px 36px rgba(150, 150, 150, 0.1607843137);
  border-radius: 10px;
  padding: 30px 40px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  article.top .signup_form_area {
    padding: 30px 30px 0;
    margin-top: 330px;
    margin-bottom: 70px;
  }
}
article.top .signup_form_area h2 {
  font-size: 30px;
  color: #2CB393;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  article.top .signup_form_area h2 {
    font-size: 20px;
  }
}
article.top .signup_form_area form .form__body {
  max-width: 460px;
  box-sizing: border-box;
}
article.top .signup_form_area form .form__body dl {
  padding: 0;
}
article.top .signup_form_area form .form__body dl dd {
  margin-bottom: 20px;
}
article.top .signup_form_area form .form__body dl dd label {
  color: #3D4755;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  padding-bottom: 4px;
  display: block;
}
@media screen and (max-width: 767px) {
  article.top .signup_form_area form .form__body dl dd label {
    font-size: 14px;
  }
}
article.top .signup_form_area form .form__body dl dd .form__textArea_size {
  background: #F5F5F5;
  border: 1px solid #CCCCCC;
}
article.top .signup_form_area form .form__body dl .terms_area .top_terms {
  font-size: 12px;
  text-align: center;
  padding: 10px 0 0px;
}
article.top .signup_form_area form .form__body dl ul .bt .submit_bt.top_bt1 {
  border-radius: 100px;
}
article.top .signup_form_area form .form__body dl ul .bt .submit_bt.top_bt2 {
  border-radius: 100px;
}
article.top section.keyvisual ul.cb-slideshow {
  position: relative;
  height: 700px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  article.top section.keyvisual ul.cb-slideshow {
    height: 550px;
  }
}
article.top section.keyvisual ul.cb-slideshow li {
  background-size: cover !important;
  background-position: 0px;
  z-index: 1;
  height: 700px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-animation: imageAnimation 32s linear infinite 0s;
  -moz-animation: imageAnimation 32s linear infinite 0s;
  -o-animation: imageAnimation 32s linear infinite 0s;
  -ms-animation: imageAnimation 32s linear infinite 0s;
  animation: imageAnimation 32s linear infinite 0s;
}
article.top section.keyvisual ul.cb-slideshow li:after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #2BB393 0%, #FFFC00 100%);
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  article.top section.keyvisual ul.cb-slideshow li {
    height: 550px;
    background-position: 0px;
    background-size: cover;
  }
}
article.top section.keyvisual ul.cb-slideshow li:nth-child(1) {
  background: url(/img/top/keyvisual_top_no1.jpg) no-repeat;
  opacity: 1;
}
article.top section.keyvisual ul.cb-slideshow li:nth-child(2) {
  background: url(/img/top/keyvisual_top_no2.jpg) no-repeat;
  -webkit-animation-delay: 8s;
  -moz-animation-delay: 8s;
  -o-animation-delay: 8s;
  -ms-animation-delay: 8s;
  animation-delay: 8s;
}
article.top section.keyvisual ul.cb-slideshow li:nth-child(3) {
  background: url(/img/top/keyvisual_top_no3.jpg) no-repeat;
  -webkit-animation-delay: 16s;
  -moz-animation-delay: 16s;
  -o-animation-delay: 16s;
  -ms-animation-delay: 16s;
  animation-delay: 16s;
}
article.top section.keyvisual ul.cb-slideshow li:nth-child(4) {
  background: url(/img/top/keyvisual_top_no4.jpg) no-repeat;
  -webkit-animation-delay: 24s;
  -moz-animation-delay: 24s;
  -o-animation-delay: 24s;
  -ms-animation-delay: 24s;
  animation-delay: 24s;
}
article.top section.keyvisual .top_ttl {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 680px;
  height: 140px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  article.top section.keyvisual .top_ttl {
    width: 80%;
    height: 44%;
  }
}
@media screen and (max-width: 767px) {
  article.top section.keyvisual .top_ttl h1 {
    text-align: justify;
  }
}
article.top section.keyvisual .top_ttl h1 img.logo {
  display: inline-block;
  margin: 9px 13px -12px;
  width: 180px;
  float: left;
}
@media screen and (max-width: 767px) {
  article.top section.keyvisual .top_ttl h1 img.logo {
    width: 130px;
    text-align: center;
    float: none;
    margin: 0 auto 15px;
    display: block;
  }
}
article.top section.keyvisual .top_ttl h1 p.top_text {
  font-size: 26px;
  display: block;
  color: #fff;
  letter-spacing: 0.2em;
  font-weight: bolder;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  article.top section.keyvisual .top_ttl h1 p.top_text {
    font-size: 22px;
    text-align: justify;
    letter-spacing: 0.1em;
    margin: 0 auto;
    display: table;
  }
}
article.top section.keyvisual .top_ttl h1 p.top_text span {
  display: none;
}
@media screen and (max-width: 767px) {
  article.top section.keyvisual .top_ttl h1 p.top_text span {
    display: inline;
  }
}
article.top section.keyvisual .top_ttl p.orange_text_m {
  font-size: 20px;
  color: #fefc63;
  text-align: center;
}
@media screen and (max-width: 767px) {
  article.top section.keyvisual .top_ttl p.orange_text_m {
    text-align-last: center;
    font-size: 18px;
    padding-bottom: 0;
  }
}
article.top section.keyvisual .top_ttl p.orange_text_m span {
  font-size: 32px;
}
article.top section.keyvisual .scroll_icon {
  width: 50px;
  position: absolute;
  top: 80%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  z-index: 3;
  animation: tf_scroll 2s infinite;
}
@media screen and (max-width: 767px) {
  article.top section.keyvisual .scroll_icon {
    width: 30px;
  }
}
article.top div.counter {
  background: #2bb393;
  text-align: center;
}
@media screen and (max-width: 767px) {
  article.top div.counter {
    text-align: center;
    margin: 0 auto 25px;
    width: 100%;
  }
}
article.top div.counter div {
  width: 225px;
  display: inline-block;
  padding: 20px 0px 0 18px;
}
@media screen and (max-width: 767px) {
  article.top div.counter div {
    width: auto;
    text-align: center;
    padding: 16px 0px 0 0px;
  }
}
article.top div.counter div img.icon_bg {
  background: #fff;
  border-radius: 100%;
  padding: 7px;
  width: 52px;
  float: left;
  margin: 6px;
}
@media screen and (max-width: 767px) {
  article.top div.counter div img.icon_bg {
    padding: 5px;
    width: 38px;
    height: 38px;
    margin: 0 auto;
    display: block;
    float: none;
  }
}
article.top div.counter div span.green_text_s {
  font-size: 14px;
  color: #fefc63;
}
@media screen and (max-width: 767px) {
  article.top div.counter div span.green_text_s {
    font-size: 11px;
    font-weight: bold;
  }
}
article.top div.counter div p.count_artists {
  font-size: 34px;
  color: #fff;
  margin: -6px 0 0 0;
}
@media screen and (max-width: 767px) {
  article.top div.counter div p.count_artists {
    font-size: 20px;
    text-align: center;
  }
}
article.top div.counter div p.count_artists span {
  font-size: 14px;
}
article.top div.counter p.bar_y {
  border-left: dotted 1px rgba(245, 245, 245, 0.6);
  display: inline-block;
  margin: 30px 0px 0 16px;
  height: 42px;
}
@media screen and (max-width: 767px) {
  article.top div.counter p.bar_y {
    margin: 0 17px;
  }
}
article.top section.top_faq div.container h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #2bb393;
  padding-bottom: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  article.top section.top_faq div.container h2 {
    font-size: 26px;
  }
}
article.top section.top_faq div.container h2 img.logo_green {
  margin: 0px 0 -14px 0;
}
@media screen and (max-width: 767px) {
  article.top section.top_faq div.container h2 img.logo_green {
    width: 90px;
    height: 35px;
  }
}
@media screen and (max-width: 767px) {
  article.top section.top_faq div.container .span_7 {
    text-align: center;
  }
}
article.top section.top_faq div.container .span_7 .hover:hover {
  opacity: 0.7;
  transition: all 0.5s ease;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  article.top section.top_faq div.container .span_7 .hover:hover img {
    width: 230px;
  }
}
article.top section.top_faq div.container .span_7 p.ttl_small {
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #3D4755;
  letter-spacing: 0px;
}
@media screen and (max-width: 767px) {
  article.top section.top_faq div.container .span_7 p.ttl_small {
    text-align: center;
    font-size: 20px;
    padding: 0 0 10px 0;
  }
}
@media screen and (max-width: 767px) {
  article.top section.top_faq div.container .span_7 p {
    text-align: left;
    padding: 0 8% 20px;
  }
}
article.top section.bg_gray {
  background: #F4F7FA;
}
article.top section.bg_gray div.container {
  text-align: center;
}
article.top section.bg_gray div.container h3 {
  text-align: center;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  font-size: 38px;
  font-weight: 700;
  color: #2bb393;
  padding-bottom: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  article.top section.bg_gray div.container h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  article.top section.bg_gray div.container h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  article.top section.bg_gray div.container .span_7 {
    text-align: center;
  }
}
article.top section.bg_gray div.container .span_7 img {
  padding: 0 0 10px 0;
}
@media screen and (max-width: 767px) {
  article.top section.bg_gray div.container .span_7 img {
    width: 230px;
  }
}
@media screen and (max-width: 767px) {
  article.top section.bg_gray div.container .span_7 p {
    text-align: center;
    padding: 0 8% 40px;
  }
}
article.top section.login_area {
  background: url("/img/top/bg_login.svg") no-repeat #2bb393;
  background-size: cover;
}
article.top section.login_area div.container h4 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  article.top section.login_area div.container h4 {
    font-size: 24px;
  }
}
article.top section.login_area div.container div.col.span_12 {
  margin: 0px 25%;
}
@media screen and (min-width: 767px) and (max-width: 1038px) {
  article.top section.login_area div.container div.col.span_12 {
    margin: 0px 12%;
    width: 100%;
    max-width: 550px;
  }
}
@media screen and (max-width: 767px) {
  article.top section.login_area div.container div.col.span_12 {
    margin: 0;
  }
}
article.top section.login_area div.container div.col.span_12 li {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
article.top section.login_area div.container div.col.span_24 p.orange_text_m {
  color: #fefc63;
  font-size: 20px;
  text-align: center;
}
article.top section.login_area div.container div.col.span_24 p.orange_text_m span {
  font-size: 32px;
}
article.top section.login_area div.container div.col.span_24 div.counter {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  article.top section.login_area div.container div.col.span_24 div.counter {
    text-align: center;
    margin: 0 auto 25px;
    width: 100%;
  }
}
article.top section.login_area div.container div.col.span_24 div.counter div {
  width: 220px;
  display: inline-block;
  padding: 16px 0px 0 18px;
}
@media screen and (max-width: 767px) {
  article.top section.login_area div.container div.col.span_24 div.counter div {
    width: auto;
    text-align: center;
    padding: 16px 0px 0 0px;
  }
}
article.top section.login_area div.container div.col.span_24 div.counter div img.icon_bg {
  background: #fff;
  border-radius: 100%;
  padding: 7px;
  float: left;
  margin: 8px 8px 0 0;
}
@media screen and (max-width: 767px) {
  article.top section.login_area div.container div.col.span_24 div.counter div img.icon_bg {
    padding: 5px;
    width: 38px;
    height: 38px;
    margin: 0 auto;
    display: block;
    float: none;
  }
}
article.top section.login_area div.container div.col.span_24 div.counter div span.green_text_s {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  article.top section.login_area div.container div.col.span_24 div.counter div span.green_text_s {
    font-size: 11px;
  }
}
article.top section.login_area div.container div.col.span_24 div.counter div p.count_artists {
  font-size: 34px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  article.top section.login_area div.container div.col.span_24 div.counter div p.count_artists {
    font-size: 20px;
    text-align: center;
  }
}
article.top section.login_area div.container div.col.span_24 div.counter div p.count_artists span {
  font-size: 14px;
}
article.top section.login_area div.container div.col.span_24 div.counter p.bar_y {
  border-left: dotted 1px #fff;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  article.top section.login_area div.container div.col.span_24 div.counter p.bar_y {
    margin: 0 17px;
  }
}
article.top section.gray_bottom {
  background: #232323;
}
article.top section.gray_bottom div.container div.bn_right {
  text-align: right;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  article.top section.gray_bottom div.container div.bn_right {
    text-align: center;
    padding-right: 0;
  }
}
article.top section.gray_bottom div.container div.bn_right img {
  max-width: 340px;
  margin-bottom: 20px;
}
@media screen and (min-width: 970px) {
  article.top section.gray_bottom div.container div.bn_right img:hover {
    cursor: pointer;
    animation: hover 0.6s forwards;
  }
}
@media screen and (max-width: 767px) {
  article.top section.gray_bottom div.container div.bn_right img {
    margin-bottom: 10px;
  }
}
article.top section.gray_bottom div.container div.bn_left {
  text-align: left;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  article.top section.gray_bottom div.container div.bn_left {
    text-align: center;
    padding-left: 0;
  }
}
article.top section.gray_bottom div.container div.bn_left img {
  margin-bottom: 20px;
  max-width: 340px;
}
@media screen and (min-width: 970px) {
  article.top section.gray_bottom div.container div.bn_left img:hover {
    cursor: pointer;
    animation: hover 0.6s forwards;
  }
}
@media screen and (max-width: 767px) {
  article.top section.gray_bottom div.container div.bn_left img {
    margin-bottom: 10px;
  }
}
article.top section.gray_bottom div.container div.bn_center {
  text-align: center;
}
article.top section.gray_bottom div.container div.bn_center ul {
  display: inline-block;
}
article.top section.gray_bottom div.container div.bn_center ul li {
  display: inline;
  padding-right: 10px;
}
article.top section.gray_bottom div.container div.bn_center ul li a {
  color: #fff;
}

article.pattern3 section.page_title {
  background: url(/img/side/page_title_bg.jpg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  article.pattern3 section.page_title div.container {
    padding: 6% 0;
  }
}
article.pattern3 section.page_title div.container h1 {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  width: 100%;
}
@media screen and (max-width: 767px) {
  article.pattern3 section.page_title div.container h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  article.pattern3 section.page_title div.container h1 {
    margin: 0;
    text-align: center;
  }
}
article.pattern3 section div.container strong {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  article.pattern3 section div.container strong {
    font-size: font_size_small_sp;
  }
}
article.pattern3 section div.container h2 {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0px;
  color: #515151;
  margin-bottom: 20px;
  border-radius: 2px;
  display: inline-block;
  border-bottom: 2px solid #3fbb97;
  border-image: linear-gradient(to right, #45b897 0%, #ccd996 100%);
  border-image-slice: 1;
}
@media screen and (max-width: 767px) {
  article.pattern3 section div.container h2 {
    font-size: 18px;
  }
}
article.pattern3 section div.container ul {
  margin-bottom: 20px;
}
article.pattern3 section div.container ul li {
  padding: 4px 0;
}
article.pattern3 section div.container dd p.top_terms {
  text-align: center;
}

.terms ol {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}
.terms ul {
  list-style-type: lower-latin;
  padding-left: 25px;
}
.terms .f_right {
  float: right;
  text-align: right;
}
.terms .t_ttl {
  color: #2bb393;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .terms .t_ttl {
    font-size: 26px;
  }
}

article.pattern1 section.page_title_1 {
  background: url(/img/side/page_title_bg.jpg);
  background-size: cover;
  background-position: 0px;
}
article.pattern1 section.page_title_1 div.container h1 {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 0 16%;
}
@media screen and (max-width: 767px) {
  article.pattern1 section.page_title_1 div.container h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  article.pattern1 section.page_title_1 div.container h1 {
    text-align: center;
    margin: 0;
  }
}
article.pattern1 section.page_title_1 div.container div.manager_talk {
  margin-bottom: 20px;
  width: 90%;
  text-align: center;
  margin: 0 auto;
}
article.pattern1 section.page_title_1 div.container div.manager_talk p.balloon {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2vw;
  padding: 10px 10px 10px 15px;
  width: 80%;
  float: left;
  margin: 0;
  position: relative;
  margin-bottom: 40px;
  margin-bottom: 0;
}
article.pattern1 section.page_title_1 div.container div.manager_talk p.balloon:before {
  left: -15px;
  content: "";
  display: block;
  top: 0;
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 56px 30px 0;
  border-color: transparent #fff transparent transparent;
}
@media screen and (max-width: 767px) {
  article.pattern1 section.page_title_1 div.container div.manager_talk p.balloon {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 2vw;
    padding: 10px 10px 10px 15px;
    width: 100%;
    float: left;
    margin: 0;
    position: relative;
    margin-bottom: 40px;
    margin: 0 0 30px 0;
  }
  article.pattern1 section.page_title_1 div.container div.manager_talk p.balloon:before {
    border: 10px solid transparent;
    border-bottom-color: #fff;
    border-top-width: 0;
    top: -9px;
    content: "";
    display: block;
    left: 48%;
    position: absolute;
    width: 0;
    z-index: 1;
  }
  article.pattern1 section.page_title_1 div.container div.manager_talk p.balloon:after {
    border: 10px solid transparent;
    border-bottom-color: #d9d9d9;
    border-top-width: 0;
    top: -10px;
    content: "";
    display: block;
    left: 48%;
    position: absolute;
    width: 0;
  }
}
article.pattern1 section.page_title_1 div.container div.manager_talk div.manager_info {
  width: 100px;
  text-align: center;
  font-size: 14px;
  float: left;
  margin: 0 0 0 10px;
}
@media screen and (max-width: 767px) {
  article.pattern1 section.page_title_1 div.container div.manager_talk div.manager_info {
    margin: 0;
    width: 100%;
  }
}

article.pattern2 section div.container div.col.span_18 form div.form__body dl dt .question_icon {
  background-image: url(/img/common/question.svg);
  background-color: #BBBBBB;
  background-repeat: no-repeat;
  background-position: 4px;
  background-size: 14px;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  text-align: center;
  color: #fff;
  border: 2px solid #EAEAEA;
  display: inline-block;
  margin: 0px 0 -4px 4px;
  vertical-align: top;
}
article.pattern2 section div.container div.col.span_18 form div.form__body dl dt label .question_icon {
  background-image: url(/img/common/question.svg);
  background-color: #BBBBBB;
  background-repeat: no-repeat;
  background-position: 4px;
  background-size: 14px;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  text-align: center;
  color: #fff;
  border: 2px solid #EAEAEA;
  display: inline-block;
  margin: 0px 0 -4px 4px;
  vertical-align: top;
}
article.pattern2 section div.container div.col.span_18 form div.form__body dl dd.select label {
  display: inline-block;
  padding: 0 20px 0;
}
article.pattern2 section div.container div.col.span_18 form div.form__body dl dd.size {
  width: 140px;
  display: inline-block;
}
article.pattern2 section div.container div.col.span_18 form div.form__body a.show_popup {
  display: block;
  margin-bottom: 10px;
}

input[type=radio] + label::before {
  display: none;
}

input[type=radio]:checked + label::after {
  display: none;
}

div.tab_area {
  /* ログイン選択時 */
  /* 新規登録選択時 */
}
div.tab_area div.tab_bt {
  width: 100%;
  background: #2bb393;
}
div.tab_area div.tab_bt ul.login {
  display: inline-block;
  width: 50%;
}
div.tab_area div.tab_bt ul.login a {
  text-decoration: none;
}
div.tab_area div.tab_bt ul.login a li {
  background: #78CEBA;
  border: none !important;
  color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 19px 0;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}
div.tab_area div.tab_bt ul.login a li:hover {
  opacity: 0.8;
}
div.tab_area div.tab_bt ul.signup {
  display: inline-block;
  width: 50%;
  float: left;
}
div.tab_area div.tab_bt ul.signup a {
  text-decoration: none;
}
div.tab_area div.tab_bt ul.signup a li {
  background: #78CEBA;
  border: none !important;
  color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 19px 0;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}
div.tab_area div.tab_bt ul.signup a li:hover {
  opacity: 0.8;
}
div.tab_area div.tab_form {
  min-height: 340px;
}
@media screen and (max-width: 767px) {
  div.tab_area div.tab_form {
    min-height: 350px;
  }
}
div.tab_area div.tab_form form .form__body {
  width: 100%;
  padding: 15px 15px 0 15px;
}
@media screen and (max-width: 767px) {
  div.tab_area div.tab_form form .form__body {
    padding: 5px 5px 0;
  }
}
div.tab_area div.tab_form form .form__body dl {
  padding-bottom: 0;
}
div.tab_area div.tab_form form .form__body dd {
  margin-bottom: 20px;
}
div.tab_area div.tab_form form .form__body .form__textArea_size {
  font-size: 16px;
  background: #F7F7F7;
}
div.tab_area div.tab_form form .form__body ul {
  text-align: center;
}
@media screen and (max-width: 767px) {
  div.tab_area div.tab_form form .form__body ul .bt {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
div.tab_area div.tab_form form .form__body ul .bt .submit_bt {
  width: 80%;
}
@media screen and (max-width: 767px) {
  div.tab_area div.tab_form form .form__body ul .bt .submit_bt {
    width: 100%;
  }
}
div.tab_area.login_on div.tab_bt ul.login a li {
  background: #fff;
  padding: 19px 0;
  border-radius: 10px 10px 0 0;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  color: #2bb393;
  border-top: 1px solid #CACACA;
  border-left: 1px solid #CACACA;
  border-right: 1px solid #CACACA;
}
div.tab_area.login_on div.tab_form form .form__body dl dd .alphabet {
  display: none;
}
div.tab_area.login_on div.tab_form form .form__body dl dd p.top_terms {
  display: none;
}
div.tab_area.login_on div.tab_form form .form__body dl dd p.text_info_on a.pass_subinfo {
  text-align: right;
  display: block;
}
div.tab_area.login_on div.tab_form form .form__body dl .top_bt1 {
  display: none;
}
div.tab_area.signup_on div.tab_bt ul.signup a li {
  background: #fff;
  padding: 19px 0;
  border-radius: 10px 10px 0 0;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  color: #2bb393;
  border-top: 1px solid #CACACA;
  border-left: 1px solid #CACACA;
  border-right: 1px solid #CACACA;
}
div.tab_area.signup_on div.tab_form form .form__body dl dd p.text_info_on a.pass_subinfo {
  display: none;
}
div.tab_area.signup_on div.tab_form form .form__body dl dd.terms_area {
  margin-bottom: 10px;
}
div.tab_area.signup_on div.tab_form form .form__body dl dd.terms_area p.top_terms {
  font-size: 12px;
  padding: 0;
  text-align: center;
}
div.tab_area.signup_on div.tab_form form .form__body dl .top_bt2 {
  display: none;
}

@-webkit-keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 0;
  }
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  60% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes tf_scroll {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(13px);
  }
  50% {
    transform: translateY(-13px);
  }
  75% {
    transform: translateY(13px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-moz-keyframes tf_scroll {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(13px);
  }
  50% {
    transform: translateY(-13px);
  }
  75% {
    transform: translateY(13px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-o-keyframes tf_scroll {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(13px);
  }
  50% {
    transform: translateY(-13px);
  }
  75% {
    transform: translateY(13px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-ms-keyframes tf_scroll {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(13px);
  }
  50% {
    transform: translateY(-13px);
  }
  75% {
    transform: translateY(13px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes tf_scroll {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(13px);
  }
  50% {
    transform: translateY(-13px);
  }
  75% {
    transform: translateY(13px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation: fadeInUp;
  animation: fadeInUp 2s;
}

.index_pp {
  color: #000000;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  padding: 5px;
  margin-top: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .index_pp {
    margin-bottom: 30px;
  }
}

.counter-area {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .counter-area {
    padding: 60px 0 0px;
    background: #f4f7fa;
  }
}
.counter-area ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff;
  margin-top: -100px;
  border-radius: 10px;
  width: 100%;
  padding: 35px 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .counter-area ul {
    padding: 35px 15px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1038px) {
  .counter-area ul {
    transform: scale(0.9);
  }
}
.counter-area ul li {
  padding: 0px 2.8%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .counter-area ul li {
    border: 1px solid #ffdac3;
    width: 50%;
    padding: 20px 0;
  }
}
@media screen and (min-width: 767px) and (max-width: 1038px) {
  .counter-area ul li {
    padding: 0px 1%;
  }
}
.counter-area ul li img {
  margin-bottom: 6px;
  width: 60px;
}
@media screen and (max-width: 767px) {
  .counter-area ul li img {
    width: 50px;
  }
}
.counter-area ul li .counter-area__text {
  text-align: center;
}
.counter-area ul li .counter-area__text h2 {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: -6px;
}
@media screen and (max-width: 767px) {
  .counter-area ul li .counter-area__text h2 {
    font-size: 16px;
    margin-bottom: -15px;
  }
}
.counter-area ul li .counter-area__text b {
  font-size: 46px;
  font-weight: 700;
  color: #FF873C;
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .counter-area ul li .counter-area__text b {
    font-size: 46px;
  }
}
.counter-area ul li .counter-area__text b .odometer {
  font-size: 46px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: -15px;
  margin-right: 3px;
}
@media screen and (max-width: 767px) {
  .counter-area ul li .counter-area__text b .odometer {
    font-size: 32px;
    margin-bottom: -21px;
  }
}
.counter-area ul li .counter-area__text b .text {
  color: #FF873C;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .counter-area ul li .counter-area__text b .text {
    font-size: 15px;
  }
}
.counter-area ul li:nth-child(1) {
  border-top: none;
  border-left: none;
  padding-top: 0;
}
.counter-area ul li:nth-child(2) {
  border-top: none;
  border-right: none;
  border-left: none;
  padding-top: 0;
}
.counter-area ul li:nth-child(3) {
  border-top: none;
  border-bottom: none;
  border-left: none;
  padding-bottom: 0;
}
.counter-area ul li:nth-child(4) {
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-left: none;
  padding-bottom: 0;
}

.link_area {
  position: relative;
  overflow: hidden;
  float: right;
  margin-right: 10px;
  font-weight: 700;
  text-decoration: none !important;
  color: #3D4755 !important;
}
@media screen and (max-width: 767px) {
  .link_area {
    margin-bottom: 50px;
    margin-right: 10%;
  }
}
.link_area .arrow {
  border: 2px solid #3D4755;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 3px;
}
.link_area .arrow .arrow_body {
  top: 15px;
  position: absolute;
  right: 11px;
}
.link_area .arrow .arrow_body svg {
  opacity: 1;
  width: 22px;
  height: 10px;
  position: relative;
  top: -3px;
  fill: #3D4755;
  transition: transform 0.4s, opacity 0.4s;
}

.link_area:hover .arrow_body svg {
  opacity: 0;
  transform: translateX(10px) translateY(0) translateZ(0);
}

.link_area:hover .arrow_body svg:last-child {
  opacity: 1;
  transform: translateX(0) translateY(0) translateZ(0);
}

.link_area .arrow_body svg:last-child {
  position: absolute;
  top: 3px;
  left: 0;
  opacity: 0;
  transform: translateX(-10px) translateY(0) translateZ(0);
}

.img_size_thumb {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .img_size_thumb {
    max-width: 100%;
  }
}

.form_bottom {
  font-size: 14px;
  color: #2CB393;
  cursor: pointer;
  letter-spacing: 0;
  transition: all 0.2s ease;
  display: table;
  margin: 0 auto;
}
.form_bottom:hover {
  opacity: 0.5;
}
.form_bottom p {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
}

.top .signup_form_area.form_area_tab {
  padding: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top .signup_form_area.form_area_tab {
    margin-top: 0;
  }
}
.top .signup_form_area.form_area_tab .tab_form .form__body {
  padding: 50px 15px 0 15px;
}

.tab_area.login_on .tab_bt .login a li {
  opacity: 1;
}
.tab_area.login_on .tab_bt .login a li:hover {
  opacity: 1;
}

.tab_area.signup_on .tab_bt .signup a li {
  opacity: 1;
}
.tab_area.signup_on .tab_bt .signup a li:hover {
  opacity: 1;
}

.top_about {
  padding: 3% 0;
  background: url("/img/top/bg_about.svg") #F4F7FA !important;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top_about {
    padding: 6% 0;
  }
}
.top_about h3 br {
  display: none;
}
@media screen and (max-width: 767px) {
  .top_about h3 br {
    display: block;
  }
}
.top_about ul {
  margin-top: -20px;
  justify-content: center;
  gap: 20px 6%;
}
@media screen and (max-width: 767px) {
  .top_about ul {
    margin-top: 10px;
  }
}
.top_about ul li {
  background: #fff;
  padding: 20px 30px;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1607843137);
  border-radius: 100px;
  max-width: 470px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .top_faq {
    padding: 10% 4% 0;
  }
}
.top_faq .container {
  padding: 4% 2%;
}
@media screen and (max-width: 767px) {
  .top_faq .container {
    padding: 4% 0;
  }
}
.top_faq .container h3 {
  text-align: center;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  font-size: 38px;
  font-weight: 700;
  color: #2bb393;
  padding-bottom: 25px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top_faq .container h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_faq .container h3 {
    margin-bottom: 10px;
    font-size: 26px;
  }
}
.top_faq .container ul .qa_item {
  position: relative;
}
.top_faq .container ul .qa_item .question {
  background: #F4F7FA;
  padding: 20px 34px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top_faq .container ul .qa_item .question {
    font-size: 16px;
    display: flex;
    padding: 15px 30px 15px 10px;
    margin-bottom: 20px;
  }
}
.top_faq .container ul .qa_item .question::before {
  content: "Q";
  font-size: 26px;
  font-weight: 800;
  display: inline-block;
  color: #2bb393;
  margin-right: 25px;
}
@media screen and (max-width: 767px) {
  .top_faq .container ul .qa_item .question::before {
    margin-right: 10px;
    font-size: 22px;
    margin-top: -3px;
  }
}
.top_faq .container ul .qa_item .answer {
  font-size: 16px;
  padding: 0px 34px;
  margin-bottom: 40px;
  line-height: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top_faq .container ul .qa_item .answer {
    font-size: 14px;
    padding: 0px 20px;
  }
}

.bt_toggle {
  position: absolute;
  right: 54px;
  top: 37px;
  display: block;
}
@media screen and (max-width: 767px) {
  .bt_toggle {
    right: 26px;
    top: 26px;
    transform: scale(0.8);
  }
}

.bt_toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  display: block;
  background: #6d6d6d;
  z-index: 1;
}

.bt_toggle span + span {
  position: absolute;
  top: -9px;
  right: -11px;
  width: 2px;
  height: 20px;
  display: block;
  background: #6d6d6d;
  transition: all 0.2s ease;
}

.bt_toggle span + span::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 2px;
  background: #f4f7fa;
  top: 7px;
}

.bt_toggle.active span + span {
  transform: rotate(90deg);
  z-index: 0;
}

.top_what {
  background: #2bb393;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_what {
    padding: 30px 0 0;
  }
}
.top_what h2 {
  text-align: center;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 25px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top_what h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_what h2 {
    font-size: 26px;
    margin-bottom: 0;
  }
}
.top_what .items a:hover {
  opacity: 0.7;
  transition: all 0.2s ease;
}

.swiper-container {
  width: 100%;
  padding: 0 20%;
  box-sizing: border-box;
}

.slider,
.thumbnail {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.swipe {
  position: relative !important;
  width: 100%;
  max-width: 90%;
}

.swiper-button-next,
.swiper-button-prev {
  width: 60px !important;
  height: 60px !important;
  border-radius: 100px;
  background: #36ceaa;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

.swiper-button-next {
  right: 10px !important;
  left: auto;
  top: 11% !important;
}

.swiper-button-prev {
  left: auto !important;
  right: 90px !important;
  top: 11% !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.8;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.4 !important;
}

.swiper-button-next::after {
  content: "";
  background: url("/img/top/arrow_right_swiper.svg") no-repeat;
  display: block;
  background-size: contain;
  width: 20px;
  height: 12px;
}

.swiper-button-prev::after {
  content: "";
  background: url("/img/top/arrow_left_swiper.svg") no-repeat;
  display: block;
  background-size: contain;
  width: 20px;
  height: 12px;
}

.swiper-container-horizontal > .swiper-scrollbar {
  height: 1px;
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  background: #59ccb1;
  height: 1px;
  width: 60%;
  left: 50%;
}

.swiper-scrollbar-drag {
  background: #22977b !important;
  height: 6px;
  top: -2px;
}

.slick-active {
  opacity: 0.4;
}

.slick-current {
  opacity: 1;
}

.slick-slide {
  width: 100%;
}

.slider-body .detail {
  margin: 0 auto 60px;
}

@media screen and (max-width: 767px) {
  .swiper-slide a:hover {
    opacity: 1 !important;
  }
}