@charset "utf-8";

/* ------------------------------
	outline
------------------------------ */
.section_outline_main {
  position: relative;
}

.section_outline_main::after {
  content: '';
  display: block;
  width: 184px;
  height: 92px;
  background: url(../img/outline_chara.png) no-repeat center top;
  background-size: contain;
}

@media (max-width: 640px) {
  .section_outline_main::after {
    margin: 10px 20px 10px auto;
  }
}

@media (min-width: 641px) {
  .section_outline_main::after {
    position: absolute;
    right: -480px;
    bottom: -40px;
    width: 246px;
    height: 123px;
  }
}

.howto_case_body {
  padding: 20px;
  border-radius: 12px;
  background: url(/assets/img/contents/bg_stripe_yel.png) repeat center top;
  background: white;
}

@media (max-width: 640px) {
  .howto_case_body {
    background-size: 17px 17px;
  }

  .howto_case1_img {
    max-width: 250px;
    margin: 0 auto 20px;
  }

  .howto_case1_img > div{
    margin-bottom: 15px;
  }
}

@media (min-width: 641px) {
  .howto_case_body {
    padding: 40px;
    border-radius: 30px;
  }

  .howto_case1_img {
    display: flex;
    margin: 0 auto 20px;
    width: 800px;
    justify-content: space-between;
  }
}

#equal_table .table_data th,
#equal_table .table_data td {
  padding: 0.75em 0.9em;
}

.howto_case_btn.bg_shadow::after {
  background-image: url("/assets/img/contents/bg_shadow_orn.png");
}

.howto_case_btn a {
  display: block;
  background: #ffee62;
  position: relative;
  text-align: center;
}

.howto_case_btn a::before,
.howto_case_btn a::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.howto_case_btn a::before {
  background-image: url("../img/icon_letter.png");
}

.howto_case_btn a::after {
  background-image: url("/assets/img/contents/arrow_r_orn.png");
}

@media (min-width: 641px) {
  .howto_case_btn {
    width: 100%;
    height: 90px;
    margin: 0 auto;
  }
  
  .howto_case_btn.bg_shadow::after {
    border-radius: 20px;
  }
  
  .howto_case_btn a {
    border: 6px solid #f89043;
    border-radius: 20px;
    font-size: 1.5625rem;
    line-height: 78px;
  }
  
  .howto_case_btn a::before {
    width: 60px;
    height: 40px;
    left: 20px;
  }
  
  .howto_case_btn a::after {
    width: 24px;
    height: 24px;
    right: 20px;
  }
}

@media (max-width: 640px) {
  .howto_case_btn {
    height: 80px;
  }
  
  .howto_case_btn.bg_shadow::after {
    border-radius: 10px;
  }
  
  .howto_case_btn a {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    height: 80px;
    padding-left: 24px;
    border: 3px solid #f89043;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
  }
  
  .howto_case_btn a::before {
    width: 36px;
    height: 36px;
    left: 10px;
  }
  
  .howto_case_btn a::after {
    width: 19px;
    height: 19px;
    right: 10px;
  }
}


