@charset "UTF-8";

/* =============================
   Reset & Base Styles
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  background-color: #fff;
}

/* =============================
   Layout
============================= */
.sp_flex {
  display: block;
  gap: 10px;
}

.container,
.section_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 100px;
}

.half_media {
  display: flex;
  align-items: center;
}

.half_media__wrapper {
  width: calc(100% / 2 -20px);
  margin-right: 20px;
}

.half_media__wrapper:last-child {
  margin-right: 0;
}

.media {
  display: flex;
  align-items: center;
}

.media__img-wrapper {
  flex: 0 1 27.58333%;
  margin: 0 3.33333% 0 0;
}

.media__img {
  width: 100%;
}

.media__body {
  flex: 1;
}

.media__body > *:last-child {
  margin-bottom: 0;
}

.media__title {
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 0;
}

.media__text {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .media {
    display: block;
  }

  .media__img-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.media_col3 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.media_col3__img-wrapper {
  width: calc(100% / 3 - 14px);
  margin-right: 40px;
}

.media_col3__img-wrapper:last-child {
  margin-right: 0;
}

/* =============================
   img
============================= */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* =============================
   Title
============================= */
.heading_lv2 {
  border-top: 5px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 20px;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

.heading_lv2 img {
  width: 64px;
}

.heading_lv2__frame {
  background-color: #fff;
  color: #0861a2;
  padding: 0 10px;
  font-size: 3rem;
}

/* =============================
   Typography
============================= */
small {
  font-size: 80%;
}

.color_blue {
  color: #0861a2;
}

.dots {
  background-image: radial-gradient(circle at center, #f94475 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 4px; /* 縦方向の位置調整 */
}

/* =============================
   Links
============================= */
a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

/* =============================
   Buttons
============================= */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  text-align: center;
}
.button:hover {
  background-color: #0056b3;
}

/* =============================
   Utilities
============================= */
.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: 1rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
/* 追加で .pt-1, .pb-1 なども作成可 */

/* =============================
   header
============================= */
.header_inner {
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  width: 302px;
}

.header_right {
  display: flex;
  align-items: center;
}

.header_address {
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.header_info {
  margin-right: 20px;
}

.header_info_wrapper {
  display: flex;
  margin-bottom: 4px;
}

.header_info_title {
  background: #075e9d;
  padding: 0px 6px;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  width: 76px;
  text-align: center;
  margin-right: 6px;
}

.header_info_text {
  font-size: 0.875rem;
}

.header_cta {
  display: flex;
  gap: 10px;
}

.header_cta_tel,
.header_cta_line {
  width: 50%;
  min-width: 220px;
}

.header_cta_tel a,
.header_cta_line a {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 1.5rem;
}

.header_cta_tel a {
  border: 3px solid #f15a24;
  background: #fff;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
}

.header_cta_tel img {
  width: 26px;
}

.header_cta_line a {
  border: 3px solid #06c755;
  background: #06c755;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-weight: 700;
}

.header_cta_line img {
  width: 30px;
}

.header_cta_tel_img {
  vertical-align: middle;
  display: flex;
}

/* =============================
   mv
============================= */
.mv {
  position: relative;
}

.mv_copy {
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.mv_copy_main {
  font-size: 4.375rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff,
    -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.mv_copy_org {
  padding: 4px 20px;
  background: #f15a24;
  color: #fff;
  font-size: 1.625rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 34px;
}

.mv_copy_sub {
  font-size: 2.25rem;
  font-style: normal;
  line-height: 1.25;
  font-weight: 700;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff,
    -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.mv_track {
  position: relative;
}

.mv_track_img {
  position: absolute;
  width: 148px;
  top: 24px;
  right: 60px;
}

/* =============================
   CTA
============================= */
.cta {
  background: #0861a2;
  padding: 50px 20px;
}

.cta_inner {
  width: 1000px;
  max-width: 90%;
  margin: auto;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 40px;
}

.cta_main_img {
  width: 194px;
}

.cta_main_title {
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.cta_main_title_red {
  padding: 0 8px;
  background: #ff1e1c;
  color: #fff;
}

.cta_main_title_blue {
  padding: 0 8px;
  background: #070089;
  color: #fff;
}

/* CTAボタン
------------------------------- */
.cta_btn_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}

.cta_btn_tel,
.cta_btn_line {
  width: 50%;
}

/* 電話 */
.cta_btn_tel {
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 3px solid #f15a24;
  background: #fff;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

.cta_btn_tel_title {
  border-radius: 30px;
  background: #f15a24;
  padding: 5px 40px;
  color: #fff;
  font-size: 1.125rem;
  margin-top: -40px;
  font-weight: 600;
}

.cta_btn_tel_main {
  font-size: 2.125rem;
  font-weight: 700;
  color: #000000;
  display: flex;
  gap: 7px;
}

.cta_btn_tel_main img {
  width: 54px;
}

/* LINE */
.cta_btn_line {
  padding: 20px;
  border: 3px solid #06c755;
  background: #06c755;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

.cta_btn_line_title {
  font-size: 1.125rem;
  margin-top: -40px;
  font-weight: 600;
  padding: 5px 40px;
  border-radius: 30px;
  border: 1px solid #06c755;
  color: #06c755;
  background: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: -40px;
}

.cta_btn_line_main {
  font-size: 2.125rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-bottom: -2px;
}

.cta_btn_line_main img {
  width: 65px;
}

/* CTA TOP
------------------------------- */
.section_cta_top {
  background: url(../images/bg_3.jpg);
  background-size: cover;
}

.section_cta_top .section_inner {
  padding-bottom: 0;
}

.cta_top_copy {
  text-align: center;
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.cta_top_copy p {
  display: inline-block;
}

.cta_top_copy small {
  font-size: 56%;
}

.cta_top_copy__inner {
  position: relative;
  display: inline-flex;
  flex-direction: column;
}

.cta_top_copy__inner::before {
  content: "";
  background: url(../images/line_5.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  width: 70px;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: -80px;
}

.cta_top_copy__inner::after {
  content: "";
  background: url(../images/line_6.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  width: 70px;
  height: 80px;
  position: absolute;
  bottom: 0;
  right: -80px;
}

.cta_top_main {
  display: flex;
  justify-content: center;
}

.cta_top_main__img {
  width: 200px;
}

.speech-bubble {
  position: relative;
  background-color: #0861a2;
  color: #fff;
  padding: 20px 40px;
  border-radius: 70px;
  font-weight: bold;
  max-width: 100%;
  line-height: 1.25;
}

/* 吹き出しの三角形（中央下寄せ） */
.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 10%;
  transform: rotate(150deg);
  transform-origin: top center;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 16px solid #0861a2;
}

/* 黄色強調 */
.highlight {
  color: #fcee21;
}

.cta_top_main__copy {
  text-align: center;
}

.cta_top_main__copy img {
  width: 192px;
}

/* =============================
   Youtube　動画で挨拶
============================= */
.section_youtube {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #e9f4fd calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #e9f4fd calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

.heading_youtube {
  text-align: center;
}

.heading_youtube {
  font-size: 2.25rem;
  margin-bottom: 30px;
}

.heading_youtube_img {
  width: 230px;
}

.youtube_wrapper {
  margin: auto;
  text-align: center;
  width: 100%;
  max-width: 660px;
  aspect-ratio: 16 / 9;
}

.youtube_wrapper iframe {
  width: 100%;
  height: 100%;
}

/* =============================
   Youtube　動画で挨拶
============================= */
.section_alert {
  background-color: #fcee21;
}

.alert_title_wrapper {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  text-align: center;
  position: relative;
}

.alert_title_wrapper::before {
  content: "";
  background-image: url(../images/stripe.png);
  background-size: cover;
  height: 33px;
  width: 100%;
  display: block;
}

.alert_title_wrapper::after {
  content: "";
  background-image: url(../images/stripe.png);
  background-size: cover;
  height: 33px;
  width: 100%;
  display: block;
}

.alert_title_top {
  padding: 20px 10px 10px 10px;
}

.alert_title_top img {
  width: 194px;
}

.alert_title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
}

.alert_title_wrapper small {
  font-size: 60%;
}

.alert_contents {
  background-color: #f5f5f5;
}

.mondai_wrapper {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border: 4px solid #e30613;
  background: #fff;
  position: relative;
  margin-bottom: 50px;
}

.mondai_wrapper::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #e30613;
}

.mondai_img {
  width: 50px;
}

.montai_text_wrapper p {
  margin-bottom: 12px;
  font-weight: 700;
}

.montai_text_wrapper p:last-child {
  margin-bottom: 0;
}

.kaiketu_box {
  margin-top: 50px;
  background: #0a61a5;
  padding: 20px;
  color: #fff;
}

.kaiketu_box p {
  font-weight: 700;
}

.kaiketu_box p.kaiketu_text {
  font-size: 1.75rem;
  margin-bottom: 12px;
  line-height: 1.25;
}

.alert_text {
  font-weight: 900;
  margin-bottom: 12px;
}

.yel_box {
  background: #fcee21;
  padding: 30px 20px;
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.alert_arrow_wrapper {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.alert_arrow_wrapper img {
  width: 230px;
}

.alert_answer {
  text-align: center;
  margin-bottom: 30px;
}

.alert_answer_inner {
  text-align: center;
  position: relative;
}

.alert_answer_inner::before {
  content: "";
  background: url(../images/line_1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  width: 70px;
  height: 130px;
  position: absolute;
  top: -20px;
  left: -170px;
}

.alert_answer_inner::after {
  content: "";
  background: url(../images/line_2.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  width: 70px;
  height: 130px;
  position: absolute;
  top: -20px;
  right: -70px;
}

.alert_answer_main {
  text-align: center;
  font-weight: 900;
  font-size: 3.1875rem;
  color: #e30613;
  text-align: center;
}

.alert_answer_sub {
  font-weight: 900;
  font-size: 2rem;
  text-align: center;
}

/* =============================
   強み
============================= */
.section_feature {
  background-color: #0861a2;
  color: #fff;
}

.feature_wrapper {
  display: flex;
  padding: 30px;
  align-items: flex-start;
  gap: 40px;
  background: #fff;
  color: #0861a2;
  margin-bottom: 40px;
}

.feature_text_wrapper {
  width: 64%;
}

.feature_img {
  width: 34%;
}

.feature_title_wrapper {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #a0d4ff;
}

.feature_title_num {
  color: #a0d4ff;
  font-family: "Roboto Mono", monospace;
  font-size: 5.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-right: 10px;
}

.feature_title {
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.5;
}

.feature_text p {
  font-size: 1.125rem;
  font-weight: 700;
}

/* =============================
   チラシ
============================= */
.section_flyer {
  background: #e3e3e3;
}

.section_flyer .heading_lv2 {
  border-top: 5px solid #0861a2;
  border-bottom: 2px solid #0861a2;
  background-color: #fff;
}

.section_flyer .heading_lv2__frame {
  background-color: #0861a2;
  color: #fff;
}

/* =============================
   流れ
============================= */
.section_flow {
  background: url(../images/bg_1.jpg);
  background-size: cover;
}

.heading_flow {
  font-weight: 900;
  color: #0861a2;
  text-align: center;
  font-size: 2.625rem;
  letter-spacing: 3px;
  margin-bottom: 36px;
}

.heading_flow__inner {
  position: relative;
}

.heading_flow__inner::before {
  content: "";
  background: url(../images/line_3.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  width: 70px;
  height: 130px;
  position: absolute;
  top: 10px;
  left: -80px;
}

.heading_flow__inner::after {
  content: "";
  background: url(../images/line_4.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  width: 70px;
  height: 130px;
  position: absolute;
  top: 10px;
  right: -80px;
}

.heading_flow__frame {
  background-color: #0861a2;
  color: #fff;
  font-size: 3rem;
  padding: 0 10px;
  margin-bottom: 34px;
}

.flow_title__wrapper {
  display: flex;
}

.flow_num {
  padding: 0px 20px;
  background: #1d1d2b;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.flow_num span {
  font-family: "Roboto Mono";
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 8px;
}

.flow_title_main__wrapper {
  display: flex;
  align-items: center;
  background: #0861a2;
  width: 100%;
  color: #fff;
  padding: 8px 0px 8px 20px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 3.2px;
  line-height: 1;
}

.flow_title_free {
  background-color: #fff;
  color: #0861a2;
  font-size: 1.25rem;
  padding: 8px;
  margin-left: 6px;
}

.flow_contents {
  padding: 20px;
  border: 3px solid #000;
  margin-top: -3px;
  background-color: #fff;
}

.flow_contents p {
  color: #0861a2;
  font-weight: 700;
  font-size: 1.125rem;
}

.flow_item {
  position: relative;
  margin-bottom: 100px;
}

.flow_item::after {
  content: "";
  background: url(../images/arrow_2.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 50px;
  height: 40px;
  display: block;
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.flow_item:last-child {
  margin-bottom: 0;
}

.flow_item:last-child::after {
  display: none;
}

/* =============================
   チラシ
============================= */
.section_qa {
  background: url(../images/bg_2.jpg);
  background-size: cover;
}

.section_qa .heading_lv2 {
  border-top: 5px solid #0861a2;
  border-bottom: 2px solid #0861a2;
  background-color: #fff;
}

.section_qa .heading_lv2__frame {
  background-color: #0861a2;
  color: #fff;
}

.qa_item {
  border: 1px solid #a0d4ff;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 32px 20px 20px 20px;
  margin-bottom: 30px;
}

.q_inner {
  position: relative;
  padding-bottom: 20px;
  padding-left: 40px;
  color: #0861a2;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 900;
  border-bottom: solid 1px #a0d4ff;
  margin-bottom: 20px;
}

.q_inner::before {
  content: "Q";
  color: #a0d4ff;
  font-family: "Roboto Mono";
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

.a_inner {
  position: relative;
  color: #0861a2;
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 40px;
}

.a_inner::before {
  content: "A";
  color: #a0d4ff;
  font-family: "Roboto Mono";
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

/* =============================
   会社情報
============================= */
.section_company .heading_lv2 {
  border-top: 5px solid #0861a2;
  border-bottom: 2px solid #0861a2;
  color: #0861a2;
}

.company-info {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto;
  font-family: sans-serif;
  font-size: 16px;
}

.company-info th,
.company-info td {
  border: 1px solid #ccc;
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}

.company-info th {
  font-weight: bold;
  white-space: nowrap;
}

/* =============================
   footer
============================= */
footer {
  background-color: #0861a2;
  padding: 20px;
}

.footer_copyright {
  text-align: center;
  color: #fff;
}

/* -----------------------------

レスポンシブ

--------------------------------*/
@media screen and (max-width: 1070px) {
  /* 1070pxまでの幅の場合に適応される */
  .header_info {
    display: none;
  }
  .mv_copy_main {
    font-size: 3rem;
  }
  .mv_copy_org {
    font-size: 1rem;
  }
  .mv_copy_sub {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  /* 991pxまでの幅の場合に適応される */
}

@media screen and (max-width: 768px) {
  /* 768pxまでの幅の場合に適応される */
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .sp-left {
    text-align: left !important;
  }
  .sp_flex {
    display: flex;
  }

  .container,
  .section_inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .cta_inner {
    flex-direction: column-reverse;
    padding: 30px 20px;
    width: 95%;
    max-width: 95%;
  }
  .header_cta {
    position: fixed;
    bottom: 0;
    left: 0;
    gap: 0;
    width: 100%;
    z-index: 999;
  }
  .header_inner {
    flex-direction: column;
    align-items: flex-start;
  }
  /* .header_info {
    display: none;
  } */
  .header_address {
    font-weight: bold;
  }
  .header_cta_tel,
  .header_cta_line {
    min-width: auto;
    width: 50%;
  }
  .header_cta_tel a {
    font-size: 1rem;
    height: 100%;
  }
  .header_cta_line a {
    font-size: 1rem;
  }
  .mv_copy_main {
    font-size: 2.5rem;
  }
  .mv_copy_org {
    font-size: 1rem;
    padding: 12px 10px;
  }
  .mv_copy_sub {
    font-size: 1.25rem;
  }
  .mv_track_img {
    width: 118px;
  }
  .cta_main_title {
    font-size: 1.5rem;
  }
  .cta_btn_wrapper {
    flex-direction: column;
  }
  .cta_btn_tel,
  .cta_btn_line {
    width: 100%;
  }
  .mv_copy {
    top: 25%;
    left: 2%;
    width: 95%;
  }
  .mv_bottom {
    position: absolute;
    bottom: 0;
    width: 90%;
  }
  .cta_btn_line_title,
  .cta_btn_tel_title {
    font-size: 1rem;
  }
  .cta_btn_tel_main {
    font-size: 1.5rem;
  }
  .cta_btn_tel_main img {
    width: 34px;
  }
  .cta_btn_line_main img {
    width: 40px;
  }
  .cta_btn_line_main {
    font-size: 1.25rem;
    padding-top: 7px;
  }
  .cta_main_img {
    width: 114px;
    margin-top: 30px;
  }
  .heading_youtube_img {
    width: 120px;
  }
  .heading_youtube {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
  }
  .alert_title_top img {
    width: 180px;
  }
  .alert_title {
    font-size: 1.5rem;
  }
  .mondai_wrapper {
    flex-direction: column;
  }
  .mondai_img {
    min-width: 30px;
  }
  .media_col3 {
    flex-direction: column;
  }
  .media_col3__img-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .alert_arrow_wrapper img {
    width: 130px;
  }
  .alert_answer_sub {
    font-size: 1.25rem;
  }
  .alert_answer_main {
    font-size: 1.5rem;
  }
  .alert_answer_inner::before {
    width: 30px;
    height: 70px;
    top: 0px;
    left: -46px;
  }
  .alert_answer_inner::after {
    width: 28px;
    height: 73px;
    top: 0;
    right: -34px;
  }
  .heading_lv2 img {
    width: 40px;
  }
  .heading_lv2 {
    padding: 20px 0;
    font-size: 1.5rem;
  }
  .heading_lv2__frame {
    font-size: 2rem;
  }
  .feature_wrapper {
    flex-direction: column;
  }
  .feature_text_wrapper {
    width: 100%;
  }
  .feature_img {
    width: 100%;
  }
  .feature_title_num {
    font-size: 3rem;
  }
  .feature_title {
    font-size: 1.25rem;
  }
  .feature_text p {
    font-size: 1rem;
  }
  .half_media {
    flex-direction: column;
  }
  .half_media__wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .heading_flow {
    font-size: 1.5rem;
  }
  .heading_flow__frame {
    font-size: 2rem;
  }
  .flow_num {
    padding: 0px 10px;
  }
  .flow_title_main__wrapper {
    font-size: 1.25rem;
  }
  .flow_title_free {
    font-size: 1rem;
    padding: 4px;
  }
  .flow_contents p {
    font-size: 1rem;
  }
  .q_inner {
    font-size: 1.25rem;
  }
  .a_inner {
    font-size: 1rem;
  }
  .cta_top_copy {
    font-size: 1.35rem;
  }
  .cta_top_copy small {
    font-size: 80%;
    line-height: 1.75;
    display: block;
    margin-bottom: 20px;
  }
  .cta_top_copy__inner::before {
    left: -40px;
    transform: rotate(30deg);
  }
  .cta_top_copy__inner::after {
    bottom: 8px;
    right: -30px;
    transform: rotate(-20deg);
  }
  .speech-bubble {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
  .speech-bubble::after {
    left: 40%;
  }
  .cta_top_main__copy_sp {
    display: flex;
    align-items: center;
    margin-top: 30px;
  }
  footer {
    padding-bottom: 100px;
  }
  .header_info_title {
    font-size: 0.75rem;
    width: auto;
  }
  .header_inner {
    padding: 10px;
  }
  .header_logo,
  .header_info {
    display: none;
  }
  .header_inner {
    padding: 0;
  }
}

@media screen and (max-width: 376px) {
  /* 376pxまでの幅の場合に適応される */
  .mv_copy_main {
    font-size: 2.25rem;
  }
}
