@charset "UTF-8";

html,
body,
h1,
h2,
h3,
p,
a,
span,
ul,
li {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

html {
  font-size: 62.5%;
}

address {
  font-style: normal;
  /* イタリック体を解除 */
  margin: 0;
  /* デフォルトの余白をリセット */
  padding: 0;
  /* デフォルトのパディングをリセット */
  text-decoration: none;
  /* 下線などのテキスト装飾を解除 */
  line-height: normal;
  /* 通常の行間に戻す */
}

.pc-only {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/* ----------------------------------------------------------- */


/* 共通スタイル */

.body_wrapper {
  width: 100%;
}

.container-base {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.container-small {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.bg_FFFBE9 {
  background-color: #FFFBE9;
}

.bg_E1F6FF {
  background-color: #E1F6FF;
}

.bg_blue {
  background-color: #0B94E0;
  width: 100%;
}

.btn_wrap {
  border: 4px solid #fff;
  border-radius: 40px;
  background: linear-gradient(to bottom, #FFED47 63%, #FFD027 100%);
  position: relative;
  width: 484px;
  height: max-content;
  padding: 14px 26px 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.btn_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff, #f1f1f1);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn_wrap:hover::before {
  opacity: 1;
}

.btn_wrap>* {
  position: relative;
  z-index: 2;
}


@media screen and (max-width: 1050px) {
  .btn_wrap {
    width: 450px;
  }
}

@media screen and (max-width: 600px) {
  .btn_wrap {
    width: 100%;
  }
}

@media screen and (max-width: 980px) {
  .btn_wrap {
    padding: 12px 18px 12px 22px;
  }
}

@media screen and (max-width: 425px) {
  .btn_wrap {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .btn_wrap {
    width: 100%;
  }
}


.btn_wrap_text {
  font-size: 25px;
  font-weight: 900;
  color: #0B94E0;
}

@media screen and (max-width: 1050px) {
  .btn_wrap_text {
    font-size: 22px;
  }
}

@media screen and (max-width: 980px) {
  .btn_wrap_text {
    font-size: 17px;
  }
}

@media screen and (max-width: 390px) {
  .btn_wrap_text {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
}

@media screen and (max-width: 369px) {
  .btn_wrap_text {
    font-size: 15px;
  }
}

.btn_wrap_text_orange {
  font-size: 34px;
  color: #FF7B60;
  line-height: 1;
}

@media screen and (max-width: 1050px) {
  .btn_wrap_text_orange {
    font-size: 30px;
  }
}

@media screen and (max-width: 1050px) {
  .btn_wrap_text_orange {
    font-size: 28px;
  }
}

@media screen and (max-width: 980px) {
  .btn_wrap_text_orange {
    font-size: 24px;
  }
}

@media screen and (max-width: 390px) {
  .btn_wrap_text_orange {
    font-size: 25px;
  }
}

@media screen and (max-width: 362px) {
  .btn_wrap_text_orange {
    font-size: 23px;
  }
}

@media screen and (max-width: 353px) {
  .btn_wrap_text_orange {
    font-size: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .br_sp {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

.br_tablet {
  display: none;
}

@media screen and (max-width: 768px) {
  .br_tablet {
    display: block;
  }
}

.br600 {
  display: none;
}

@media screen and (max-width: 600px) {
  .br600 {
    display: block;
  }
}

.br500 {
  display: none;
}

@media screen and (max-width: 500px) {
  .br500 {
    display: block;
  }
}

.br400 {
  display: none;
}

@media screen and (max-width: 400px) {
  .br400 {
    display: block;
  }
}


.stripe {
  background: repeating-linear-gradient(-45deg, #0B94E0, #0B94E0 5px, #66BEEF 5px, #66BEEF 10px);
  height: 13px;
  width: 100%;
  display: block;
}

@media screen and (max-width: 768px) {
  .stripe {
    height: 8px;
  }
}

.asterisk1 {
  position: relative;
  font-size: 14px;
  padding-left: 15px;
}

.asterisk1::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 3px;
  color: inherit;
  font-size: 14px;
  line-height: 1;
}

@media screen and (max-width: 600px) {
  .asterisk1 {
    font-size: 11px;
  }

  .asterisk1::before {
    font-size: 12px;
  }
}

.asterisk2 {
  position: relative;
  font-size: 14px;
  padding-left: 15px;
}

.asterisk2::before {
  content: "＊";
  position: absolute;
  left: 0;
  top: 3px;
  color: inherit;
  font-size: 14px;
  line-height: 1;
}

@media screen and (max-width: 600px) {
  .asterisk2 {
    font-size: 12px;
  }

  .asterisk2::before {
    font-size: 12px;
  }
}

.gray {
  color: #636363;
}

.white {
  color: #fff;
}

/* @media screen and (max-width: 350px) {
  br {
    display: none;
  }
} */



/* -------------------------------------------------------------------------- */



/* ヘッダー */

.header {
  padding: 26px 36px 39px 36px;
  z-index: 999;
  position: relative;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 7px 5px 17px 15px;
  }
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_body {
  display: flex;
  gap: 35px;
}

@media screen and (max-width: 1250px) {
  .header_body {
    gap: 32px;
  }
}

@media screen and (max-width: 1200px) {
  .header_body {
    gap: 20px;
  }
}

@media screen and (max-width: 1080px) {
  .header_body__right {
    width: 380px;
    height: auto;
  }
}

@media screen and (max-width: 1080px) {
  .header_body__right {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1000px) {
  .header_body {
    gap: 12px;
  }
}

.site_header_logo a img {
  min-width: 105px;
}

.header_body__right img {
  min-width: 222px;
}

.header_btn_wrap {
  border: 4px solid #0B94E0;
  border-radius: 34.21px;
  background: linear-gradient(to bottom, #FFED47 63%, #FFD027 100%);
  position: relative;
  width: 354.55px;
  height: auto;
  padding: 12px 25px 12px 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s ease;
  overflow: visible;
}

.header_btn_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff, #f1f1f1);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  overflow: hidden;
  box-sizing: border-box;
}

.header_btn_wrap:hover::before {
  opacity: 1;
}

.header_btn_wrap>* {
  position: relative;
  z-index: 2;
}

.header_btn_wrap_free {
  position: absolute;
  left: -39px;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  z-index: 3;
}




@media screen and (max-width: 1150px) {
  .header_btn_wrap {
    width: 270px;
    padding: 9px 18px 9px 43.52px;
  }
}

@media screen and (max-width: 1000px) {
  .header_btn_wrap {
    width: 255px;
    padding: 7px 12px 7px 43.52px;
  }
}

@media screen and (max-width: 1090px) {
  .header_btn_wrap {
    display: none;
  }
}

.header_btn_wrap_text {
  font-size: 20.17px;
  font-weight: 900;
  color: #0B94E0;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1150px) {
  .header_btn_wrap_text {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------------------- */

/* メインビジュアル */

.main_visual_section {
  background-color: #E1F6FF;
  position: relative;
  overflow: hidden;
}

.main_visual_back {
  width: 100%;
  height: auto;
  position: absolute;
  top: -425px;
  z-index: 1;
}

@media screen and (max-width: 920px) {
  .main_visual_back {
    top: -55px;
  }
}

@media screen and (max-width: 768px) {
  .main_visual_back {
    top: -168px;
  }
}

.main_visual_back img {
  width: 100%;
}

.main_visual_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .main_visual_sp {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: center;
    z-index: 50;
    margin-bottom: 5px;
  }

  .main_visual {
    display: none;
  }
}

.main_visual_counseling {
  margin-bottom: 9px;
}


@media screen and (max-width: 768px) {
  .main_visual_counseling .asterisk1_num1 {
    font-size: 11px !important;
    padding-left: 21px !important;
  }

  .main_visual_counseling .asterisk1_num1::before {
    font-size: 11px !important;
  }

  .main_visual_counseling .asterisk1_num2 {
    font-size: 11px !important;
    padding-left: 21px !important
  }

  .main_visual_counseling .asterisk1_num2::before {
    font-size: 11px !important;
  }

  .flow_section_counseling .asterisk1_num1 {
    font-size: 11px !important;
    padding-left: 21px !important
  }

  .flow_section_counseling .asterisk1_num1::before {
    font-size: 11px !important;
  }

  .flow_section_counseling .asterisk1_num2 {
    font-size: 11px !important;
    padding-left: 21px !important
  }

  .flow_section_counseling .asterisk1_num2::before {
    font-size: 11px !important;
  }
}

.main_visual_top img {
  display: block;
  margin: 0 auto;
  margin-bottom: 24px;
  position: relative;
  z-index: 50;
  width: 72.6%;
}

@media screen and (max-width: 1000px) {
  .main_visual_top img {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 900px) {
  .main_visual_top img {
    margin-bottom: 0;
  }
}

.main_visual_grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  margin-bottom: 20px;
  position: relative;
  z-index: 50;
}

@media screen and (max-width: 920px) {
  .main_visual_grid {
    align-items: end;
  }
}

.main_visual_grid_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  width: 47.6%;
  height: auto;
}

.left_top {
  width: 53%;
  height: auto;
}

.main_visual_grid_right {
  width: 46.4%;
  height: auto;
}

.main_visual_grid_left_top {
  width: 100%;
  height: auto;
}

.main_visual_grid_left_bottom {
  width: 89.4%;
  height: auto;
}

.main_visual_grid_left img,
.main_visual_grid_right img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 920px) {
  .header_btn_wrap_text {
    font-size: 14px;
  }
}

.main_visual_bottom_wrap {
  position: relative;
}

.main_visual_bottom_wrap .btn_wrap {
  padding: 14px 24px 14px 24px;
  width: 458px;
}

@media screen and (max-width: 850px) {
  .main_visual_bottom_wrap .btn_wrap {
    width: 100%;
  }
}

.main_visual_bottom_wrap_img {
  position: absolute;
  bottom: -23px;
  left: 18px;
  width: 146px;
  height: auto;
}

@media screen and (max-width: 850px) {
  .main_visual_bottom_wrap_img {
    bottom: 48px;
    left: 1px;
    width: 76px;
    height: auto;
  }
}

@media screen and (max-width: 393px) {
  .main_visual_bottom_wrap_img {
    bottom: 48px;
    left: 23px;
    width: 76px;
    height: auto;
  }
}

@media screen and (max-width: 385px) {
  .main_visual_bottom_wrap_img {
    left: 9px;
  }
}

@media screen and (max-width: 375px) {
  .main_visual_bottom_wrap_img {
    left: 7px;
  }
}

@media screen and (max-width: 365px) {
  .main_visual_bottom_wrap_img {
    left: -10px;
  }
}

/*
@media screen and (max-width: 375px) {
  .main_visual_bottom_wrap_img {
    bottom: 48px;
    left: 11px;
    width: 76px;
    height: auto;
  }
} */

.main_visual_bottom_wrap_img img {
  width: 100%;
  height: auto;
}

.main_visual_bottom_wrap_body {
  padding: 13px 0 11px 182px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 850px) {
  .main_visual_bottom_wrap_body {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    width: fit-content;
    padding: 0 0 11px 0;
  }

  .main_visual_bottom_wrap_body>div,
  .main_visual_bottom_wrap_body>a {
    align-self: flex-end;
  }
}

@media screen and (max-width: 393px) {
  .main_visual_bottom_wrap_body {
    margin: 0;
    width: 100%;
  }
}


.main_visual_bottom_wrap_caution {
  padding-left: 163px;
  padding-bottom: 17px;
}



/* ----------------------------------------------------------------------------- */
/* worries_section */

.worries_section_body {
  padding-top: 87px;
  padding-bottom: 211px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .worries_section_body {
    padding-top: 33px;
    padding-bottom: 103px;
  }
}

.worries_section_img {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 532px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .worries_section_img {
    width: 270px;
    height: auto;
    bottom: -8px;
  }
}

.worries_section_text {
  font-size: 38px;
  font-weight: 900;
  color: #0B94E0;
  text-align: center;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .worries_section_text {
    font-size: 24px;
  }
}

@media screen and (max-width: 450px) {
  .worries_section_text {
    font-size: 19px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 355px) {
  .worries_section_text {
    font-size: 18px;
    margin-bottom: 24px;
  }
}


@media screen and (max-width: 600px) {
  .worries_section_large {
    font-size: 24px;
    color: #0B94E0;
  }
}

@media screen and (max-width: 355px) {
  .worries_section_large {
    font-size: 22px;
  }
}


.small {
  font-size: 28px;
  font-weight: 500;
  color: #636363;
}

@media screen and (max-width: 768px) {
  .small {
    font-size: 18px;
  }
}

@media screen and (max-width: 355px) {
  .small {
    font-size: 16px;
  }
}

.worries_section_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: space-between;
  column-gap: 26px;
  row-gap: 23px;
}

@media screen and (max-width: 920px) {
  .worries_section_grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

.worries_section_grid_item {
  background-color: #fff;
  border: 4px solid #0B94E0;
  border-radius: 14px;
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 28px 26px;
}

@media screen and (max-width: 450px) {
  .worries_section_grid_item {
    padding: 9px 50px 14px 20px;
  }
}

.worries_section_grid_item_text {
  font-size: 24px;
  font-weight: 700;
  color: #636363;
}

@media screen and (max-width: 768px) {
  .worries_section_grid_item_text {
    font-size: 18px;
  }
}

@media screen and (max-width: 450px) {
  .worries_section_grid_item_text {
    font-size: 16px;
  }
}


.worries_section_grid_item_text_blue {
  font-size: 26px;
  font-weight: 900;
  color: #0B94E0;
}

@media screen and (max-width: 768px) {
  .worries_section_grid_item_text_blue {
    font-size: 19px;
  }
}

@media screen and (max-width: 768px) {
  .worries_section_grid_item_text_blue {
    font-size: 18px;
  }
}

.worries_section_counseling {
  padding: 25px 0 29px 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 600px) {
  .worries_section_counseling {
    padding: 24px 0 16px 0;
  }
}


.worries_section_counseling_left {
  position: absolute;
  bottom: -13px;
  left: -71px;
}

@media screen and (max-width: 1200px) {
  .worries_section_counseling_left {
    left: -36px;
  }
}

@media screen and (max-width: 1100px) {
  .worries_section_counseling_left {
    left: -7px;
  }
}

@media screen and (max-width: 1000px) {
  .worries_section_counseling_left {
    display: none;
  }
}

.worries_section_counseling_right {
  margin-left: auto;
}

@media screen and (max-width: 1000px) {
  .worries_section_counseling_right {
    margin: 0 auto;
  }
}

.worries_section_counseling_right_text {
  align-items: end;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 1150px) {
  .worries_section_counseling_right_text {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .worries_section_counseling_right_text {
    font-size: 16px;
  }
}

@media screen and (max-width: 370px) {
  .worries_section_counseling_right_text {
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {
  .worries_section_counseling_right_text {
    margin-bottom: 13px;
  }
}

.worries_section_counseling_link {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  margin-top: 16px;
}

.worries_section_counseling_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.worries_section_counseling_link:hover::after {
  transform-origin: right;
  transform: scaleX(0);
}

@media screen and (max-width: 1150px) {
  .worries_section_counseling_link {
    font-size: 16px;
  }
}

.worries_section_counseling_right_text::before,
.worries_section_counseling_right_text::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 35px;
  height: 52px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {
  .worries_section_counseling_right_text::before {
    left: -38px;
    background-image: url('../../assets/img/home/counseling_left_sp.svg');
  }
}

@media screen and (max-width: 370px) {
  .worries_section_counseling_right_text::before {
    left: -20px;
    bottom: -14px;
  }
}

@media screen and (max-width: 1150px) {
  .worries_section_counseling_right_text::before {
    left: 3px;
  }
}

@media screen and (max-width: 1050px) {
  .worries_section_counseling_right_text::before {
    left: -13px;
  }
}

@media screen and (max-width: 1000px) {
  .worries_section_counseling_right_text::before {
    left: -40px;
  }
}

@media screen and (max-width: 980px) {
  .worries_section_counseling_right_text::before {
    left: -34px;
  }
}

@media screen and (max-width: 600px) {
  .worries_section_counseling_right_text::before {
    left: -22px;
    bottom: -12px;
    background-image: url('../../assets/img/home/text_decoration_left_sp.svg');
  }
}

@media screen and (max-width: 600px) {
  .worries_section_counseling_right_text::before {
    left: -19px;
    bottom: -12px;
    background-image: url('../../assets/img/home/text_decoration_left_sp.svg');
  }
}

@media screen and (max-width: 390px) {
  .worries_section_counseling_right_text::before {
    left: -9px;
  }
}

@media screen and (max-width: 390px) {
  .worries_section_counseling_right_text::before {
    left: -18px;
  }
}

@media screen and (min-width: 600px) {
  .worries_section_counseling_right_text::after {
    background-image: url('../../assets/img/home/worries_text_right.svg');
  }
}

@media screen and (min-width: 600px) {
  .worries_section_counseling_right_text::before {
    background-image: url('../../assets/img/home/worries_text_left.svg');
    left: -27px;
  }
}

@media screen and (max-width: 1150px) {
  .worries_section_counseling_right_text::before {
    left: -15px;
  }
}

@media screen and (max-width: 1000px) {
  .worries_section_counseling_right_text::before {
    left: -38px;
  }
}

@media screen and (max-width: 600px) {
  .worries_section_counseling_right_text::before {
    left: -24px;
  }
}

@media screen and (max-width: 450px) {
  .worries_section_counseling_right_text::before {
    left: -24px;
  }
}

@media screen and (max-width: 375px) {
  .worries_section_counseling_right_text::before {
    left: -19px;
  }
}

@media screen and (max-width: 370px) {
  .worries_section_counseling_right_text::before {
    left: -10px;
  }
}

@media screen and (max-width: 362px) {
  .worries_section_counseling_right_text::before {
    left: -17px;
  }
}

@media screen and (max-width: 600px) {
  .worries_section_counseling_right_text::after {
    background-image: url('../../assets/img/home/text_decoration_right_sp.svg');
    bottom: -12px;
  }
}

.worries_section_counseling_right .btn_wrap {
  margin: 0 auto;
}

.worries_section_counseling_right_text_img {
  display: none;
}

@media screen and (max-width: 1000px) {
  .worries_section_counseling_right_text_img {
    display: block;
    position: absolute;
    right: 21px;
    bottom: -3px;
  }

  .worries_section_counseling_right_text {
    padding-right: 155px;
    position: relative;
  }
}

@media screen and (max-width: 450px) {
  .worries_section_counseling_right_text_img {
    right: 0;
  }

  .worries_section_counseling_right_text {
    padding-right: 113px;
    position: relative;
  }
}

/* ----------------------------------------------------------------- */
/* メリット */

.merit_section_body {
  padding-top: 86px;
  padding-bottom: 89px;
}

@media screen and (max-width: 600px) {
  .merit_section_body {
    padding-top: 36px;
    padding-bottom: 31px;
  }
}

.merit_section_body_bubble {
  padding: 15px 135px 16px 46px;
  background-color: #0B94E0;
  border: none;
  border-radius: 53px;
  width: 454px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .merit_section_body_bubble {
    width: 370px;
  }
}

@media screen and (max-width: 600px) {
  .merit_section_body_bubble {
    padding: 9px 69px 9px 20px;
    width: 259px;
  }
}


.merit_section_body_bubble_text {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .merit_section_body_bubble_text {
    font-size: 15px;
  }
}

.merit_bubble_yellow {
  font-size: 25px;
  font-weight: 900;
  color: #FCE830;
}

@media screen and (max-width: 1150px) {
  .merit_bubble_yellow {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .merit_bubble_yellow {
    font-size: 15px;
  }
}

.yellow_middle {
  font-size: 26px;
  font-weight: 900;
  color: #FCE830;
}

@media screen and (max-width: 1150px) {
  .yellow_middle {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .yellow_middle {
    font-size: 18px;
  }
}

@media screen and (max-width: 370px) {
  .yellow_middle {
    font-size: 16px;
  }
}

.yellow_large {
  font-size: 40px;
  font-weight: 900;
  color: #FCE830;
}

@media screen and (max-width: 1150px) {
  .yellow_large {
    font-size: 32px;
  }
}

@media screen and (max-width: 1150px) {
  .yellow_large {
    font-size: 28px;
  }
}

@media screen and (max-width: 370px) {
  .yellow_large {
    font-size: 26px;
  }
}


.merit_section_body_bubble_img {
  position: absolute;
  bottom: -1px;
  right: 26px;
}

@media screen and (max-width: 600px) {
  .merit_section_body_bubble_img {
    right: 13px;
  }
}


.merit_section_text {
  text-align: center;
  margin-top: 33.66px;
  margin-bottom: 80px;
  font-size: 30px;
  font-weight: 500;
  color: #636363;
}

.merit_section_text .blue {
  font-size: 40px;
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .merit_section_text .blue {
    font-size: 24px;
    font-weight: 900;
  }
}

@media screen and (max-width: 768px) {
  .merit_section_text {
    font-size: 18px;
    margin-top: 19.74px;
    margin-bottom: 19px;
    line-height: 1;
  }
}

.merit_bubble_blue {
  font-size: 24px;
  font-weight: 700;
  color: #0B94E0;
}

@media screen and (max-width: 768px) {
  .merit_bubble_blue {
    font-size: 15px;
  }
}

.orange {
  font-size: 50px;
  font-weight: 900;
  color: #FF9D00;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .orange {
    font-size: 30px;
  }
}

.merit_section_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: space-between;
  column-gap: 82px;
  row-gap: 57px;
}

@media screen and (max-width: 1024px) {
  .merit_section_grid {
    display: flex;
    flex-direction: column;
    gap: 29px;
  }
}

.merit_section_grid_item {
  background-color: #fff;
  border: 4px solid #0B94E0;
  border-radius: 26px;
  padding: 23px 29px 13px 22px;
  position: relative;
  text-align: center;
  box-shadow: 6px 6px 0px 0px #0B94E0;
}

@media screen and (max-width: 600px) {
  .merit_section_grid_item {
    padding: 23px 19px 14px 19px;
    box-shadow: 1px 2px 0px 0px #0B94E0;
    border-radius: 9px;
    border: 2px solid #0B94E0;
  }
}

.merit_section_grid_item_inr {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.merit01_img {
  margin-bottom: 16px;
}

.merit02_img {
  margin-bottom: 19px;
  margin-left: 21px;
}

.merit03_img {
  margin-bottom: 35px;
}

.merit04_img {
  margin-bottom: 17px;
}

.merit {
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .merit {
    margin-bottom: 5px;
  }
}

.merit_section_grid_item_num {
  position: absolute;
  top: -25px;
  left: -31px;
}

@media screen and (max-width: 1024px) {
  .merit_section_grid_item_num {
    position: absolute;
    top: -17px;
    left: -11px;
  }
}

.merit_section_grid_item_inr_top {
  font-size: 18px;
  font-weight: 700;
  color: #636363;
  position: relative;
  display: inline-block;
  padding: 0 15px;
}

@media screen and (max-width: 600px) {
  .merit_section_grid_item_inr_top {
    font-size: 16px;
  }
}

.merit_section_grid_item_inr_top::before,
.merit_section_grid_item_inr_top::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3px;
  height: 24px;
  background-color: #FF9D00;
}

@media screen and (max-width: 600px) {

  .merit_section_grid_item_inr_top::before,
  .merit_section_grid_item_inr_top::after {
    width: 2px;
    height: 18px;
  }
}

.merit_section_grid_item_inr_top::before {
  left: 0;
  transform: translateY(-50%) rotate(-25deg);
}

.merit_section_grid_item_inr_top::after {
  right: 0;
  transform: translateY(-50%) rotate(25deg);
}

.merit_section_grid_item_inr_text {
  font-size: 21px;
  font-weight: 700;
  color: #0B94E0;
}

@media screen and (max-width: 600px) {
  .merit_section_grid_item_inr_text {
    font-size: 17px;
  }
}

.merit_section_counseling_body {
  padding-top: 44px;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 600px) {
  .merit_section_counseling_body {
    padding-top: 25px;
  }
}

.merit_section_counseling_body_bubble {
  padding: 15.72px 143.88px 16.75px 46.45px;
  background-color: #fff;
  border: none;
  border-radius: 53.45px;
  width: 454px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .merit_section_counseling_body_bubble {
    width: 370px;
  }
}

@media screen and (max-width: 600px) {
  .merit_section_counseling_body_bubble {
    padding: 9px 80px 9px 25px;
    width: 259px;
  }
}

.merit_section_counseling_body_bubble_text {
  font-size: 24px;
  font-weight: 700;
  color: #636363;
}

@media screen and (max-width: 768px) {
  .merit_section_counseling_body_bubble_text {
    font-size: 15px;
  }
}

.merit_section_counseling_body_bubble_img {
  position: absolute;
  bottom: 0;
  right: 26px;
}

@media screen and (max-width: 768px) {
  .merit_section_counseling_body_bubble_img {
    right: 13px;
  }
}

.blue {
  color: #0B94E0;
}

.merit_section_counseling_body_text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 9px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 920px) {
  .merit_section_counseling_body_text {
    margin-right: auto;
  }
}

@media screen and (max-width: 820px) {
  .merit_section_counseling_body_text {
    padding-left: 91px;
    text-align: left;
  }
}

.merit_section_counseling_body_text .asterisk,
.merit_section_counseling_body_text_sp .asterisk {
  font-size: 16px;
  vertical-align: super;
  color: #FCE830;
}

.merit_text_yellow_strong {
  font-size: 40px;
  font-weight: 900;
  color: #FCE830;
}

@media screen and (max-width: 768px) {
  .merit_text_yellow_strong {
    font-size: 26px;
  }
}

.merit_text_yellow {
  font-size: 30px;
  font-weight: 900;
  color: #FCE830;
}

@media screen and (max-width: 768px) {
  .merit_text_yellow {
    font-size: 19px;
  }
}

.merit_section_counseling_body_left {
  position: absolute;
  left: 0;
  bottom: -13px;
}

@media screen and (max-width: 930px) {
  .merit_section_counseling_body_left {
    display: none;
  }
}

.merit_section_counseling_body_right {
  position: absolute;
  right: 0;
  bottom: -13px;
}


.merit_section_counseling_body_sp {
  display: none;
  justify-content: center;
  gap: 5px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 22px;
}

@media screen and (max-width: 768px) {
  .merit_section_counseling_body_sp {
    margin-top: 18px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 350px) {
  .merit_section_counseling_body_sp {
    margin-top: 7px;
  }
}

.merit_section_counseling_body_text_sp {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  width: 64.59%;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .merit_section_counseling_body_text_sp {
    font-size: 16px;
  }
}

@media screen and (max-width: 375px) {
  .merit_section_counseling_body_text_sp {
    font-size: 15px;
  }

  .merit_text_yellow {
    font-size: 18px;
  }

  .merit_text_yellow_strong {
    font-size: 24px;
  }
}

@media screen and (max-width: 350px) {
  .merit_section_counseling_body_text_sp {
    font-size: 14px;
  }

  .merit_text_yellow {
    font-size: 16px;
  }

  .merit_text_yellow_strong {
    font-size: 22px;
  }
}

.merit_section_counseling_body_right_sp {
  width: 23.23%;
  height: auto;
}

.merit_section_counseling_body_right_sp img {
  display: block;
  margin-left: auto;
}

@media screen and (max-width: 930px) {

  .merit_section_counseling_body_text,
  .merit_section_counseling_body_right {
    display: none;
  }

  .merit_section_counseling_body_sp {
    display: flex;
  }
}

@media screen and (min-width: 931px) {
  .merit_section_counseling_body_sp {
    display: none;
  }
}

.triangle {
  position: relative;
  width: 0;
  height: 0;
}

.triangle::after {
  content: '';
  position: absolute;
  left: 166px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #0B94E0;
  bottom: -103px;
}

.merit_section_counseling_body_bubble .triangle::after {
  border-top: 20px solid #fff;
}

@media screen and (max-width: 768px) {
  .triangle::after {
    content: '';
    position: absolute;
    left: 135px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #0B94E0;
    bottom: -75px;
  }
}

@media screen and (max-width: 600px) {
  .triangle::after {
    content: '';
    position: absolute;
    left: 95px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #0B94E0;
    bottom: -64px;
  }
}


/* ---------------------------------------------------------------- */
/* flow_section */

.flow_section_body {
  padding-top: 96px;
  padding-bottom: 62px;
}

@media screen and (max-width: 768px) {
  .flow_section_body {
    padding-top: 35px;
    padding-bottom: 25px;
  }
}

@media screen and (max-width: 675px) {
  .flow_section_body_caution {
    text-align: left;
  }
}

.flow_section_body_text {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: #636363;
  margin-bottom: 53px;
}

@media screen and (max-width: 768px) {
  .flow_section_body_text {
    font-size: 18px;
    margin-bottom: 31px;
  }
}

.flow_section_body_text_blue {
  font-size: 40px;
  font-weight: 900;
  color: #0B94E0;
}

@media screen and (max-width: 768px) {
  .flow_section_body_text_blue {
    font-size: 24px;
  }
}

.flow_section_body_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.flow_section_body_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flow_section_body_item_circle {
  background-color: #0B94E0;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 5px;
}

.flow_section_body_item:not(:last-child) .flow_section_body_item_circle::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 76px;
  background-image: url('../../assets/img/home/flow_dot.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .flow_section_body_item:not(:last-child) .flow_section_body_item_circle::after {
    content: "";
    position: absolute;
    bottom: -67px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 46px;
    background-image: url('../../assets/img/home/flow_dot_sp.svg');
    background-repeat: no-repeat;
    background-size: contain;
  }
}



@media screen and (max-width: 768px) {
  .flow_section_body_item_circle {
    width: 55px;
    height: 55px;
  }
}

@media screen and (max-width: 450px) {
  .flow_section_body_item_circle {
    width: 51px;
    height: 51px;
  }
}

.circle_step {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-family: "Secular One", sans-serif;
}

@media screen and (max-width: 768px) {
  .circle_step {
    font-size: 10.37px;
  }
}

.circle_num {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-family: "Secular One", sans-serif;
}

@media screen and (max-width: 768px) {
  .circle_num {
    font-size: 23.05px;
  }
}

.flow_section_body_item_contents {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  width: 86%;
}

@media screen and (max-width: 768px) {
  .flow_section_body_item_contents {
    width: 88%;
  }
}

@media screen and (max-width: 600px) {
  .flow_section_body_item_contents {
    width: 85%;
  }
}

@media screen and (max-width: 450px) {
  .flow_section_body_item_contents {
    width: 81%;
  }
}

.flow_section_body_item_contents_text {
  font-size: 22px;
  font-weight: 700;
  color: #0B94E0;
  padding: 0 30px;
}

@media screen and (max-width: 900px) {
  .flow_section_body_item_contents_text {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .flow_section_body_item_contents_text {
    font-size: 14px;
    padding: 0 7px 0 11px;
    width: 57.77%;
  }
}

@media screen and (max-width: 450px) {
  .flow_section_body_item_contents_text {
    font-size: 14px;
    padding: 0 7px 0 11px;
  }
}

.flow_section_body_item_contents_img img {
  border-radius: 15px 0 0 15px;
}

.flow_section_body_bottom {
  font-size: 27px;
  font-weight: 700;
  color: #636363;
  text-align: center;
  margin-top: 45.94px;
}

@media screen and (max-width: 768px) {
  .flow_section_body_bottom {
    font-size: 18px;
    margin-top: 18px;
  }
}

.flow_section_body_bottom_blue {
  font-size: 33.59px;
  font-weight: 900;
  color: #0B94E0;
}

@media screen and (max-width: 768px) {
  .flow_section_body_bottom_blue {
    font-size: 22px;
  }
}

.flow_section_body_bottom_emphasis {
  font-size: 44.78px;
  font-weight: 900;
  color: #0B94E0;
  background: linear-gradient(to bottom, transparent 60%, #FCE830 60%);
}

@media screen and (max-width: 768px) {
  .flow_section_body_bottom_emphasis {
    font-size: 30px;
  }
}

.flow_section_counseling_body {
  text-align: center;
  padding-top: 36px;
  padding-bottom: 21px;
}

@media screen and (max-width: 600px) {
  .flow_section_counseling_body {
    padding-top: 17px;
    padding-bottom: 18px;
  }
}

.flow_section_counseling_body_text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 600px) {
  .flow_section_counseling_body_text {
    font-size: 18px;
  }
}

.flow_section_counseling_body_text_yellow {
  font-size: 30px;
  font-weight: 900;
  color: #FCE830;
}

@media screen and (max-width: 600px) {
  .flow_section_counseling_body_text_yellow {
    font-size: 20px;
  }

  .flow_section_counseling_body_text_yellow_large {
    font-size: 26px;
  }
}

.flow_section_counseling_body_vist img,
.flow_section_counseling_body_satisfaction img {
  display: block;
  margin: 0 auto;
  margin-bottom: 9px;
}

.flow_section_counseling_body_vist {
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .flow_section_counseling_body_vist {
    margin-bottom: 11px;
  }
}

.flow_section_counseling_btn {
  display: flex;
  justify-content: center;
  margin-bottom: 21px;
}

@media screen and (max-width: 600px) {
  .flow_section_counseling_btn {
    margin-bottom: 13px;
  }
}


/* --------------------------------------------------------------------------------------------------- */
/* satisfaction_section */

.satisfaction_section_body {
  padding-top: 64px;
  padding-bottom: 41px;
}

@media screen and (max-width: 600px) {
  .satisfaction_section_body {
    padding-top: 25px;
    padding-bottom: 22px;
  }
}

.satisfaction_section_body_text {
  font-size: 30px;
  font-weight: 500;
  color: #636363;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .satisfaction_section_body_text {
    font-size: 18px;
    margin-bottom: 11px;
  }
}

.satisfaction_section_body_text .asterisk {
  font-size: 28px;
  vertical-align: super;
  color: #FF9D00;
}

@media screen and (max-width: 768px) {
  .satisfaction_section_body_text .asterisk {
    font-size: 18px;
  }
}

.satisfaction_section_body_text_blue {
  font-size: 40px;
  font-weight: 900;
  color: #0B94E0;
}

.orange_num {
  font-size: 58px !important;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .orange_num {
    font-size: 38px !important;
  }
}

.per {
  font-size: 36px;
  color: #FF9D00;
}

@media screen and (max-width: 768px) {
  .per {
    font-size: 23px;
  }
}

@media screen and (max-width: 768px) {
  .satisfaction_section_body_text_blue {
    font-size: 20px;
  }
}

.satisfaction_section_body_text_orange {
  font-size: 46px;
  font-weight: 900;
  color: #FF9D00;
}

@media screen and (max-width: 768px) {
  .satisfaction_section_body_text_orange {
    font-size: 28px;
  }
}

.caution_text {
  display: flex;
  justify-content: center;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .caution_text {
    text-align: left;
  }
}


.satisfaction_voice {
  display: flex;
  justify-content: space-between;
  margin-top: 37px;
  margin-bottom: 24px;
}

@media screen and (max-width: 900px) {
  .satisfaction_voice {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-top: 37px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 600px) {
  .satisfaction_voice {
    margin-top: 20px;
    margin-bottom: 14px;
  }
}

.satisfaction_voice_item {
  width: 32%;
  border: 4px solid #B1E3FF;
  border-radius: 26px;
  background-color: #fff;
  padding: 25px 20px 114px 28px;
  position: relative;
}

@media screen and (max-width: 920px) {
  .satisfaction_voice_item {
    padding: 18px 20px 114px 21px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 900px) {
  .satisfaction_voice_item {
    width: 46%;
    padding-bottom: 17px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 870px) {
  .satisfaction_voice_item {
    width: 51%;
  }
}

@media screen and (max-width: 785px) {
  .satisfaction_voice_item {
    width: 55%;
  }
}

@media screen and (max-width: 735px) {
  .satisfaction_voice_item {
    width: 64%;
  }
}

@media screen and (max-width: 630px) {
  .satisfaction_voice_item {
    width: 75%;
  }
}

@media screen and (max-width: 550px) {
  .satisfaction_voice_item {
    width: 85%;
    padding: 17px 21px;
  }
}

@media screen and (max-width: 490px) {
  .satisfaction_voice_item {
    width: 93%;
    padding: 17px 21px;
  }
}

@media screen and (max-width: 450px) {
  .satisfaction_voice_item {
    width: 100%;
    padding: 15px 16px;
  }
}

.satisfaction_voice_item_img {
  position: absolute;
  bottom: 0;
  right: 15px;
}

.satisfaction_voice_item_text {
  font-size: 19px;
  font-weight: 500;
  color: #636363;
  display: block;
  margin-bottom: 18px;
  position: relative;
  z-index: 5;
  text-align: left;
}

@media screen and (max-width: 450px) {
  .satisfaction_voice_item_text {
    font-size: 18px;
    margin-bottom: 11px;
  }
}

@media screen and (max-width: 390px) {
  .satisfaction_voice_item_text {
    font-size: 14px;
    margin-bottom: 11px;
  }
}

@media (min-width: 393px) and (max-width: 900px) {
  .center_text {
    text-align: left;
  }
}

.satisfaction_voice_item_text_blue {
  color: #0B94E0;
  font-weight: 700;
}

.satisfaction_voice_item_text_blue .asterisk {
  font-size: 12px;
  vertical-align: super;
  color: #0B94E0;
}

.satisfaction_voice_item_name {
  font-size: 16px;
  font-weight: 500;
  color: #636363;
  display: block;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 900px) {
  /* .row-reverse .satisfaction_voice_item_text {
    text-align: right;
  } */

  .row-reverse .satisfaction_voice_item_name {
    text-align: right;
  }

  .satisfaction_voice_item_img {
    right: 5px;
  }

  .row-reverse .satisfaction_voice_item_img {
    left: 5px;
  }
}

@media screen and (max-width: 450px) {
  .satisfaction_voice_item_img {
    right: -5px;
  }

  .row-reverse .satisfaction_voice_item_img {
    left: -9px;
  }
}


/* --------------------------------------------------------------------------------------------------- */
/* support_section */

.support_section_body {
  padding-top: 77px;
  padding-bottom: 33px;
}

@media screen and (max-width: 600px) {
  .support_section_body {
    padding-top: 38px;
    padding-bottom: 19px;
  }
}

.support_section_body_text {
  text-align: center;
}

.support_section_body_text_inr::before,
.support_section_body_text_inr::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 74px;
  background-repeat: no-repeat;
}

@media screen and (min-width: 600px) {
  .support_section_body_text_inr::before {
    left: -65px;
    background-image: url('../../assets/img/home/support_text_left.svg');
  }
}

@media screen and (min-width: 600px) {
  .support_section_body_text_inr::after {
    right: -108px;
    background-image: url('../../assets/img/home/support_text_right.svg');
  }
}

@media screen and (max-width: 600px) {
  .support_section_body_text_inr::before {
    left: -39px;
    bottom: -19px;
    background-image: url('../../assets/img/home/support_text_left_sp.svg');
  }

  .support_section_body_text_inr::after {
    right: -96px;
    bottom: -19px;
    background-image: url('../../assets/img/home/support_text_right_sp.svg');
  }
}

.support_section_body_text_inr {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #636363;
}

@media screen and (max-width: 600px) {
  .support_section_body_text_inr {
    font-size: 18px;
  }
}

.support_section_body_text_blue {
  font-size: 32px;
  font-weight: 900;
  color: #0B94E0;
}

@media screen and (max-width: 600px) {
  .support_section_body_text_blue {
    font-size: 22px;
  }
}

.support_container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 159px;
  margin-top: 34px;
}

@media screen and (max-width: 930px) {
  .support_container {
    display: flex;
    flex-direction: column;
    gap: 37px;
    align-items: center;
    margin-bottom: 22px;
  }
}

@media screen and (max-width: 450px) {
  .support_container {
    display: flex;
    flex-direction: column;
    gap: 37px;
    align-items: center;
    margin-bottom: 22px;
  }

  .support_container_item {
    align-self: flex-start;
  }

  .loan {
    align-self: flex-end;
  }
}

.support_container_item {
  position: relative;
  /* max-width: 322px;
  min-width: 263px; */
  border: 3px solid #FFC43E;
  background-color: #fff;
  border-radius: 17px;
  padding: 17px 20px 27px 20px;
}

@media screen and (max-width: 1024px) {
  .support_container_item {
    padding: 15px 21px;
    padding-bottom: 27px;
  }
}




.package {
  width: 292px;
  height: auto;
}

@media screen and (max-width: 930px) {
  .package_img {
    position: absolute;
    right: -50px;
    bottom: -60px;
  }

  .loan_img {
    position: absolute;
    left: -84px;
    bottom: -33px;
  }

  .guarantee_img {
    position: absolute;
    right: -62px;
    bottom: -15px;
  }
}



.loan {
  width: 26.56%;
}

@media screen and (max-width: 930px) {
  .loan {
    width: 259px;
  }
}

.guarantee {
  width: 32.29%;
  height: auto;
}

@media screen and (max-width: 930px) {
  .guarantee {
    width: 282px;
  }
}

.support_container_item_title {
  font-size: 22px;
  font-weight: 700;
  color: #0B94E0;
  margin-bottom: 8px;
}

@media screen and (max-width: 1024px) {
  .support_container_item_title {
    font-size: 20px;
  }
}

@media screen and (min-width: 930px) {
  .support_container_item_img {
    position: absolute;
    bottom: -131px;
    left: 50%;
    transform: translateX(-50%);
  }
}



@media screen and (max-width: 393px) {
  .package {
    width: 82.95%;
    height: auto;
  }

  .loan {
    width: 73.58%;
    height: auto;
  }

  .guarantee {
    width: 80.11%;
    height: auto;
  }

  .top_item {
    padding-right: 162px;
  }



  .bottom_item {
    padding-right: 132px;
  }

  .satisfaction_voice_item_name {
    text-align: right;
  }

  .center_name {
    text-align: left;
  }
}

@media screen and (max-width: 365px) {
  .row-reverse {
    padding-left: 108px;
    padding-right: 10px;
  }

  .satisfaction_voice_item_img img {
    width: 132px;
    height: auto;
  }

  .top_item {
    padding-right: 123px;
    padding-left: 10px;
  }

  .top_item img {
    width: 134px;
    height: auto;
  }

  .bottom_item {
    padding-right: 105px;
    padding-left: 10px;
  }

  .bottom_item img {
    width: 125px;
    height: auto;
  }

  .bottom_item .satisfaction_voice_item_img {
    right: -14px;
  }

  .bottom_item .satisfaction_voice_item_text {
    letter-spacing: -0.08em;
  }

}



.support_container_item_text {
  font-size: 17px;
  font-weight: 500;
  color: #636363;
}

.support_container_item_text .asterisk {
  font-size: 12px;
  vertical-align: super;
  color: #636363;
}

@media screen and (max-width: 1024px) {
  .support_container_item_text {
    font-size: 16px;
  }
}


.asterisk1_num1 {
  position: relative;
  font-size: 13px;
  padding-left: 24px;
}

.asterisk1_num1::before {
  content: "※1";
  position: absolute;
  left: 0;
  top: 3px;
  color: inherit;
  font-size: 13px;
  line-height: 1;
}

.asterisk1_num2 {
  position: relative;
  font-size: 13px;
  padding-left: 24px;
}

.asterisk1_num2::before {
  content: "※2";
  position: absolute;
  left: 0;
  top: 3px;
  color: inherit;
  font-size: 13px;
  line-height: 1;
}

.asterisk1_num3 {
  position: relative;
  font-size: 13px;
  padding-left: 24px;
}

.asterisk1_num3::before {
  content: "※3";
  position: absolute;
  left: 0;
  top: 3px;
  color: inherit;
  font-size: 13px;
  line-height: 1;
}

.support_counseling_body {
  padding-top: 66px;
  padding-bottom: 37px;
  position: relative;
}

@media screen and (max-width: 600px) {
  .support_counseling_body {
    padding-top: 19px;
    padding-bottom: 20px;
  }
}

.support_counseling_text {
  text-align: center;
}

.support_counseling_text_inr {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 920px) {
  .support_counseling_text_inr {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  .support_counseling_text_inr {
    font-size: 17px;
  }
}

.support_counseling_text_inr::before,
.support_counseling_text_inr::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 73px;
  background-repeat: no-repeat;
}


.support_counseling_text_inr::before {
  left: -268px;
  background-image: url('../../assets/img/home/support_text_bottom_left.svg');
}

.support_counseling_text_inr::after {
  background-image: url('../../assets/img/home/support_text_bottom_right.svg');
}

@media screen and (max-width: 1024px) {
  .support_counseling_text_inr::before {
    left: -94px;
  }
}

@media screen and (max-width: 600px) {
  .support_counseling_text_inr::before {
    left: -42px;
    bottom: -37px;
    background-image: url('../../assets/img/home/text_decoration_left_sp.svg');
  }
}

@media screen and (max-width: 600px) {
  .support_counseling_text_inr::after {
    bottom: -37px;
    background-image: url('../../assets/img/home/text_decoration_right_sp.svg');
  }
}



.support_yellow_large {
  font-size: 40px;
  font-weight: 900;
  color: #FCE830;
}

@media screen and (max-width: 920px) {
  .support_yellow_large {
    font-size: 36px;
  }
}

@media screen and (max-width: 600px) {
  .support_yellow_large {
    font-size: 26px;
  }
}

.support_yellow {
  font-size: 32px;
  font-weight: 900;
  color: #FCE830;
}

@media screen and (max-width: 920px) {
  .support_yellow {
    font-size: 28px;
  }
}

@media screen and (max-width: 600px) {
  .support_yellow {
    font-size: 19px;
  }
}

.support_counseling_body_main {
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 54px 85px 19px 97px;
  margin-top: 26px;
  position: relative;
}

@media screen and (max-width: 920px) {
  .support_counseling_body_main {
    padding: 28px 15px 16px 15px;
  }
}

.support_counseling_left {
  position: absolute;
  left: 97px;
  bottom: 90px;
}

.support_counseling_right {
  position: absolute;
  right: 85px;
  bottom: 90px;
}

@media screen and (max-width: 920px) {

  .support_counseling_left,
  .support_counseling_right {
    display: none;
  }
}

.support_counseling_body_main_img {
  display: flex;
  justify-content: center;
}

.support_counseling_body_main_reception {
  font-size: 24px;
  font-weight: 700;
  color: #636363;
  margin-top: 56px;
}

@media screen and (max-width: 920px) {
  .support_counseling_body_main_reception {
    margin-top: 25px;
  }
}

@media screen and (max-width: 600px) {
  .support_counseling_body_main_reception {
    font-size: 16px;
  }
}

.support_counseling_body_main_reception_blue {
  color: #0B94E0;
}

.support_counseling_btn {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 50px;
}

.support_counseling_btn .btn_wrap {
  width: 490px;
}

@media screen and (max-width: 920px) {
  .support_counseling_btn {
    margin-top: 10px;
    margin-bottom: 23px;
  }
}

.support_counseling_btn .btn_wrap {
  border-color: #0B94E0;
  padding: 23px 26px 23px 36px;
  border-radius: 47px;
}

@media screen and (max-width: 1000px) {
  .support_counseling_btn .btn_wrap {
    padding: 16px 22px 16px 32px;
  }
}


.support_counseling_body_main_tell {
  font-size: 24px;
  font-weight: 700;
  color: #636363;
}

@media screen and (max-width: 600px) {
  .support_counseling_body_main_tell {
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  .support_counseling_body_main .btn_wrap {
    padding: 12px 10px 12px 12px;
  }
}

address {
  font-size: 56px;
  font-weight: 400;
  color: #0B94E0;
  font-family: "Secular One", sans-serif;
}

.address {
  display: none;
}

@media screen and (max-width: 920px) {
  address {
    display: none;
  }

  .address {
    display: block;
  }

  .address img {
    display: block;
    margin: 10px auto 13px auto;
  }
}

.support_counseling_body_main_time {
  font-size: 16px;
  font-weight: 500;
  color: #636363;
  margin-bottom: 52px;
}

@media screen and (max-width: 600px) {
  .support_counseling_body_main_time {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
  }
}

.blod {
  font-weight: 700;
}

@media screen and (max-width: 900px) {
  .row-reverse {
    padding-left: 137px;
    padding-right: 9px;
  }
}

@media screen and (min-width: 370px) and (max-width: 375px) {
  .row-reverse {
    padding-left: 152px;
  }
}

@media screen and (max-width: 360px) {
  .row-reverse {
    padding-left: 115px;
  }
}

/* ----------------------------------------------------------------------------------------------------- */
/* faq_section */

.faq_section_body {
  padding-top: 60px;
  padding-bottom: 55px;
}

@media screen and (max-width: 600px) {
  .faq_section_body {
    padding-top: 31px;
    padding-bottom: 21px;
  }
}

.faq_section_body_text {
  font-size: 38px;
  font-weight: 900;
  color: #0B94E0;
  text-align: center;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .faq_section_body_text {
    font-size: 32px;
  }
}

@media screen and (max-width: 600px) {
  .faq_section_body_text {
    font-size: 20px;
  }
}

.faq_section_body_text_blue {
  font-size: 70px;
  font-family: "Secular One", sans-serif;
}

@media screen and (max-width: 768px) {
  .faq_section_body_text_blue {
    font-size: 62px;
  }
}

@media screen and (max-width: 600px) {
  .faq_section_body_text_blue {
    font-size: 39px;
  }
}

.faq_section_body_text_gray {
  font-size: 47px;
  color: #636363;
  font-family: "Secular One", sans-serif;
}

@media screen and (max-width: 768px) {
  .faq_section_body_text_gray {
    font-size: 38px;
  }
}

@media screen and (max-width: 600px) {
  .faq_section_body_text_gray {
    font-size: 26px;
  }
}

.faq_section_body_text_orange {
  font-size: 70px;
  color: #FF9D00;
  font-family: "Secular One", sans-serif;
}

@media screen and (max-width: 768px) {
  .faq_section_body_text_orange {
    font-size: 62px;
  }
}

@media screen and (max-width: 600px) {
  .faq_section_body_text_orange {
    font-size: 39px;
  }
}

.accordion {
  width: 100%;
  margin-top: 26px;
}

@media screen and (max-width: 600px) {
  .accordion {
    margin-top: 13px;
  }
}

.accordion-item {
  margin-bottom: 31px;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .accordion-item {
    margin-bottom: 12px;
  }
}


.accordion-item:last-child {
  margin-bottom: 0px;
}

.accordion-icon {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #0B94E0;
  margin-left: auto;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .accordion-icon {
    width: 17px;
    height: 17px;
  }
}

.accordion-icon .line_x,
.accordion-icon .line_y {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background-color: #0B94E0;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

@media screen and (max-width: 600px) {

  .accordion-icon .line_x,
  .accordion-icon .line_y {
    width: 7px;
    height: 2px;
  }
}


.accordion-icon .line_y {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.active .line_y {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-header {
  width: 100%;
  padding: 43px 46px 38px 40px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .accordion-header {
    padding: 14px 14px 12px 12px;
  }
}

.accordion-header_text {
  font-size: 26px;
  font-weight: 700;
  color: #0B94E0;
}

@media screen and (max-width: 820px) {
  .accordion-header_text {
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  .accordion-header_text {
    font-size: 15px;
  }
}


.accordion-header_circle {
  width: 51px;
  height: 51px;
  background-color: #0B94E0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 28px;
  flex-shrink: 0;
}

@media screen and (max-width: 820px) {
  .accordion-header_circle {
    width: 36px;
    height: 36px;
  }
}

@media screen and (max-width: 600px) {
  .accordion-header_circle {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
}

.accordion-header_circle_text {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: "Secular One", sans-serif;
}

@media screen and (max-width: 820px) {
  .accordion-header_circle_text {
    font-size: 22px;
    font-weight: 500;
  }
}

@media screen and (max-width: 600px) {
  .accordion-header_circle_text {
    font-size: 18px;
  }
}

.orange_circle {
  background-color: #FF9D00;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
}

.accordion-content_line img {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0 46px 0 40px;
}

@media screen and (max-width: 600px) {
  .accordion-content_line img {
    padding: 0 14px 0 12px;
  }
}

.accordion-content_inr {
  display: flex;
  align-items: flex-start;
  padding: 41px 46px 50px 40px;
}

@media screen and (max-width: 600px) {
  .accordion-content_inr {
    padding: 14px 14px 14px 12px;
  }

}

.accordion-content_inr_text {
  font-size: 18px;
  color: #636363;
  display: block;
  margin-bottom: 14px;
  line-height: 30px;
}

@media screen and (max-width: 820px) {
  .accordion-content_inr_text {
    font-size: 13px;
  }
}

.accordion-content_inr_text_caution {
  font-size: 16px;
  color: #636363;
  display: block;
}

@media screen and (max-width: 820px) {
  .accordion-content_inr_text_caution {
    font-size: 12px;
  }
}


.accordion-item.active .accordion-header {
  border-radius: 20px 20px 0 0;
}








/* --------------------------------------------------------------------------------------------------- */
/* フッター */

footer {
  text-align: center;
  padding-top: 39px;
  padding-bottom: 33px;
}

@media screen and (max-width: 600px) {
  footer {
    padding-top: 23px;
    padding-bottom: 18px;
  }
}

@media screen and (max-width: 425px) {
  footer {
    padding-bottom: 86px;
  }
}

.privacypolicy {
  font-size: 16px;
  text-decoration: none;
  color: #636363;
  position: relative;
  display: inline-block;
}

.privacypolicy::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #636363;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.privacypolicy:hover::after {
  transform-origin: right;
  transform: scaleX(0);
}

.copyright {
  font-size: 14px;
  margin-top: 41px;
  color: #636363;
}

@media screen and (max-width: 600px) {

  .privacypolicy,
  .copyright {
    font-size: 11px;
  }

  .copyright {
    margin-top: 23px;
  }
}

.foot_btn_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, #FFED47 63%, #FFD027 100%);
  text-align: center;
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-left: 12px;
  padding-right: 32px;
  z-index: 999;
}

.btn_top_area {
  position: relative;
}

@media (min-width: 425px) {
  .foot_btn_wrap {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    animation: slideUp 0.5s ease-out forwards;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.foot_btn_text {
  font-size: 20px;
  font-weight: 900;
  color: #0B94E0;
}

@media (max-width: 380px) {
  .foot_btn_text {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .foot_btn_text {
    font-size: 16px;
  }
}


@media (max-width: 420px) {
  .foot_btn_wrap {
    display: flex;
  }
}