/* 共通css */
.sp{
  display: none;
}
.pc{
  display: block;
}
@media screen and (max-width:768px) {
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
}

.container{
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.ttl{
  width: 33.4375rem;
  min-width: fit-content;
  margin: 0 auto 3.75rem;
  background:linear-gradient(transparent 80%,rgba(254, 252, 136, 0.72) 80%);
  text-align: center;
  white-space: nowrap;
  font-size: min(4.31vw,3.125rem);
}
@media screen and (max-width:768px) {
  .ttl{
    width: 100%;
    font-size: 7.2vw;
    margin-bottom: 2.5rem;
  }
}
.ttl_sub{
  font-size: min(2.6vw,1.875rem);
  text-align: center;
  margin-bottom: 10px;
  background:linear-gradient(transparent 60%,#E3F3FF 60%);
  max-width: 16.5rem;
}
@media screen and (max-width:768px) {
  .ttl_sub{
    font-size: 6vw;
    max-width: 55vw;
  }
}
.cta_btn{
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 40.625rem;
  background: #EC944C;
  color: #fff;
  text-align: center;
  font-size: min(2.6vw, 3.125rem);
  padding: min(1.25vw, 1.5rem) 0;
  margin: 0 auto;
  border-radius:1.6875rem!important;
  border: none;
  transition : all 0.5s ease 0s;
}
@media screen and (max-width:768px) {
  .cta_btn{
    font-size: 4vw;
  }
}
.cta_btn:hover{
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  text-decoration: none;
  color: #EC944C;
}
.footer{
  background-color: #CEEBFF;
  padding: 2.5rem 0;
}
@media screen and (max-width:768px) {
  .footer{
    padding: 1.25rem 0;
  }
}
.footer .container{
  display: flex;
  white-space: nowrap;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .footer .container{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer h2{
  font-size: min(3.1vw,2.25rem);
  font-weight: bold;
}
@media screen and (max-width:768px) {
  .footer h2{
    font-size: 4vw;
    margin-bottom: 0.625rem;
  }
}
.footer p{
  font-size: min(1.98vw,1.4375rem);
}
@media screen and (max-width:768px) {
  .footer p{
    font-size: 3vw;
  }
}
.footer a{
  font-size: min(2.25vw,1.875rem);
  color: #133248;
  text-decoration: underline;
  display: block;
}
@media screen and (max-width:768px) {
  .footer a{
    font-size: 4vw;
    margin-top: 0.625rem;
  }
}