@charset "UTF-8";

main {
  padding-top: 70px;
}

@media only screen and (max-width: 640px) {
  main {
    padding-top: 45px;
  }
}

main section img {
  max-width: 100%;
}

main section p.pk,
main section span.pk,
main section b.pk,
main section li.pk,
main section dt.pk,
main section dd.pk {
  color: #ec7d73;
}

main section .content input[type=text],
main section .content input[type=tel],
main section .content input[type=email],
main section .content input[type=mail],
main section .content input[type=password],
main section .content textarea,
main section .content select {
  border: 0;
  background-color: #EEEEEE;
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-family: "\30D2\30E9\30AE\30CE\89D2\30B4\30B7\30C3\30AF   W3", "Hiragino Kaku Gothic W3", "\6E38\30B4\30B7\30C3\30AF\4F53", "Yu Gothic", YuGothic, "\30E1\30A4\30EA\30AA", Meiryo, Osaka, "\FF2D\FF33   \FF30\30B4\30B7\30C3\30AF", "MS PGothic", sans-serif;
}

@media only screen and (max-width: 640px) {
  main section .content input[type=text],
  main section .content input[type=tel],
  main section .content input[type=email],
  main section .content input[type=mail],
  main section .content input[type=password],
  main section .content textarea,
  main section .content select {
    padding: 1rem;
  }
}

main section .content .form-chk {
  display: block;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 640px) {
  main section .content .form-chk {
    margin-bottom: 1rem;
  }
}

main section .content .form-chk input[type=checkbox] {
  display: none;
}

main section .content .form-chk input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding-left: 2.2rem;
}

@media only screen and (max-width: 640px) {
  main section .content .form-chk input[type=checkbox] + span {
    padding-left: 1.6rem;
  }
}

main section .content .form-chk input[type=checkbox] + span::before {
  content: "\F0C8";
  font-family: "Font Awesome 5 Free";
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

main section .content .form-chk input[type=checkbox]:checked + span::before {
  content: "\F14A";
}

main section .content .form-radio {
  display: block;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 640px) {
  main section .content .form-radio {
    margin-bottom: 1rem;
  }
}

main section .content .form-radio input[type=radio] {
  display: none;
}

main section .content .form-radio input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding-left: 2.2rem;
  font-size: 16px;
}

@media only screen and (max-width: 640px) {
  main section .content .form-radio input[type=radio] + span {
    padding-left: 1.6rem;
  }
}

main section .content .form-radio input[type=radio] + span::before {
  content: "\F111";
  font-family: "Font Awesome 5 Free";
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

main section .content .form-radio input[type=radio]:checked + span::before {
  content: "\F192";
}

main section .content .form-radio label {
  display: inline-block;
}

main section .content .form-radio label + label {
  margin-left: 2rem;
}

main section .content .formwrap {
  max-width: 65.5%;
  margin: 0 auto;
  -webkit-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2);
  padding: 4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 640px) {
  main section .content .formwrap {
    max-width: 100%;
    width: 100%;
    padding: 1.6rem;
  }
}

main section .content .formwrap p {
  margin-bottom: 3rem;
}

@media only screen and (max-width: 640px) {
  main section .content .formwrap p {
    margin-bottom: 1.5rem;
  }
}

main section .content .formwrap button.pk {
  background-color: transparent;
}

