@charset "UTF-8";

/* CSS Document */

/* ----------ファーストビュー ---------- */
.section_top {
  width: 100%;
  height: 100%;
  background-image: url(../image/FV_img.png);
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  position: relative;
}

.top_wrapper {
  max-width: 1200px;
  height: 600px;
  margin: 0 auto;
  padding: 56px 0 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top_heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 36px;
}

.top_heading p {
  color: #832c08;
  font-size: clamp(2.2rem, 3.857vw, 3.375rem);
  line-height: 1em;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.heading_01::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 27px;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  background: #fffad0;
  z-index: -1;
}

.heading_01::after {
  content: "";
  position: absolute;
  width: calC((100vw - 540px) / 2);
  height: 27px;
  left: 100%;
  bottom: -13px;
  background: #fffad0;
  z-index: -1;
}

.heading_02::before {
  content: "";
  position: absolute;
  width: 485px;
  height: 27px;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  background: #fffad0;
  z-index: -1;
}

.heading_02::after {
  content: "";
  position: absolute;
  width: calC((100vw - 485px) / 2);
  height: 27px;
  left: 100%;
  bottom: -13px;
  background: #fffad0;
  z-index: -1;
}

.top_lead {
  font-size: clamp(1.25rem, 2.285vw, 2rem);
  line-height: 1.4em;
  margin-bottom: 36px;
}

.top_btn p {
  color: #f84b02;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 1200px) {
  .top_wrapper {
    max-width: 92%;
  }

  .heading_01::before {
    width: 480px;
    height: 25px;
  }

  .heading_01::after {
    width: calC((100vw - 480px) / 2);
    height: 25px;
  }

  .heading_02::before {
    width: 445px;
    height: 25px;
  }

  .heading_02::after {
    width: calC((100vw - 445px) / 2);
    height: 25px;
  }
}
@media (max-width: 896px) {
  .section_top {
    background-image: url(../image/FV_img02.png);
  }

  .top_content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .top_heading {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }

  .heading_01::before {
    width: 100%;
    height: 20px;
    bottom: -9px;
  }

  .heading_01::after {
    content: none;
  }

  .heading_02::before {
    width: 100%;
    height: 20px;
    bottom: -9px;
  }

  .heading_02::after {
    content: none;
  }

  .top_lead {
    margin-bottom: 28px;
  }
}

