@charset "UTF-8";

/* ============================================
   サイト全体共通
   ============================================ */
html, body {
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  /* 16px × 0.625 = 10px */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background-color: #2C71C2;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  transition: 0.6s;
}

a:hover {
  opacity: 0.5;
}

/* コンテンツ幅 */
.wrapper_big {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.wrapper_medium {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

.wrapper_small {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

/* 表示切り替え */
.sp {
  display: block;
}

.sp-tablet {
  display: block;
}

.pc {
  display: none;
}

#sp_only {
  display: none;
}

#pc_only {
  display: block;
}

@media (min-width: 640px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
}

@media (min-width: 960px) {
  .sp-tablet {
    display: none;
  }
}

@media (max-width: 1024px) {
  #pc_only {
    display: none;
  }

  #sp_only {
    display: block;
  }
}

/* ============================================
   メインビジュアル
   ============================================ */
.mv_container {
  width: 100%;
  box-sizing: border-box;
}

.mv {
  padding: 7rem 3rem 2rem;
  transition: .5s;
  position: relative;
}

.logo_text {
  color: #fff;
  font-size: 1.8rem;
  position: absolute;
  top: 1rem;
}

.main_visual_bg {
  background-color: #fff;
  position: relative;
  margin: auto;
  max-width: 1500px;
  border-radius: 20px;
  padding: 2rem 0;
}

.mv_wrap {
  padding: 0 2rem;
}

.main_visual_text_container {
  display: block;
  margin-bottom: 2rem;
  position: relative;
}

.main_visual_text_container img {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 点灯アニメーション */
.dots_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1a4a8e;
  display: block;
  top: 32%;
  transition: .5s;
}

.dot-1 {
  left: 22%;
}

.dot-2 {
  left: 34%;
}

.dot-3 {
  left: 48%;
}

.dot-4 {
  left: 64%;
}

.main_visual_image_container {
  display: block;
  position: relative;
}

.main_visual_image_container img {
  width: 90%;
  margin: 0 auto;
}

.main_visual_phone_container {
  width: 50%;
  max-width: 375px;
  margin: auto;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
}

.main_visual_phone_container img {
  width: 12%;
  height: auto;
  position: absolute;
  top: -1rem;
  left: 10%;
  display: block;
  transition: .5s;
  transform-origin: center bottom;
}

.main_visual_phone_container img.shake-animation {
  animation: shake 0.8s ease-in-out;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(10deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  60% {
    transform: rotate(5deg);
  }

  70% {
    transform: rotate(-3deg);
  }

  80% {
    transform: rotate(3deg);
  }

  90% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.main_visual_batch {
  max-width: 7rem;
  transition: .5s;
  position: absolute;
  top: -5rem;
  right: -1.5rem;
}

.main_visual_image {
  margin-top: 3rem;
}

.sp_customer_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF82A 0%, #ffffff 45%, #FFF82A 100%);
  background-size: 220% 220%;
  background-position: 0% 50%;
  border: 3px solid #2C71C2;
  box-sizing: border-box;
  position: fixed;
  right: 3.5rem;
  bottom: 2rem;
  z-index: 9999;
  overflow: visible;
  animation: sp-customer-icon-bg 4.5s ease-in-out infinite;
}

.sp_customer_icon_label {
  position: absolute;
  bottom: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #2C71C2;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2C71C2;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 16px rgba(44, 113, 194, 0.2);
  pointer-events: none;
}

.sp_customer_icon_label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-width: 8px 6px 0 6px;
  border-style: solid;
  border-color: #2C71C2 transparent transparent transparent;
}

.sp_customer_icon_label::before {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-width: 7px 5px 0 5px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}

.sp_customer_icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid rgba(44, 113, 194, 0.55);
  opacity: 0;
  animation: sp-customer-icon-border 2.2s ease-out infinite;
}

