body {
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #111;
}

.p-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 30px;
  text-align: left;
}

@charset "UTF-8";

/* ===== Base ===== */
:root{
  --lp-text: #111827;
  --lp-muted: #6b7280;
  --lp-border: #e5e7eb;
  --lp-bg: #ffffff;
  --lp-alt: #f6f7fb;
  --lp-card: #ffffff;
  --lp-primary: #1f3a8a;
  --lp-primary2: #0f2a66;
  --lp-shadow: 0 10px 30px rgba(0,0,0,.08);
  --lp-radius: 16px;
  --lp-max: 1080px;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{ color: var(--lp-text); background: var(--lp-bg); }
img{ max-width: 100%; height: auto; }
a{ color: inherit; text-decoration: none; }


/* ===== Layout ===== */
.lp{ width:100%; }
.lp-container{
  width: min(var(--lp-max), calc(100% - 40px));
  margin: 0 auto;
}

/* ===== Typography ===== */
.lp-h2{
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: .01em;
  text-align: center;
}

.lp-h3{
  margin: 0 0 16px;
  text-align: center;
}
.lp-lead{
  margin: 0 0 18px;
  color: var(--lp-text);
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}
.lp-caption{
  margin: 12px 0 0;
  color: var(--lp-muted);
  font-size: 13px;
}
.lp-small{
  margin: 14px 0 0;
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* ===== Sections ===== */
.lp-section{
  padding: 44px 0;
  background: var(--lp-bg);
}
.lp-section--alt{
  background: var(--lp-alt);
}
.lp-section--cta{
  background: linear-gradient(180deg, var(--lp-alt), #ffffff);
}

/* ===== Hero ===== */
@media (min-width: 768px) {
.lp-container-1{
  width: 100%;
  margin: 0 auto;
}
}
.lp-container-1{
  margin: 0 auto;
}
.lp-hero{
  padding: 56px 0 40px;
  background:
    linear-gradient(180deg,
      rgba(31,58,138,.38) 0%,
      rgba(31,58,138,.18) 18%,
      rgba(31,58,138,0) 55%
    ),
    radial-gradient(1200px 600px at 20% 0%, #d9e6ff 0%, rgba(231,239,255,0) 62%),
    radial-gradient(800px 400px at 90% 10%, #e8fff3 0%, rgba(232,255,243,0) 58%),
    #ffffff;

  border-bottom: 1px solid var(--lp-border);
}
.lp-hero__inner{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--lp-border);
  padding: 26px 18px;
  box-shadow: var(--lp-shadow);
  text-align: center;
}
@media (min-width: 768px) {
	.lp-hero__inner{
  background: none;
  border: none;
  border-radius: none;
  box-shadow: none;
	}
}
	
.lp-hero__eyebrow{
  margin: 0 0 10px;
  color: var(--lp-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
}
.lp-hero__title{
  margin-top: 47px;
 margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: .01em;
}
.lp-hero__media-1{
  margin: 14px auto 12px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
.lp-hero__media-1{
  margin: 24px auto 22px;
  display: flex;
  justify-content: center;
  max-width: 60%;
}
}

.lp-hero__mediaImg{
  width: min(520px, 100%);
  height: auto;
  display: block;
}

.lp-hero__lead2,
.lp-hero__program{
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.8;
}
.lp-hero__lead,
{
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}
.lp-hero__lead{
  color: var(--lp-primary);
}
.lp-hero__program{
  font-weight: 700;
  color: #D0A900;
}
.lp-hero__cta{
  margin-top: 18px;
}

.lp-hero__inner{
  position: relative;
  overflow: hidden;
}

.lp-hero__bgWrap{
  position: absolute;
  inset: 0;             /* top/right/bottom/left = 0 */
  z-index: 0;
}

.lp-hero__bg{
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
  opacity: .35; 
  transform: scale(1.05);
}

.lp-hero__bgWrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg,
    rgba(255,255,255,.88) 0%,
    rgba(255,255,255,.78) 35%,
    rgba(255,255,255,.90) 100%
  );
}

.lp-hero__content{
  position: relative;
  z-index: 1;
}


/* ===== Buttons ===== */
.lp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  box-shadow: 0 10px 20px rgba(31,58,138,.15);
}
.lp-btn:hover{ transform: translateY(-1px); }
.lp-btn--primary{
  background: var(--lp-primary);
  color: #fff;
}
.lp-btn--primary:hover{
  background: var(--lp-primary2);
}
.lp-btn--wide{
  width: 100%;
}


/* ===== Checklist ===== */
.lp-checklist.lp-checklist--boxed{
  list-style: none;
  padding: 0;
  margin: 16px auto 0;
  display: grid;
  gap: 12px;
  max-width: 720px; 
}

.lp-checklist.lp-checklist--boxed li{
  position: relative;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 16px 16px 16px 52px; 
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.lp-checklist.lp-checklist--boxed li::before{
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='%231f3a8a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lp-note{
  max-width: 720px;
  margin: 14px auto 0;
}


/* ===== Stats ===== */
.lp-stats{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 14px 0 16px;
}
.lp-stat{
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.lp-stat__value{
  font-weight: 800;
  color: var(--lp-primary);
  line-height: 1.5;
}

.lp-stats--stack{
  max-width: 760px;
  margin: 16px auto 18px;
  gap: 0; 
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow);
  background: #fff;
}

.lp-stat--big{
  padding: 26px 4px;
  box-shadow: none;
  border: none;
  border-radius: 0;
  background: transparent;
}

.lp-stat--big + .lp-stat--big{
  border-top: 1px solid var(--lp-border);
}

.lp-stat__label{
  text-align: center;
  font-weight: 800;
  color: var(--lp-text);
  line-height: 1.6;
  margin-bottom: 12px;
  letter-spacing: .02em;
}

.lp-stat__main{
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}

.lp-stat__num{
  font-weight: 900;
  font-size: 64px;     
  line-height: 1;
  color: #d4a72c;      
  letter-spacing: .01em;
}

.lp-stat__unit{
  font-weight: 900;
  font-size: 22px;
  color: var(--lp-text);
}


@media (min-width: 900px){
  .lp-stats--stack{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-stat--big + .lp-stat--big{
    border-top: none;
    border-left: 1px solid var(--lp-border);
  }
}

.lp-card--effect{
  padding: 0;
  overflow: hidden;
}

.lp-effect{
  display: grid;
}

.lp-effect__body{
  padding: 18px;
}

.lp-effect__result{
  padding: 18px;
  border-top: 1px solid var(--lp-border);
  background: linear-gradient(180deg, rgba(31,58,138,.06), rgba(31,58,138,.02));
}

.lp-effect__text{
  margin: 0;
  line-height: 2;
  color: var(--lp-text);
  font-size: 13px;
}

.lp-effect__result .lp-effect__text{
  font-weight: 900;
  color: var(--lp-primary);
  text-align: center;
}


/* ===== Cases ===== */
.lp-cases{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.lp-case{
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.lp-case__title{
  font-weight: 800;
  margin-bottom: 8px;
}
.lp-case__body{
  color: var(--lp-text);
  line-height: 1.9;
}

.lp-cases--v2{
  display: grid;
  gap: 14px;
}

.lp-case--v2{
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.lp-case--v2 .lp-case__title{
  margin: 0 0 12px;
  font-weight: 900;
  line-height: 1.5;
}

.lp-case__grid{
  display: grid;
  gap: 10px;
}

.lp-case__block{
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 12px 12px;
  background: #fff;
}

.lp-case__label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.lp-case__text{
  line-height: 1.9;
  font-size: 14px;
  color: var(--lp-text);
  word-break: break-word;
}

.lp-case__block--issue{
  background: rgba(31,58,138,.03);
  border-color: rgba(31,58,138,.16);
}
.lp-case__block--issue .lp-case__label{
  background: rgba(31,58,138,.10);
  color: var(--lp-primary);
}
.lp-case__block--action{
  background: #fff;
}
.lp-case__block--action .lp-case__label{
  background: rgba(17,24,39,.06);
  color: #111827;
}

.lp-case__block--result{
  background: rgba(16,185,129,.05);
  border-color: rgba(16,185,129,.20);
}
.lp-case__block--result .lp-case__label{
  background: rgba(16,185,129,.12);
  color: #065f46;
}

@media (min-width: 900px){
  .lp-case__grid{
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: start;
  }
}

/* ===== WHY ===== */
.lp-card--why{
  padding: 0;
  overflow: hidden;
}

.lp-why__headline{
  padding: 18px 18px 0px;
}

.lp-why__headText{
  margin: 0;
  font-weight: 900;
  line-height: 1.8;
  color: var(--lp-primary);
  text-align: center;
}

.lp-why__body{
  padding: 0px;
}

.lp-why__text{
  margin: 0;
  line-height: 2;
  font-size: 15px;
  color: var(--lp-text);
  text-align: center;
}

.lp-why__media{
  margin: 14px auto 14px;
  display: flex;
  justify-content: center;
}
.lp-why__img{
  width: min(520px, 100%);
  height: auto;
  display: block;
  border-radius: 14px;
}

.lp-why__result{
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(31,58,138,.18);
  background: rgba(31,58,138,.04);
  border-radius: 14px;
}

.lp-why__result .lp-why__text{
  font-weight: 900;
  color: var(--lp-primary);
}

/* ===== Compare ===== */
.lp-compare{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.lp-compare__col{
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.lp-compare__col--highlight{
  border-color: rgba(31,58,138,.35);
  box-shadow: 0 10px 28px rgba(31,58,138,.12);
}
.lp-compare__head{
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 4px;
}
.lp-compare__sub{
  color: var(--lp-muted);
  font-weight: 700;
  margin-bottom: 10px;
}
.lp-compare__list{
  margin: 0;
  padding-left: 1.2em;
}
.lp-compare__list li{
  margin: 8px 0;
  line-height: 1.8;
}
/* DIFFERENCE */
.lp-diff{
  margin-top: 16px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow);
  background: #fff;
}

.lp-diff__head{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lp-diff__col{
  padding: 16px 12px;
  text-align: center;
  border-bottom: 1px solid var(--lp-border);
}

.lp-diff__col--left{
  background: #f8fafc;
  border-right: 1px solid var(--lp-border);
}
.lp-diff__col--right{
  background: rgba(31, 58, 138, .03);
}

.lp-diff__title{
  font-weight: 900;
  font-size: 16px;
  line-height: 1.4;
}

.lp-diff__sub{
  margin-top: 6px;
  font-weight: 900;
  color: var(--lp-muted);
}

.lp-diff__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lp-diff__cell{
  padding: 14px 12px;
  line-height: 1.8;
  border-top: 1px solid var(--lp-border);
  text-align: center;
}

.lp-diff__cell--left{
  background: #ffffff;
  border-right: 1px solid var(--lp-border);
  color: var(--lp-text);
}

.lp-diff__cell--right{
  color: var(--lp-primary);
  font-weight: 800;
}

@media (max-width: 420px){
  .lp-diff__cell{ font-size: 14px; }
  .lp-diff__title{ font-size: 15px; }
}


.lp-diff__row--arrow .lp-diff__cell{
  position: relative;
  padding-top: 56px;  
  padding-bottom: 14px;
}


.lp-diff__row--arrow .lp-diff__cell--left::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;        
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 46px solid transparent;
  border-right: 46px solid transparent;
  border-top: 20px solid rgba(31,58,138,.18);
}


.lp-diff__row--arrow .lp-diff__cell--right::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;          
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 46px solid transparent;
  border-right: 46px solid transparent;
  border-top: 20px solid rgba(31,58,138,.30);
}


@media (max-width: 420px){
  .lp-diff__row--arrow .lp-diff__cell{
    padding-top: 52px;
  }
  .lp-diff__row--arrow .lp-diff__cell--left::after,
  .lp-diff__row--arrow .lp-diff__cell--right::after{
    border-left-width: 38px;
    border-right-width: 38px;
    border-top-width: 18px;
    top: 12px;
  }
}


.lp-h2--underline{
  display:block;
  border-bottom: 6px solid rgba(31,58,138,.85);
    text-align: center; 
    margin-left: auto;
    margin-right: auto;
    width: fit-content; 
}


/* ===== Benefits ===== */
.lp-benefits{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.lp-benefit{
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px;
  margin-bottom: 5px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  text-align: center;
}
.lp-benefit__title{
  display: inline-block;
  font-weight: 900;
  color: var(--lp-primary);
  margin-bottom: 8px;
}
.lp-benefit__body{
  line-height: 1.9;
}

.lp-benefit__top{
  margin-bottom: 10px;
}

.lp-benefit__topLine{
  margin: 0;
  font-weight: 900;   
  line-height: 1.6;
}


.lp-benefit__media{
  margin: 10px 0 12px;
  display: flex;
  display: flex;
  justify-content: center; 
  align-items: center;
}

.lp-benefit__img{
  width: min(220px, 30%);
  height: auto;
  display: block;
  border-radius: 14px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px){
.lp-benefit__img{
	width: min(520px, 30%);
	}
}
.lp-benefit__body p{
  margin: 0;
  line-height: 2;
}
.lp-benefit__body p + p{
  margin-top: 6px;
}

@media (max-width: 768px){
  .lp-benefits{
    text-align: center;
  }
  .lp-benefits .lp-benefit__media{
    justify-content: center; 
  }
  .lp-benefits .lp-benefit__body p{
    text-align: center;     
  }
}

/* ===== CTA Form ===== */
.lp-cta-box{
  margin-top: 14px;
}
.lp-cta-box__form{
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 18px;
  box-shadow: var(--lp-shadow);
}
.lp-formTitle{
  font-weight: 900;
  color: var(--lp-primary);
  margin-bottom: 10px;
}
.lp-formPlaceholder{
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 18px;
  color: var(--lp-muted);
  background: #fafafa;
}

/* ===== FAQ ===== */
.lp-faq{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.lp-faq__item{
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.lp-faq__q{
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
  list-style: none;
}
.lp-faq__q::-webkit-details-marker{ display:none; }
.lp-faq__a{
  padding: 16px 16px;
  color: var(--lp-text);
  line-height: 1.9;
}
.lp-faq__item[open] .lp-faq__q{
  border-bottom: 1px solid var(--lp-border);
}

/* ===== Last CTA ===== */
.lp-lastCta{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* ===== Sticky CTA (mobile) ===== */
.lp-stickyCta{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--lp-border);
  z-index: 9999;
}
.lp-stickyCta__btn{
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--lp-primary);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(31,58,138,.18);
}
@media (min-width: 960px){
  .lp-stickyCta{ display:none; }
}

.form .form-submit .btn-submit {
    display: block;
    margin: 0 auto;
    padding: 10px 46px;
    border: none;
    font-size: 12px;
    font-weight: 700px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    letter-spacing: 0.1rem;
    width: 240px;
    height: 53px;
}
.btn{
	background: linear-gradient(180deg, var(--lp-alt), #ffffff);
    color: var(--lp-primary);
	box-shadow: 0 4px 4px rgba(255, 255, 255, 0.25);
}
/* ===== PC ===== */
@media (min-width: 768px){
  .lp-section{ padding: 64px 0; }
  .lp-h2{ font-size: 28px; }
  .lp-hero{ padding: 80px 0 56px; }
  .lp-hero__inner{ padding: 34px 28px; }
  .lp-hero__title{ font-size: 42px; }
  .lp-hero__lead,
  .lp-hero__lead2,
  .lp-hero__program{ font-size: 30px; }
  .lp-hero__eyebrow {font-size: 26px; }

  .lp-stats{
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-cases{
    grid-template-columns: 1fr;
  }
  .lp-compare{
    grid-template-columns: 1fr 1fr;
  }
  .lp-benefits{
    grid-template-columns: 1fr 1fr;
  }
	.lp-btn {font-size: 25px;}
}
@media (min-width: 1100px){
  .lp-benefits{
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.form {
  background: url("../img/bg-form.jpg") no-repeat center center/cover;
  padding: 100px 0px;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}
.form .section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 70px;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 768px) {
  .form .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
.form .form-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .form .form-wrap {
    max-width: 100%;
    padding: 0 20px;
  }
}
.form .form-group {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .form .form-group {
    margin-bottom: 18px;
  }
}
.form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .form .form-group label {
    font-size: 13px;
  }
}
.form .form-group label .required {
  display: inline-block;
  background-color: #a00000;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 5px;
  border-radius: 2px;
  vertical-align: middle;
  line-height: 1;
  margin-left: 4px;
}
.form .form-group .form-control {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 4px;
  background: #fff;
  color: #020018;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .form .form-group .form-control {
    padding: 12px 10px;
    font-size: 14px;
  }
}
.form .form-group textarea.form-control {
  height: 150px;
  resize: none;
}
@media screen and (max-width: 768px) {
  .form .form-group textarea.form-control {
    height: 120px;
  }
}
.form .form-submit {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .form .form-submit {
    margin-top: 30px;
  }
}
.form .form-submit .btn-submit {
  display: block;
  margin: 0 auto;
  padding: 10px 46px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease;
  letter-spacing: 0.1rem;
  width: 240px;
  height: 53px;
}
.form .form-submit .btn-submit:hover {
  opacity: 0.8;
}
.form .form-note {
  margin-top: 40px;
  font-size: 13px;
  color: #C0C0C0;
  line-height: 2;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .form .form-note {
    font-size: 11px;
    margin-top: 24px;
    line-height: 1.8;
  }
}
.form .wpcf7-spinner {
  display: none !important;
}

.footer {
  font-size: 16px;
  text-align: center;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 9px;
    padding: 12px 0;
  }
}

.thanks {
  text-align: center;
  padding: 160px 20px;
  background: #fff;
  color: #020018;
}
.thanks .thanks-title {
  font-size: 48px;
  font-weight: 700;
  color: #0B1644;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .thanks .thanks-title {
    font-size: 36px;
    margin-top: 20px;
  }
}
.thanks .thanks-text {
  font-size: 24px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .thanks .thanks-text {
    font-size: 18px;
    margin-bottom: 50px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
}
