/*
Theme Name: BlankSlate Child
Template: blankslate
*/
html {
  font-size: 62.5%;
}

section {
  padding-block: 5rem;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #ffffff;
  z-index: 100;
  padding-block: 1.5rem;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  max-width: 152rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.header_logo {
  display: flex;
  align-items: center;
  gap: 0 4rem;
}

.logo img {
  width: 17rem;
  margin-top: 1.5rem;
}

.header_tel_num {
  display: flex;
}

.phone_icon {
  width: 2.6rem;
}

.header_phonenumber {
  font-family: "Roboto", sans-serif;
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 500;
  margin-left: 1rem;
}

.header_tel_hour span:first-child {
  color: #ffffff;
  background-color: #000000;
  border-radius: 2rem;
  padding: 0.3rem 1.2rem;
  font-size: 1.4rem;
}

.header_tel_hour span:last-child {
  font-size: 1.6rem;
}

.header_right {
  display: flex;
  align-items: center;
}

.nav_pc_list {
  display: flex;
  gap: 0 3rem;
  margin-right: 5rem;
}

.nav_pc_item a {
  font-size: 1.6rem;
  color: #454545;
}

.header_cta {
  display: flex;
}

.header_cta a {
  background: linear-gradient(90deg, rgba(255, 103, 152, 1) 0%, rgba(254, 195, 94, 1) 100%);
  padding: 1rem 4rem;
  border-radius: 4rem;
  text-align: center;
}

.header_cta a span {
  color: #ffffff;
  display: block;
}

.header_cta a span:first-child {
  font-size: 2rem;
  font-weight: 700;
}

.header_cta a span:last-child {
  font-size: 1.5rem;
}


/* cta */
.cta {
  background: linear-gradient(90deg, rgba(254, 101, 154, 1) 0%, rgba(254, 2, 86, 1) 100%);
  padding-block: 5rem;
}

.cta_inner {
  max-width: 98rem;
  margin-inline: auto;
}

.cta_title {
  text-align: center;
}

.cta_h2 {
  color: #ffffff;
  font-size: 3.3rem;
}

.cta_h2 span {
  font-size: 4.4rem;
}

.cta_box {
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  margin-top: 3rem;
  padding: 4.5rem 6rem;
}

.cta_fuki {
  position: absolute;
  top: -11rem;
  right: 0;
  width: 14rem;
}

.cta_phone {
  display: flex;
  flex: 2;
  flex-direction: column;
  border-right: 1px dashed #454545;
}

.cta_h3 {
  font-size: 1.8rem;
  color: #454545;
}

.cta_tel_num {
  display: flex;
}

.cta_phonenumber {
  font-family: "Roboto", sans-serif;
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 500;
  margin-left: 1rem;
}

.cta_tel_hour span:first-child {
  color: #ffffff;
  background-color: #000000;
  border-radius: 2rem;
  padding: 0.3rem 1.2rem;
  font-size: 1.4rem;
}

.cta_tel_hour span:last-child {
  font-size: 1.6rem;
}

.cta_btn {
  display: flex;
  flex: 3;
  justify-content: center;
  align-items: center;
}

.cta_btn a {
  background-color: #FF3378;
  text-align: center;
  padding: 0.4rem 4rem;
}

.cta_btn a span {
  display: block;
  color: #ffffff;
}

.cta_btn a span:first-child {
  font-size: 3.2rem;
  font-weight: 700;
}

.cta_btn a span:last-child {
  font-size: 2rem;
}

/* intro */
.intro_inner {
  max-width: 120rem;
  margin-inline: auto;
  text-align: center;
  text-align: -webkit-center;
}

.intro_fuki {
  position: relative;
  background-color: #ff6699;
  display: inline-block;
  padding: 0.8rem 3rem;
  border-radius: 3rem;
}

.intro_fuki::before {
  position: absolute;
  content: '';
  bottom: -13px;
  left: 30%;
  transform: translateX(0%) rotate(24deg);
  width: 0.9rem;
  height: 1.7rem;
  background-color: #ff6699;
}

.intro_fuki span {
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 0.3rem;
}

.intro_h2 {
  margin-top: 3rem;
}

.intro_h2 span {
  font-size: 3.5rem;
  color: #ff0055;
}

.intro_text {
  margin-top: 3rem;
}

.intro_text p {
  font-size: 1.8rem;
  font-weight: 500;
}

.intro_list {
  margin-top: 3rem;
}

.intro_moushikomi {
  margin-top: 3rem;
}

.intro_moushikomi a {
  position: relative;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 11rem;
  border: #ff6699 3px solid;
  border-radius: 3rem;
  width: fit-content;
  box-shadow: 0 4px 0 #ff6699;
  transition: all .3s;
}

.intro_moushikomi a:hover {
  bottom: -4px;
  box-shadow: 0 0 0 #ff6699;
}

.intro_moushikomi a::before {
  position: absolute;
  content: url(./images/intro_arrow.svg);
  top: 50%;
  transform: translateY(-50%);
  right: 2px;
  width: 46px;
  height: 46px;
}

.intro_moushikomi a span {
  font-size: 2rem;
  color: #ff6699;
  display: inline-block;
  line-height: 1;
}