@keyframes sp-customer-icon-border {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  60% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@keyframes sp-customer-icon-bg {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.sp_customer_icon svg {
  display: block;
  width: 40px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.sp_customer_icon path {
  fill: #2C71C2;
}

/* タブレット: 640px〜 */
@media (min-width: 640px) {
  .mv {
    padding: 8rem 5rem 6rem;
  }

  .logo_text {
    font-size: 2.3rem;
  }

  .mv_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .main_visual_text_container {
    flex: 1;
    margin-bottom: 0;
  }

  .main_visual_text_container img {
    width: 100%;
  }

  .main_visual_image_container {
    flex: 1;
  }

  .main_visual_image {
    margin-top: 0;
  }

  .dot {
    top: 21%;
  }

  .dot-1 {
    left: 12%;
  }

  .dot-2 {
    left: 24%;
  }

  .dot-3 {
    left: 36%;
  }

  .dot-4 {
    left: 48%;
  }
}

/* PC: 960px〜 */
@media (min-width: 960px) {
  .mv {
    padding: 8rem 8rem 6rem;
  }

  .main_visual_bg {
    border-radius: 37px;
    padding: 4.2rem 0;
  }

  .mv_wrap {
    padding: 0 5rem;
  }

  .main_visual_batch {
    max-width: 12rem;
  }

  .dot {
    top: 20%;
    width: 12px;
    height: 12px;
  }
}

/* ============================================
   共通ボタンエリアA（メインビジュアル下）
   ============================================ */
.common_button_area_a {
  background-color: #DAE5F1;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.close_button {
  display: flex;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #2C71C2;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.close_button:hover {
  background-color: #fff;
  transform: rotate(90deg);
}

.close_button svg {
  width: 24px;
  height: 24px;
  stroke: #2C71C2;
  display: block;
}

.common_button_container {
  display: block;
  width: 100%;
}

.common_button_box {
  height: 90px;
  border-radius: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 26rem;
  margin: 0 auto 4%;
}

.common_button_box.tell {
  background-color: #063873;
  position: relative;
}

.common_button_box.mail {
  background-color: #2C71C2;
  border: 4px solid #fff;
}

.common_button_box.line {
  background-color: #00C300;
  border: 4px solid #fff;
}

.common_button_box a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  line-height: 1.2;
  display: block;
}

.common_button_box a span {
  display: block;
  font-size: 25px;
}

.common_button_box:hover {
  opacity: 0.85;
  transition: 0.3s;
}

.dog_calling_img {
  width: 63px;
  height: auto;
  position: absolute;
  top: 26%;
  right: -8%;
}

@media (min-width: 420px) {
  .common_button_box {
    width: 32rem;
  }

  .dog_calling_img {
    width: 21%;
    top: 21%;
    right: -5%;
  }
}

@media (min-width: 640px) {
  .common_button_box {
    width: 42rem;
  }

  .dog_calling_img {
    width: 21%;
    top: 1%;
    right: -5%;
  }
}

@media (min-width: 768px) {
  .common_button_box {
    width: 50rem;
  }

  .dog_calling_img {
    width: 21%;
    top: -8%;
    right: -5%;
  }
}

@media (min-width: 960px) {
  .common_button_area_a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    padding: 2rem;
  }

  .close_button {
    display: none !important;
  }

  .common_button_container {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 4%;
    max-width: 1200px;
  }

  .common_button_box {
    height: 70px;
    margin-bottom: 0;
  }

  .common_button_box a {
    font-size: 16px;
  }

  .common_button_box a span {
    font-size: 24px;
  }

  .common_button_box.tell {
    width: 42rem;
  }

  .common_button_box.mail,
  .common_button_box.line {
    width: 288px;
    border: 5px solid #fff;
  }

  .dog_calling_img {
    width: 60px;
    top: 20%;
    right: -8%;
  }
}

@media (min-width: 1025px) {
  .common_button_box a {
    font-size: 18px;
  }

  .common_button_box a span {
    font-size: 32px;
  }

  .dog_calling_img {
    width: 20%;
    top: 4%;
    right: -5%;
  }
}

/* ============================================
   OUR SERVICE
   ============================================ */
.our_service {
  background-color: #fff;
  padding: 4rem 0;
  transition: .5s;
  border-radius: 4rem;
  margin-bottom: 8rem;
}

.our_service_heading {
  padding: 0 4rem;
  position: relative;
  max-width: 1025px;
  margin: 0 auto 3rem;
}

.our_service_heading img {
  width: 50%;
  max-width: 286px;
  display: block;
  margin: auto;
  position: relative;
  z-index: 3;
}

.our_service_heading::after {
  content: "";
  position: absolute;
  width: 55%;
  height: 35px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  border-radius: 4px;
  z-index: 2;
}

.our_service_heading::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 8%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #063873;
  border-radius: 4px;
}

.our_service_content {
  padding: 0 4rem;
}

.our_service_message {
  position: relative;
}

.our_service_message img {
  position: relative;
  z-index: 1;
}

.our_service_message .dots_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.our_service_message .dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  top: 10%;
  transition: .5s;
}

.our_service_message .message-dot-1 {
  left: 51%;
}

.our_service_message .message-dot-2 {
  left: 59%;
}

.our_service_message .message-dot-3 {
  left: 66%;
}

.our_service_message .message-dot-4 {
  left: 73%;
}

.our_service_content_text_container {
  padding: 3rem 2rem 0;
  background-color: #F6F6F6;
  position: relative;
  border-radius: 0 0 2rem 2rem;
}

