@charset "UTF-8";
/* 基本設定 */
/*============================================
	― 変数設定
=============================================*/
/*============================================
	― PC表示
=============================================*/
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

/*============================================
	― スマホ表示切り替え
=============================================*/
@media screen and (max-width: 769px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
}

/* modules */
.mailform {
  background-color: #e9bcb7;
  background-image: linear-gradient(315deg, #9e9e9e 0%, #5b5b5b 74%);
}
.mailform .wrapper {
  padding: 100px 0 60px 0;
}
.mailform .wrapper .inner form#mail_form .title {
  padding: 0 0 60px 0;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mailform .wrapper .inner form#mail_form .title .left {
  border-left: solid 2px #fff;
  padding: 25px 0 25px 40px;
}
.mailform .wrapper .inner form#mail_form .title .left h3 {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 6px;
  font-size: 55px;
}
.mailform .wrapper .inner form#mail_form .title .left h2 {
  color: #fff;
  letter-spacing: 8px;
  font-size: 22px;
  margin: 20px 0 0 0;
}
.mailform .wrapper .inner form#mail_form .title .right {
  width: 50%;
}
.mailform .wrapper .inner form#mail_form .title .right h4 {
  font-family: "Syncopate";
  color: transparent;
  -webkit-text-stroke: rgb(220, 220, 220) 1.5px;
  font-weight: 700;
  letter-spacing: 5px;
  font-size: 30px;
}
.mailform .wrapper .inner form#mail_form .title .right .sentence {
  color: #fff;
  letter-spacing: 2px;
  line-height: 2.4;
  font-size: 16px;
}

/* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */
form#mail_form * {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

form#mail_form {
  width: 90%;
  max-width: 1920px;
  margin: 0px auto 0;
  padding: 50px 0 50px 0;
  border-radius: 0px;
  line-height: 1.8;
}

form#mail_form dl {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #cccccc;
}

form#mail_form dl:after,
form#mail_form dl dt:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

form#mail_form dl dt {
  width: 30%;
  float: left;
  padding: 35px 0 25px;
  text-align: right;
  color: #fff;
}

form#mail_form dl dd {
  width: 65%;
  float: right;
  padding: 30px 0 25px 5%;
}

form#mail_form dl dt i {
  float: left;
  position: relative;
  top: -2px;
  font-style: normal;
}

/* -- span.required, span.optional -------------------------------------------------------------------------------- */
form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
  display: inline-block;
  font-size: 85%;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 0px;
}

form#mail_form dl dt span.required {
  border: 2px solid #fff;
}

form#mail_form dl dt span.optional {
  border: 2px solid #fff;
}

/* -- error message -------------------------------------------------------------------------------- */
form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
  display: block;
  color: #ff0000;
  margin-top: 5px;
}

/* -- loading -------------------------------------------------------------------------------- */
div.loading-layer {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10000;
}

span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffffff;
  transform: translateZ(0);
  animation: load-circle 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
@keyframes load-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* -- input, select, textarea -------------------------------------------------------------------------------- */
form#mail_form input[type=text],
form#mail_form input[type=email],
form#mail_form input[type=tel] {
  width: calc(96% - 2px);
  padding: 7px 2%;
  border: 1px solid #cccccc;
  border-radius: 0px;
  background: #fafafa;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
  font-family: inherit;
  line-height: normal;
}

form#mail_form input[type=text]:focus,
form#mail_form input[type=email]:focus,
form#mail_form input[type=tel]:focus,
form#mail_form textarea:focus {
  box-shadow: 0px 0px 5px #55ccff;
  border: 1px solid #55ccff;
  background: #ffffff;
}

form#mail_form ul li input[type=radio],
form#mail_form ul li input[type=checkbox] {
  margin: 0 10px 0 0;
}

form#mail_form select {
  padding: 7px 2%;
  border: 1px solid #cccccc;
  font-size: 16px;
  font-family: inherit;
  line-height: normal;
}

form#mail_form textarea {
  display: block;
  width: calc(96% - 2px);
  height: 200px;
  padding: 7px 2%;
  resize: vertical;
  border: 1px solid #cccccc;
  border-radius: 0px;
  background: #fafafa;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
  font-family: inherit;
  line-height: normal;
}

/* -- ul, li -------------------------------------------------------------------------------- */
form#mail_form ul {
  list-style-type: none;
}

form#mail_form ul li label {
  display: block;
  margin-top: 10px;
  padding: 7px 2%;
  border-radius: 0px;
  background: #f0f0f0;
}

