@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Lato:900|Noto+Sans|Open+Sans:400,600,800");
.info__wrap {
  margin: 0 auto 120px;
  font-size: 1.6rem;
  width: 100%;
  max-width: 960px;
}
@media screen and (max-width: 640px) {
  .info__wrap {
    font-size: 1.4rem;
  }
}
.info__wrap a {
  text-decoration: underline;
  color: #e60012;
}
.info__wrap a:hover {
  text-decoration: none;
}

.info__tit {
  margin: 80px auto 40px;
  padding-bottom: 8px;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 640px) {
  .info__tit {
    margin: 64px auto 40px;
    padding: 0 16px 8px;
    font-size: 2.2rem;
  }
  .info__tit span {
    font-size: 1.8rem;
  }
}

.info__tit_mustread {
  margin: 80px auto 40px;
  padding: 8px 0;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e60012;
  border-top: 1px solid #e60012;
  color: #e60012;
}
@media screen and (max-width: 640px) {
  .info__tit_mustread {
    font-size: 2.4rem;
    font-weight: normal;
    text-align: center;
  }
}

.info__list {
  line-height: 1.6;
}
.info__list dt {
  margin-bottom: 1rem;
  font-weight: bold;
}
.info__list dd {
  margin-bottom: 3rem;
  line-height: 2;
}
.info__list li {
  margin-bottom: 2rem;
  line-height: 2;
}

.info__list--parentheses > li {
  padding-left: 2.5rem;
  position: relative;
  list-style-position: inside;
  list-style-type: none;
  counter-increment: cnt;
}
.info__list--parentheses > li::before {
  position: absolute;
  left: 0;
  display: marker;
  content: "(" counter(cnt) ") ";
}

.info__list--circle > li {
  padding-left: 2rem;
  position: relative;
}
.info__list--circle > li::before {
  position: absolute;
  left: 0;
  content: "・";
}

.info__list--number {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}
.info__list--number > li {
  margin-bottom: 10px;
  padding-left: 45px;
  position: relative;
  font-size: 1.6rem;
}
.info__list--number > li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #005edd;
  color: #fff;
  display: block;
  float: left;
  line-height: 29px;
  margin-left: -45px;
  text-align: center;
  height: 29px;
  width: 29px;
  border-radius: 50%;
}
@media screen and (max-width: 640px) {
  .info__list--number > li {
    padding-left: 35px;
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: -0.1rem;
    line-height: 130%;
  }
  .info__list--number > li::before {
    line-height: 29px;
    margin-left: -35px;
    text-align: center;
    height: 29px;
    width: 29px;
    border-radius: 50%;
    font-size: 2.0rem;
    top: -6px;
    position: absolute;
  }
}
@media screen and (max-width: 640px) {
  .info__list--number li.sp-kaigyo::before {
    line-height: 29px;
    margin-left: -35px;
    text-align: center;
    height: 29px;
    width: 29px;
    border-radius: 50%;
    position: absolute;
    top: 2px;
  }
}

.info__list--attention > li {
  padding-left: 2.5rem;
  position: relative;
}
.info__list--attention > li::before {
  font-weight: bold;
  line-height: 2rem;
  position: absolute;
  top: 0.3em;
  left: 0;
  display: marker;
  width: 2rem;
  height: 2rem;
  content: "！";
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background: #e60012;
}

.info__attention {
  color: #e60012;
}

.info__asterisk {
  font-size: 1.3rem;
  line-height: 180%;
  display: inline-block;
  margin-top: 8px;
}
@media screen and (max-width: 640px) {
  .info__asterisk {
    font-weight: normal;
  }
}