.our_service_content_text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.our_service_content_text p {
  background-color: #FFFB2A;
  color: #000;
  padding: 2rem 4rem;
  border-radius: 1rem;
  font-size: clamp(1.2rem, calc(0.8rem + 1.5vw), 1.7rem);
  line-height: 1.4;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.our_service_content_image {
  transform: translateY(19%);
  max-width: 330px;
  margin: auto;
}

.our_service_iiknikaiketsu {
  max-width: 680px;
  margin: 10rem auto 0;
}

.our_service_point_character_container {
  position: relative;
  max-width: 1220px;
  margin: auto;
}

.our_service_point_character {
  position: absolute;
  bottom: -195px;
  left: 5%;
  z-index: 1;
  height: 100%;
  object-fit: contain;
  width: 87px;
}

.our_service_point {
  padding: 6rem 2rem;
  width: 100%;
  margin: auto;
  overflow-x: scroll;
  overflow-y: hidden;
  box-sizing: border-box;
  position: relative;
}

.our_service_point::-webkit-scrollbar {
  display: none;
}

.our_service_point_cards {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: flex-start;
  min-width: max-content;
  padding-left: calc(50vw - 2rem - 136px);
  padding-right: calc(50vw - 2rem - 136px);
}

.our_service_point_card_wrapper {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.our_service_point_arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: auto;
  flex-shrink: 0;
}

.our_service_point_arrow img {
  width: 100%;
  height: auto;
}

.our_service_point_card {
  background-color: #2C71C2;
  border-radius: 26px;
  padding: 3rem 2rem;
  color: #fff;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  margin: auto;
  transition: .5s;
  width: 100%;
}

.our_service_point_figure {
  width: 175px;
  height: 175px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.our_service_point_img1_main {
  position: absolute;
}

.our_service_point_img1_effect {
  position: absolute;
  width: 2.5rem;
  height: auto;
  top: 25px;
  left: 50px;
  transition: .5s;
  animation: gentle-shake 3s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes gentle-shake {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(-4px, -4px) rotate(-2deg);
  }

  50% {
    transform: translate(4px, 4px) rotate(2deg);
  }

  75% {
    transform: translate(-1px, 1px) rotate(-1deg);
  }
}

.our_service_point_img2_main {
  position: absolute;
}

.our_service_point_img2_effect {
  position: absolute;
  width: 60px;
  height: auto;
  transition: .5s;
  opacity: 0;
}

.our_service_point_img2_effect:nth-child(4) {
  top: 56px;
  left: -2px;
  transform: rotate(-20deg);
  z-index: 1;
}

.our_service_point_img2_effect:nth-child(3) {
  top: 50px;
  left: -7px;
  transform: rotate(-10deg);
  z-index: 2;
}

.our_service_point_img2_effect:nth-child(2) {
  top: 40px;
  left: -5px;
  transform: rotate(-5deg);
  z-index: 3;
}

@keyframes loopFadeInUpRotate3 {
  0%, 100% {
    opacity: 0;
    transform: translateY(30px) rotate(-20deg);
  }

  5% {
    opacity: 0;
    transform: translateY(30px) rotate(-20deg);
  }

  15% {
    opacity: 1;
    transform: translateY(0) rotate(-20deg);
  }

  75% {
    opacity: 1;
    transform: translateY(0) rotate(-20deg);
  }

  85% {
    opacity: 0;
    transform: translateY(30px) rotate(-20deg);
  }
}

@keyframes loopFadeInUpRotate2 {
  0%, 100% {
    opacity: 0;
    transform: translateY(30px) rotate(-10deg);
  }

  9% {
    opacity: 0;
    transform: translateY(30px) rotate(-10deg);
  }

  19% {
    opacity: 1;
    transform: translateY(0) rotate(-10deg);
  }

  75% {
    opacity: 1;
    transform: translateY(0) rotate(-10deg);
  }

  85% {
    opacity: 0;
    transform: translateY(30px) rotate(-10deg);
  }
}

@keyframes loopFadeInUpRotate1 {
  0%, 100% {
    opacity: 0;
    transform: translateY(30px) rotate(-5deg);
  }

  13% {
    opacity: 0;
    transform: translateY(30px) rotate(-5deg);
  }

  23% {
    opacity: 1;
    transform: translateY(0) rotate(-5deg);
  }

  75% {
    opacity: 1;
    transform: translateY(0) rotate(-5deg);
  }

  85% {
    opacity: 0;
    transform: translateY(30px) rotate(-5deg);
  }
}

.our_service_point_card_wrapper.visible .our_service_point_img2_effect:nth-child(4) {
  animation: loopFadeInUpRotate3 5s ease-in-out infinite;
}

.our_service_point_card_wrapper.visible .our_service_point_img2_effect:nth-child(3) {
  animation: loopFadeInUpRotate2 5s ease-in-out infinite;
}

.our_service_point_card_wrapper.visible .our_service_point_img2_effect:nth-child(2) {
  animation: loopFadeInUpRotate1 5s ease-in-out infinite;
}

.our_service_point_img3_main {
  position: absolute;
  width: 150px;
  animation: shakeLeftRight 2s ease-in-out infinite;
}

@keyframes shakeLeftRight {
  0%, 100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

.our_service_point_badge {
  display: inline-block;
  background-color: #0E4A8F;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  font-size: clamp(1.5rem, 1.1rem + 0.7vw, 1.8rem);
  letter-spacing: 0.05em;
  margin: 0 auto 1.6rem;
}

.our_service_point_title {
  font-size: 2.1rem;
  letter-spacing: 0;
}

@media (min-width: 440px) {
  .our_service_message .dot {
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 640px) {
  .our_service_content {
    padding: 4rem 3rem;
    max-width: 650px;
    margin: auto;
    transition: .5s;
  }

  .our_service_content_text {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }

  .our_service_content_text p {
    padding: 2rem 2.5rem;
    width: calc(50% - 1rem);
    box-sizing: border-box;
  }

  .our_service_message .dot {
    top: 13%;
  }

  .our_service_message .message-dot-1 {
    left: 28%;
  }

  .our_service_message .message-dot-2 {
    left: 31.5%;
  }

  .our_service_message .message-dot-3 {
    left: 35%;
  }

  .our_service_message .message-dot-4 {
    left: 39%;
  }

  .our_service_point_cards {
    padding-left: 0;
    padding-right: calc(50vw - 140px);
    justify-content: flex-start;
    min-width: fit-content;
  }

  .our_service_point_card_wrapper {
    width: 280px;
  }
}

@media (min-width: 960px) {
  .our_service_content {
    padding: 5rem 4rem;
    max-width: 920px;
  }

  .our_service_content_text_container {
    padding: 0;
  }

  .our_service_content_text {
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
  }

  .our_service_content_text p {
    font-size: 1.7rem;
    padding: 1.3rem;
    width: 100%;
    max-width: 26.4rem;
    letter-spacing: 0px;
    position: absolute;
  }

  .our_service_content_text_item1 {
    top: 30px;
    left: 20px;
  }

  .our_service_content_text_item2 {
    top: 130px;
    left: 20px;
  }

  .our_service_content_text_item3 {
    top: 30px;
    right: 20px;
  }

  .our_service_content_text_item4 {
    top: 130px;
    right: 20px;
  }

  .our_service_content_image {
    transform: translateY(19%);
    max-width: 380px;
    margin: auto;
  }

  .our_service_point {
    margin: auto;
    max-width: fit-content;
  }

  .our_service_point_card {
    padding: 4rem 3rem 5rem;
  }

  .our_service_point_badge {
    padding: 1.1rem 3rem;
  }

  .our_service_point_cards {
    padding-right: calc(50vw - 150px);
    justify-content: flex-start;
  }

  .our_service_point_card_wrapper {
    width: 300px;
  }
}

@media (min-width: 1025px) {
  .our_service_heading::after {
    width: 40%;
  }

  .our_service_point_cards {
    padding-right: 0;
    justify-content: center;
  }

  .our_service_point_card_wrapper {
    width: 325px;
  }
}

@media (min-width: 1050px) {
  .about-us_card_title {
    font-size: 2.3rem;
  }
}

/* ============================================
   ABOUT US
   ============================================ */
.about-us {
  padding: 7rem 3rem 0;
  background-color: #F5F5F5;
}

.about-us_title {
  color: #063873;
  font-size: 38px;
  font-family: "Poppins", serif;
  text-align: center;
  position: relative;
  transition: .5s;
}

.about-us_title::before,
.about-us_title::after {
  content: "";
  position: absolute;
  background-color: #063873;
  border-radius: 4px;
  top: 72%;
  width: 9%;
  height: 4px;
  transform: translateY(-50%);
}

.about-us_title::before {
  right: 89%;
}

.about-us_title::after {
  left: 89%;
}

.about-us_title_japanese {
  color: #063873;
  font-size: 16px;
  text-align: center;
}

.about-us_title_japanese rt {
  font-size: 7px;
  letter-spacing: -1.5em;
}

.about-us_container {
  margin-top: 7.2rem;
  background-color: #12A38F;
  border-radius: 30px;
  padding: 5.3rem 2rem 2rem;
  position: relative;
  transition: .5s;
}

.about-us_container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 64px 32px 0 32px;
  border-color: #12a38f transparent transparent;
  translate: -50% 100%;
}

.about-us_reason {
  color: #fff;
  font-size: 25px;
  text-align: center;
  padding: 0 1.5rem;
}

.about-us_reason rt {
  font-size: 11px;
  margin-bottom: 0.1rem;
  letter-spacing: 0.12em;
}

.about-us_swiper {
  display: block;
  margin-top: 5rem;
  padding: 2rem 1rem !important;
  background-color: #ffffff;
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  transition: .5s;
}

.about-us_swiper .swiper-slide {
  height: auto;
  display: flex;
}

.about-us_swiper_pagination.swiper-pagination {
  position: relative;
  margin-top: 3rem;
}

.about-us_swiper_pagination .swiper-pagination-bullet {
  background-color: #D9D9D9;
  opacity: 1;
}

.about-us_swiper_pagination .swiper-pagination-bullet-active {
  background-color: #FFFB2A;
  opacity: 1;
}

.about-us_card {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.about-us_card_badge {
  position: absolute;
  top: 10px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 50px;
}

.about-us_card_badge img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

.about-us_card_title {
  color: #063873;
  font-size: 1.7rem;
  font-weight: 900;
  margin: 5rem 0 2rem;
  line-height: 1.4;
  text-align: center;
  transition: .5s;
}

.about-us_card_illustration {
  margin-bottom: 2rem;
  text-align: center;
}

.about-us_card_img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.about-us_card_text {
  color: #063873;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  flex-grow: 1;
}

.about-us_value {
  color: #063873;
  font-weight: 900;
  font-size: 23px;
  text-align: center;
  margin-top: 100px;
  padding-bottom: 9rem;
  line-height: 1.8;
}

.about-us_value span {
  font-size: 30px;
  background-color: #FFF82A;
  border-radius: 12px;
}

@media (min-width: 640px) {

  .about-us_title::before,
  .about-us_title::after {
    top: 52%;
    width: 18%;
    height: 7px;
  }

  .about-us_title::before {
    right: 75%;
  }

  .about-us_title::after {
    left: 75%;
  }

  .about-us_reason {
    font-size: 37px;
    padding: 0;
  }

  .about-us_value {
    font-size: 32px;
    padding-bottom: 130px;
  }

  .about-us_value span {
    font-size: 38px;
  }
}

@media (min-width: 960px) {

  .about-us_title::before,
  .about-us_title::after {
    top: 50%;
    width: 22%;
    height: 7px;
  }

  .about-us_title::before {
    right: 68%;
  }

  .about-us_title::after {
    left: 68%;
  }

  .about-us_container {
    padding: 3rem 2rem 5rem;
  }

  .about-us_swiper {
    padding: 2rem 4rem !important;
    background-color: initial;
  }

  .about-us_swiper .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: 2%;
    transform: none !important;
  }

  .about-us_swiper .swiper-slide {
    width: 33% !important;
    margin-right: 0 !important;
  }

  .about-us_swiper_pagination {
    display: none;
  }

  .about-us_card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem 0;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .about-us_card_text {
    padding: 0 3rem;
  }

  .about-us_value {
    font-size: 44px;
    padding-bottom: 130px;
  }

  .about-us_value span {
    font-size: 50px;
  }
}

/* ============================================
   Categoly（取扱カテゴリー）
   ============================================ */
.wrp_categoly {
  background: #fff;
}

.categoly {
  margin: 0 auto;
  text-align: center;
  background-image: url(../image/category_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 10rem 0;
}

.categoly-frame {
  border: 5px solid #2C71C2;
  border-radius: 25px;
  margin: 2rem;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.categoly-title-area {
  display: inline-block;
  z-index: 2;
  position: relative;
  /* background-color: #fff; */
  padding: 0 1rem;
  /* position: absolute;
  top: -2%;
  right: 0;
  left: 0; */
  margin: auto;
}

.categoly-title-area::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #fff;
}

.categoly-title {
  font-size: 22px;
  color: #0073cf;
  display: inline-block;
  padding: 0 2.5rem;
  position: relative;
  margin: -20px 0 30px;
}

.categoly-title::before,
.categoly-title::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}

.categoly-title::before {
  background-image: url(../image/categoly-line-left.png);
  left: 0;
}

.categoly-title::after {
  background-image: url(../image/categoly-line-right.png);
  right: 0;
}

.title-deco {
  width: 22px;
  height: auto;
  vertical-align: middle;
}

.categoly-list_big ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
}

@media (min-width: 640px) {
  .categoly-list_big ul {
    grid-template-columns: repeat(3, 1fr);
    /* gap: 5%; */
    max-width: none;
  }
}

.categoly-item_big,
.categoly-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.categoly_annotation {
  font-size: 13px;
  color: #2C71C2;
  text-align: center;
  padding: 5rem 0;
}

.categoly-list_big {
  padding: 3rem 2rem;
  transition: .5s;
}


.dog-searching-img {
  width: 16%;
  max-width: 80px;
  height: auto;
  position: absolute;
  right: 5%;
  top: -2%;
  z-index: 10;
}

@media (min-width: 640px) {
  .categoly-title {
    font-size: 28px;
    padding: 0 3rem;
  }

  .categoly-title::before,
  .categoly-title::after {
    width: 24px;
    height: 48px;
  }

  .title-deco {
    width: 24px;
  }

  .categoly-list_big {
    padding: 5rem 3rem 0;
  }

  .categoly-list_big ul {
    grid-template-columns: repeat(4, 1fr);
  }

}

@media (min-width: 960px) {
  .categoly-title {
    font-size: 36px;
    padding: 0 3.5rem;
    margin: -30px 0 30px;
  }

  .categoly-title::before,
  .categoly-title::after {
    width: 28px;
    height: 56px;
  }

  .title-deco {
    width: 28px;
  }

  .categoly_annotation {
    font-size: 16px;
  }

  .categoly-list_big {
    padding: 8rem 4rem 0;
  }

  .categoly-list_big ul {
    grid-template-columns: initial;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }

  .categoly-item_big, .categoly-item {
    width: 23.5%;
    margin: 20px auto;
  }

  .categoly-item_big, .categoly-item:nth-child(n+9) {
    width: 18%;
  }

}

@media (min-width: 1025px) {

  .categoly-title::before,
  .categoly-title::after {
    width: 36px;
    height: 72px;
  }

  .title-deco {
    width: 36px;
  }

  .categoly-list_big {
    padding: 5rem 5rem 0;
  }

  .categoly-item_big img,
  .categoly-item img {
    width: auto;
  }

  .dog-searching-img {
    width: 20%;
    max-width: 115px;
    height: auto;
    position: absolute;
    right: 3%;
    top: -5%;
  }
}


/* ============================================
   実績（Achievements）
   ============================================ */
.achievements {
  background-color: #2C71C2;
  text-align: center;
  padding: 4rem 0;
  overflow: hidden;
}

.achievements_wrap {
  display: flex;
  justify-content: center;
  text-align: center;
}

.achievements_question {
  display: inline-block;
  background-color: #fff;
  font-weight: 900;
  font-size: 18px;
  text-align: center;
  color: #2C71C2;
  padding: 1.5rem 2rem;
  position: relative;
}

.achievements_question::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 12.99px 0 12.99px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

.achievements_title {
  color: #FFFB2A;
  font-size: 30px;
  margin: 2rem 0;
}

.achievements_swiper {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}

.achievements_box img {
  width: 100%;
  border-radius: 1rem;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .achievements_question {
    font-size: 24px;
    padding: 1.5rem 4rem;
  }

  .achievements_title {
    font-size: 36px;
  }
}

@media (min-width: 960px) {
  .achievements_question {
    padding: 1.5rem 9rem;
  }
}

@media (min-width: 1025px) {
  .achievements_question {
    padding: 1.5rem 21rem;
  }
}

@media (min-width: 1400px) {
  .achievements_question {
    padding: 1.5rem 34rem;
  }
}

/* ============================================
   SERVICE FLOW
   ============================================ */
.service-flow {
  background: #fff;
  padding: 7rem 3rem 8rem;
}

.service-flow_title {
  color: #063873;
  font-size: 38px;
  font-family: "Poppins", serif;
  text-align: center;
  position: relative;
}

.service-flow_title::before,
.service-flow_title::after {
  content: "";
  position: absolute;
  top: 52%;
  height: 4px;
  background-color: #063873;
  border-radius: 4px;
  transform: translateY(-50%);
}

.service-flow_title::before {
  width: 12%;
  right: 86%;
}

.service-flow_title::after {
  width: 12%;
  left: 86%;
}

.service-flow_title_japanese {
  color: #063873;
  font-size: 16px;
  text-align: center;
}

.service-flow_container {
  display: flex;
  justify-content: center;
  column-gap: 2%;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.service-flow_box {
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.service-flow_box img {
  width: 100%;
}

@keyframes service-flow-icon-wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(18deg);
  }

  40% {
    transform: rotate(-18deg);
  }

  60% {
    transform: rotate(12deg);
  }

  80% {
    transform: rotate(-12deg);
  }
}

.service-flow_icon-area img.is-wiggle {
  animation: service-flow-icon-wiggle 0.75s ease-in-out 3;
  transform-origin: center center;
}

.service-flow_change_button {
  display: flex !important;
  justify-content: center;
  gap: 20px;
  margin: 8.7rem auto 5rem;
}

.service-flow_change_button div {
  cursor: pointer;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.service-flow_change_button div.is-active {
  opacity: 0.55;
  filter: grayscale(100%) brightness(0.9);
}

.service-flow_contact_container {
  display: flex;
  justify-content: center;
  max-width: 1500px;
  column-gap: 3rem;
}

.service-flow_contact_container img {
  width: auto;
  position: absolute;
  top: -10px;
  left: -12px;
}

.service-flow_contact_box_tell,
.service-flow_contact_box_form,
.service-flow_contact_box_line {
  border-radius: 15px;
  position: relative;
}

.service-flow_contact_box_tell {
  background-color: #063873;
}

.service-flow_contact_box_form {
  background-color: #2C71C2;
}

.service-flow_contact_box_line {
  background-color: #00C300;
}

/* .service-flow_icon-area {
  position: absolute;
  top: -1%;
  left: -7%;
  width: 94%;
  display: flex;
  align-items: center;
} */

.service-flow_icon-area p {
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  margin: 1rem 1rem 3rem 23%;
  transition: .5s;
}


.service-flow_icon-area p span {
  font-size: 2.6rem;
}


@media (min-width: 414px) {
  .service-flow_icon-area p {
    margin: 1rem auto 3rem;
  }

  .service-flow_contact_container {
    max-width: 400px;
    margin: auto;
  }
}


@media (min-width: 960px) {
  .service-flow_icon-area p {
    font-size: 2rem;
  }

  .service-flow_icon-area p span {
    font-size: 2.8rem;
  }

}


.service-flow_contact_box_tell ul,
.service-flow_contact_box_form ul,
.service-flow_contact_box_line ul {
  padding: 0rem 3rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-flow_list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-flow_list-item .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  background-color: #fff;
  color: #063873;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.service-flow_contact_box_form .step-number {
  color: #2C71C2;
}

.service-flow_contact_box_line .step-number {
  color: #00C300;
}

.service-flow_list-item p {
  color: #fff;
  font-size: 14px;
  flex: 1;
}

.contact-buttons {
  margin: 3rem auto;
}

.contact-buttons a {
  display: block;
  background-color: #fff;
  color: #063873;
  text-decoration: none;
  padding: 1.5rem 0rem;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 246px;
  margin: auto;
  /* max-width: 246px; */
  box-sizing: border-box;
}

.contact-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.btn-call {
  color: #063873 !important;
}

.btn-contact {
  color: #2C71C2 !important;
}

.btn-line {
  color: #00C300 !important;
}

@media (max-width: 1024px) {
  .service-flow_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
  }

  .service-flow_box {
    max-width: 300px;
  }


  .service-flow_contact_box_tell,
  .service-flow_contact_box_form,
  .service-flow_contact_box_line {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transform: translateX(110%);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
  }

  .service-flow_contact_box_tell.is-active,
  .service-flow_contact_box_form.is-active,
  .service-flow_contact_box_line.is-active {
    transform: translateX(0);
    opacity: 1;
  }

  .service-flow_icon-area {
    top: -3%;
    left: -3%;
    width: 100%;
  }

}

@media (min-width: 640px) {
  .service-flow_title {
    font-size: 44px;
  }

  .service-flow_title::before {
    width: 15%;
    right: 81%;
  }

  .service-flow_title::after {
    width: 15%;
    left: 81%;
  }

  .service-flow_list-item p {
    font-size: 16px;
  }

  .service-flow_list-item .step-number {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 18px;
  }
}

@media (min-width: 960px) {
  .service-flow_title::before {
    width: 20%;
    right: 75%;
    height: 7px;
  }

  .service-flow_title::after {
    width: 20%;
    left: 75%;
    height: 7px;
  }
}

@media (min-width: 1025px) {
  .service-flow_container {
    display: flex;
  }

  .service-flow_box {
    max-width: none;
  }

  .service-flow_change_button {
    display: none !important;
  }

  .service-flow_contact_container {
    position: static;
    padding: 0;
    max-width: initial;
    margin: 7.5rem auto 0;
  }


  .service-flow_title::before {
    width: 24%;
    right: 70%;
  }

  .service-flow_title::after {
    width: 24%;
    left: 70%;
  }

  .service-flow_icon-area {
    position: initial;

    transform: initial;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-flow_icon-area img {
    width: auto;
    height: auto;
    max-width: 80px;
  }


  .service-flow_list-item .step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 20px;
  }

}



/* ============================================
   FAQ
   ============================================ */
.faq {
  background-color: #DCECFF;
  padding: 6rem 0 12rem;
}

.faq_title {
  color: #063873;
  font-size: 38px;
  font-family: "Poppins", serif;
  text-align: center;
  position: relative;
  padding-top: 4.4rem;
}

.faq_title::before,
.faq_title::after {
  content: "";
  position: absolute;
  top: 72%;
  height: 4px;
  background-color: #063873;
  border-radius: 4px;
  transform: translateY(-50%);
}

.faq_title::before {
  width: 23%;
  right: 65%;
}

.faq_title::after {
  width: 23%;
  left: 65%;
}

.faq_title_japanese {
  color: #063873;
  font-size: 16px;
  text-align: center;
}

.faq_container {
  padding: 0 4.5rem;
}

.question_box {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
}

.question_img {
  width: 75px;
}

.question_text {
  color: #063873;
  font-size: 17px;
  line-height: 1.42;
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  display: block;
  margin-left: 3.4rem;
  margin-top: 3rem;
  position: relative;
}

.question_text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 11.5px 29px 11.5px 0;
  border-color: transparent #ffffff transparent transparent;
  translate: -100% -50%;
  transform: skew(0, 44deg);
  transform-origin: right;
}

.answer_box {
  display: flex;
  align-items: center;
  justify-content: right;
  opacity: 0;
  transform: translateY(30px);
}

.answer_img {
  width: 75px;
}

.answer_text {
  color: #fff;
  font-size: 16px;
  line-height: 1.42;
  background-color: #063873;
  border-radius: 20px;
  padding: 2rem;
  display: block;
  margin-right: 3.4rem;
  margin-top: 3rem;
  position: relative;
}

.answer_text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 9.3px 0 9.3px 23.6px;
  border-color: transparent transparent transparent #063873;
  translate: 100% -50%;
  transform: skew(0, -44deg);
  transform-origin: left;
}

