@charset "UTF-8";
:root {
  --color-base: #333;
  --color-red-f76: #F76855;
  --gradient-blue: linear-gradient(90deg, #0174D9 0%, #73D8EC 100%);
  --gradient-red: linear-gradient(90deg, #EF4C62 0%, #F6A28A 100%);
  --container-xl: 1280px;
}

html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, helvetica, arial, sans-serif;
  color: var(--color-base);
}

body {
  position: relative;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.0784313725);
}
@media (max-width: 1023px) {
  .header {
    position: initial;
    box-shadow: initial;
  }
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
@media (max-width: 767px) {
  .header_inner {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .header_inner {
    padding: 12px;
  }
}
@media (max-width: 767px) {
  .header_logo {
    width: 180px;
  }
}
.header_btns {
  display: flex;
  gap: 16px;
}
@media (max-width: 1023px) {
  .header_btns {
    display: none;
  }
}
.header_btn {
  display: grid;
  place-items: center;
  width: 200px;
  height: 48px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.header_btn:hover {
  opacity: 0.8;
}
.header_btn_blue {
  background-color: #1383DC;
}
.header_btn_red {
  background-color: #FF6D6D;
}

.main {
  margin-top: 88px;
}
@media (max-width: 1023px) {
  .main {
    margin-top: initial;
  }
}

.footer {
  background-color: #313A4A;
  color: #fff;
}
.footer_inner {
  padding: 80px 0 20px;
}
@media (max-width: 767px) {
  .footer_inner {
    padding-top: 40px;
  }
}
.footer_logo {
  margin: 0 auto 40px;
}
@media (max-width: 767px) {
  .footer_logo {
    width: 160px;
    margin-bottom: 24px;
  }
}
.footer_copy {
  display: block;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer_copy {
    font-size: 12px;
  }
}

.pages_section {
  position: relative;
  padding-block: 80px 100px;
}
@media (max-width: 1023px) {
  .pages_section {
    padding-block: 40px 60px;
  }
}
.pages_section ~ .pages_section::before {
  content: "";
  position: absolute;
  top: -40px;
  inset-inline: 0;
  margin-inline: auto;
  width: 1px;
  height: 80px;
  background-color: #000;
}
@media (max-width: 1023px) {
  .pages_section ~ .pages_section::before {
    top: -20px;
    height: 40px;
  }
}

.pages_container {
  max-width: var(--container-xl);
  padding: 0 40px;
  margin: auto;
}
@media (max-width: 1023px) {
  .pages_container {
    max-width: initial;
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  .pages_container {
    padding: 0 16px;
  }
}

.pages_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  margin-bottom: 80px;
}
@media (max-width: 1023px) {
  .pages_heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .pages_heading {
    margin-bottom: 24px;
  }
}
.pages_heading_text_1 {
  color: var(--color-red-f76);
  font-size: 18px;
}
@media (max-width: 1023px) {
  .pages_heading_text_1 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .pages_heading_text_1 {
    font-size: 14px;
  }
}
.pages_heading_text_2 {
  font-size: 40px;
}
@media (max-width: 1023px) {
  .pages_heading_text_2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .pages_heading_text_2 {
    font-size: 32px;
  }
}
@media (max-width: 639px) {
  .pages_heading_text_2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .pages_heading_text_2 {
    font-size: 22px;
  }
}

.btn_grad_blue {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 416px;
  height: 72px;
  background: var(--gradient-blue);
  border-radius: 6px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  transition: 0.2s;
}
.btn_grad_blue::after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: 20px;
  margin-block: auto;
  width: 10px;
  height: 17px;
  background: url("/img/icon-arrow.svg") 0 0 no-repeat;
}
.btn_grad_blue:hover {
  opacity: 0.8;
}
@media (max-width: 1279px) {
  .btn_grad_blue {
    width: 300px;
    height: 56px;
    font-size: 16px;
  }
  .btn_grad_blue::after {
    content: none;
  }
}

.btn_grad_red {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 416px;
  height: 72px;
  background: var(--gradient-red);
  border-radius: 6px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  transition: 0.2s;
}
.btn_grad_red::after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: 20px;
  margin-block: auto;
  width: 10px;
  height: 17px;
  background: url("/img/icon-arrow.svg") 0 0 no-repeat;
}
.btn_grad_red:hover {
  opacity: 0.8;
}
@media (max-width: 1279px) {
  .btn_grad_red {
    width: 300px;
    height: 56px;
    font-size: 16px;
  }
  .btn_grad_red::after {
    content: none;
  }
}
.bnr_cp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  transition: 1s;
  width: 480px;
  box-sizing: border-box;
  &:hover {
    margin-bottom: 8px;
  }
  @media (max-width: 767px) {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 20px 12px;
  }
}
.bnr_cp_innner {
  position: relative;
  border: 4px solid #fff;
  box-sizing: content-box;
  @media (max-width: 575px) {
    border-width: 3px;
  }
}
.bnr_cp_close {
  transition: transform 0.5s ease 0.2s, opacity 0.5s ease, top 0.5s ease 0.2s, -webkit-transform 0.5s ease 0.2s;
  z-index: 2;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.11);
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  position: absolute;
  top: -10px;
  left: -10px;
  margin: 0;
  padding: 0;
  border: none;
  background-color: #fff;
  display: grid;
  place-items: center;
  &:hover {
    opacity: 0.8;
  }
  @media (max-width: 575px) {
    top: -15px;
    left: -15px;
  }
}
.bnr_cp_close_img {
  margin: auto;
}