@media (max-width: 580px) {
  .top_wrapper {
    padding: 56px 0 60px;
    justify-content: center;
    align-items: flex-end;
  }

  .top_lead {
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .top_btn p {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
}
/* ---------- 【ここまで】ファーストビュー ----------- */

/* ---------- problem ----------- */
.section_problem {
  background-color: #fffad0;
  padding-bottom: 80px;
}

.problem_content {
  max-width: 880px;
  margin: -48px auto 0;
  position: relative;
  z-index: 1;
}

.problem_inner01 {
  width: 100%;
  background-color: #fff;
  border: solid 6px #fffad0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 40px 56px;
}

.problem_inner01 h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #f84c04;
  margin-bottom: 28px;
}

.problem_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.problem_list_item {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 8px;
}

.problem_list_item img {
  width: 33px;
  height: 27px;
}

.problem_list_item p {
  font-size: 1.5rem;
  letter-spacing: 0.08rem;
}

.problem_inner02 {
  width: 100%;
  background: linear-gradient(#ffb11a 0%, #f84902 100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 16px;
  position: relative;
}

.problem_inner02 p {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3em;
}

.problem_img_pc {
  width: 168px;
  position: absolute;
  bottom: -1px;
  right: -90px;
}

.problem_img_sp {
  display: none;
}

@media (max-width: 1100px) {
  .section_problem {
    padding-bottom: 0;
  }

  .problem_img_pc {
    display: none;
  }

  .problem_img_sp {
    display: block;
    width: 168px;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .problem_content {
    max-width: 92%;
    margin: -32px auto 0;
  }

  .problem_inner01 {
    padding: 32px;
  }

  .problem_inner01 h3 {
    font-size: 2rem;
    letter-spacing: 0.06em;
    line-height: 1.3em;
    margin-bottom: 24px;
  }

  .problem_list {
    gap: 16px;
  }

  .problem_list_item img {
    width: 28px;
    height: 22px;
  }

  .problem_list_item p {
    font-size: 1.3rem;
    line-height: 1.4em;
  }

  .problem_inner02 p {
    font-size: 1.75rem;
  }
}

/* ---------- explanation ---------- */
.section_explanation {
  background-color: #ffe0a4;
}
.ex_wrapper {
  padding: 80px 0;
}

.sec_title {
  margin-bottom: 56px;
}

.ex_title01 {
  width: 530px;
  height: 50px;
  margin: 0 auto;
  padding: 4px;
  background: #f84c04;
  border: solid 1px #fff;
  transform: skew(-20deg);
  margin-bottom: 36px;
}

.ex_title01 p {
  font-size: 1.625em;
  font-weight: 600;
  color: #fff;
  transform: skew(20deg);
}

.title_bg_num .ex_title02 {
  font-size: clamp(2.4rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #f84c04;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.title_bg_num .ex_title02 span {
  font-size: clamp(2.8rem, 4.142vw, 3.625rem);
}

.title_bg_num .ex_title03 {
  font-size: clamp(1.125rem, 2.142vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

.title_bg_num .ex_title03 .span01 {
  font-size: clamp(2.2rem, 2.857vw, 2.5rem);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.title_bg_num .ex_title03 .span02 {
  font-size: clamp(2.8rem, 4.142vw, 3.625rem);
  font-weight: 700;
}

.title_bg_num {
  position: relative;
  width: 100%;
}

.title_bg_num::before {
  position: absolute;
  width: 100vw;
  font-size: clamp(2.8rem, 10.928vw, 9.562rem);
  letter-spacing: 0;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  color: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.ex_bg_num::before {
  content: "support money";
}

.ex_list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.ex_list_item {
  background-color: #f84c04;
  border-radius: 100px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 24px 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ex_list_item span {
  color: #f9e603;
}

@media (max-width: 1200px) {
  .ex_list {
    width: 92%;
  }

  .ex_list_item {
    padding: 24px;
  }
}

@media (max-width: 896px) {
  .ex_wrapper {
    padding: 60px 0;
  }

  .sec_title {
    margin-bottom: 48px;
  }

  .ex_title01 {
    width: 90%;
    height: auto;
    margin-bottom: 32px;
  }

  .title_bg_num .ex_title02 {
    line-height: 1.4em;
    margin-bottom: 4px;
  }

  .ex_list_item {
    font-size: 1.5rem;
    line-height: 1.4em;
  }
}
/* ---------- 【ここまで】explanation ---------- */

/* ---------- case ---------- */
.section_case {
  background-color: #fdf5e5;
}

.case_img {
  margin-bottom: 28px;
}

.case_content {
  padding: 80px 0;
}

.case_title03 {
  font-weight: 600 !important;
  margin-bottom: 16px;
}

.title_border {
  position: relative;
  display: inline-block;
  padding: 0 8px;
}

.title_border::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 17px;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  background: #f5f13a;
  z-index: -1;
}

.case_bg_num::before {
  content: "MARKETING";
  color: rgba(255, 255, 255, 1);
  top: 63px;
}

.table_wrap {
  width: 1200px;
  margin: 0 auto 56px;
}

.case_table {
  width: 100%;
  border: solid 2px #f84c04;
}

.case_table thead th {
  background-color: #ffe0a4;
  color: #f84c04;
  font-size: 1.5rem;
  font-weight: 700;
}

tbody tr:nth-child(odd) {
  background-color: #fffad0;
}

tbody tr:nth-child(even) {
  background-color: #fdfdfd;
}

tbody th {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  padding: 12px 0 12px 56px;
  letter-spacing: 0.07em;
}

tbody td {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  padding: 12px 0;
  letter-spacing: 0.07em;
}

.case_text {
  width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  padding: 12px;
  position: relative;
}

.case_text::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -25px;
  border-width: 0 15px 25px 15px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.case_text p {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.case_text p span {
  color: #f84c04;
}

@media (max-width: 1200px) {
  .table_wrap {
    width: 92%;
  }

  tbody th {
    padding: 12px 24px;
  }

  tbody td {
    padding: 12px 24px;
  }

  .case_text {
    width: 92%;
  }
}

@media (max-width: 896px) {
  .case_img {
    margin-bottom: 24px;
  }

  .case_content {
    padding: 60px 0;
  }

  .case_title03 {
    margin-bottom: 4px;
  }

  .title_border::after {
    height: 15px;
    bottom: 0;
  }

  .table_wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .case_table {
    width: 100%;
    min-width: 600px; /* スクロールを発生させる基準幅 */
    border-collapse: collapse;
  }

  .case_table th,
  .case_table td {
    white-space: nowrap; /* 折り返さない */
    padding: 12px;
    border: 1px solid #ddd;
  }

  .case_table thead th {
    font-size: 1.3rem;
  }

  tbody th {
    font-size: 1.3rem;
  }

  tbody td {
    font-size: 1.3rem;
  }

  .case_text {
    width: 92%;
  }

  .case_text p {
    line-height: 1.4em;
  }
}
/* ---------- 【ここまで】case ---------- */

/* ---------- reason ---------- */
.reason_wrapper {
  padding: 80px 0;
  position: relative;
}

.reason_bg_num::before {
  content: "REASON";
  color: rgba(253, 245, 229, 1);
  top: -60px;
}

.title_border02 {
  position: relative;
}

.title_border02::after {
  content: "";
  position: absolute;
  width: 180px;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: solid 2px #f95303;
}

.reason_img {
  width: 280px;
  position: absolute;
  top: 30px;
  left: 50%; /* 親要素の中央を基準に */
  transform: translateX(calc(-50% + 430px)); /* 中央から右へ40px移動 */
}

.reason_lead {
  font-size: clamp(2.4rem, 3.214vw, 2.812rem);
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #f95303;
  position: relative;
  display: inline-block;
  margin: 56px 0 64px;
}

.reason_lead span {
  font-size: clamp(2.1rem, 2.857vw, 2.5rem);
}

.reason_lead::before,
.reason_lead::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 4px;
  background: #f95303;
  transform-origin: center;
}

.reason_lead::before {
  left: -60px; /* 吹き出しとの距離 */
  top: 50%;
  transform: rotate(60deg) translateY(-50%);
}

.reason_lead::after {
  right: -60px; /* 吹き出しとの距離 */
  top: 50%;
  transform: rotate(-60deg) translateY(-50%);
}

.reason_list {
  max-width: 890px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 56px;
}

.reason_list_item {
  width: 408px;
  height: 408px;
  background-color: #fffad0;
  border-radius: 50%;
}

.reason_list_item h4 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #f84c04;
  margin-bottom: 12px;
}

.reason_list_item p {
  font-size: 1.5rem;
  line-height: 1.4em;
  letter-spacing: 0.08em;
}

@media (max-width: 1200px) {
  .reason_wrapper {
    padding: 60px 0;
  }

  .reason_img {
    width: 240px;
    left: auto;
    transform: none;
    right: 20px;
  }

  .reason_lead {
    padding: 0 10px;
    line-height: 1.2em;
    margin-bottom: 40px;
  }

  .reason_list {
    width: 92%;
    row-gap: 40px;
  }
}

@media (max-width: 960px) {
  .title_border02::after {
    bottom: -28px;
  }

  .reason_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .reason_img {
    width: 160px;
    position: static;
    transform: auto;
  }

  .reason_lead {
    margin: 32px 0;
  }

  .reason_lead::before {
    left: -20px;
    top: auto;
    transform: rotate(60deg);
    bottom: 20px;
  }

  .reason_lead::after {
    right: -20px;
    top: auto;
    transform: rotate(-60deg);
    bottom: 20px;
  }

  .reason_list {
    flex-direction: column;
    align-items: center;
    row-gap: 48px;
  }

  .reason_list_item {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 360px;
    height: 100%;
    max-height: 360px;
  }

  .reason_item_img {
    height: 180px;
  }

  .reason_list_item h4 {
    font-size: 1.75rem;
  }

  .reason_list_item p {
    font-size: 1.35rem;
  }
}
/* ---------- 【ここまで】reason ---------- */

/* ---------- results ----------- */
.section_results {
  background: linear-gradient(-38deg, #ffe0a4 0%, #fffad0 100%);
}

.results_wrapper {
  padding: 80px 0;
}

.results_bg_num::before {
  content: "CASE STUDY";
  color: rgba(255, 255, 255, 0.5);
  top: -54px;
}

.case_title04 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 16px;
}

.results_list {
  max-width: 1240px;
  margin: 106px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  gap: 24px;
}

.results_list_item {
  list-style: none;
  width: 32%;
  background: #fff;
  border-radius: 20px;
  border: solid 6px #fffad0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
  position: relative;
  padding: 48px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.results_list_num {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #f95303;
  width: 242px;
  border-radius: 100px;
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.results_list_item h4 {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f95303;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results_list_item h4::before,
.results_list_item h4::after {
  content: "";
  display: inline-block;
  align-items: center;
  width: 2px;
  height: 30px;
  background: #f95303;
  transform: rotate(24deg);
  margin: 0 28px;
}

.results_list_p {
  font-size: 1.25em;
  line-height: 1.6em;
  letter-spacing: 0.08em;
}

.results_list_item img {
  width: 328px;
}

.case02_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.case02_list_item {
  list-style: none;
  border: solid 1px #f95303;
}

.case02_list_item:first-child {
  width: 30%;
  position: relative;
}

.case02_list_item:first-child::after {
  content: "";
  position: absolute;
  background-image: url(../image/case_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
}

.case02_list_item:last-child {
  width: 60%;
}

.case02_num {
  width: 100%;
  background: #f95303;
  font-size: 0.875em;
  font-weight: 600;
  color: #fff;
}

.case02_p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 110px;
}

.case02_p p {
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.08em;
}

.results_list_p span {
  color: #f95303;
}

@media (max-width: 1300px) {
  .results_wrapper {
    width: 92%;
    margin: 0 auto;
  }

  .results_list {
    justify-content: center;
    align-items: center;
    row-gap: 48px;
  }

  .results_list_item {
    width: 80%;
    max-width: 400px;
    height: 524px;
  }
}

@media (max-width: 600px) {
  .results_wrapper {
    padding: 60px 0;
  }

  .case_title04 {
    font-size: 1.2rem !important;
    margin-bottom: 4px;
  }

  .results_list_item {
    width: 100%;
    height: auto;
    padding: 40px 20px 32px;
    gap: 24px;
  }

  .results_list_num {
    font-size: 1em;
    font-weight: 700;
    width: 220px;
  }

  .results_list_item h4 {
    font-size: 1.5em;
  }

  .results_list_item h4::before,
  .results_list_item h4::after {
    height: 26px;
    margin: 0 24px;
  }

  .results_list_p {
    font-size: 1em;
  }

  .results_list_item img {
    width: 80%;
  }

  .case02_list {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .case02_list_item:first-child {
    width: 80%;
  }

  .case02_list_item:first-child::after {
    top: auto;
    bottom: -42px;
    transform: translate(-50%, 0) rotate(90deg);
    right: auto;
    left: 50%;
  }

  .case02_list_item:last-child {
    width: 80%;
  }

  .case02_p {
    padding: 18px 12px;
    height: auto;
  }
}
/* ---------- 【ここまで】results ----------- */

/* ---------- FAQ ---------- */
.faq_wrapper {
  padding: 80px 0 100px;
  position: relative;
}

.faq_bg_num::before {
  content: "QUESTION";
  color: rgba(253, 245, 229, 1);
  top: -50px;
}

.faq_img01,
.faq_img02 {
  position: absolute;
  z-index: -1;
  top: 130px;
}

.faq_img01 {
  left: 50%;
  transform: translateX(calc(-50% - 240px));
}

.faq_img02 {
  left: 50%;
  transform: translateX(calc(-50% + 240px));
}

.faq_list {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 50px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.faq_list_item {
  text-align: left;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 36px 120px;
}

.faq_q {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 32px;
  position: relative;
  color: #f95303;
  letter-spacing: 0.08em;
}

.faq_q::before,
.faq_a::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-weight: 700;
  color: #fff;
  width: 35px;
  height: 35px;
  left: -50px;
  border-radius: 50%;
  letter-spacing: 0;
}

.faq_q::before {
  content: "Q";
  font-size: 0.863em;
  background: linear-gradient(#65ade0 0%, #255cb3 100%);
  top: 2px;
}

.faq_a::before {
  content: "A";
  font-size: 1.187em;
  background: linear-gradient(#f99a03 0%, #f94b04 100%);
  top: -3px;
}

.faq_a {
  font-weight: 400;
  color: #363636;
  line-height: 1.75rem;
  position: relative;
  letter-spacing: 0.08em;
}

@media (max-width: 1200px) {
  .faq_wrapper {
    width: 92%;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .faq_wrapper {
    padding: 60px 0 80px;
  }

  .faq_img01,
  .faq_img02 {
    position: absolute;
    z-index: -1;
    top: 200px;
  }

  .faq_img01 {
    left: 20px;
    transform: none;
    width: 100px;
  }

  .faq_img02 {
    left: auto;
    right: 10px;
    transform: none;
    width: 160px;
  }

  .faq_list {
    padding-top: 110px;
  }

  .faq_list_item {
    padding: 24px 24px 24px 60px;
  }

  .faq_q {
    font-size: 1.2em;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
    line-height: 1.6em;
  }

  .faq_q::before,
  .faq_a::before {
    width: 28px;
    height: 28px;
    top: 0;
    left: -40px;
    line-height: 28px;
  }

  .faq_a {
    line-height: 1.6em;
    letter-spacing: 0.05em;
  }
}

/* ---------- 【ここまで】FAQ ---------- */

/* ---------- reception ---------- */
.section_reception {
  background-color: #f95303;
  position: relative;
}

.reception_wrapper {
  padding: 72px 0 80px;
}

.rec_ribbon {
  position: absolute;
  display: inline-block;
  background: #f9e602;
  padding: 6px 80px 8px;
  text-align: center;
  clip-path: polygon(
    0 0,
    100% 0,
    calc(100% - 20px) 50%,
    100% 100%,
    0 100%,
    20px 50%
  );
  z-index: 0;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.rec_ribbon p {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f95303;
  letter-spacing: 0.08rem;
}

.rec_title {
  font-size: clamp(2.1rem, 3.4285vw, 3rem);
  display: inline-block;
  padding: 0 10px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}

.rec_title span {
  font-size: clamp(1.75rem, 2.714vw, 2.375rem);
}

.rec_content {
  border-radius: 20px;
  background-color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 48px;
  position: relative;
}

.rec_content p {
  font-size: 1.687rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.rec_content p span {
  font-size: 2rem;
  color: #f95303;
}

.rec_content p::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 17px;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  background: #f5f13a;
  z-index: -1;
}

.rec_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: 12px;
}

.rec_list_item {
  width: 660px;
  background-color: #f9e602;
  padding: 8px 8px 10px;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: left;
}

.rec_img {
  position: absolute;
  bottom: -3px;
  right: 32px;
}

.rec_br {
  display: none;
}

@media (max-width: 1200px) {
  .rec_content {
    width: 92%;
    padding: 32px 32px 210px;
  }

  .rec_content p {
    margin-bottom: 36px;
  }

  .rec_list {
    align-items: center;
  }

  .rec_img {
    bottom: -2px;
    right: 50%;
    transform: translateX(50%);
    width: 240px;
  }

  .rec_br {
    display: block;
  }
}

@media (max-width: 896px) {
  .reception_wrapper {
    padding: 60px 0;
  }

  .rec_ribbon {
    width: 92%;
    max-width: 467px;
    padding: 6px 32px 8px;
  }

  .rec_content {
    padding: 28px 28px 210px;
  }

  .rec_content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

  .rec_content p span {
    font-size: 1.75rem;
  }

  .rec_content p::after {
    height: 15px;
  }

  .rec_list_item {
    width: 100%;
    padding: 8px;
    font-size: 1.35rem;
    line-height: 1.4em;
  }

  .rec_br {
    display: none;
  }
}

/* ---------- 【ここまで】reception ---------- */

.cta {
  padding: 60px 0;
}
.lower_btn a {
  justify-content: center;
  width: 630px;
  height: 132px;
  border-radius: 20px;
  font-size: 1.875rem;
  font-weight: 700;
  padding: 14px 32px 14px 24px;
  line-height: 1.4em;
  position: relative;
  margin-bottom: 36px;
}

.lower_btn a .cta_span {
  font-size: 2.25rem;
}

.lower_btn a::before {
  width: 32px;
  height: 32px;
  background-size: contain;
  right: 24px;
}

.cta_list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 24px;
}

.cta_list_item {
  font-size: 1.75rem;
  font-size: 700;
}

.cta_list_item:first-child::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: #363636;
  margin-left: 20px;
}

.cta_list_item span {
  font-size: 1.5rem;
}

.cta_list_tel a {
  font-size: 1.812rem;
  font-weight: 700;
  color: #f95303;
}

.cta_list_home a {
  font-size: 1.812rem;
  color: #333333;
}

@media (max-width: 896px) {
  .cta {
    padding: 60px 0 0;
  }

  .cta_content {
    width: 92%;
    margin: 0 auto;;
  }
  .lower_btn a {
    justify-content: center;
    width: 100%;
    max-width: 630px;
    font-size: 1.4rem;
    padding: 14px 20px 14px 8px; 
    margin-bottom: 28px;
  }

  .lower_btn a .cta_span {
    font-size: 1.6rem;
  }

  .lower_btn a::before {
    width: 28px;
    height: 28px;
    right: 24px;
  }

  .cta_list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 16px;
  }

  .cta_list_item {
    font-size: 1.25rem;
  }

  .cta_list_item:first-child::after {
    content: none;
  }

  .cta_list_item span {
    font-size: 1.25rem;
  }

  .cta_list_home a {
    font-size: 1.3rem;
  }
}