@media (min-width: 640px) {
  .faq_title {
    font-size: 44px;
  }

  .faq_title::before,
  .faq_title::after {
    height: 7px;
  }

  .faq_title::before {
    width: 25%;
    right: 63%;
  }

  .faq_title::after {
    width: 25%;
    left: 63%;
  }

  .question_text {
    font-size: 19px;
    padding: 3rem 5rem;
    margin-left: 4.4rem;
    margin-top: 4rem;
  }

  .answer_text {
    font-size: 17px;
    padding: 3rem 5rem;
    margin-right: 4.4rem;
    margin-top: 4rem;
  }
}

@media (min-width: 960px) {
  .faq_container {
    padding: 0 7.5rem;
  }

  .question_text {
    font-size: 21px;
    padding: 3.5rem 6rem 3rem;
  }

  .answer_text {
    font-size: 19px;
    padding: 3.5rem 15rem 3rem 5rem;
  }
}

@media (min-width: 1025px) {
  .faq {
    padding: 8rem 0 12rem;
  }

  .faq_title::before {
    width: 28%;
    right: 65%;
  }

  .faq_title::after {
    width: 28%;
    left: 65%;
  }

  .question_text {
    font-size: 24px;
    padding: 3.5rem 15rem 3rem 6rem;
  }
}

