@charset "utf-8";

/*h2ブロック*/
.centerArea{
  padding: 60px 0;
  position: relative;
  background: #F7F9FA;
}
.centerArea::before,.centerArea::after{
  position: absolute;
  content: '';
  background-color: #FFF;
  background-image: url(/common_2025/img/line.svg);
  background-size: cover;
  width: 100%;
  height: 20px;
  left: 0;
}
.centerArea::before{
  top: 0;
}
.centerArea::after{
  bottom: 0;
}
.centerArea_inner{
  max-width: 950px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .centerArea_inner{
    width: 100%;
  }
}
.centerArea_inner_flex{
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 768px) {
  .centerArea_inner_flex{
    align-items: center;
    flex-direction: column;
    max-width: 445px;
  }
}
.centerArea_inner_flex_img{
  width: 50%;
}
@media (max-width: 768px) {
  .centerArea_inner_flex_img{
    width: 315px;
    margin: 0 auto;
  }
}
.centerArea_inner_flex_content{
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
@media (max-width: 768px) {
  .centerArea_inner_flex_content{
    width: 100%;
  }
}
.centerArea_inner_btn{
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .centerArea_inner_btn{
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
  }
}

.centerArea_inner h2{
  align-self: stretch;
  color: #002D64;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 768px) {
  .centerArea_inner h2{
    font-size: 20px;
  }
}
.h2deco{
  display: flex;
  flex-direction: column-reverse;
  gap: 5px;
  margin-bottom: 40px;
}
.h2deco p{
  align-self: stretch;
  color: #E1005A;
  text-align: center;
  font-family: "Open Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

/*テキスト*/
.text{
  align-self: stretch;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
@media (max-width: 768px) {
  .text{
    padding: 0 30px;
  }
}

/*cvボタン*/
.cv_btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cv_btn {
    width: 100%;
  }
}
.cv_btn a{
  display: flex;
  width: 355px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 100px;
  text-decoration: none;
  position: relative;
  flex: 1 0 0;
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cv_btn a{
    display: inline-flex;
    max-width: 315px;
    width: 100%;
    margin: 0 auto;
  }
}
.cv_btn a.btn_blue{
  background: #FFF;
  color: #002D64;
  border: 2px solid #002D64;
  transition: .2s all;
  font-size: 14px;
  height: 45px;
}
.cv_btn a.btn_pink{
  background: #E1005A;
  color: #FFF;
  border: 2px solid #E1005A;
  transition: .2s all;
  font-size: 18px;
  height: 59px;
}
@media (max-width: 768px) {
  .cv_btn a.btn_pink{
    font-size: 16px;
  }
}
.cv_btn a.btn_blue:hover{
  background: #002D64;
  color: #FFF;
}
.cv_btn a.btn_pink:hover{
  background: #FFF;
  color: #E1005A;
}
.cv_btn a::after{
  position: absolute;
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.cv_btn a.btn_blue::after{
  background-image: url(/common_2025/img/icon_arrow_blue.svg);
}
.cv_btn a.btn_pink::after{
  background-image: url(/common_2025/img/icon_arrow_white.svg);
}
.cv_btn a.btn_blue:hover::after{
  background-image: url(/common_2025/img/icon_arrow_white.svg);
}
.cv_btn a.btn_pink:hover::after{
  background-image: url(/common_2025/img/icon_arrow_pink.svg);
}
.cv_btn span{
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  display: inline-block;
  padding: 8px 0;
  position: relative;
}
.cv_btn span.btn_bubble_pink{
  color: #E1005A;
}
.cv_btn span.btn_bubble_blue{
  color: #002D64;
}
.cv_btn span::before,.cv_btn span::after{
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  box-sizing: border-box;
  top: 50%;
}
.cv_btn span::before{
  transform: rotate(60deg) translateY(-50%);
  left: -24px;
}
.cv_btn span::after{
  transform: rotate(-60deg) translateY(-50%);
  right: -24px;
}
.cv_btn span.btn_bubble_pink::before,.cv_btn span.btn_bubble_pink::after{
  background-color: #E1005A;
}
.cv_btn span.btn_bubble_blue::before,.cv_btn span.btn_bubble_blue::after{
  background-color: #002D64;
}