.info__nav {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -js-display: flex;
  margin-top: 56px;
}
.info__nav dl {
  margin-bottom: 64px;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (min-width: 641px) {
  .info__nav dl {
    width: 50%;
  }
  .info__nav dl:nth-of-type(odd) {
    padding-right: 20px;
  }
  .info__nav dl:nth-of-type(even) {
    padding-left: 20px;
  }
}
.info__nav dt {
  padding: 8px 12px;
  letter-spacing: 0.05em;
  color: #fff;
  background: #000;
}
.info__nav a {
  padding: 12px 8px 12px 32px;
  position: relative;
  display: block;
  text-decoration: none;
  color: #000000;
  border-bottom: 1px dashed #e0e0e0;
}
.info__nav a::before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 8px;
  width: 8px;
  height: 8px;
  content: "";
  vertical-align: middle;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.info__nav a:hover {
  color: #e60012;
}
.info__nav a:hover::before {
  border-top: 1px solid #e60012;
  border-right: 1px solid #e60012;
}

.question-summary-btn {
  margin: 40px auto 120px;
}
.question-summary-btn a {
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 2.4rem;
  position: relative;
  display: block;
  width: 90%;
  max-width: 400px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  background: #000080;
}
.question-summary-btn a::before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 16px;
  width: 16px;
  height: 16px;
  content: "";
  vertical-align: middle;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.question-summary-btn a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 640px) {
  .question-summary-btn a {
    font-size: 2rem;
  }
  .question-summary-btn a::before {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

.info__section {
  margin-bottom: 80px;
}
.info__section p {
  margin-bottom: 2rem;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.02em;
}
.info__section p.info__txt--left {
  text-align: right;
}
@media screen and (max-width: 640px) {
  .info__section {
    margin: 0 16px 64px;
  }
}

.info__section__tit {
  margin: 64px auto 40px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .info__section__tit {
    margin: 40px auto 24px;
    font-size: 1.8rem;
  }
}

.info__section__subtit {
  margin: 40px auto 16px;
  font-weight: bold;
}

.info__box {
  margin: 24px auto;
  padding: 16px;
  box-sizing: border-box;
}

.info__box--border {
  padding: 15px 15px 0;
  border: 1px solid #ccc;
}

.info__table {
  border-collapse: collapse;
}
.info__table th {
  font-size: 1.6rem;
  font-weight: bold;
  min-width: 14em;
  text-align: left;
}
.info__table td {
  padding: 0 0 40px;
}

.info-js--inquiry {
  margin: 24px auto;
  padding: 15px 15px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.question__list {
  padding: 16px;
  line-height: 2;
  background: #f3f3f3;
}
.question__list li {
  margin-bottom: 1em;
  counter-increment: cnt;
  letter-spacing: 0.05em;
}
.question__list li::before {
  margin-right: 0.2em;
  font-family: "Lato", Arial, Helvetica, YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Osaka, "MS PGothic", Verdana, sans-serif;
  font-weight: bold;
  content: counter(cnt,decimal-leading-zero) ".";
}
.question__list a {
  text-decoration: none;
  color: #000000;
}
.question__list a:hover {
  text-decoration: underline;
  color: #e60012;
}

.answer > dt {
  margin: 60px auto 20px;
  font-size: 2.4rem;
  counter-increment: cnt;
  letter-spacing: 0.1em;
}
.answer > dt::before {
  margin-right: 0.2em;
  font-family: "Lato", Arial, Helvetica, YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Osaka, "MS PGothic", Verdana, sans-serif;
  font-size: 3.2rem;
  content: counter(cnt,decimal-leading-zero) ".";
}
.answer > dd {
  line-height: 2;
  border-bottom: 1px solid #ccc;
}
.answer p {
  margin-bottom: 2rem;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .answer {
    margin: 0 16px;
  }
}

.answer__tit {
  margin: 4rem 0 2rem;
  font-weight: bold;
}

.answer__list {
  margin-bottom: 2rem;
}
.answer__list li {
  position: relative;
}
.answer__list li::before {
  position: absolute;
  left: 0;
}

.answer__list--circle li {
  padding-left: 2rem;
}
.answer__list--circle li::before {
  content: "・";
}

.answer__list--parentheses {
  counter-reset: cnt;
}
.answer__list--parentheses li {
  padding-left: 2.5rem;
  counter-increment: cnt;
}
.answer__list--parentheses li::before {
  content: "(" counter(cnt) ") ";
}

.shipping-table {
  margin: 0 auto 40px;
  width: 90%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}
.shipping-table tr:first-child {
  background: #b1e6ac;
}
.shipping-table th,
.shipping-table td {
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ccc;
}
.shipping-table th {
  width: 20%;
}
.shipping-table td {
  width: 8.88889%;
}
@media screen and (max-width: 640px) {
  .shipping-table {
    width: 100%;
  }
  .shipping-table th,
  .shipping-table td {
    font-size: 1.2rem;
  }
}

.pagetop-btn {
  margin: 40px auto 16px;
  text-align: right;
}
.pagetop-btn a {
  padding-left: 16px;
  font-size: 1.2rem;
  position: relative;
  text-decoration: none;
  color: #000000;
}
.pagetop-btn a::before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0px;
  width: 4px;
  height: 4px;
  content: "";
  vertical-align: middle;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}
.pagetop-btn a:hover {
  color: #e60012;
}
.pagetop-btn a:hover::before {
  border-top: 2px solid #e60012;
  border-left: 2px solid #e60012;
}

.about__wrap {
  margin: 0 auto;
  max-width: 740px;
}
.about__wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.hinge {
  margin: 80px auto;
  max-width: 600px;
}
.hinge img {
  display: block;
  width: 100%;
  height: auto;
}

.recall {
  margin: 80px auto;
  max-width: 940px;
}
.recall img {
  display: block;
  width: 100%;
  height: auto;
}

.carry {
  margin: 80px auto;
  max-width: 600px;
}
.carry img {
  display: block;
  width: 100%;
  height: auto;
}

.police {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}
.police th,
.police td {
  padding: 8px 16px;
  font-size: 1.4rem;
  text-align: left;
  border: 1px solid #ccc;
}
@media screen and (max-width: 640px) {
  .police th,
  .police td {
    padding: 4px 8px;
  }
}
.police th {
  font-weight: bold;
  background-color: #e3e3e3;
}
@media screen and (min-width: 641px) {
  .police th:nth-of-type(1) {
    width: 100px;
  }
  .police th:nth-of-type(2) {
    width: 200px;
  }
}
.police td a {
  position: relative;
}
.police td a:not(:first-child) {
  margin-left: 40px;
}
.police td a:not(:first-child)::before {
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  margin: auto;
  position: absolute;
  top: 2px;
  left: -20px;
  width: 1px;
  height: 14px;
  content: "";
  vertical-align: middle;
  text-decoration: none;
  border-right: 1px solid #ccc;
}

.info__notice {
  width: 100%;
  max-width: 740px;
  margin: 30px auto;
  padding: 20px;
  font-size: 1.6rem;
  box-sizing: border-box;
  text-align: center;
  color: #FF0000;
  border: 1px solid #FF0000;
  line-height: 1.7;
}
.info__notice span {
  display: inline-block;
  font-size: 1.2rem;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .info__notice {
    width: 96%;
    font-size: 1.4rem;
  }
  .info__notice span {
    font-size: 1.1rem;
  }
}

.pickup-service {
  zoom: 1;
  box-sizing: border-box;
  margin: 0 auto;
  width: 960px;
  font-size: 1.8rem;
  line-height: 1.8;
}
.pickup-service::after {
  clear: both;
  display: block;
  content: "";
}
.pickup-service p {
  margin-bottom: 1em;
}
.pickup-service .tit {
  position: relative;
  margin-bottom: 50px;
  padding: 0 0 15px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.pickup-service .tit::before, .pickup-service .tit::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 5px;
  content: "";
}
.pickup-service .tit::before {
  z-index: 1;
  width: 30%;
  background: #00a794;
}
.pickup-service .tit::after {
  width: 100%;
  background: #ffe300;
}
.pickup-service .tit--main {
  padding: 40px 30px;
  font-size: 3.6rem;
}
.pickup-service .tit--main::before, .pickup-service .tit--main::after {
  height: 10px;
}
.pickup-service .tit-line {
  position: relative;
  margin-top: 80px;
  margin-bottom: 30px;
  padding: 0 0 14px 15px;
  font-size: 2.6rem;
  font-weight: normal;
  line-height: 1;
  border-bottom: 1px solid #ccc;
}
.pickup-service .tit-line::before {
  position: absolute;
  top: -14px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 8px;
  height: 23px;
  content: "";
  background: #ffe300;
}
.pickup-service .txt--bold {
  font-weight: bold;
}
.pickup-service .txt--red {
  color: #e60012;
}
.pickup-service .txt--line {
  position: relative;
  text-decoration: underline;
  color: #e60012;
}
.pickup-service .section {
  margin-bottom: 80px;
}
.pickup-service .intro {
  zoom: 1;
}
.pickup-service .intro::after {
  clear: both;
  display: block;
  content: "";
}
.pickup-service .intro .caption {
  margin-bottom: 50px;
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #00a794;
}
.pickup-service .intro img {
  float: right;
}
.pickup-service .unpack-flow {
  text-align: center;
}
.pickup-service .example {
  box-sizing: border-box;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
}
.pickup-service .example dt {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}
.pickup-service .example dd {
  display: table;
  margin-bottom: 20px;
  width: 100%;
}
.pickup-service .example img {
  vertical-align: middle;
}
.pickup-service .nav {
  zoom: 1;
  box-sizing: border-box;
  margin-bottom: 80px;
  padding: 30px 0 0;
  border-top: 1px solid #ccc;
}
.pickup-service .nav::after {
  clear: both;
  display: block;
  content: "";
}
.pickup-service .nav ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -js-display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}
.pickup-service .nav img {
  display: block;
  margin: auto;
}
.pickup-service .step li {
  margin-bottom: 80px;
  padding-left: 50px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 30px;
}
.pickup-service .step li:nth-of-type(1) {
  background-image: url(/gold/lesmore/images/info/pickup_service/step_01.png);
}
.pickup-service .step li:nth-of-type(2) {
  background-image: url(/gold/lesmore/images/info/pickup_service/step_02.png);
}
.pickup-service .step img {
  margin-bottom: 20px;
}
.pickup-service .list-notice li {
  margin-bottom: 1em;
  margin-left: 1.2em;
  text-indent: -1.2em;
}
.pickup-service .qa-list dt {
  box-sizing: border-box;
  margin: 30px 0 20px;
  padding: 5px 15px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background: #999;
}
.pickup-service .item-list {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -js-display: flex;
  margin-bottom: 80px;
  width: 100%;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}
.pickup-service .item-list li {
  box-sizing: border-box;
  margin-bottom: 36px;
  width: 214px;
  font-size: 1.4rem;
}
.pickup-service .item-list a {
  display: block;
  text-align: center;
  text-decoration: none;
}
.pickup-service .item-list .catch-lowya,
.pickup-service .item-list .description-lowya,
.pickup-service .item-list .csv-price {
  display: none;
}
.pickup-service .item-list img {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 640px) {
  .pickup-service {
    padding: 10px;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .pickup-service img {
    width: 100%;
    height: auto;
  }
  .pickup-service .tit {
    margin-bottom: 25px;
    padding: 0 0 15px;
    font-size: 2rem;
    line-height: 1.4;
  }
  .pickup-service .tit::before, .pickup-service .tit::after {
    height: 5px;
  }
  .pickup-service .tit--main {
    padding: 10px;
    font-size: 2.4rem;
  }
  .pickup-service .tit--main::after {
    height: 5px;
  }
  .pickup-service .tit-line {
    margin-top: 40px;
    margin-bottom: 15px;
    padding: 0 0 14px 15px;
    font-size: 1.6rem;
  }
  .pickup-service .tit-line::before {
    top: -14px;
    width: 6px;
    height: 18px;
  }
  .pickup-service .section {
    margin: 0 0 40px;
  }
  .pickup-service .intro .caption {
    margin-bottom: 20px;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #00a794;
  }
  .pickup-service .intro img {
    display: block;
    float: none;
    margin: 20px auto;
    width: 50%;
    height: auto;
  }
  .pickup-service .example img {
    display: block;
    margin: 0 auto;
  }
  .pickup-service .example .icon {
    margin-top: 30px;
    max-width: 106px;
  }
  .pickup-service .nav {
    margin-bottom: 30px;
    padding: 29px 0px 0px;
  }
  .pickup-service .nav ul {
    -webkit-justify-content: flex-start;
    /* Safari */
    justify-content: flex-start;
  }
  .pickup-service .nav li {
    margin: 0 0 5px 0;
    padding: 0 3px;
    width: 31%;
  }
  .pickup-service .step li {
    margin-bottom: 40px;
    padding-left: 40px;
  }
  .pickup-service .step img {
    margin: 20px 0;
    max-width: 260px;
  }
  .pickup-service .qa-list dt {
    font-size: 1.4rem;
  }
  .pickup-service .item-list li {
    width: 50%;
  }
  .pickup-service .item-list li:nth-of-type(odd) {
    padding-right: 5px;
  }
  .pickup-service .item-list li:nth-of-type(even) {
    padding-left: 5px;
  }
  .pickup-service .item-list img {
    margin: 0 auto 5px;
  }
}
.back-guarantee {
  margin: 32px auto 80px;
  width: 960px;
}
@media screen and (max-width: 640px) {
  .back-guarantee {
    width: 100%;
  }
  .back-guarantee h1 {
    padding: 0 8px;
  }
  .back-guarantee h1 img {
    width: 100%;
    height: auto;
  }
}
.back-guarantee .tit {
  margin-bottom: 48px;
  font-size: 3.2rem;
  border-bottom: 1px solid #aaa;
}
@media screen and (max-width: 640px) {
  .back-guarantee .tit {
    margin-bottom: 24px;
    font-size: 2.4rem;
    text-align: center;
  }
}
.back-guarantee .section {
  margin-bottom: 80px;
  min-height: 240px;
}
@media screen and (max-width: 640px) {
  .back-guarantee .section {
    margin-bottom: 40px;
    padding: 0 8px;
  }
}
.back-guarantee .underline {
  text-decoration: underline;
}
.back-guarantee .intro {
  text-align: center;
}
.back-guarantee .intro h2 {
  margin: 64px 0 24px;
  font-weight: bold;
}
.back-guarantee .intro p {
  margin-bottom: 24px;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .back-guarantee .intro h2 {
    margin: 48px 0 24px;
    font-size: 1.8rem;
  }
}
.back-guarantee .tit-category {
  margin-bottom: 24px;
  font-size: 1.2rem;
}
.back-guarantee .tit-category span {
  margin-right: 24px;
  font-family: "Maven Pro", YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Osaka, "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  font-size: 3.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .back-guarantee .tit-category {
    margin-bottom: 12px;
  }
  .back-guarantee .tit-category span {
    font-size: 2.4rem;
  }
}
.back-guarantee .item-list {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -js-display: flex;
  margin-bottom: 80px;
}
.back-guarantee .item-list img {
  display: block;
  width: 100%;
  height: auto;
}
.back-guarantee .item-list span {
  display: block;
}
@media screen and (min-width: 641px) {
  .back-guarantee .item-list li {
    float: left;
    margin-top: 32px;
    margin-right: 16px;
    width: 228px;
  }
  .back-guarantee .item-list li:nth-of-type(4n) {
    margin-right: 0;
  }
  .back-guarantee .item-list li:nth-of-type(-n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 640px) {
  .back-guarantee .item-list {
    margin-bottom: 40px;
  }
  .back-guarantee .item-list li {
    box-sizing: border-box;
    margin-bottom: 16px;
    width: 50%;
  }
  .back-guarantee .item-list li:nth-of-type(odd) {
    padding-right: 4px;
  }
  .back-guarantee .item-list li:nth-of-type(even) {
    padding-left: 4px;
  }
  .back-guarantee .item-list span {
    font-size: 1rem;
  }
}
.back-guarantee .notes li {
  box-sizing: border-box;
  margin-bottom: 48px;
  padding-bottom: 24px;
  line-height: 1.8;
  border-bottom: 1px dashed #aaa;
}
.back-guarantee .notes p {
  margin-bottom: 16px;
}
.back-guarantee .return .map {
  margin-bottom: 64px;
  text-align: center;
}
.back-guarantee .return .map img {
  width: 100%;
  max-width: 740px;
  height: auto;
}
.back-guarantee .address {
  margin: 0 auto 64px;
  width: 740px;
}
.back-guarantee .address ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -js-display: flex;
  margin-bottom: 16px;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}
.back-guarantee .address li {
  box-sizing: border-box;
  width: 48%;
}
.back-guarantee .address h3 {
  margin: 0 auto 20px auto;
  padding: 15px 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.back-guarantee .address p {
  margin: 0 16px 16px;
}
.back-guarantee .address span {
  font-size: 2rem;
}
@media screen and (max-width: 640px) {
  .back-guarantee .address {
    width: 100%;
  }
  .back-guarantee .address li {
    margin-bottom: 16px;
    width: 100%;
  }
}
.back-guarantee .address-a {
  border: solid 1px #999;
}
.back-guarantee .address-a h3 {
  background: #999;
}
.back-guarantee .address-b {
  border: solid 1px #333;
}
.back-guarantee .address-b h3 {
  background: #333;
}
.back-guarantee .info {
  zoom: 1;
  margin: 0 auto;
  width: 740px;
  text-align: center;
}
.back-guarantee .info::after {
  clear: both;
  display: block;
  content: "";
}
.back-guarantee .info > p {
  margin-bottom: 24px;
}
@media screen and (min-width: 641px) {
  .back-guarantee .info .tell {
    float: left;
    width: 343px;
  }
  .back-guarantee .info .mail {
    float: right;
    width: 358px;
  }
}
@media screen and (max-width: 640px) {
  .back-guarantee .info {
    width: 100%;
  }
  .back-guarantee .info .tell,
  .back-guarantee .info .mail {
    margin-bottom: 24px;
  }
  .back-guarantee .info .tell img,
  .back-guarantee .info .mail img {
    width: 100%;
    height: auto;
  }
}

.reservation-mv {
  width: 960px;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .reservation-mv {
    width: 100%;
    padding-bottom: 0;
  }
}
.reservation-mv img {
  display: block;
  width: 100%;
  height: auto;
}

.reservation-tit {
  margin: 80px auto 64px;
  padding: 22px 0;
  box-sizing: border-box;

  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: #231815;
  border-top: 2px #231815 solid;
  border-bottom: 2px #231815 solid;
}
@media screen and (max-width: 767px) {
  .reservation-tit {
    margin: 64px auto 40px;
    font-size: 1.6rem;
  }
}

.reservation-info {
  margin: 40px auto;
  padding: 40px;
  max-width: 960px;
  background: #ededed;
}
@media screen and (max-width: 767px) {
  .reservation-info {
    padding: 10% 5%;
  }
}
.reservation-info p {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .reservation-info p {
    font-size: 1.2rem;
  }
}
.reservation-info b {
  color: #e60012;
}
@media screen and (max-width: 767px) {
  .reservation-info b b {
    display: block;
    margin: auto;
  }
}
.reservation-info table {
  margin: 40px auto;
  padding: 8px 0;
  box-sizing: border-box;
  width: 80%;
  border-collapse: collapse;
  border: 1px solid #231815;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .reservation-info table {
    margin: 5% auto;
    width: 100%;
  }
}
.reservation-info tr:first-child th, .reservation-info tr:first-child td {
  padding: 16px 8px 8px;
}
.reservation-info tr:last-child th, .reservation-info tr:last-child td {
  padding: 8px 8px 16px;
}
.reservation-info th,
.reservation-info td {
  padding: 8px;
}
.reservation-info th {
  font-weight: bold;
}
.reservation-info li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .reservation-info li {
    font-size: 1.1rem;
  }
}
.reservation-info li:last-child {
  margin-bottom: 0;
}
.reservation-info li::before {
  position: absolute;
  left: 0;
  content: "・";
}
.reservation-info a {
  text-decoration: underline;
}
.reservation-info a:hover {
  text-decoration: none;
}