@media (min-width: 1400px) {
  .faq_container {
    padding: 0 13.5rem;
  }
}

@media (min-width: 1800px) {
  .faq_container {
    padding: 0 22.5rem;
  }

  .question_text {
    font-size: 28px;
    line-height: 1.7;
  }

  .answer_text {
    font-size: 25px;
    line-height: 1.8;
  }
}

/* ============================================
   対応エリア（Service Area）
   ============================================ */
.service-area {
  background: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.service-area_title {
  font-size: 30px;
  color: #2C71C2;
}

.service-area_box {
  display: flex;
  justify-content: center;
  padding: 2rem 2rem 5rem;
}

.service-area_map_PC {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 640px) {
  .service-area_title {
    font-size: 36px;
  }

  .service-area_box {
    padding: 3rem 3rem 6rem;
  }
}

@media (min-width: 960px) {
  .service-area_box {
    padding: 4.6rem 8rem 6.6rem;
  }
}

@media (min-width: 1025px) {
  .service-area_box {
    padding: 4.6rem 20rem 6.6rem;
  }
}

/* ============================================
   3つの安心ポイント
   ============================================ */
.three-assurance-points {
  background-color: #2C71C2;
  text-align: center;
  padding: 6rem 2rem;
}

.headline_area {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  max-width: 1500px;
  margin: 0 auto 3rem;
}

.headline_speech_bubble {
  position: relative;
  background-color: #27A78B;
  padding: 1.2rem 1.5rem;
  box-shadow: 4px 4px 0 #1E7F6A;
  display: inline-block;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.headline_speech_bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #27A78B;
}

.headline_text {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  white-space: normal;
  letter-spacing: 2px;
  line-height: 1.4;
}

.font-custom {
  font-size: 32px;
}

.late_display {
  opacity: 0;
  display: inline-block;
}

.three-assurance-points_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 3%;
  margin-top: 3rem;
}

