@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

body, h1, h2, h3, h4, h5, p, table, th, td, li, 
div, a, input {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #666;
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
a, button, input[type="submit"], input[type="button"] {
  cursor: pointer;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
body, h1, h2, h3, h4, h5, p, table, th, td, li, 
div, span, a, input, select, form {
  z-index: 5;
}
input, textarea, select {
  -webkit-appearance: none;
  outline: none;
}
body {
  background: #fff;
}
@keyframes tenmetsu {
    0% {
        background-image:  radial-gradient(#fff8e3 3px, transparent 3px), radial-gradient(#fff8e3 3px, #ffffff 3px);

    }
    100% {
        background-image:  radial-gradient(#fff 3px, transparent 3px), radial-gradient(#fff 3px, #ffffff 3px);
    }
}
.header {
  width: 100%;
  padding: 0 2%;
  box-sizing: border-box;
  height: 80px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.header select {
  border: 1px solid rgb(237,115,83);
  padding: 8px;
  border-radius: 3px;
}
.header select:focus {
  border: 1px solid rgb(245, 198, 186);
}
.header input[type="text"] {
  border: 1px solid rgb(237,115,83);
  margin-top: 12px;
  padding: 8px;
  border-radius: 3px;
  text-align: left;
}
.header input[type="text"]:focus {
  border: 1px solid rgb(245, 198, 186);
}
.header button {
  border: none;
  background: linear-gradient(rgb(237,115,83), rgb(230,8,22));
  color: #fff;
  padding: 8px;
  border-radius: 3px;
  cursor: pointer;
}
.header img {
  float: left;
  width: 200px;
}
.header span {
  float: right;
  margin-top: 10px;

}
.header2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  padding: 5px 2%;
  box-sizing: border-box;
  width: 100%;
  height: 90px;
  background: #e47a8c;
}
.header_left {
  width: 30%;
  text-align: center;
  visibility: hidden;
}
.title {
  width: 33%;
}
.logo {
  max-width: 200px;
}
.links {
  width: 32%;
  text-align: right;
  box-sizing: border-box;
  padding-top: 12px;
  padding-right: 2%;
}
.btn_list {
  display: inline-block;
  line-height: 40px;
  padding: 4px 8px;
  background: #fff;
  color: #7aa7e4;
  border: 2px solid #7aa7e4;
  outline: 4px solid #fff;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s;
  overflow: hidden;
}
.btn_list.green {
  color: #72b275;
  border-color: #72b275;
}
/*マウスオン時、現在表示中(current)、共通設定*/
.btn_list:hover {
	filter: brightness(1.1);
}

@media(max-width:767px) {
  .header2 {
    height: 45px;
    /* display: block; */
    padding: 0;
  }
  .header_left {
    width: 40%;
    text-align: left;
    visibility: visible;
  }
  .title {
    display: none;
  }
  .logo {
    max-width: 112px;
  }
  .links {
    width: 60%;
    margin-left: auto;
    padding-top: 10px;
    padding-right: 2%;
  }
  .btn_list {
    line-height: 20px;
    padding: 2px 4px;
    border-width: 1px;
    outline: 2px solid #fff;
    font-size: 12px;
  }
  .btn_list::after {
    border-bottom: none;
  }
}

.cushion {
  width: 97%;
  height: 20px;
  margin: 0 auto 30px;
  border-bottom: 1px solid rgb(230,8,22);
  padding-bottom: 3px;
}
.cushion p {
  text-align: left;
  color: rgb(229, 191, 40);
}
.flex {
  display: flex;
}
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.flex .container {
  width: 85%;
}
.search {
  width: 15%;
  min-width: 200px;
  border-right: 1px solid #aaa;
  padding: 5px;
  box-sizing: border-box;
}
.direct {
  margin-bottom: 30px;
}
.category ul {
  padding: 0;
}
.category li {
  text-align: left;
  font-size: 14px;
  margin-bottom: 3px;
}
.category li a {
  cursor: pointer;
}
.category li a:hover {
  color: rgb(230,8,22);
}
.count {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}
.count {
  font-size: 15px;
}
.no_count {
  margin-top: 200px;
  margin-bottom: 200px;
  color: #fff;
}
.items {
  margin: 0 auto;
  width: 98.5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  min-height: 700px;
}
.item {
  width: 24.3%;
  height: 540px;
  padding: 20px 10px;
  box-sizing: border-box;
  border-radius: 0;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.9);
}
@media(min-width:768px) {
  .list .items {
    width: 88%;
  }
  .list .item {
    width: 24%;
    height: 450px;
  }
}
.hidden {
  visibility: hidden;
}
@media(max-width:767px) {
  .items {
    width: 98%;
  }
  .item {
    width: 49%;
    height: 460px;
    padding: 10px 2px;
    background: none;
    border-radius: 0;
  }
}
/* .items::after {
  display: block;
  content: "";
  width: 23%;
  margin: 0 auto;
} */
.up_frame {
  max-width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
}
.up_frame img {
  width: 100%;
  max-height: 250px;
  margin-top: auto;
  margin-bottom: auto;
  object-fit: contain;
}
@media(max-width:767px) {
  .up_frame {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
  .up_frame img {
    width: 100%;
    height: auto;
  }
}
.down_frame {
  margin-top: 10px;
}
.down_frame a {
  border: none;
  border-radius: 2px;
  padding: 3px 6px;
  font-size: 14px;
  background: linear-gradient(rgb(246, 225, 162), rgb(234, 191, 63));
  color: #fff;
}
.product_name {
  color: #e47a8c;
  margin-bottom: 5px;
  height: 44px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  word-wrap: break-word;
}
.product_name.resize {
  font-size: 14px;
}
.product_explain {
  margin-bottom: 5px;
  text-align: left;
  font-size: 14px;
  height: 69px;
  width: 100%;
  word-wrap: break-word;
  overflow-y: hidden;
  transition: 1s;
}
.product_explain.mouseover {
  height: auto;
  overflow-y: visible;
}
.orders {
  padding-left: 4%;
  padding-right: 4%;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
}
.orders_left {
  width: 50%;
  text-align: left;
}
.orders_right {
  width: 50%;
  text-align: right;
}
@media(max-width:767px) {
  .orders {
    padding-left: 1%;
    padding-right: 1%;
  }
  .orders_left {
    width: 30%;
  }
  .orders_right {
    width: 70%;
  }
}
.product_price {
  font-size: 15px;
  margin-bottom: 5px;
}
.orders.hide,
.product_price.hide {
  visibility: hidden;
  pointer-events: none;
}
.span_left {
  float: left;
  margin-left: 5%;
}
.span_right {
  float: right;
  margin-right: 5%;
  font-size: 16px;
  font-weight: bold;
  color: #e47a8c;
}
.change_orders_num {
  width: 16%;
  border: 1px solid #a5a296;
}
.orders_number {
  width: 32%;
  border: 1px solid #a5a296;
  padding: 1px;
}
.input_num {
  font-size: 15px;
}
.cart_in {
  border: none;
  font-size: 13px;
  padding: 2px 6px;
  background: #e47a8c;
  color: #fff;
  border: none;
  transition: 0.4s;
}
.cart_in:hover {
  opacity: 0.7;
}
@media(max-width:767px) {
  .product_name {
    font-size: 15px;
    height: 63px;
  }
  .product_explain {
    font-size: 13px;
    height: 80px;
  }
  .span_left, .span_right {
    font-size: 14px;
  }
  .span_left {
    margin-left: 1%;
  }
  .span_right {
    margin-right: 1%;
  }
  .orders_number {
    width: 40%;
  }  
  .ko {
    font-size: 14px;
  }
  .cart_in {
    font-size: 12px;
    padding: 2px 4px;
  }

}
.cart_delete {
  border: none;
  font-size: 13px;
  padding: 2px 6px;
  background: #f0a85a;
  color: #fff;
  border: none;
  transition: 0.4s;
}
.cart_delete:hover {
  opacity: 0.7;
}

.sort {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
.sort select {
  float: right;
  padding: 2px 4px;
}

.footer2 {
  width: 100%;
  height: 80px;
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
}
.footer2 input[name="btn_order"] {
  background: #e47a8c;
  color: #fff;
  border: none;
  transition: 0.4s;
  padding: 7px 14px;
  margin-top: 22px;
  cursor: pointer;
}
.footer2 input[name="btn_order"]:hover {
  opacity: 0.7;
}
.footer2 input[name="btn_clear"] {
  background: #f0a85a;
  color: #fff;
  border: none;
  transition: 0.4s;
  padding: 7px 14px;
  margin-top: 22px;
  cursor: pointer;
}
.footer2 input[name="btn_clear"]:hover {
  opacity: 0.7;
}
@media(max-width:767px) {
  .footer2 {
    height: 60px;
  }
  .footer2 input[name="btn_order"],
  .footer2 input[name="btn_clear"] {
    margin-top: 14px;
    margin-bottom: 14px;
  }
}
.order {
  margin: 50px auto;
}
.order table {
  width: 80%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}
.order th,
.order td {
  border-left: 1px solid #666;
  border-top: 1px solid #666;
  padding: 8px;
  color: #666;
}
.order th:last-child,
.order td:last-child {
  border-right: 1px solid #666;
}
.order tr:last-child td {
  border-bottom: 1px solid #666;
}
.order th {
  background: #fff;
}
/* .order th:first-child {
  border-radius: 5px 0 0 0;
}
.order th:last-child {
  border-radius: 0 5px 0 0;
}
.order tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
.order tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
} */
@media(max-width:767px) {
  .order table {
    width: 99%;
  }
  .order th, .order td {
    padding: 2px 4px;
  }
  .order td {
    font-size: 14px;
  }
}

.item_name {
  text-align: left;
}
.order b {
  color: #e47a8c;
}
.money {
  text-align: right;
}
#grand_text {
  font-weight: 600;
  color: #e47a8c;
}
.banking {
  background: #fff;
  border: 2px solid #e47a8c;
  color: #e47a8c;
  padding: 4px 8px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 0;
  transition: 0.4s;
}
.banking:hover {
  opacity: 0.7;
}

.applications {
  width: 85%;
  margin: 30px auto;
  padding: 30px 3%;
  box-sizing: border-box;
  background: #fff;
  border: none;
  line-height: 30px;

}
.form_p {
  margin: 0 auto 20px;
}
.application {
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 22px 2% 0;
  text-align: right;
  color: #666;
  border-top: 1px solid #ccc;
  box-sizing: border-box;
}
.application.for_address {
  height: 100px;
}
.application:last-of-type {
  height: 110px;
  border-bottom: 1px solid #ccc;
}
.application label {
  float: left;
  color: #666;
  font-weight: bold;
}
@media(max-width:767px) {
  .applications {
    width: 99%;
    padding: 20px 2%;
    font-size: 15px;
  }
  .application {
    width: 100%;
    font-size: 15px;
  }
}

.up_side_mark {
  float: right;
}
.application input {
  border: 1px solid #666;
  padding: 2px;
  box-sizing: border-box;
  width: 60%;
  float: right;
  text-align: left;
  color: #666;
}
.application .up_side {
  width: 30%;
}
.application .left_side {
  width: 25%;
  float: left;
}
.application .right_side {
  width: 74%;
  float: right;
}
.application textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #666;
  color: #666;
}
.new_item_p {
  margin: 10px auto;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.hearing .new_item_p {
  margin-bottom: 30px;
}
.new_item_frame {
  width: 70%;
  margin: 5px auto 30px;
  padding-bottom: 20px;
  background: linear-gradient(150deg,#fffdfd, #f4eeee);
  border-radius: 4px;
}
.new_item {
  width: 100%;
  height: 300px;
  display: flex;
  padding: 5px;
  box-sizing: border-box;
}
.new_item .left {
  width: 45%;
  /* border: 1px solid rgb(230,8,22); */
}
.new_img img {
  display: block;
  max-width: 64%;
  max-width: 260px;
  margin: 20px auto;
  max-height: 180px;
  object-fit: contain;
  background: #fff;
}
.new_img img.hide {
  visibility: hidden;
}
.new_upload label {
  border: none;
  border-radius: 2px;
  background: linear-gradient(rgb(242, 152, 129), rgb(234, 63, 74));
  color: #fff;
  padding: 4px 8px;
  cursor: pointer;
}
.up_item_frame .new_upload label {
  font-size: 13px;
  margin-right: 2%;
}
.new_upload label input {
  display: none;
}
#select_img {
  display: none;
}
.new_item .left input[type="button"] {
  display: inline-block;
  /* margin-top: 20px; */
  border: none;
  border-radius: 2px;
  background: linear-gradient(rgb(246, 225, 162), rgb(234, 191, 63));
  color: #fff;
  padding: 4px 8px;
  cursor: pointer;
}
.new_item .right {
  width: 55%;
  /* border: 1px solid rgb(230,8,22); */
  border-left: none;
  padding: 5px;
  box-sizing: border-box;
}
.new_item .right p {
  text-align: left;
  margin-top: 6px;
  color: #888;
}
.new_item .right input[type="text"] {
  width: 90%;
  border: 1px solid #888;
  padding: 3px;
  box-sizing: border-box;
  text-align: left;
}
.new_item .right input[type="text"].input30,
.new_item .right input[type="tel"] {
  width: 30%;
  border: 1px solid #888;
  padding: 3px;
  box-sizing: border-box;
  text-align: right;
}
.new_item .right input[type="text"].input15,
.new_item .right input[type="number"].input15 {
  width: 15%;
  border: 1px solid #888;
  padding: 3px;
  box-sizing: border-box;
  text-align: right;
}
.new_item .right select {
  width: 10%;
  border: 1px solid #888;
  padding: 3px;
  box-sizing: border-box;
  text-align: right;
}
.new_item .right textarea {
  width: 90%;
  padding: 3px;
  box-sizing: border-box;
  border: 1px solid #888;
  text-align: left;
}
.btn_register input {
  border: none;
  padding: 4px 8px;
  border-radius: 2px;
  background: linear-gradient(rgb(242, 152, 129), rgb(234, 63, 74));
  color: #fff;
}
#btn_delete {
  border: none;
  padding: 4px 8px;
  border-radius: 2px;
  background: linear-gradient(rgb(246, 225, 162), rgb(234, 191, 63));
  color: #fff;
}
.store_information {
  width: 50%;
  margin: 30px auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
}
.store_information th {
  width: 40%;
  border-top: 1px solid rgb(237,115,83);
  border-left: 1px solid rgb(237,115,83);
  border-right: 1px solid rgb(237,115,83);
  padding: 6px;
  box-sizing: border-box;
  background: linear-gradient(rgb(237,115,83), rgb(230,8,22));
  color: #fff;
  text-align: right;
}
.store_information tr:first-child th {
  border-radius: 5px 0 0 0;
}
.store_information td {
  width: 60%;
  border-top: 1px solid rgb(237,115,83);
  border-right: 1px solid rgb(237,115,83);
  padding: 6px;
  box-sizing: border-box;
  text-align: left;
}
.store_information tr:first-child td {
  border-radius: 0 5px 0 0;
}

.store_information tr:last-child th {
  border-radius: 0 0 0 5px;
  border-bottom: 1px solid rgb(237,115,83);
}
.store_information tr:last-child td {
  border-radius: 0 0 5px 0;
  border-bottom: 1px solid rgb(237,115,83);
}
.btn_edit {
  border: none;
  background: linear-gradient(rgb(246, 225, 162), rgb(234, 191, 63));
  color: #fff;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 16px;
}
.btn_edit2 {
  border: 2px solid rgb(237,115,83);
  background: #fff;
  color: rgb(230,8,22);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 18px;
  font-weight: bold;
}
.store_information .for_input,
.store_information .for_input80 {
  text-align: center;
}
.store_information2 {
  width: 70%;
  margin: 40px auto;
}
.store_information2 th {
  width: 40%;
  text-align: right;
  box-sizing: border-box;
  padding-right: 5%;
  height: 40px;
}
.store_information2 th small {
  color: rgb(230,8,22);
}
.store_information2 td {
  width: 60%;
  text-align: left;
  box-sizing: border-box;
}
.for_input input[type="text"] {
  width: 98%;
  padding: 2px;
  box-sizing: border-box;
  border: 1px solid #aaa;
  border-radius: 2px;
  text-align: left;
}
.for_input80 input[type="text"] {
  width: 82%;
  padding: 2px;
  box-sizing: border-box;
  border: 1px solid #aaa;
  border-radius: 2px;
  text-align: left;
}
.for_input80 span {
  display: inline-block;
  width: 16%;
  vertical-align: bottom;
  color: #666;
  font-size: 14px;
  text-align: left;
  padding-left: 4px;
  box-sizing: border-box;
}
.for_input select {
  width: 98%;
  padding: 2px;
  box-sizing: border-box;
  border: 1px solid #aaa;
  border-radius: 2px;
  text-align: left;
}
.for_input input[type="date"] {
  width: 98%;
  padding: 2px;
  box-sizing: border-box;
  border: 1px solid #aaa;
  border-radius: 2px;
  text-align: left;
}
.store_information small {
  color: rgb(246, 225, 162);
}
.store_information2 .for_input input[type="text"],
.store_information2 .for_input80 input[type="text"],
.store_information2 .for_input select {
  padding: 4px;
}

.caution {
  color: #888;
  /* animation: blinkAnime 1.1s infinite alternate; */
}
/* @keyframes blinkAnime{
	0% { color: rgb(255, 255, 255) }
	100% { color: rgb(141, 141, 141)}
} */
.header_fix {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
.header_fix span {
  margin-top: 20px;
  margin-left: 5%;
  float: left;
}
.header_fix input[type="submit"] {
  border: none;
  border-radius: 2px;
  background: linear-gradient(rgb(237,115,83), rgb(230,8,22));
  color: #fff;
  padding: 6px 18px;
  margin-right: 5%;
  margin-top: 20px;
  float: right;
  opacity: 0.8;
}
.container.hearing {
  margin-top: 60px;
}
.container.for_upload {
  margin-top: 30px;
}
.up_item_frame {
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
}
.up_item_frame .new_item {
  height: 265px;
}
.up_item_frame .num {
  width: 10%;
}
.up_item_frame .left {
  width: 40%;
}
.up_item_frame .right {
  width: 50%;
}
.num p {
  width: 60%;
  margin: 100px auto 0;
}
@media(max-width:767px) {
  .new_item_p {
    font-size: 27px;
  }
  .up_item_frame .new_item {
    height: 480px;
  }
  .up_item_frame p,
  .up_item_frame span {
    font-size: 15px;
  }
  .new_item {
    flex-wrap: wrap;
  }
  .up_item_frame .num {
    width: 30%;
  }
  .up_item_frame .num p {
    width: 100%;
    margin: 20px 0 0;
  }
  .up_item_frame .left {
    width: 70%;
  }
  .up_item_frame .left .new_img img {
    max-width: 160px;
    max-height: 160px;
  }
  .up_item_frame .right {
    width: 100%;
  }
  .up_item_frame .new_item .right input[type="text"] {
    width: 100%;
    padding: 2px;
  }
  .up_item_frame .new_item .right input[type="text"].input15 {
    width: 15%;
  }
  .up_item_frame .new_item .right select {
    padding: 2px;
  }
  .up_item_frame .new_item .right textarea {
    width: 100%;
    padding: 2px;
  }
}

.space10 {
  height: 10px;
}
.space20 {
  height: 20px;
}
.space30 {
  height: 30px;
}
.space40 {
  height: 40px;
}
.space50 {
  height: 50px;
}
.ec_title {
  font-size: 23px;
  color: #777;
  margin-bottom: 10px;
}
.maruuke_link {
  background: linear-gradient(rgb(237,115,83), rgb(230,8,22));
  color: #fff;
  padding: 4px 8px;
  border-radius: 3px;
}
.preparation {
  font-size: 18px;
  color: rgb(230,8,22);
}
input[name="shop"] {
  appearance: auto;
}
input[name="change_flag"] {
  border: none;
  background: linear-gradient(rgb(246, 225, 162), rgb(234, 191, 63));
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
}
.form_flag {
  margin: 0;
}
.to_trading_law {
  display: inline-block;
  width: fit-content;
  margin: 30px auto 0;
  color: rgb(185, 142, 61);
  font-weight: 600;
  transition: 0.5s;
}
.to_trading_law:hover {
  opacity: 0.7;
}
.law_label {
  margin: 20px auto;
  font-size: 18px;
  font-weight: bold;
}
.law_table {
  width: 66%;
  margin: 40px auto 0;
  padding: 20px 0;
  background: rgb(253, 248, 235);
}
.law_table th {
  width: 35%;
  color: rgb(201, 133, 60);
  padding: 5px;
  box-sizing: border-box;
}
.law_table td {
  width: 65%;
  text-align: left;
  padding-left: 5%;
  box-sizing: border-box;
}
@media(max-width:767px) {
  .law_table {
    width: 100%;
    background: none;
  }
  .law_table th {
    padding: 1%;
    font-size: 13px;
    width: 29%;
  }
  .law_table td {
    font-size: 13px;
    padding-left: 1%;
    width: 71%;
  }

}
.applications.confirm {
  margin-top: 0;
}
.explain {
  margin-top: 20px;
}
@media(max-width:767px) {
  .explain {
    font-size: 12px;
  }
}
.kurukuru2 {
  position: fixed;
  width: 100%;
  height: 55vh;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kurukuru2 img {
  display:inline-block;
}
.kurukuru2.hidding {
  display: none;
}
#payment-form {
  width: 85%;
  max-width: 760px;
  margin: 50px auto;
  padding: 30px 3%;
  border: 1px solid #ccc;
  background: #fff;
  box-sizing: border-box;
}
.btn_pay {
  padding: 6px 14px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 20px;
  border: 2px solid #e47a8c;
  background: #fff;
  color: #e47a8c;
  border-radius: 0;
  box-sizing: border-box;
  transition: 0.4s;
}
.btn_pay:hover {
  opacity: 0.7;
}
@media(max-width:767px) {
  #payment-form {
    width: 95%;
    margin: 40px auto;
    padding: 20px 10px;
  }
}

.postage_alert {
  font-weight: bold;
  font-size: 16px;
  animation: Anime 1s infinite alternate;
}
.blue .postage_alert {
  animation: blueAnime 1s infinite alternate;
}
.blue2 .postage_alert {
  animation: blue2Anime 1s infinite alternate;
}
.green .postage_alert {
  animation: greenAnime 1s infinite alternate;
}
.green2 .postage_alert {
  animation: green2Anime 1s infinite alternate;
}
.orange .postage_alert {
  animation: orangeAnime 1s infinite alternate;
}
.orange2 .postage_alert {
  animation: orange2Anime 1s infinite alternate;
}
.purple .postage_alert {
  animation: purpleAnime 1s infinite alternate;
}
.purple2 .postage_alert {
  animation: purple2Anime 1s infinite alternate;
}
.pink .postage_alert {
  animation: pinkAnime 1s infinite alternate;
}
.pink2 .postage_alert {
  animation: pink2Anime 1s infinite alternate;
}
@keyframes Anime{
	0% { color: rgb(254, 250, 237); }
	100% { color: #f0a85a; }
}
@keyframes redAnime{
	0% { color: rgb(247, 222, 222) }
	100% { color: rgb(230,8,22)}
}
@keyframes blueAnime{
	0% { color: rgb(218, 230, 243) }
	100% { color: rgb(35, 89, 148)}
}
@keyframes blue2Anime{
	0% { color: rgb(218, 235, 241) }
	100% { color: rgb(58, 141, 170)}
}
@keyframes greenAnime{
	0% { color: rgb(234, 242, 216) }
	100% { color: rgb(157, 192, 76)}
}
@keyframes green2Anime{
	0% { color: rgb(220, 243, 224) }
	100% { color: rgb(160, 209, 168)}
}
@keyframes orangeAnime{
	0% { color: rgb(245, 231, 219) }
	100% { color: rgb(232, 130, 42)}
}
@keyframes orange2Anime{
	0% { color: rgb(244, 239, 218) }
	100% { color: rgb(220, 181, 27)}
}
@keyframes purpleAnime{
	0% { color: rgb(242, 217, 242) }
	100% { color: rgb(143, 95, 143)}
}
@keyframes purple2Anime{
	0% { color: rgb(225, 220, 243) }
	100% { color: rgb(165, 154, 202)}
}
@keyframes pinkAnime{
	0% { color: rgb(243, 218, 228) }
	100% { color: rgb(241, 114, 163)}
}
@keyframes pink2Anime{
	0% { color: rgb(245, 222, 220) }
	100% { color: rgb(246, 151, 143)}
}

.header2, .main {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.main {
  max-width: 1350px;
}
.cushion {
  width: 97.5%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.trading_law .links {
  visibility: hidden;
  pointer-events: none;
}

#pagetop {
	position: fixed;
	bottom: 16px;
	right: 20px;
}

@media(max-width:767px) {
	#pagetop {
		bottom: 20px;
		right: 2%;
	}
}

#pagetop a {
	display: block;
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
  font-size: 1.5em;
  width: 60px;
  line-height: 60px;
  text-align: center;
	transition: 0.4s;
	border-radius: 50%;
	z-index: 10;
	text-decoration: none;
	box-sizing: border-box;
}

#pagetop a:hover {
	opacity: 0.7;
}

footer {
  font-size: 0.6em;
  background: #222;
  color: #999;
  text-align: center;
  padding: 10px 0;
}
footer a {
  color: #999;
  line-height: 2;
  transition: 0.4s;
}
footer a:hover {
  opacity: 0.7;
}