form#mail_form ul li:first-child label {
  margin-top: 0px;
}

form#mail_form ul li label:hover {
  cursor: pointer;
  background: #e0e0e0;
}

/* -- input design -------------------------------------------------------------------------------- */
form#mail_form input[name=company] {
  width: 70%;
}

form#mail_form input[name=name_1],
form#mail_form input[name=name_2],
form#mail_form input[name=read_1],
form#mail_form input[name=read_2],
form#mail_form input[name=postal],
form#mail_form input[name=phone],
form#mail_form input[name=zip21],
form#mail_form input[name=zip22] {
  width: 30%;
}

form#mail_form input[name=pref21],
form#mail_form input[name=addr21],
form#mail_form input[name=strt21] {
  width: 90%;
}

form#mail_form input[name=mail_address],
form#mail_form input[name=mail_address_confirm] {
  width: 80%;
}

form#mail_form input[name=postal] + a {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid #46b8da;
  border-radius: 0px;
  background: #5bc0de;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  text-decoration: none;
}

form#mail_form input[name=postal] + a:hover {
  cursor: pointer;
  background: #31b0d5;
  border: 1px solid #269abc;
}

form#mail_form input[name=address] {
  width: calc(96% - 2px);
}

form#mail_form input[name=phone_1],
form#mail_form input[name=phone_2],
form#mail_form input[name=phone_3] {
  width: 20%;
}

form#mail_form .haihun {
  display: inline-block !important;
  font-size: 30px !important;
  padding: 0 20px 0 20px !important;
}

/* -- button -------------------------------------------------------------------------------- */
p#form_submit {
  width: 90%;
  margin: 0 auto;
  padding: 15px 0;
  position: relative;
}
p#form_submit:after {
  transition: 0.3s;
  content: "";
  width: 20px;
  height: 20px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transform: rotate(45deg);
}

/*==============================================
submit(送信ボタン)
===============================================*/
/* 変数設定 */
input[type=button] {
  background: transparent;
  vertical-align: middle;
  line-height: 1;
  color: #ffffff;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  font-weight: 700;
  margin: 10px auto 0px;
  padding: 18px 5px 22px 5px !important;
  border-radius: 0;
  border: 2px solid #fff;
  position: relative;
  z-index: 0;
  transition: 0.3s;
  font-size: 30px;
}
input[type=button]:hover {
  cursor: pointer;
}

input#form_submit_button {
  margin-left: 0;
  margin: 0 auto 0;
}