.reservation-info__wrap {
  margin: 0 auto;
  max-width: 960px;
}

.reservation-item {
  display: flex;
  display: -webkit-flex;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 960px;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -js-display: flex;
}
.reservation-item a:hover img {
  opacity: 0.7;
}
.reservation-item img {
  display: block;
  margin-bottom: 20px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 641px) {
  .reservation-item li {
    padding-bottom: 30px;
    padding-top: 30px;
    padding-right: 10px;
    padding-left: 10px;
    box-sizing: border-box;
    width: 33.33333333%;
  }
}
@media screen and (max-width: 640px) {
  .reservation-item {
    padding: 0;
  }
  .reservation-item li {
    margin: 0 16px 64px;
  }
}

.reservation-item__btn {
  display: block;
  margin: 0 auto;
  padding: 0.5em 0;
  box-sizing: border-box;
  width: 100%;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  color: #222;
  border: 2px solid #000;
}
@media screen and (min-width: 768px) {
  .reservation-item__btn:hover {
    color: #fff;
    background: #333;
  }
}
@media screen and (max-width: 640px) {
  .reservation-item__btn {
    font-size: 1.4rem;
    padding: 0.8em 0;
  }
}

.reservation-item__name {
  margin: 20px 0 10px 0;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .reservation-item__name {
    font-size: 1.3rem;
    margin: 20px 5px 10px;
  }
}

