@charset "utf-8";

/* rem設定用 */
html{
    font-size: 15px;
}

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

#wrapper {
  width: 100%;
  background-color: #FFF;
  
}
#wrapper .mainCont {
  position: relative;
  width: 100%;
  max-width: 750px; /* デザインデータ幅を最大幅に設定 */
  margin: 0 auto;
  background-image: linear-gradient(45deg, #d6f0f8 25%, #fff 25%, #fff 50%, #d6f0f8 50%, #d6f0f8 75%, #fff 75%);
  background-size: 20px 20px;
  text-align: center;
  overflow: hidden;
}
#wrapper .thank-box {
  width: 92%;
  margin: 8% auto;
  background: #fff;
  border: solid 1px #37518b;
}
#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;
}

#wrapper .thank-txt-box {
  padding: 7% 4.69% 0;
}
#wrapper .thank-txt-box p {
  font-size: 1.06rem;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 5%;
  font-family: 'Noto Sans JP', sans-serif;
}

#wrapper .thank-txt-box p:last-child {
  margin-bottom: 0;
}

#wrapper .thank-txt-box ul {
  margin-bottom: 5%;
}

#wrapper .thank-txt-box li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.06rem;
  line-height: 1.6;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
}

#wrapper .thank-txt-box li::before{
  content: '・';
}

#wrapper footer {
  padding: 16% 4.69% 10%;
}

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

#wrapper footer .footer-inner p {
  font-size: 1.06rem;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 6%;
  font-family: 'Noto Sans JP', sans-serif;
}

#wrapper footer .footer-inner p:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
/*rem設定用*/
  html {
    font-size: 20px;
  }
}

/*20230516*/
.b-tel,
.b-tel a {
    color: #FF0000 !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    text-decoration: none;
}