.three-assurance-points_box {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 0 2.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 78%;
  max-width: none;
  opacity: 0;
  transform: translateY(40px) rotateY(120deg);
  transform-style: preserve-3d;
  transform-origin: center center;
}

.three-assurance-points_box:not(:last-child) {
  margin-bottom: 2rem;
}

.three-assurance-points_box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  opacity: 0.1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.point-1 {
  border: 4px solid #70BAFF;
  background-image: url("../image/three-assurance-points_box_bg1.png");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.point-2 {
  border: 4px solid #12A38F;
  background-image: url("../image/three-assurance-points_box_bg2.png");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.point-3 {
  border: 4px solid #F9A84A;
  background-image: url("../image/three-assurance-points_box_bg3.png");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.point-title {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.point-1 .point-title {
  color: #70BAFF;
}

.point-2 .point-title {
  color: #12A38F;
}

.point-3 .point-title {
  color: #FABE00;
}

.point-heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.point-1 .point-heading {
  color: #70BAFF;
}

.point-2 .point-heading {
  color: #12A38F;
}

.point-3 .point-heading {
  color: #FABE00;
}

.point-text {
  font-size: 13px;
  color: #333333;
  line-height: 1.6;
  margin: 10px 0;
  padding: 0 15px;
}

.three-assurance-points_text {
  font-size: 18px;
  color: #fff;
  margin-top: 4rem;
}

.three-assurance-points_emphasis {
  color: #002A5B;
  font-size: 21px;
  margin-top: 3.4rem;
  padding: 4rem 0.5rem;
  line-height: 1.5;
}

.three-assurance-points_emphasis span {
  color: #002A5B;
  font-size: 24px;
  display: inline-block;
  margin: 0 0.8rem;
  position: relative;
  z-index: 0;
}

.three-assurance-points_emphasis span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 100%;
  height: 1.3em;
  background: #FFFB2A;
  border-radius: 0.15em;
  transform: scaleX(0);
  transform-origin: left center;
  transition: 0.5s;
  z-index: -1;
}

@media (min-width: 768px) {
  .three-assurance-points_emphasis span::after {
    top: 13px;
  }
}

@media (min-width: 1025px) {
  .three-assurance-points_emphasis span::after {
    top: 20px;
  }
}

.three-assurance-points_emphasis.is-underline span::after {
  transform: scaleX(1);
}

@media (min-width: 640px) {
  .headline_speech_bubble {
    padding: 1.5rem 2rem;
    box-shadow: 5px 5px 0 #1E7F6A;
  }

  .headline_speech_bubble::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #27A78B;
    bottom: -12px;
  }

  .three-assurance-points_text {
    font-size: 21px;
  }

  .three-assurance-points_emphasis {
    font-size: 23px;
  }

  .three-assurance-points_emphasis span {
    font-size: 25px;
  }
}

@media (min-width: 768px) {
  .headline_speech_bubble {
    padding: 2rem 3rem;
    box-shadow: 6px 6px 0 #1E7F6A;
  }

  .headline_text {
    font-size: 24px;
  }

  .headline_speech_bubble::after {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid #27A78B;
    bottom: -15px;
  }

  .three-assurance-points_container {
    flex-direction: column;
  }

  .three-assurance-points_box {
    width: 73%;
  }

  .point-heading {
    font-size: 23px;
  }

  .three-assurance-points_text {
    font-size: 24px;
  }

  .three-assurance-points_emphasis {
    font-size: 26px;
    line-height: 2.0;
  }

  .three-assurance-points_emphasis span {
    font-size: 28px;
    padding: 1px 10px;
  }
}

@media (min-width: 960px) {
  .three-assurance-points {
    padding: 6rem 5.3rem;
  }

  .headline_speech_bubble {
    padding: 1.5rem 4rem 2.5rem;
    box-shadow: 8px 8px 0 #1E7F6A;
  }

  .headline_text {
    font-size: 36px;
    white-space: nowrap;
  }

  .font-custom {
    font-size: 50px;
  }

  .headline_speech_bubble::after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #27A78B;
    bottom: -20px;
  }

  .three-assurance-points_container {
    flex-direction: row;
    justify-content: center;
  }

  .three-assurance-points_box {
    width: 30%;
    max-width: 350px;
    min-height:  -webkit-fill-available;
  }

  .three-assurance-points_box:not(:last-child) {
    margin-bottom: 0;
  }

  .point-title {
    font-size: 48px;
  }

  .point-heading {
    font-size: 30px;
  }

  .point-text {
    font-size: 18px;
    margin: 40px 0;
  }

  .three-assurance-points_text {
    font-size: 30px;
    margin-top: 4.8rem;
  }

  .three-assurance-points_emphasis {
    font-size: 26px;
    margin-top: 3.4rem;
    padding-bottom: 6.6rem;
  }

  .three-assurance-points_emphasis span {
    font-size: 31px;
    padding: 3px 18px;
  }
}

@media (min-width: 1025px) {
  .three-assurance-points {
    padding: 6rem 7.3rem;
  }

  .three-assurance-points_emphasis {
    font-size: 33px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .three-assurance-points_emphasis span {
    font-size: 40px;
    padding: 4px 20px;
  }
}

/* ============================================
   コンバージョン
   ============================================ */
.conversion {
  margin-top: 2rem;
  background: #fff;
  padding: 3rem 0 1rem;
  transition: .5s;
}

.conversion_text_area {
  text-align: center;
  padding: 1rem 2rem;
}

.conversion_text_box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.conversion_text_normal {
  color: #063873;
  font-size: 20px;
  padding-bottom: 0.5rem;
}

.conversion_text_normal span {
  color: #063873;
  font-size: 26px;
}

.conversion_text_normal rt {
  color: #063873;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: -1.5em;
  margin-bottom: 0.5px;
}

.conversion_text_emphasis {
  color: #063873;
  font-weight: 900;
  font-size: 30px;
}

.conversion_text_sub {
  color: #063873;
  font-size: 19px;
}

@media (min-width: 640px) {
  .conversion_text_normal {
    font-size: 38px;
  }

  .conversion_text_normal rt {
    font-size: 14px;
  }

  .conversion_text_emphasis {
    font-size: 56px;
  }

  .conversion_text_sub {
    font-size: 25px;
  }
}

@media (min-width: 960px) {
  .conversion {
    padding: 3rem 0 10rem;
  }

  .conversion_text_normal {
    font-size: 43px;
  }

  .conversion_text_normal span {
    font-size: 40px;
  }

  .conversion_text_normal rt {
    font-size: 16px;
  }

  .conversion_text_emphasis {
    font-size: 60px;
  }

  .conversion_text_sub {
    font-size: 28px;
  }
}

@media (min-width: 1025px) {
  .conversion_text_normal {
    font-size: 50px;
  }

  .conversion_text_normal rt {
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .conversion_text_emphasis {
    font-size: 64px;
  }
}

/* ============================================
   共通ボタンエリアB（コンバージョン内）
   ============================================ */
.common_button_area_b {
  margin: 2rem auto 0;
  padding: 2rem 3rem;
  width: fit-content;
}

.common_button_area_b .common_button_container {
  display: block;
}

.common_button_area_b .common_button_box {
  width: 32rem;
  margin: 0 auto 4%;
}

@media (min-width: 640px) {
  .common_button_area_b .common_button_box {
    width: 42rem;
  }
}

@media (min-width: 768px) {
  .common_button_area_b .common_button_box {
    width: 50rem;
  }
}

@media (min-width: 960px) {
  .common_button_area_b {
    margin-top: 3.4rem;
    padding: 4rem 5rem;
  }

  .common_button_area_b .common_button_container {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 4%;
  }

  .common_button_area_b .common_button_box {
    margin-bottom: 0;
  }

  .common_button_area_b .common_button_box.tell {
    width: 42rem;
  }

  .common_button_area_b .common_button_box.mail,
  .common_button_area_b .common_button_box.line {
    width: 288px;
    border: 5px solid #fff;
  }
}

@media (min-width: 1025px) {
  .common_button_area_b {
    margin: 6.4rem auto 6.8rem;
    padding: 2rem 10rem;
  }
}