.reservation-item__code {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.reservation-item__code::before {
  content: "商品コード：";
}
@media screen and (max-width: 640px) {
  .reservation-item__code {
    margin: 0px 5px 0px;
  }
}

.reservation-item__day {
  padding: 10px 0 0 0;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .reservation-item__day {
    font-size: 1.1rem;
    padding: 15px 5px 10px 5px;
  }
}

@media screen and (max-width: 767px) {
  .reservation-item li {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 32px 16px;
    border-bottom: dashed 1px #ccc;
  }
  .reservation-item li a:first-child {
    width: 30%;
  }
  .reservation-item li .reservation-item__txt {
    width: 70%;
    padding-left: 5%;
    box-sizing: border-box;
  }
  .reservation-item li p {
    margin: 0;
  }
  .reservation-item li .reservation-item__day {
    padding: 5px 0 15px 0;
  }
}
.reservation-btn--notice {
  width: 200px;
  color: #fff;
  font-size: 1.4rem;
  position: fixed;
  right: 0;
  bottom: 350px;
  padding: 10px 0 10px 45px;
  z-index: 1000;
  background: #006699 url(https://www.rakuten.ne.jp/gold/luxze/images/share/icon/exclamation.svg) 14px center no-repeat;
  background-size: 20px;
  border-radius: 4px 0 0 4px;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .reservation-btn--notice {
    bottom: 10%;
    width: 50%;
  }
}

.reservation-notice {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: none;
  z-index: 10000000;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.reservation-notice > div {
  width: 50%;
  height: fit-content;
  max-height: 100vh;
  margin: auto;
  background: #FFF;
  padding: 50px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .reservation-notice > div {
    width: 90%;
    padding: 5%;
  }
}
.reservation-notice > div .reservation-notice--tit {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .reservation-notice > div .reservation-notice--tit {
    font-size: 1.4rem;
  }
}
.reservation-notice > div .reservation-notice--txt {
  padding: 50px;
  line-height: 1.7;
  background: #efefef;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .reservation-notice > div .reservation-notice--txt {
    padding: 5%;
    margin-bottom: 5%;
    font-size: 1.1rem;
  }
}
.reservation-notice > div .reservation-notice--txt .reservation-notice--txt01 {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .reservation-notice > div .reservation-notice--txt .reservation-notice--txt01 {
    font-size: 1.1rem;
  }
}
.reservation-notice > div .reservation-notice--txt .reservation-notice--txt01 a {
  color: #0000FF;
  text-decoration: underline;
}
.reservation-notice > div .reservation-notice--txt .reservation-notice--caution {
  font-size: 1.8rem;
  color: #BB0000;
  text-align: center;
  margin: 50px auto 20px;
}
@media screen and (max-width: 767px) {
  .reservation-notice > div .reservation-notice--txt .reservation-notice--caution {
    font-size: 1.4rem;
    margin: 10% auto 4%;
  }
}
.reservation-notice > div .reservation-notice--close {
  display: block;
  margin: 0 auto;
  width: 200px;
  padding: 20px 0;
  background: #018ad1;
  color: #FFF;
  text-align: center;
  border: 2px solid #018ad1;
  cursor: pointer;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .reservation-notice > div .reservation-notice--close {
    padding: 5% 0;
  }
}
.reservation-notice > div .reservation-notice--close:hover {
  border: 2px solid #018ad1;
  background: #FFF;
  color: #018ad1;
}

.support {
  margin: auto;
  width: 100%;
  max-width: 740px;
  font-size: 1.6rem;
}
@media screen and (max-width: 640px) {
  .support {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .support h1 {
    margin: 0 16px;
  }
}
.support h1 img {
  width: 100%;
  height: auto;
  display: block;
}

.support__section {
  margin: 40px auto 80px;
}
@media screen and (max-width: 640px) {
  .support__section {
    margin: 40px 16px 80px;
  }
}
.support__section p {
  margin-bottom: 2rem;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.05em;
}
.support__section b {
  color: #e60012;
}

.support__section__tit {
  margin: 0 auto 32px;
  padding: 8px 16px;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.4em;
  color: #6cc;
  border: 2px solid #6cc;
  border-radius: 8px;
}
@media screen and (max-width: 640px) {
  .support__section__tit {
    font-size: 2rem;
  }
}

.support__notes {
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.05em;
}
.support__notes > li {
  margin-bottom: 32px;
  padding-bottom: 31px;
  border-bottom: 1px dashed #333;
}
.support__notes > li:last-child {
  border: none;
}

.towel-present {
  margin: 80px auto 120px;
  max-width: 960px;
}

.towel-present__mv {
  margin-bottom: 120px;
}
.towel-present__mv img {
  display: block;
  width: 100%;
  height: auto;
}
.towel-present__mv::before {
  display: block;
  margin-bottom: 40px;
  font-size: 2.8rem;
  font-weight: 600;
  content: "＜ 対象商品限定 ＞";
  text-align: center;
  letter-spacing: 0.1em;
}
.towel-present__mv::after {
  display: block;
  font-size: 1.2rem;
  content: "※色は選べません。非売品です。";
  text-align: right;
}
@media screen and (max-width: 767px) {
  .towel-present__mv {
    margin-bottom: 80px;
  }
  .towel-present__mv::before {
    margin-bottom: 24px;
    font-size: 1.6rem;
  }
}

.towel-present__btn {
  margin: 0 auto 80px;
  width: 60%;
}
.towel-present__btn a {
  display: block;
  margin-bottom: 16px;
  padding: 24px 8px;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 3px;
  background: #c50018;
}
.towel-present__btn a:hover {
  opacity: 0.7;
}
.towel-present__btn a span {
  position: relative;
}
.towel-present__btn a span::before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  margin: auto;
  width: 11px;
  height: 11px;
  content: "";
  vertical-align: middle;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.towel-present__btn p span {
  color: #b81c22;
}
@media screen and (min-width: 768px) {
  .towel-present__btn a br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .towel-present__btn {
    margin: 0 auto 80px;
    width: 80%;
  }
  .towel-present__btn a {
    padding: 16px 0px 16px 32px;
    font-size: 1.6rem;
  }
  .towel-present__btn a span::before {
    left: -22px;
    width: 6px;
    height: 6px;
  }
  .towel-present__btn p {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 768px) {
  .towel-present__btn--form {
    width: 80%;
  }
  .towel-present__btn--form a {
    padding: 40px 8px;
  }
}
@media screen and (max-width: 767px) {
  .towel-present__btn--form a {
    text-align: left;
  }
}

.towel-present__btn--howto a {
  background: #6c6c6c;
}

.towel-present-step {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .towel-present-step {
    margin-bottom: 40px;
  }
}

.towel-present-step__tit {
  margin-bottom: 56px;
  font-size: 4.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.18em;
  color: #474747;
}
.towel-present-step__tit::before {
  display: table;
  margin: 0 auto 12px;
  padding: 6px 12px;
  font-size: 2.4rem;
  line-height: 1;
  content: "Let's Join!";
  letter-spacing: 0;
  border: 4px solid #474747;
}
@media screen and (max-width: 767px) {
  .towel-present-step__tit {
    margin-bottom: 40px;
    font-size: 2rem;
    letter-spacing: 0.14em;
  }
  .towel-present-step__tit::before {
    font-size: 1.6rem;
    border: 2px solid #474747;
  }
}

.towel-present-step__box {
  position: relative;
  margin-bottom: 104px;
  padding: 64px 0;
  text-align: center;
  background: #f5f5f5;
}
.towel-present-step__box::after {
  position: absolute;
  right: 0;
  bottom: -64px;
  left: 0;
  display: block;
  margin: auto;
  width: 47px;
  height: 31px;
  content: "";
  background: url("/gold/lesmore/images/info/towel_present/arrow.png") no-repeat;
}
.towel-present-step__box img {
  display: block;
  margin-bottom: 24px;
  width: 100%;
  height: auto;
}
.towel-present-step__box p {
  font-size: 2rem;
}
.towel-present-step__box span {
  color: #b81c22;
}
@media screen and (max-width: 767px) {
  .towel-present-step__box {
    padding: 30px 0;
  }
  .towel-present-step__box:not(:nth-last-of-type(1)) {
    margin-bottom: 64px;
  }
  .towel-present-step__box:not(:nth-last-of-type(1))::after {
    bottom: -40px;
    width: 24px;
    height: 16px;
    background-size: cover;
  }
  .towel-present-step__box p {
    padding: 0 16px;
    font-size: 1.4rem;
  }
}

.towel-present-howto {
  margin-bottom: 200px;
  text-align: center;
}
.towel-present-howto h3 {
  margin-bottom: 80px;
  font-size: 4.2rem;
  font-weight: 600;
}
.towel-present-howto h3 span {
  font-size: 3rem;
  text-decoration: underline;
}
.towel-present-howto img {
  display: block;
  margin: 0 auto 80px;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 587px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .towel-present-howto {
    margin-bottom: 120px;
  }
  .towel-present-howto h3 {
    margin: 0 5% 40px;
    font-size: 2rem;
  }
  .towel-present-howto h3 span {
    font-size: 1.4rem;
  }
  .towel-present-howto img {
    margin: 0 auto 40px;
  }
}

.towel-present-page img {
  display: block;
  width: 100%;
  height: auto;
}

.towel-present-info {
  margin: 0 auto 80px;
  padding: 30px;
  box-sizing: border-box;
  max-width: 800px;
  border: 2px solid #474747;
}
.towel-present-info li {
  margin-left: 1em;
  font-size: 1.6rem;
  text-align: justify;
  text-indent: -1.2em;
}
.towel-present-info li:not(:nth-last-of-type(1)) {
  margin-bottom: 2em;
}
.towel-present-info li::before {
  content: "○";
}
.towel-present-info li span {
  color: #b81c22;
}
.towel-present-info a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .towel-present-info {
    margin: 0 5% 40px;
    padding: 14px;
  }
  .towel-present-info li {
    font-size: 1.2rem;
  }
}

.towel-present-info__wrap:not(:nth-last-of-type(1)) {
  margin-bottom: 40px;
  border-bottom: 1px dashed #474747;
}

.towel-present-info__tit {
  margin-bottom: 32px;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .towel-present-info__tit {
    font-size: 1.8rem;
  }
}

.towel-present-info__box {
  margin: 24px auto;
  padding: 23px;
  border: 1px solid #474747;
}
@media screen and (max-width: 767px) {
  .towel-present-info__box {
    font-size: 1.2rem;
  }
}

.towel-present-item {
  margin: 0 5%;
  text-align: center;
}
.towel-present-item p {
  margin-bottom: 24px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .towel-present-item p {
    font-size: 1.4rem;
  }
}

.towel-present-item__tit {
  margin-bottom: 24px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .towel-present-item__tit {
    font-size: 2rem;
  }
}

.coupon_present {
  max-width: 960px;
  margin: 0 auto;
}

.coupon_present__mv {
  margin-bottom: 120px;
}
.coupon_present__mv img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .coupon_present__mv {
    margin-bottom: 65px;
  }
  .coupon_present__mv::before {
    margin-bottom: 24px;
    font-size: 1.6rem;
  }
}

.coupon_present-step {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .coupon_present-step {
    margin-bottom: 40px;
  }
}

.coupon_present-step__tit {
  margin-bottom: 56px;
  font-size: 4.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.18em;
  color: #474747;
}
.coupon_present-step__tit::before {
  display: table;
  margin: 0 auto 12px;
  padding: 6px 12px;
  font-size: 2.4rem;
  line-height: 1;
  content: "Let's Join!";
  letter-spacing: 0;
  border: 4px solid #474747;
}
@media screen and (max-width: 767px) {
  .coupon_present-step__tit {
    margin-bottom: 40px;
    font-size: 2rem;
    letter-spacing: 0.14em;
  }
  .coupon_present-step__tit::before {
    font-size: 1.6rem;
    border: 2px solid #474747;
  }
}

.coupon_present-step__box {
  position: relative;
  margin-bottom: 104px;
  padding: 40px 0;
  text-align: center;
  background: #f5f5f5;
}
.coupon_present-step__box::after {
  position: absolute;
  right: 0;
  bottom: -64px;
  left: 0;
  display: block;
  margin: auto;
  width: 47px;
  height: 31px;
  content: "";
  background: url("/gold/lesmore/images/info/towel_present/arrow.png") no-repeat;
}
.coupon_present-step__box img {
  display: block;
  margin-bottom: 24px;
  width: 100%;
  height: auto;
}
.coupon_present-step__box p {
  font-size: 2rem;
  padding: 0 20px 0 20px;
}
.coupon_present-step__box span {
  color: #b81c22;
}
@media screen and (max-width: 767px) {
  .coupon_present-step__box {
    margin-bottom: 54px;
    padding: 30px 0;
  }
  .coupon_present-step__box:not(:nth-last-of-type(1)) {
    margin-bottom: 24px;
  }
  .coupon_present-step__box:not(:nth-last-of-type(1))::after {
    bottom: -40px;
    width: 24px;
    height: 16px;
    background-size: cover;
  }
  .coupon_present-step__box p {
    padding: 0 16px;
    font-size: 1.4rem;
  }
}

.coupon_present-contents {
  margin: 0 auto 80px;
  padding: 30px;
  box-sizing: border-box;
  max-width: 960px;
  border: 2px solid #474747;
}
.coupon_present-contents li {
  font-size: 1.6rem;
}
.coupon_present-contents li:not(:nth-last-of-type(1)) {
  margin-bottom: 2em;
}
.coupon_present-contents li span {
  color: #df0653;
}
.coupon_present-contents li p.contents_limit {
  font-size: 2.2rem;
  color: #c50018;
  font-weight: bold;
  text-align: center;
  border: 2px solid #c50018;
  line-height: 2;
}
.coupon_present-contents li p.contents_limit b {
  color: #FFF;
  font-weight: bold;
  text-align: center;
  background: #c50018;
  padding: 10px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .coupon_present-contents li {
    font-size: 1.2rem !important;
  }
  .coupon_present-contents li p.contents_limit {
    font-size: 2.2rem;
    color: #c50018;
    font-weight: bold;
    text-align: center;
    border: 2px solid #c50018;
    line-height: 2;
  }
  .coupon_present-contents li p.contents_limit b {
    color: #FFF;
    font-weight: bold;
    text-align: center;
    background: #c50018;
    padding: 10px;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .coupon_present-contents {
    width: 98%;
    padding: 7%;
  }
}

.coupon_present-info {
  margin: 0 auto 80px;
  padding: 30px;
  box-sizing: border-box;
  max-width: 960px;
  border: 2px solid #474747;
}
.coupon_present-info li {
  font-size: 1.6rem;
}
.coupon_present-info li span {
  color: #df0653;
}
.coupon_present-info a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .coupon_present-info {
    width: 98%;
    padding: 7%;
  }
  .coupon_present-info li {
    font-size: 1.2rem;
    letter-spacing: 0px;
  }
}

.coupon_present-info__wrap:not(:nth-last-of-type(1)) {
  margin-bottom: 40px;
  border-bottom: 1px dashed #474747;
}

.coupon_present-info__tit {
  margin-bottom: 32px;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .coupon_present-info__tit {
    font-size: 1.8rem;
  }
}

.coupon_present-info__box {
  margin: 24px auto;
  padding: 23px;
  border: 1px solid #474747;
}
@media screen and (max-width: 767px) {
  .coupon_present-info__box {
    font-size: 1.2rem;
  }
}

.coupon_present-item__tit {
  margin-bottom: 24px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .coupon_present-item__tit {
    font-size: 2rem;
  }
}

.specified {
  zoom: 1;
  margin: 0 auto;
  max-width: 960px;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
}
.specified::after {
  clear: both;
  display: block;
  content: "";
}
.specified p {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .specified {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.specified__tit {
  position: relative;
  margin-bottom: 50px;
  padding: 0 0 15px;
  padding: 40px 0;
  font-size: 3rem;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.specified__tit::before, .specified__tit::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 10px;
  content: "";
}
.specified__tit::before {
  z-index: 1;
  width: 30%;
  background-color: #00a794;
}
.specified__tit::after {
  width: 100%;
  background-color: #ffe300;
}
@media screen and (max-width: 767px) {
  .specified__tit {
    margin-bottom: 25px;
    padding: 16px;
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .specified__tit::before, .specified__tit::after {
    height: 5px;
  }
}

.specified-intro {
  zoom: 1;
}
.specified-intro::after {
  clear: both;
  display: block;
  content: "";
}
.specified-intro h2 {
  margin-bottom: 50px;
  font-size: 3rem;
}
.specified-intro img {
  float: right;
}
@media screen and (max-width: 767px) {
  .specified-intro {
    margin-bottom: 40px;
    padding: 0 16px;
  }
  .specified-intro h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .specified-intro img {
    display: block;
    float: none;
    margin: 20px auto;
    width: 50%;
    height: auto;
  }
}

.specified-caution {
  margin-bottom: 70px;
}
.specified-caution span {
  color: #e60012;
}
@media screen and (max-width: 767px) {
  .specified-caution {
    margin-bottom: 40px;
    padding: 0 16px;
  }
}

.specified-caution__tit {
  margin-bottom: 1em;
  font-size: 3rem;
  color: #e60012;
}
@media screen and (max-width: 767px) {
  .specified-caution__tit {
    font-size: 2rem;
  }
}

.specified-notice span {
  position: relative;
}
.specified-notice span::before {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #e60012;
}
@media screen and (max-width: 767px) {
  .specified-notice li {
    margin-bottom: 1em;
    margin-left: 1.2em;
    text-indent: -1.2em;
  }
}

.specified-item {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -js-display: flex;
}
.specified-item li {
  box-sizing: border-box;
  width: 50%;
}
.specified-item a {
  display: block;
  text-align: center;
  text-decoration: none;
}
.specified-item img {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  height: auto;
}
.specified-item .item-name-english,
.specified-item .catch-lowya,
.specified-item .description-lowya,
.specified-item .csv-price {
  display: none;
}
@media screen and (min-width: 768px) {
  .specified-item li {
    margin-right: 24px;
    margin-bottom: 42px;
    max-width: 222px;
  }
  .specified-item li:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .specified-item {
    margin-bottom: 40px;
    padding: 0 8px;
  }
  .specified-item li {
    margin-top: 32px;
    padding: 0 8px;
  }
  .specified-item li:nth-of-type(-n+2) {
    margin-top: 0;
  }
}

.specified-nav {
  margin-bottom: 80px;
  padding: 29px 100px 0;
  border-top: 1px solid #ccc;
}
.specified-nav ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -js-display: flex;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}
.specified-nav a:hover img {
  opacity: 0.7;
}
.specified-nav img {
  width: 100%;
  max-width: 213px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .specified-nav {
    margin-bottom: 60px;
    padding: 29px 16px 0px;
  }
  .specified-nav li {
    width: 30%;
  }
}

.specified-section {
  margin-bottom: 80px;
}
.specified-section dl {
  margin-bottom: 40px;
}
.specified-section dt {
  margin-bottom: 1em;
  font-size: 2rem;
  font-weight: bold;
}
.specified-section dd {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .specified-section {
    margin-bottom: 40px;
  }
  .specified-section dt {
    font-size: 1.4rem;
  }
}

.specified-section__tit {
  position: relative;
  margin-bottom: 50px;
  padding: 0 0 15px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.specified-section__tit::before, .specified-section__tit::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 5px;
  content: "";
}
.specified-section__tit::before {
  z-index: 1;
  width: 30%;
  background-color: #00a794;
}
.specified-section__tit::after {
  width: 100%;
  background-color: #ffe300;
}
@media screen and (max-width: 767px) {
  .specified-section__tit {
    margin-bottom: 25px;
    padding: 0 16px 15px;
    font-size: 2rem;
    line-height: 1.4;
  }
}

.specified-section__subtit {
  position: relative;
  margin: 80px auto 30px;
  padding: 0 0 14px 15px;
  font-size: 2.6rem;
  line-height: 1;
  border-bottom: 1px solid #ccc;
}
.specified-section__subtit::before {
  position: absolute;
  top: -14px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 8px;
  height: 23px;
  content: "";
  background: #ffe300;
}
@media screen and (max-width: 767px) {
  .specified-section__subtit {
    margin: 40px auto 15px;
    padding: 0 0 14px 32px;
    font-size: 1.6rem;
  }
  .specified-section__subtit::before {
    left: 16px;
    width: 6px;
    height: 18px;
  }
}

.specified-step li {
  margin-bottom: 80px;
  padding-left: 80px;
  min-height: 68px;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.specified-step li:nth-of-type(1) {
  background-image: url("/gold/low-ya/images/info/specified_service/step_01.png");
}
.specified-step li:nth-of-type(2) {
  background-image: url("/gold/low-ya/images/info/specified_service/step_02.png");
}
@media screen and (max-width: 767px) {
  .specified-step li {
    margin-bottom: 40px;
    padding-left: 40px;
    background-size: 30px;
  }
  .specified-step img {
    margin: 20px 0;
    max-width: 400px;
  }
}

.review-off-notice p {
  margin: 120px auto;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  color: #e60012;
}

.review-off {
  margin: 100px auto 100px auto;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  max-width: 740px;
}

.review-off__mv {
  margin-bottom: 40px;
}
.review-off__mv img {
  display: block;
  width: 100%;
  height: auto;
}

.review-off__tit {
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}

.review-off-flow {
  margin-bottom: 80px;
  padding: 30px;
  background-color: #f3f3f3;
}
.review-off-flow dt {
  margin-bottom: 10px;
  font-size: 2.4rem;
}
.review-off-flow img {
  display: block;
  width: 100%;
  height: auto;
}

.review-off-form {
  margin-bottom: 80px;
}

.review-off-form__box {
  margin-top: 30px;
  padding: 30px;
  border: #ccc solid 1px;
}

.review-off-form__info {
  text-align: center;
}

.form-btn {
  margin: 10px 0;
  padding: 10px;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
  background-color: #ccc;
}
.form-btn a {
  display: block;
}

.review-btn {
  margin: 30px 0;
  padding: 10px;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
  background-color: #f3f3f3;
}
.review-btn a {
  display: block;
}

.contents_limit {
  padding-bottom: 10px;
  font-weight: bold;
  text-align: center;
  border: #ccc solid 3px;
}
.contents_limit span {
  display: block;
  margin-bottom: 10px;
  padding: 5px;
  line-height: 30px;
  background-color: #ccc;
}

.revcp_caution {
  margin: 50px 0;
  padding: 30px;
  border: #ccc solid 2px;
}

.caution_title1,
.caution_title2 {
  margin-bottom: 10px;
  font-size: 117%;
  font-weight: bold;
  text-align: center;
}

.customer-support__contact {
  margin: 30px auto;
}
@media screen and (min-width: 768px) {
  .customer-support__contact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.customer-support__contact li {
  width: 46%;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .customer-support__contact li {
    width: 80%;
    font-size: 1.2rem;
    margin: 0 auto 30px;
  }
}
.customer-support__contact li a {
  display: block;
  font-size: 1.8rem;
  border: 1px solid #CCC;
  margin-bottom: 15px;
  padding: 15px 0;
  color: #000;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .customer-support__contact li a {
    font-size: 1.4rem;
  }
}
.customer-support__contact li a span {
  margin-right: 7px;
}
.customer-support__contact li a:hover {
  border: 1px solid #BB0000;
}

.customer-support__question {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .customer-support__question {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .customer-support__question {
    width: 90%;
  }
}
.customer-support__question div {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .customer-support__question div {
    width: 100%;
  }
}
.customer-support__question div ul li {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .customer-support__question div ul li {
    font-size: 1.2rem;
  }
}

.customer-support__btn {
  width: 50%;
  margin: -40px auto 80px;
}
@media screen and (max-width: 767px) {
  .customer-support__btn {
    width: 80%;
  }
}
.customer-support__btn img {
  width: 100%;
}

.info-js--inquiry {
  margin: 24px auto;
  padding: 15px 15px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
}
.info-js--inquiry span {
  display: none;
}

.unpacking_op img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .unpacking_op img {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .timeline .title {
    font-size: 23px;
    color: #e60012;
    padding-bottom: 20px;
    text-align: center;
  }

  .timeline h3 {
    color: #e60012;
  }

  .timeline {
    list-style: none;
    padding: 40px 0px 40px 0px;
    margin: 10px;
    font-size: 10px;
  }

  .timeline > li {
    margin-bottom: 30px;
  }
}
@media (min-width: 640px) {
  .timeline {
    list-style: none;
    padding: 40px 0px 40px 0px;
    width: 700px;
    margin: 0 auto;
  }

  .timeline > li {
    margin-bottom: 60px;
  }

  .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }

  .timeline .title {
    font-size: 30px;
    color: #e60012;
    text-align: center;
    padding-bottom: 25px;
  }

  .timeline-date {
    width: 110px;
    float: left;
    margin-top: 20px;
  }

  .timeline-content {
    width: 75%;
    float: left;
    border-left: 3px #e5e5d1 solid;
    padding-left: 30px;
    padding-bottom: 30px;
  }

  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #b81c22;
    position: absolute;
    left: 106px;
    top: 24px;
    border-radius: 100%;
  }
}
#exchange .info-main-tit {
  margin-bottom: 40px;
  font-family: YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Osaka, "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1.2;
  color: #000000;
}
#exchange .info-main-tit span {
  margin-left: 10px;
  font-family: YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Osaka, "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
}
#exchange .info-sub-tit {
  margin-bottom: 20px;
  padding-bottom: 8px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  border-bottom: 1px solid #000000;
}
#exchange .info-section {
  margin-bottom: 60px;
}
#exchange .info-section > p {
  font-size: 1.4rem;
  line-height: 1.8;
}
#exchange .info-section > p:not(:last-child) {
  margin-bottom: 2em;
}
#exchange .info-section > p a {
  text-decoration: underline;
}
#exchange .info-section > p a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #exchange .info-item-list {
    margin-bottom: 12%;
  }
  #exchange .info-item-list ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    -js-display: flex;
  }
  #exchange .info-item-list li {
    width: 22%;
  }
  #exchange .info-item-list li:not(:nth-of-type(4n)) {
    margin-right: 4%;
  }
  #exchange .info-item-list li:not(:nth-of-type(-n+4)) {
    margin-top: 4%;
  }
  #exchange .info-item-list li a:hover img {
    opacity: 0.8;
  }
  #exchange .info-item-list li img {
    display: block;
    width: 100%;
  }
  #exchange .info-item-list li p {
    text-align: center;
  }
  #exchange .info-item-list__name {
    font-size: 1.4rem;
    font-weight: 600;
  }
}

