@charset "utf-8";

/** 共通 ***/
.sale-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/** mv ***/
.mv {
  margin-top: 118px;
}

@media(max-width: 499px) {
  .mv {
    margin-top: 60px;
  }
}

.mv-bg {
  position: relative;
  width: 100%;
  height: calc(1069 / 1920 * 100vw);
  background: url(../../sale/images/mv.jpg);
  background-size: cover;
}

.mv-ttl {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.mv-ttl h2 {
  font-size: 80px;
  font-weight: 800;
  text-shadow:2px 2px 3px #ffffff;
}

.mv-ttl h2::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background: url(../../sale/images/touji-logo.png) no-repeat center;
}

@media(max-width: 1024px) {
  .mv-ttl h2 {
    font-size: 50px;
  }

  .mv-ttl h2::before {
    background-size: 50%;
  }
}

@media(max-width: 499px) {
  .mv-ttl h2 {
    font-size: 30px;
  }

  .mv-ttl h2::before {
    height: 50px;
    background-size: 20%;
  }
}

/* *** section m-visual *** */

.m-visual-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}

.m-visual__img {
  width: 50%;
}

.m-visual__img img {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*objedt-fit　IE対策*/
img.of_js {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;'; /*IE対策*/
}

.m-visual-box {
  width: 50%;
  height: 800px;
  padding: 50px;
  background: #F0F0F0;
}

.m-visual-box__ttl {
  font-size: 55px;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.m-visual-box__ttl span {
  display: block;
  font-size: 40px;
}

@media(max-width: 769px) {
  .m-visual__img {
    order: 2;
    width: 100%;
  }
  .m-visual__img img {
    height: auto;
  }
  .m-visual-box {
    width: 100%;
    height: auto;
    padding: 20px;
  }
  .m-visual-box__ttl {
    font-size: 32px;
    text-align: center;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
  .m-visual-box__ttl span {
    font-size: 24px;
  }
}

@media(max-width: 420px) {
  .m-visual-box__ttl {
    font-size: 24px;
  }
  .m-visual-box__ttl span {
    font-size: 16px;
  }
}

/** section description ***/

.description {
  margin-top: 100px;
}

@media(max-width: 499px) {
  .description {
    margin-top: 30px;
  }
}

.description-ttl h2 {
  width: 100%;
  margin: 0 auto;
}

.description-ttl img {
  width: 100%;
}

.description-cont {
  margin-top: 80px;
  background: url(../../sale/images/description.png) no-repeat center / 50%;
}

.description-cont p {
  padding-bottom: 25px;
  font-size: 18px;
}

@media(max-width: 499px) {
  .description-cont {
    margin-top: 30px;
  }
  .description-cont p {
    font-size: 16px;
  }
}

.description-cont .cont-r {
  text-align: right;
}

.description-cont .cont-c {
  text-align: center;
}

/** section sale-item ***/

.sale-item {
  margin-top: 100px;
}

.sale-item__ttl--header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.sale-item__ttl--img {
  -o-object-fit: cover;
     object-fit: cover;
}

.sale-item__ttl--txt {
  width: 50%;
}

.sale-item-ttl {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sale-item-ttl p:nth-child(3) {
  margin-top: 50px;
}

.sale-item-ttl p:nth-child(4) {
  font-size: 32px;
  font-weight: bold;
}

@media(max-width: 420px) {
  .sale-item__ttl--img {
    width: 100%;
  }
  .sale-item__ttl--img img {
    width: 100%;
  }
  .sale-item__ttl--txt {
    width: 100%;
  }
}

.sale-item-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 250px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../../sale/images/sale-ttl.png) no-repeat center/20%;
}

.sale-item-ttl h2 {
  font-size: 40px;
  font-weight: 700;
}

.sale-item-ttl p {
  font-size: 20px;
}

@media(max-width: 499px) {
  .sale-item-ttl h2 {
    font-size: 30px;
  }

  .sale-item-ttl p {
    font-size: 16px;
  }
}

.sale-item-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 80px;
}


.sale-item-cont-body {
  width: 48%;
  padding-bottom: 50px;
  text-align: center;
}

.sale-item-cont-body .pic {
  padding: 30px;
  background: #D2BE7F;
}

@media(max-width: 499px) {
  .sale-item-cont-body {
    width: 100%;
  }

  .sale-item-cont-body .pic {
    padding: 10px;
  }
}

.sale-item-cont-body .pic img {
  width: 100%;
}

.txt ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}


.txt ul > li {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 34px;
  font-weight: bold;
}


.txt p {
  padding-top: 20px;
  text-align: left;
}

.read {
  font-size: 28px;
}

.txt .read-end {
  text-align: right;
}

@media(max-width: 420px) {
  .txt ul>li {
    font-size: 20px;
  }
  .txt ul>li:first-child {
    width: 65%;
  }
  .txt ul>li:nth-child(2) {
    padding-left: 30px;
  }
  .txt ul>li img {
    width: 30%;
  }
  .read {
    font-size: 18px;
  }
}

/** section sale-form ***/

.sale-form {
  margin: 100px 0;
}

.sale-form-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 80px;
}


.sale-form-cont-body {
  width: 48%;
}

@media(max-width: 769px) {
  .sale-form-cont-body {
    width: 100%;
    margin-bottom: 50px;
  }

  .sale-form-cont-body:last-child {
    margin-bottom: 0;
  }
}

fieldset dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}


fieldset  dt {
  width: 30%;
  padding-right: 20px;
  padding-bottom: 20px;
  text-align: right;
}

fieldset dd {
  width: 69%;
  padding-bottom: 20px;
}

@media(max-width: 499px) {
  fieldset dt,
  fieldset dd {
    width: 100%;
  }

  fieldset dt {
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
  }

  input[type="text"] {
    width: 100%;
  }

  .select input[type="text"] {
    width: 30%;
  }
}

fieldset dd > input {
  width: 100%;
  padding: 10px;
}

textarea {
  width: 100%;
  border: 1px solid rgb(118, 118, 118);
  height: calc( 1.8em * 5 );
  line-height: 1.8;
}

.select input {
  width: 30%;
}

.send input {
  width: 100%;
  padding: 20px;
  background: #00173f;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  transition: all .5s;
}

.send input:hover {
  background: #dc143c;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 769px) {
  .send input[type="submit"] {
    -webkit-appearance: none;
  }
}

/* 確認画面のボタン ***/

.confirmation {
  width: 30%;
  margin: 20px 10px;
  padding: 20px;
  background: #00173f;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
}

.confirmation:hover {
  background: #dc143c;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 572px) {
  .confirmation {
    margin: 20px 0;
  }
}

.sale-tel {
  padding: 30px;
  background: #D2BE7F;
}

.sale-tel p {
  font-size: 16px;
  padding-bottom: 20px;
}

.sale-tel p:nth-child(2) {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.sale-tel p:nth-child(3),
.sale-tel p:nth-child(4) {
  padding-bottom: 0;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
}

.sale-tel p:nth-child(3) > span,
.sale-tel p:nth-child(4) > span {
  font-size: 20px;
  font-weight: bold;
}

@media(max-width: 499px) {
  .sale-tel {
    padding: 20px;
  }

  .sale-tel p:nth-child(3),
  .sale-tel p:nth-child(4) {
    font-size: 28px;
  }
}

/* thanks.html用CSS */

.thanks-wrap {
  margin: 250px 0;
}

.thanks-cont {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
}

.thanks-cont p {
  text-align: center;
  font-size: 18px;
}

.thanks-end {
  position: relative;
  padding-top: 20px;
  z-index: 10;
}