/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
/* 1000pixel start */
@media screen and (max-width: 1000px) {
  /* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */
  form#mail_form {
    width: 95%;
    font-size: 100%;
  }
  form#mail_form dl dt {
    width: auto;
    float: none;
    padding: 25px 0 10px;
    text-align: left;
    font-weight: bold;
  }
  form#mail_form dl dd {
    width: auto;
    float: none;
    padding: 0px 0 20px 0px;
  }
  form#mail_form dl dt i {
    float: none;
    position: static;
    font-weight: normal;
  }
  /* -- span.required, span.optional -------------------------------------------------------------------------------- */
  form#mail_form dl dt span.required,
  form#mail_form dl dt span.optional {
    margin: 0 15px 0 0;
  }
  /* -- input design -------------------------------------------------------------------------------- */
  form#mail_form input[name=phone],
  form#mail_form input[name=schedule] {
    width: 60%;
  }
  /* -- button -------------------------------------------------------------------------------- */
  form#mail_form p#form_submit {
    padding: 25px 0;
  }
  form#mail_form input[type=button] {
    margin-left: 0;
  }
}
/* 1000pixel end */
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .mailform .wrapper {
    padding: 65px 0 25px 0;
  }
  .mailform .wrapper .inner form#mail_form .title {
    padding: 0 0 65px 0;
  }
  .mailform .wrapper .inner form#mail_form .title .left {
    padding: 25px 0 25px 30px;
  }
  .mailform .wrapper .inner form#mail_form .title .left h3 {
    letter-spacing: 5px;
    font-size: 4vw;
  }
  .mailform .wrapper .inner form#mail_form .title .left h2 {
    letter-spacing: 8px;
    font-size: 2.2vw;
    margin: 20px 0 0 0;
  }
  .mailform .wrapper .inner form#mail_form .title .right {
    width: 50%;
  }
  .mailform .wrapper .inner form#mail_form .title .right h4 {
    -webkit-text-stroke: rgb(220, 220, 220) 1.5px;
    letter-spacing: 2px;
    font-size: 2.5vw;
  }
  .mailform .wrapper .inner form#mail_form .title .right .sentence {
    letter-spacing: 2px;
    line-height: 2.4;
    font-size: 1.6vw;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .mailform .wrapper {
    padding: 65px 0 25px 0;
  }
  .mailform .wrapper .inner form#mail_form .title {
    padding: 0 0 65px 0;
  }
  .mailform .wrapper .inner form#mail_form .title .left {
    padding: 25px 0 25px 30px;
  }
  .mailform .wrapper .inner form#mail_form .title .left h3 {
    letter-spacing: 5px;
    font-size: 4vw;
  }
  .mailform .wrapper .inner form#mail_form .title .left h2 {
    letter-spacing: 8px;
    font-size: 2.2vw;
    margin: 20px 0 0 0;
  }
  .mailform .wrapper .inner form#mail_form .title .right {
    width: 50%;
  }
  .mailform .wrapper .inner form#mail_form .title .right h4 {
    -webkit-text-stroke: rgb(220, 220, 220) 1.5px;
    letter-spacing: 2px;
    font-size: 2.5vw;
  }
  .mailform .wrapper .inner form#mail_form .title .right .sentence {
    letter-spacing: 2px;
    line-height: 2.4;
    font-size: 1.6vw;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .mailform .wrapper {
    padding: 45px 0 25px 0;
  }
  .mailform .wrapper .inner form#mail_form .title {
    padding: 0 0 10px 0;
    display: block;
    max-width: 92%;
    margin: 0 auto 0;
  }
  .mailform .wrapper .inner form#mail_form .title .left {
    padding: 25px 0 25px 20px;
    width: 100%;
  }
  .mailform .wrapper .inner form#mail_form .title .left h3 {
    letter-spacing: 5px;
    font-size: 7vw;
  }
  .mailform .wrapper .inner form#mail_form .title .left h2 {
    letter-spacing: 4px;
    font-size: 5.5vw;
    margin: 20px 0 0 0;
  }
  .mailform .wrapper .inner form#mail_form .title .right {
    width: 100%;
  }
  .mailform .wrapper .inner form#mail_form .title .right h4 {
    -webkit-text-stroke: rgb(220, 220, 220) 1.5px;
    letter-spacing: 1px;
    font-size: 7vw;
  }
  .mailform .wrapper .inner form#mail_form .title .right .sentence {
    letter-spacing: 2px;
    line-height: 2.4;
    font-size: 4vw;
  }
} /* 767px responsive-closed */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 THANKS 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
#thanks {
  background-color: #e9bcb7;
  background-image: linear-gradient(315deg, #9e9e9e 0%, #5b5b5b 74%);
  padding: 160px 0 60px 0;
}
#thanks .wrapper {
  max-width: 1280px;
  padding: 80px 0 80px 0;
  background: rgba(78, 78, 78, 0.9);
  margin: 0 auto 0;
}
#thanks .wrapper .title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0 0;
}
#thanks .wrapper .title h3 {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
  font-size: 50px;
  margin: 0 20px 0 0;
}
#thanks .wrapper .title h2 {
  color: #fff;
  letter-spacing: 3px;
  font-size: 30px;
}
#thanks .wrapper .inner {
  margin: 60px 0 0 0;
}
#thanks .wrapper .inner h1 {
  width: 90%;
  margin: 0 auto;
  font-size: 27px;
  font-weight: bold;
  padding: 0 0 16px 0;
  border-bottom: 3px solid #fff;
  color: #fff;
}
#thanks .wrapper .inner .sentence h2 {
  width: 90%;
  margin: 1.5em auto 0;
  font-size: 135%;
  font-weight: bold;
  padding: 0 0 13px 0;
  border-bottom: 2px solid #fff;
  color: #fff;
}
#thanks .wrapper .inner .sentence.main p {
  width: 90%;
  margin: 0 auto;
  margin-top: 2em;
  font-style: normal;
  font-size: 18px;
  line-height: 1.7;
}
#thanks .wrapper .inner .sentence.sub p {
  width: 90%;
  margin: 0 auto;
  letter-spacing: 2px;
  margin-top: 2em;
  color: rgb(192, 192, 192);
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 2.2;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1000px以下のモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (max-width: 1000px) {
  #thanks .wrapper .inner {
    width: 95%;
    margin: 40px auto 40px;
  }
}
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* breakpoints *//*# sourceMappingURL=style.css.map */