@media screen and (max-width: 767px) {
  .info-item-list {
    margin: 0 3% 12%;
  }
  .info-item-list ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    -js-display: flex;
  }
  .info-item-list li {
    width: 30%;
  }
  .info-item-list li:not(:nth-of-type(3n)) {
    margin-right: 5%;
  }
  .info-item-list li:not(:nth-of-type(-n+3)) {
    margin-top: 5%;
  }
  .info-item-list li a:hover img {
    opacity: 0.8;
  }
  .info-item-list li img {
    display: block;
    width: 100%;
  }
  .info-item-list li p {
    text-align: center;
  }

  .info-item-list__name {
    font-weight: 600;
  }
}
.info-contact {
  padding: 20px;
  background: #f3f3f3;
}
.info-contact p {
  font-size: 1.4rem;
}

.info-contact__tit {
  margin-bottom: 0.5em;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.4;
}



.under {
  text-decoration: underline;
}









.c-bottom .title {
	font-size: 24px;
	font-weight: normal;
    padding: 10px 0;

}



.linkurl{
	color: #2490D5;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}





.side .kugiri {
	border-bottom: none;
	margin: 0;
	padding: 0;
}


		 .footer .area-map .kugiri .title {
		 	background:none;
		 	color: inherit;
		 	padding: 0;
		 	margin-bottom: 10px;
            padding: 0 0 5px 3px;
 			font-weight: bold;
            border-bottom: 2px solid #DDD;
		 }
		.footer .area-sns .title {
			display: block;

.c-bottom .title {
	font-size: 24px;
	font-weight: normal;
    padding: 10px 0;
}

 .footer .area-sns .title {
 	max-width: 400px;
 	width: 80%;
 	margin: 0 auto;
 }
		.footer .area-sns .title {
			display: block;
		}
		













