@charset "utf-8";

/* rem設定用 */
html {
  font-size: 62.5%;
}

/*============================
#layout
margin、paddingなどは親コンテナの幅を基準に％指定
30pxなら30/640*100=4.69%、通常4.69%に設定
画像は左右paddingとmax-widthでコントロール
============================*/

#wrapper {
  width: 100%;
  background-color: #fff;
}
#wrapper .mainCont {
  position: relative;
  max-width: 750px; /* デザインデータ幅を最大幅に設定 */
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
}
#wrapper img {
  width: 100%;
}

#wrapper a {
  text-decoration: none;
  color: #000;
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -ms-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
#wrapper a:hover {
  opacity: 0.7;
}

/* 本文用のpはここで一括指定しています */
#wrapper p,
#wrapper h1,
#wrapper h2,
#wrapper h3 {
  font-size: 1rem;
  line-height: 1;
  text-align: left;
}

#wrapper .mainCont .contents .offer{
  background-color: #FF6098;
  padding-bottom: min(calc(40/750*100%),40px);
}

#wrapper .mainCont .contents  .btn-offer{
  width: calc(688/750*100%);
  margin: 0 auto min(calc(30/750*100%),30px);

}

#wrapper .mainCont .contents #consultation ul{
  display: flex;
  flex-wrap: wrap;
}

#wrapper .mainCont .contents #consultation ul li{
  width: 50%;
}

#wrapper .mainCont .contents #close{
  background-color: #DEF2FD;
  padding-bottom: calc(10/750*100%);
}

#wrapper #form-area{
  padding: 6% 4.69% 0;
  background-color: #64c5e8;
}

#wrapper #form-area form{
  width: 100%;
  padding: 2% 0 0;
}

#wrapper #form-area form .form-group{
  width: 100%;
  padding: 0 8% 4%;
  background-color: #fff;
}

#wrapper #form-area form .form-group:first-child{
  padding: 4% 8% 4%;
}

#wrapper #form-area form .form-group.submit-button{
  padding: 0;
  background-color: transparent;
  padding: 5% 0;
}

#wrapper #form-area form p{
  font-size: min(3.7vw, 28px);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

#wrapper #form-area form input,
#wrapper #form-area form select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: min(3.2vw, 24px);
}

#wrapper #form-area form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px;
  padding-right: 40px;
}

#wrapper #form-area form .required {
  background-color: #133479;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: min(2.8vw, 20px);
  margin-left: 10px;
}

#wrapper #form-area form .submit-button button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

#wrapper #form-area form .submit-button img {
  width: 100%;
  height: auto;
}

#wrapper footer {
  padding: 6% 4.69% 0;
}

#wrapper footer .footer-inner {
  width: 100%;
  padding: 6% 0 8%;
  border-top: solid 1px #7c7c7c;
}

#wrapper footer .footer-inner p {
  font-size: min(3.7vw, 28px);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

#wrapper footer .footer-inner p:last-child {
  margin-bottom: 0;
}
.privacy {
  font-size: 11px !important;
  text-align: center !important;
  padding: 0 auto !important;
  margin: 0 auto 5% auto !important;
  display: block !important;
}
@media (max-width:750px){
  .privacy {
    margin-bottom: 15%!important;
  }
}
.float {
  display: block;
  width: 55%;
  height: auto;
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 10000;
}

@media (min-width: 750px) {

.float {
  display: block;
  width: 32%;
  height: auto;
  position: fixed;
  bottom: 10px;
  left: 60%;
  z-index: 10000;
}
}