main section .content .formwrap dl {
  width: 86%;
  margin: 0 auto;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

@media only screen and (max-width: 640px) {
  main section .content .formwrap dl {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main section .content .formwrap dl dt {
  width: 20%;
}

@media only screen and (max-width: 640px) {
  main section .content .formwrap dl dt {
    width: 100%;
  }
}

main section .content .formwrap dl dd {
  width: 78%;
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 640px) {
  main section .content .formwrap dl dd {
    width: 100%;
  }
}

main section .content .formwrap dl dd input[type=text] {
  width: 100%;
}

main section .content .formwrap dl dd p {
  margin: 0;
}

main section .content .formwrap dl dd a {
  color: #e089a4;
  text-decoration: underline;
}

main section .content .formwrap dl + dl {
  margin-top: 2rem;
}

@media only screen and (max-width: 640px) {
  main section .content .formwrap dl + dl {
    margin-top: 1rem;
  }
}

main section .content .formwrap dl + .btnwrap {
  margin-top: 2rem;
}

@media only screen and (max-width: 640px) {
  main section .content .formwrap dl + .btnwrap {
    margin-top: 1rem;
  }
}

main section .content .formwrap .btn {
  padding: 2rem 0;
  width: 59%;
}

@media only screen and (max-width: 640px) {
  main section .content .formwrap .btn {
    padding: 1rem 0;
    width: 75%;
  }
}

main section .content .formwrap + .formwrap {
  margin-top: 5rem;
}

main section.breadcrumbs {
  padding: 2rem 20px 0;
}

@media only screen and (max-width: 640px) {
  main section.breadcrumbs {
    display: none;
  }
}

main section.breadcrumbs nav {
  max-width: 1800px;
  margin: 0 auto;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

main section.breadcrumbs nav span,
main section.breadcrumbs nav a {
  display: inline-block;
}

main section.breadcrumbs nav a {
  padding-right: 1.8rem;
  position: relative;
}

main section.breadcrumbs nav a::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 0.3rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (max-width: 640px) {
  main section.title {
    padding-top: 1.5rem;
  }
}

main section.title .content h1,
main section.title .content p.ttl {
  line-height: 1.2;
}

main section.title .content h1 span,
main section.title .content p.ttl span {
  display: block;
  letter-spacing: 0.3rem;
}

main section.title .content h1 + p {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
}

main section.sec1 {
  padding: 4rem 20px 0;
}

@media only screen and (max-width: 640px) {
  main section.sec1 {
    padding: 1.5rem 10px 0;
  }
}

main section.guide {
  padding-top: 5.5rem;
  padding-bottom: 17rem;
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (max-width: 640px) {
  main section.guide {
    padding-top: 3rem;
    padding-bottom: 8rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}

main section.guide h2 {
  margin-bottom: 3.5rem;
}

@media only screen and (max-width: 640px) {
  main section.guide h2 {
    margin-bottom: 1.75rem;
    text-align: left;
  }
}

main section.guide .flexwrap {
  width: 72.5%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 640px) {
  main section.guide .flexwrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main section.guide .flexwrap a {
  display: block;
  width: 47.5%;
  margin-top: 3.5rem;
  padding: 1.6rem 0;
}

main section.guide .flexwrap a:nth-child(-n+2) {
  margin-top: 0;
}

@media only screen and (max-width: 640px) {
  main section.guide .flexwrap a:nth-child(-n+2) {
    margin-top: 0.8rem;
  }
}

@media only screen and (max-width: 640px) {
  main section.guide .flexwrap a {
    width: 100%;
    margin-top: 0.8rem;
    padding: 1rem 0;
  }

  main section.guide .flexwrap a:first-child {
    margin-top: 0;
  }
}

main section.bottom {
  background-image: url(/img/top/bg_04.jpg);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding-top: 12rem;
  padding-bottom: 5.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media only screen and (max-width: 640px) {
  main section.bottom {
    padding-top: 8rem;
    padding-bottom: 3rem;
    padding-left: 0;
    padding-right: 0;
  }
}

main section.bottom .content {
  position: relative;
}

main section.bottom .content .icon {
  width: 12%;
  background-color: #FFF;
  border-radius: 200px;
  position: absolute;
  top: -19rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (max-width: 640px) {
  main section.bottom .content .icon {
    width: 12rem;
    top: -14rem;
  }
}

main section.bottom .content .icon::before {
  content: "";
  display: block;
  padding-top: 106%;
}

main section.bottom .content .icon img {
  width: 60%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main section.bottom .content h2,
main section.bottom .content p {
  color: #FFF;
}

main section.bottom .content h2 {
  margin-bottom: 3rem;
}

@media only screen and (max-width: 640px) {
  main section.bottom .content h2 {
    margin-bottom: 1.5rem;
  }
}

main section.bottom .content .btnwrap {
  margin-top: 3.5rem;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 640px) {
  main section.bottom .content .btnwrap {
    margin-top: 1.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

main section.bottom .content .btnwrap .btn {
  width: 34.5%;
  padding: 1.6rem 0;
  margin: 0 2rem;
}

@media only screen and (max-width: 640px) {
  main section.bottom .content .btnwrap .btn {
    width: 70%;
    padding: 1rem 0;
    margin: 0;
  }

  main section.bottom .content .btnwrap .btn:nth-child(2) {
    margin-top: 1.2rem;
  }
}

main section.faqwrap {
  padding: 5rem 20px;
  background-color: #FFE8E6;
}

@media only screen and (max-width: 640px) {
  main section.faqwrap {
    padding: 3rem 10px;
  }
}

main section.faqwrap .itemlist {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 640px) {
  main section.faqwrap .itemlist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main section.faqwrap .itemlist a.btn {
  width: 31%;
  padding: 1.6rem 0;
  margin-top: 3.5rem;
  margin-right: 3.5%;
}

main section.faqwrap .itemlist a.btn:nth-child(3n) {
  margin-right: 0;
}

main section.faqwrap .itemlist a.btn:nth-child(-n+3) {
  margin-top: 0;
}

@media only screen and (max-width: 640px) {
  main section.faqwrap .itemlist a.btn:nth-child(-n+3) {
    margin-top: 0.8rem;
  }
}

@media only screen and (max-width: 640px) {
  main section.faqwrap .itemlist a.btn {
    width: 100%;
    margin-top: 0.8rem;
    margin-right: 0;
    padding: 1rem 0;
  }

  main section.faqwrap .itemlist a.btn:first-child {
    margin-top: 0;
  }
}

table.cont {
  width: 100%;
  margin: 5px auto 0 auto;
  font-size: 16px;
}

@media only screen and (max-width: 640px) {
  table.cont {
    width: 100%;
    margin: 5px auto 0 auto;
    font-size: 14px;
  }
}

table.cont th,
table.cont td {
  padding: 0.7em 1em;
  border: 1px solid #d6d6d1;
}

@media only screen and (max-width: 640px) {
  table.cont th,
  table.cont td {
    padding: 0.7em 1em;
    border: 1px solid #d6d6d1;
  }
}

table.cont th {
  background: #edbeba;
  font-weight: bold;
}

table.cont td {
  text-align: left;
}

table.cont thead th {
  background: #edbeba;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  table.cont thead th {
    background: #edbeba;
    color: #fff;
    text-align: center;
  }
}

table.cont tbody td {
  text-align: center;
}

@media only screen and (max-width: 640px) {
  table.cont tbody td {
    text-align: center;
  }
}

table.his {
  width: 100%;
  margin: 5px auto 0 auto;
  font-size: 12px;
}

@media only screen and (max-width: 640px) {
  table.his {
    width: 100%;
    margin: 5px auto 0 auto;
    font-size: 10px;
  }
}

table.his th,
table.his td {
  padding: 0.7em 1em;
  border: 1px solid #d6d6d1;
}

@media only screen and (max-width: 640px) {
  table.his th,
  table.his td {
    padding: 0.7em 1em;
    border: 1px solid #d6d6d1;
  }
}

table.his th {
  background: #edbeba;
  font-weight: bold;
}

@media only screen and (max-width: 640px) {
  table.his th {
    background: #edbeba;
    font-weight: bold;
  }
}

table.his thead th {
  background: #edbeba;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  table.his thead th {
    background: #edbeba;
    color: #fff;
    text-align: center;
  }
}

table.his thead td {
  text-align: center;
}

@media only screen and (max-width: 640px) {
  table.his thead td {
    text-align: center;
  }
}

table.post {
  width: 100%;
  margin: 5px auto 0 auto;
  font-size: 12px;
}

table.post span {
  font-size: 12px;
	margin: 0 10px 0 10px;
}

@media only screen and (max-width: 640px) {
  table.post {
    width: 100%;
    margin: 5px auto 0 auto;
    font-size: 10px;
  }
}

table.post th,
table.post td {
  padding: 0.7em 1em;
  border: 1px solid #d6d6d1;
}

@media only screen and (max-width: 640px) {
  table.post th,
  table.post td {
    padding: 0.7em 1em;
    border: 1px solid #d6d6d1;
  }
}

table.post th {
  background: #edbeba;
  font-weight: bold;
	color: #fff;
}

@media only screen and (max-width: 640px) {
  table.post th {
    background: #edbeba;
    font-weight: bold;
  }
}

table.post thead th {
  background: #edbeba;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  table.post thead th {
    background: #edbeba;
    color: #fff;
    text-align: center;
  }
}

table.post thead td {
  text-align: center;
}

@media only screen and (max-width: 640px) {
  table.post thead td {
    text-align: center;
  }
}





table.add {
  width: 100%;
  margin: 5px auto 0 auto;
  font-size: 12px;
}

table.choice {
  width: 100%;
  margin: 5px auto 0 auto;
  font-size: 10px;
}

table.choice th,
table.choice td {
  padding: 0.7em 1em;
  border: 1px solid #d6d6d1;
}

table.choice th {
  background: #fafafa;
  font-weight: bold;
}

table.choice thead th {
  background: #edbeba;
  color: #fff;
  text-align: center;
}

table.choice tbody td {
  text-align: center;
  font-size: 16px;
}

table.choice2 {
  width: 100%;
  margin: 5px auto 0 auto;
  font-size: 16px;
}

table.choice2 th,
table.choice2 td {
  padding: 0.7em 1em;
  border: 1px solid #d6d6d1;
}

table.choice2 th {
  background: #fafafa;
  font-weight: bold;
}

table.choice2 thead th {
  background: #edbeba;
  color: #000;
  text-align: center;
}

table.choice2 tbody td {
  text-align: center;
}

table.choice3 {
  width: 100%;
  margin: 5px auto 0 auto;
  font-size: 16px;
}

table.choice3 th,
table.choice3 td {
  padding: 0.7em 1em;
  border: 1px solid #d6d6d1;
}

table.choice3 th {
  background: #fafafa;
  font-weight: bold;
}

table.choice3 thead th {
  background: #edbeba;
  color: #000;
  text-align: center;
}

table.choice3 tbody td {
  text-align: center;
}

table.choice4 {
  width: 100%;
  margin: 5px auto 0 auto;
  font-size: 16px;
}

table.choice4 th,
table.choice4 td {
  padding: 0.7em 1em;
  border: 1px solid #d6d6d1;
}

table.choice4 th {
  background: #fafafa;
  font-weight: bold;
}

table.choice4 thead th {
  background: #edbeba;
  color: #000;
  text-align: center;
}

table.choice4 tbody td {
  text-align: center;
}

.box {
  padding: 0.7em 1em;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin-top: 30px;
}

.rental .btnwrap {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 640px) {
  .rental .btnwrap {
    margin-top: 1.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.rental .btnwrap .btn {
  width: 34.5%;
  padding: 1.6rem 0;
  margin: 0 2rem;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .rental .btnwrap .btn {
    width: 70%;
    padding: 1rem 0;
    margin: 0;
  }
}



.review .btnwrap {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 640px) {
  .review .btnwrap {
    margin-top: 1.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.review .btnwrap .btn {
  width: 34.5%;
  padding: 1.6rem 0;
  margin: 1rem 2rem;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .review .btnwrap .btn {
    width: 70%;
    padding: 1rem 0;
    margin:1rem 0;
  }
}


/*# 201912*/


.recommendedlist_top {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2.582%;
	padding: 2rem 0;
}

@media only screen and (max-width: 640px) {
.recommendedlist_top  {
	justify-content: space-between;
	padding: 2rem 2rem;
	margin: 0;
}
}
.recommendedlist_top .item {
	display: block;
	width: 19.836%;
	margin: 3rem 2.582% 0;
	text-align: left;
}

@media only screen and (max-width: 640px) {
.recommendedlist_top .item {
	margin: 2rem 0 0;
}
}
.recommendedlist_top .item:nth-child(-n+4) {
	margin: 0 2.582%;
}

@media only screen and (max-width: 640px) {
.recommendedlist_top .item:nth-child(-n+4) {
	margin: 2rem 0 0;
}
}

@media only screen and (max-width: 640px) {
.recommendedlist_top .item {
	width: 45%;
	margin-top: 2rem;
}
.recommendedlist_top .item:nth-child(-n+2) {
	margin-top: 0;
}
}
.recommendedlist_top .item span {
	display: block;
}

.recommendedlist_top .item span.ttl {
	margin-top: 1rem;
}

@media only screen and (min-width: 1800px) {
.recommendedlist_top .item:hover .more::after {
	width: 5rem;
	right: -6.5rem;
}
}



.recommendedlist_top .item span.more {
  margin-top: 1rem;
  display: inline-block;
  color: #E089A4;
  position: relative;
}

.recommendedlist_top .item span.more::after {
  content: "";
  width: 2.5rem;
  height: 0.5rem;
  border-right: 1px solid #E089A4;
  border-bottom: 1px solid #E089A4;
  position: absolute;
  top: 50%;
  right: -4rem;
  -webkit-transform: translateY(-50%) skewX(45deg);
      -ms-transform: translateY(-50%) skewX(45deg);
          transform: translateY(-50%) skewX(45deg);
}

@media only screen and (min-width: 1800px) {
 .recommendedlist_top .item span.more::after {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
}

@media only screen and (min-width: 1800px) {
  .recommendedlist_top.item:hover .more::after {
    width: 5rem;
    right: -6.5rem;
  }
}


.recommendedlist {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2.582%;
	background: #f1f1f1;
	padding: 2rem 0;
}

@media only screen and (max-width: 640px) {
.recommendedlist  {
	justify-content: space-between;
	padding: 2rem 2rem;
	margin: 0;
}
}
.recommendedlist .item {
	display: block;
	width: 19.836%;
	margin: 3rem 2.582% 0;
	text-align: left;
}

@media only screen and (max-width: 640px) {
.recommendedlist .item {
	margin: 2rem 0 0;
}
}
.recommendedlist .item:nth-child(-n+4) {
	margin: 0 2.582%;
}

@media only screen and (max-width: 640px) {
.recommendedlist .item:nth-child(-n+4) {
	margin: 2rem 0 0;
}
}

@media only screen and (max-width: 640px) {
.recommendedlist .item {
	width: 45%;
	margin-top: 2rem;
}
.recommendedlist .item:nth-child(-n+2) {
	margin-top: 0;
}
}
.recommendedlist .item span {
	display: block;
}

.recommendedlist .item span.ttl {
	margin-top: 1rem;
}

@media only screen and (min-width: 1800px) {
.recommendedlist .item:hover .more::after {
	width: 5rem;
	right: -6.5rem;
}
}

.recommendedlist .item span.more {
  margin-top: 1rem;
  display: inline-block;
  color: #E089A4;
  position: relative;
}

.recommendedlist .item span.more::after {
  content: "";
  width: 2.5rem;
  height: 0.5rem;
  border-right: 1px solid #E089A4;
  border-bottom: 1px solid #E089A4;
  position: absolute;
  top: 50%;
  right: -4rem;
  -webkit-transform: translateY(-50%) skewX(45deg);
      -ms-transform: translateY(-50%) skewX(45deg);
          transform: translateY(-50%) skewX(45deg);
}

@media only screen and (min-width: 1800px) {
 .recommendedlist .item span.more::after {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
}

@media only screen and (min-width: 1800px) {
  .recommendedlist.item:hover .more::after {
    width: 5rem;
    right: -6.5rem;
  }
}




.clearbtnwrap .btn {
  width: 21.05%;
  padding: 1rem 0;
	margin: 2rem 0;
	background-color: #E089A4;
	color: #fff;
}

@media only screen and (max-width: 640px) {
.clearbtnwrap .btn {
    width: 70%;
    padding: 0.5rem 0;
	margin: 1rem 0;
	background-color: #E089A4;
	color: #fff;
  }
}





/*# sourceMappingURL=pages.css.map*/