@media screen {
  /* ---------------------------------------------------------------------------------------
	reset
--------------------------------------------------------------------------------------- */
  /*** The new CSS reset - version 1.8.2 (last updated 23.12.2022) ***/

  *:where(
      :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
    ) {
    all: unset;
    display: revert;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  a,
  button {
    cursor: revert;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img {
    max-inline-size: 100%;
    max-block-size: 100%;
  }
  table {
    border-collapse: collapse;
  }
  input,
  textarea {
    -webkit-user-select: auto;
  }
  textarea {
    white-space: revert;
  }
  meter {
    -webkit-appearance: revert;
    appearance: revert;
  }
  pre {
    all: revert;
  }
  ::placeholder {
    color: unset;
  }
  ::marker {
    content: '';
  }
  :where([hidden]) {
    display: none;
  }
  :where([contenteditable]:not([contenteditable='false'])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
  }
  :where([draggable='true']) {
    -webkit-user-drag: element;
  }
  /* ---------------------------------------------------------------------------------------
	ansapo custom properties
--------------------------------------------------------------------------------------- */

  @font-face {
    font-weight: 300;
    font-family: 'Zen Old Mincho';
    font-style: normal;
    src: url('../fonts/ZenOldMincho-Regular.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-weight: 300;
    font-family: 'Noto Sans JP';
    font-style: normal;
    src: url('../fonts/NotoSansJP-Regular.woff2') format('woff2');
    font-display: swap;
  }
  :root {
    --font-zen: 'Zen Old Mincho', serif;
    --font-secondary: 'Noto Sans JP', sans-serif;
    --color-primary: #493488;
    --color-secondary: #6bb866;
    --color-base: #4d4a43;
    --color-dark: #34322c;
    --color-dark2: #383530;
    --color-bg: #f8f6f2;
    --color-line: #34216a;
    --heading-line-height: 1.25;
    --body-line-height: 1.5;
    --container-width_l: 1440px;
    --container-width_m: 1080px;
    --container-width_s: 960px;
    --container-width_sp: 89vw;
    --header-height: 8.4rem;
    --text-base: 1.6rem;
    --letter-spacing: 0.02em;
    --z-header: 10;
    --z-vip_head: 1;
    --z-vip_detail: 2;
  }
  html {
    font-size: 62.5%;
    scroll-behavior: smooth;
  }
  /* ---------------------------------------------------------------------------------------
	utirity
--------------------------------------------------------------------------------------- */

  @media (max-width: 768px) {
    .pc-only {
      display: none !important;
    }
  }
  @media (min-width: 769px) {
    .sp-only {
      display: none !important;
    }
  }
  .hide,
  .is-hidden {
    display: none !important;
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  .text-underline {
    text-decoration: underline;
    text-decoration-thickness: from-font;
  }
  .font-mincho {
    font-family: var(--font-zen);
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .color-primary {
    color: var(--color-primary);
  }
  .color-secondary {
    color: var(--color-secondary);
  }
  .flex {
    --gap: 0px;
    --gap-x: var(--gap);
    --gap-y: var(--gap);
    display: flex;
    gap: var(--gap-y) var(--gap-x);
  }
  @media (max-width: 768px) {
    .sp-flex-column {
      flex-direction: column;
    }
    .sp-flex-column-r {
      flex-direction: column-reverse;
    }
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .flex-column {
    flex-direction: column;
  }
  .flex-center {
    align-items: center;
    justify-content: center;
  }
  .justify-end {
    justify-content: flex-end;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  .items-end {
    align-items: flex-end;
  }
  .items-baseline {
    align-items: baseline;
  }
  .bg-light {
    background-color: var(--color-bg);
  }
  .ballon {
    position: relative;
    text-align: center;
  }
  .ballon_title {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 3.8rem;
    line-height: 1.2;
  }
  .ballon_title:before {
    display: inline-block;
    color: var(--color-secondary);
    content: '＼';
  }
  .ballon_title:after {
    display: inline-block;
    color: var(--color-secondary);
    content: '／';
  }
  @media (max-width: 768px) {
    .ballon_title {
      font-size: 2.6rem;
    }
  }
  /* ---------------------------------------------------------------------------------------
	styles
  --------------------------------------------------------------------------------------- */
  body {
    color: var(--color-base);
    font-size: var(--text-base);
    font-family: var(--font-secondary);
    letter-spacing: var(--letter-spacing);
  }
  /* a {
    transition-duration: 0.4s;
  } */

  @media (min-width: 769px) {
    a[href^='tel:'] {
      pointer-events: none;
    }
  }
  a:hover {
    opacity: 0.9;
  }
  .section_title {
    font-weight: bold;
    font-family: var(--font-zen);
    line-height: var(--heading-line-height);
    letter-spacing: var(--letter-spacing);
    text-align: center;
  }
  /*  tel, mail
  ------------------------------------*/
  .tel_message {
    position: relative;
    display: inline-block;
    padding: 0 1.6rem 0 6rem;
    color: #fff;
    line-height: 3.6rem;
    letter-spacing: 0;
    background: var(--color-primary);
    border-radius: 4px;
  }
  .tel_message::before {
    position: absolute;
    top: 0;
    left: -0.5rem;
    display: block;
    width: 5rem;
    height: 3.6rem;
    background: url(../img/icon_phone.svg) no-repeat center center;
    background-color: #241258;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    content: '';
  }
  .tel_num {
    margin: 0.8rem 0 0;
    font-size: 3.7rem;
    font-family: var(--font-zen);
  }
  .tel_num::before {
    position: relative;
    top: 0.3rem;
    display: inline-block;
    width: 6.3rem;
    height: 3.4rem;
    margin-right: 0.5rem;
    background: url(../img/icon_freephone.svg) no-repeat;
    background-size: cover;
    content: '';
  }
  .tel_time {
    padding-left: 2.4rem;
    font-size: 1.8rem;
    font-family: var(--font-zen);
    line-height: 1;
    letter-spacing: 0;
  }
  .mail_message {
    position: relative;
    display: inline-block;
    padding: 0px 1.6rem 0 7rem;
    line-height: 3.6rem;
    letter-spacing: 0;
    background: #ebe9e4;
    border-radius: 4px;
  }
  .mail_message::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 6rem;
    height: 3.6rem;
    background: url(../img/icon_mail.svg) no-repeat center center;
    background-color: #e0dcd4;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    content: '';
  }
  .mail_btn {
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 320px;
    margin-top: 1.7rem;
    padding: 1rem;
    color: #fff;
    font-weight: bold;
    font-size: 2.8rem;
    line-height: 1.2;
    text-align: center;
    background-color: #80ce7b;
    border: solid 3px #5cac57;
    border-radius: 25em;
    transition: 0.5s;
  }
  .mail_btn:hover {
    background: #8ede89;
    opacity: 1;
  }
  .mail_btn_lead {
    position: relative;
    font-size: 1.4rem;
  }
  .mail_btn_lead::before {
    padding-right: 0.2rem;
    content: '＼';
  }
  .mail_btn_lead::after {
    padding-left: 0.2rem;
    content: '／';
  }

  /*  header
  ------------------------------------*/
  .header {
    position: fixed;
    top: 0;
    z-index: var(--z-header);
    width: 100vw;
    height: var(--header-height);
    padding: 0 30px;
    color: #fff;
    font-family: var(--font-zen);
    background: var(--color-primary);
  }
  .header_logo {
    margin-top: 1rem;
  }
  .header_contact .contact_tel,
  .header_contact .contact_mail {
    height: 5.4rem;
    padding: 0 2.5rem;
    border-left: 1px solid var(--color-line);
  }
  .header_contact .contact_mail {
    padding-right: 0;
  }
  .header .tel_num {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 2.4rem;
  }
  .header .tel_num::before {
    top: 0.2rem;
    width: 3.8rem;
    height: 2.2rem;
  }
  .header .tel_time {
    font-size: 1.4rem;
  }
  .header .mail_link {
    position: relative;
    display: block;
    padding-top: 3.2rem;
    font-size: 1.4rem;
  }
  .header .mail_link::before {
    position: absolute;
    top: 0.8rem;
    left: 50%;
    display: block;
    width: 2.8rem;
    height: 2rem;
    background: url(../img/icon_mail_white.svg) no-repeat center center;
    transform: translateX(-50%);
    content: '';
  }
  @media (max-width: 768px) {
    .header {
      z-index: 2;
      justify-content: center;
      --header-height: 6rem;
    }
    .header.z-index-up {
      z-index: var(--z-header);
    }
    .header_logo .logo {
      width: 200px;
      height: 32px;
      margin: 0 auto;
    }
    .header_contact {
      position: fixed;
      bottom: 0;
      justify-content: center;
      width: 100vw;
      padding: 0.5rem 1rem;
      background-color: var(--color-primary);
    }
    .header_contact .contact_tel,
    .header_contact .contact_mail {
      padding: 0;
    }
    .header .tel_num {
      font-size: 2.3rem;
    }
    .header_contact li {
      height: 6rem;
      padding: 0;
    }
    .header_contact li:first-child {
      padding-right: calc(10vw / 3.75);
      border-left: none;
    }
    .header_contact li:last-child {
      padding-left: calc(12vw / 3.75);
    }
    .header .tel_time {
      padding-left: 0;
      font-size: 1.3rem;
    }
    .header .mail_link {
      padding-top: 0.5rem;
    }
    .header .mail_link::before {
      position: relative;
      top: 0.5rem;
      left: 0;
      display: inline-block;
      margin-right: 0.5em;
      transform: none;
    }
    .header .mail_note {
      margin-top: 0.3rem;
      color: #fff;
      font-size: 1.3rem;
      letter-spacing: 0;
    }
  }
  @media (max-width: 374px) {
    .header .tel_num::before {
      width: 3rem;
      height: 1.73rem;
    }
    .header .tel_num {
      font-size: 2rem;
    }
    .header .tel_time {
      padding-top: 0.2rem;
      font-size: 1.2rem;
    }
    .header .mail_link::before {
      width: 2.5rem;
      height: 1.78rem;
    }
    .header .mail_link {
      padding-top: 0.3rem;
    }
    .header .mail_note {
      font-size: 1.2rem;
    }
  }
  @media (max-width: 349px) {
    .header .tel_num::before {
      width: 3rem;
      height: 1.73rem;
    }
    .header .tel_num {
      font-size: 1.8rem;
    }
    .header .tel_time {
      padding-top: 0.5rem;
      font-size: 1rem;
    }
    .header .mail_link::before {
      width: 2.5rem;
      height: 1.78rem;
    }
    .header .mail_link {
      padding-top: 0.3rem;
    }
    .header .mail_note {
      font-size: 1.1rem;
    }
  }
  .preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }
  /*  following banner
  ------------------------------------*/
  .following {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 100;
    opacity: 100;
    transition: all 0.5s ease-in-out 0s;
  }
  .following.hidden {
    opacity: 0;
    transition: all 0.5s ease-in-out 0s;
    pointer-events: none;
  }
  .following.stop-positon {
    opacity: 0;
    transition: all 0.5s ease-in-out 0s;
    pointer-events: none;
  }
  .following_bannerItem {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 13rem;
    height: 13rem;
    margin-top: 1.4rem;
    color: #ffffff;
    border-radius: 50%;
  }
  .following_bannerItem::after {
    position: absolute;
    bottom: 2.4rem;
    left: 50%;
    display: block;
    width: 2rem;
    height: 1.3rem;
    background: url(../img/icon_outline.svg) no-repeat;
    background-size: contain;
    transform: translateX(-50%);
    content: '';
  }
  .following_bannerItem.igonsho {
    font-family: var(--font-zen);
    background: #493488;
    border: solid 1px #392476;
  }
  .following_bannerItem.fudosan {
    background: #5cb963;
    border: solid 1px #3d8b43;
  }
  .following_bannerItem.ansapo {
    font-family: var(--font-zen);
    background: #355da7;
    border: solid 1px #264884;
  }
  .following_bannerText_l {
    margin-top: -1rem;
    font-size: 2rem;
  }
  .following_bannerText_m {
    font-size: 1.6rem;
  }
  @media (max-width: 768px) {
    .following {
      right: 0;
      bottom: 8rem;
    }
    .following_bannerItem {
      align-items: flex-end;
      width: 4rem;
      height: 10rem;
      margin-top: 0.6rem;
      padding: 0.5rem 0;
      line-height: 1em;
      border-radius: 0;
      writing-mode: vertical-rl;
    }
    .following_bannerItem::after {
      content: none;
    }
    .following_bannerText_l {
      margin-top: 0;
      font-size: 1.4rem;
    }
    .following_bannerText_m,
    .following_bannerText_l_sp {
      font-size: 1.2rem;
    }
    .following_bannerText_m::after {
      display: inline-block;
      width: 1rem;
      height: 0.7rem;
      margin-top: 0.2rem;
      background: url(../img/icon_outline.svg) no-repeat;
      background-size: contain;
      content: '';
    }
  }
  /*  mv main visual
  ------------------------------------*/
  .mv {
    position: relative;
    height: calc((665vw + 84vw) / 14.4);
    padding-top: 8.4rem;
    background: #f8f6f2;
  }
  .mv_bg {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: block;
  }
  .mv_bg img {
    width: calc(840vw / 14.4);
    height: auto;
  }
  .mv_inner {
    width: 100%;
    max-width: calc(1180vw / 14.4);
    margin: 0 auto;
    padding: 0 2rem;
  }
  .mv_lead {
    position: relative;
    z-index: 2;
    max-width: calc(560vw / 14.4);
    margin-top: calc(150vw / 14.4);
  }
  .mv_subTitle {
    position: relative;
    width: 100%;
    margin-bottom: calc(19vw / 14.4);
  }
  .mv_subTitle_bubble {
    position: absolute;
    bottom: calc(10vw / 14.4);
    left: calc(-54vw / 14.4);
    z-index: 0;
    display: block;
    width: calc(408vw / 14.4);
  }
  .mv_subTitle_bubble img {
    width: 100%;
    height: auto;
  }
  .mv_subTitle_bubble_text {
    position: absolute;
    top: calc(-97vw / 14.4);
    right: calc(-47vw / 14.4);
    z-index: 0;
    display: block;
    width: calc(235vw / 14.4);
  }
  .mv_subTitle_bubble_text img {
    width: 100%;
    height: auto;
  }
  .mv_subTitle_text {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 1rem 1.5rem;
    font-size: calc(20vw / 14.4);
    background: #fff;
    border-radius: 0.8rem;
  }
  .mv_lead_title {
    font-size: calc(34vw / 14.4);
    line-height: 1.2;
    letter-spacing: 0.028em;
  }
  .mv_lead_title b {
    position: relative;
    font-weight: bold;
    font-size: calc(56vw / 14.4);
  }
  .mv_lead_title b::after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: calc(20vw / 14.4);
    background: #cac2e2;
    content: '';
  }

  .mv_list {
    display: flex;
    flex-wrap: wrap;
    gap: calc(10vw / 14.4);
    margin-top: calc(26vw / 14.4);
  }
  .mv_item {
    position: relative;
    padding: 1rem 1.5rem;
    font-size: calc(20vw / 14.4);
    background: #fff;
    border-radius: 0.8rem;
  }
  .mv_item::before {
    padding-right: 0.2em;
    color: #5cb963;
    font-size: calc(20vw / 14.4);
    content: '#';
  }
  .mv_accent {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
  }
  .mv_accent img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .mv_catch {
    position: absolute;
    bottom: calc(-30vw / 14.4);
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(170vw / 14.4);
    height: calc(170vw / 14.4);
    color: #fff;
    text-align: center;
    background: #80ce7b;
    border: solid 4px #5cac57;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
    transform: translateX(-50%);
    transition: 0.5s;
  }
  .mv_catch:hover {
    background: #8ede89;
    opacity: 1;
  }
  .mv_catch_text {
    margin-top: calc(-20vw / 14.4);
  }
  .mv_catch_text img {
    width: calc(119vw / 14.4);
    height: auto;
  }
  .mv_catch::after {
    position: absolute;
    top: 83%;
    left: 50%;
    border: 10px solid transparent;
    border-top: 10px solid #fff;
    transform: translateX(-50%);
    content: '';
  }

  @media (max-width: 768px) {
    .mv {
      height: calc((548vw + 60vw) / 3.75);
      padding-top: 6rem;
    }
    .mv_bg img {
      width: 100%;
    }
    .mv_inner {
      max-width: none;
      padding: 0 calc(20vw / 3.75);
    }
    .mv_lead {
      max-width: none;
      margin-top: calc(46vw / 3.75);
    }
    .mv_subTitle {
      margin-bottom: calc(14vw / 3.75);
    }
    .mv_subTitle_bubble {
      bottom: calc(11vw / 3.75);
      left: calc(-31vw / 3.75);
      width: calc(238vw / 3.75);
    }
    .mv_subTitle_bubble_text {
      top: calc(-35vw / 3.75);
      z-index: 2;
      width: calc(126vw / 3.75);
    }
    .mv_subTitle_text {
      font-size: calc(12vw / 3.75);
    }
    .mv_lead_title {
      font-size: calc(20vw / 3.75);
    }
    .mv_lead_title b {
      font-size: calc(35vw / 3.75);
    }
    .mv_lead_title b::after {
      height: calc(13vw / 3.75);
    }
    .mv_list {
      gap: calc(6vw / 3.75);
      margin-top: calc(18vw / 3.75);
    }
    .mv_item {
      padding: 0.8rem 1rem;
      font-size: calc(13vw / 3.75);
    }
    .mv_item::before {
      font-size: calc(13vw / 3.75);
    }
    .mv_catch {
      bottom: calc(48vw / 3.75);
      left: calc(16vw / 3.75);
      width: calc(145vw / 3.75);
      height: calc(145vw / 3.75);
      transform: none;
    }
    .mv_catch::after {
      border-width: calc(7vw / 3.75);
    }
    .mv_catch_text {
      margin-top: calc(-20vw / 3.75);
    }
    .mv_catch_text img {
      width: calc(102vw / 3.75);
      height: auto;
    }
  }
  /*  appeal
  ------------------------------------*/
  .appeal_title {
    padding: 5rem 0 3.3rem;
    font-size: 3rem;
  }
  .appeal_content {
    gap: 14px;
    max-width: 95vw;
    margin: 0 auto;
  }
  @media (min-width: 1440px) {
    .appeal_content {
      max-width: 1330px;
    }
  }
  .point .list-item {
    position: relative;
    flex: 1;
    --p-top: 5.5rem;
    padding: var(--p-top) 0 3.7rem;
    text-align: center;
    background: #fff;
    border-radius: 10px;
  }
  .point .list-item:nth-child(2) {
    --p-top: 4.6rem;
  }
  .point .list-item:nth-child(3) {
    --p-top: 3rem;
  }
  .point_lead {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    display: block;
    margin-top: 2rem;
    font-size: 1.8rem;
    letter-spacing: var(--letter-spacing);
    transform: translateX(-50%);
  }
  .point_text {
    --font-size: 3.6rem;
    position: relative;
    display: inline-block;
    color: var(--color-dark);
    font-weight: bold;
    font-size: var(--font-size);
    font-family: var(--font-zen);
    line-height: 3.4rem;
    letter-spacing: var(--letter-spacing);
  }
  .point_text.text_smaller {
    --font-size: 3rem;
  }
  @media (min-width: 769px) and (max-width: 1390px) {
    .appeal_title {
      font-size: calc(30vw / 14.4);
    }
    .point_text {
      --font-size: calc(36vw / 14.4);
    }
    .point_text.text_smaller {
      --font-size: calc(30vw / 14.4);
    }
    .point_lead {
      top: 1rem;
      font-size: calc(18vw / 14.4);
    }
  }
  @media (min-width: 769px) and (max-width: 980px) {
    .point_lead {
      font-size: 1.2rem;
    }
  }
  .underline:after {
    position: absolute;
    bottom: var(--bottom);
    left: 50%;
    display: block;
    width: var(--width);
    border-bottom: 4px solid var(--color-secondary);
    transform: translateX(-50%);
    content: '';
    --width: 75%;
    --bottom: -1.6rem;
  }
  .point .list-item:nth-child(2) .underline:after {
    --width: 82%;
    --bottom: -1.2rem;
  }
  .point .list-item:nth-child(3) .underline:after {
    --width: 46%;
    --bottom: -1rem;
  }
  .point_upper_note {
    position: absolute;
    top: var(--top);
    right: var(--right);
    color: var(--color-base);
    font-size: 1.2rem;
    letter-spacing: var(--letter-spacing);
  }
  .point_upper_note.note_1 {
    --top: -2.2rem;
    --right: 22rem;
  }
  .point_upper_note.note_2 {
    --right: 3rem;
    --top: -2.3rem;
  }
  .point_note {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    letter-spacing: var(--letter-spacing);
  }
  .appeal_note {
    max-width: var(--container-width_s);
    margin: 2.5rem auto 0;
    padding-bottom: 6rem;
    padding-left: 4em;
    font-size: 1.4rem;
    letter-spacing: var(--letter-spacing);
    text-indent: -3em;
    counter-reset: count 0;
  }
  @media (min-width: 769px) and (max-width: 1390px) {
    .appeal_note {
      margin-right: 5vw;
      margin-left: 5vw;
    }
    .point .list-item {
      --p-top: 5rem;
    }
    .point_upper_note.note_1 {
      --right: calc(220vw / 14.4);
      --top: -2rem;
    }
    .point_upper_note.note_2 {
      --right: calc(35vw / 14.4);
      --top: -1.6rem;
    }
    .point .list-item:nth-child(3) {
      --p-top: 3.6rem;
    }
    .point .list-item:nth-child(3) .point_text {
      line-height: 1.6;
    }
  }
  .appeal_note .list-item {
    line-height: 2.2rem;
  }
  .appeal_note .list-item::before {
    content: '※' counter(count) '：';
    counter-increment: count 1;
  }
  @media (max-width: 768px) {
    .appeal_title {
      padding: 2rem 0 2.3rem;
      font-size: calc(18vw / 3.75);
    }
    .appeal_content {
      gap: 14px;
      max-width: var(--container-width_sp);
      margin: 0 auto;
    }
    .point_text {
      --font-size: 3rem;
    }
    .point .list-item {
      --p-top: 4.5rem;
      padding-bottom: 3.5rem;
    }
    .point_lead {
      top: -0.5rem;
    }
    .point_text.text_smaller {
      --font-size: 2.4rem;
      letter-spacing: 0;
    }
    .point_upper_note.note_1 {
      --right: 18rem;
    }
    .point .list-item:nth-child(2) {
      --p-top: 4rem;
    }
    .appeal_note {
      max-width: var(--container-width_sp);
      margin-top: 2rem;
      padding: 0 0 3rem 4.1rem;
    }
  } /*  cta
  ------------------------------------*/
  .cta {
    position: relative;
    max-width: var(--container-width_s);
    margin: 7.8rem auto;
    padding: 4.5rem 10rem 5.5rem;
    border: 4px solid #f2f0ec;
    border-radius: 20px;
  }
  .cta::before {
    display: none;
    position: absolute;
    top: 16%;
    left: 49.5%;
    width: 1px;
    height: 69.1%;
    border-left: 1px solid #dedcd6;
    content: '';
  }
  .cta_tel{
    text-align: center;
  }
  .cta_tel,
  .cta_mail {
    flex: 1;
  }
  @media (min-width: 769px) and (max-width: 980px) {
    .cta {
      margin-right: 2vw;
      margin-left: 2vw;
      padding-right: 5vw;
      padding-left: 5vw;
    }
  }
  /*  ctaButton
  ------------------------------------*/
  .ctaButton {
    display: flex;
    width: calc(100% - 4vw);
    max-width: 86rem;
    margin: -2.8rem auto 7rem;
    text-align: left;
    column-gap: 2rem;
  }
  .ctaButton_item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.7rem 2.8rem 1.7rem 3rem;
    color: #ffffff;
    font-size: 2.2rem;
    border-radius: 6px;
  }
  .ctaButton_item::after {
    display: inline-block;
    width: 2.1rem;
    min-width: 2.1rem;
    height: 1.4rem;
    margin-top: 0.2rem;
    margin-left: auto;
    background: url(../img/icon_outline.svg) no-repeat center center;
    background-size: contain;
    content: '';
  }
  .ctaButton_item.igonsho {
    font-family: var(--font-zen);
    background: #493488;
  }
  .ctaButton_item.fudosan {
    background: #6bb866;
  }
  .ctaButton_item.ansapo {
    font-family: var(--font-zen);
    background: #355da7;
  }
  @media (max-width: 768px) {
    .ctaButton {
      flex-wrap: wrap;
      max-width: 33.5rem;
      margin-top: 0;
      margin-bottom: 3rem;
      column-gap: 0;
      row-gap: 0.8rem;
    }
    .ctaButton_item {
      padding: 1.7rem 2rem 1.7rem 2rem;
      font-size: 1.7rem;
    }
    .ctaButton_item::after {
      width: 1.5rem;
      min-width: 1.5rem;
      height: 1rem;
    }
  }
  /*  desire
  ------------------------------------*/
  .desire {
    position: relative;
    height: 58rem;
    margin-top: 8rem;
    background-repeat: no-repeat;
    background-position: top 2rem center;
    background-size: cover;
  }
  @media (min-width: 769px) {
    .desire {
      background-image: url(../img/desire/bg_desire.jpg);
    }
  }
  @media (max-width: 768px) {
    .desire {
      background-image: none;
    }
  }
  @media (min-width: 769px) and (max-width: 1439px) {
    .desire {
      background-position: top 2rem right 37%;
      background-size: auto 100%;
    }
  }
  .desire_title {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .desire_title_box {
    display: inline-block;
    width: calc(100% - 3rem);
    max-width: 86rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
    padding: 0 1.5rem 2.7rem;
    font-size: 3rem;
    letter-spacing: var(--letter-spacing);
    background: #fff;
    border-radius: 6px;
  }
  @media (min-width: 769px) and (max-width: 860px) {
    .desire_title_box {
      padding-right: 2rem;
      padding-left: 2rem;
    }
  }
  @media (max-width: 768px) {
    .desire_title_box {
      position: static;
      padding: 0;
      font-size: 2rem;
      border-radius: 0;
      transform: none;
    }
  }
  .desire_item {
    position: absolute;
    top: var(--pos-t);
    left: var(--pos-l);
    display: inline-block;
    padding: 2.4rem 3.7rem;
    font-size: 2rem;
    letter-spacing: var(--letter-spacing);
    background: #fff;
    border-radius: 22px;
    --pos-t: 0;
    --pos-l: 0;
  }
  @media (min-width: 769px) and (max-width: 1390px) {
    .desire_item {
      font-size: calc(20vw / 14.4);
    }
  }
  .desire_item b {
    font-weight: 900;
  }
  @media (min-width: 769px) {
    .desire_content li:nth-child(1) .desire_item {
      --pos-t: 12.5rem;
      --pos-l: calc(307vw / 14.4);
    }
    .desire_content li:nth-child(2) .desire_item {
      --pos-t: 25.1rem;
      --pos-l: calc(348vw / 14.4);
    }
    .desire_content li:nth-child(3) .desire_item {
      --pos-t: 36rem;
      --pos-l: calc(920vw / 14.4);
    }
    .desire_content li:nth-child(4) .desire_item {
      --pos-t: 40.7rem;
      --pos-l: calc(558vw / 14.4);
    }
  }
  .desire_item::before {
    --pos-r: 5.8rem;
    --border-size: 7px;
    --color-t: #fff;
    --color-r: #fff;
    --color-b: transparent;
    --color-l: transparent;
    position: absolute;
    top: 98%;
    right: var(--pos-r);
    border-top: var(--border-size) solid var(--color-t);
    border-right: var(--border-size) solid var(--color-r);
    border-bottom: var(--border-size) solid var(--color-b);
    border-left: var(--border-size) solid var(--color-l);
    transform: scaleX(1.7);
    content: '';
  }
  @media (min-width: 1440px) {
    .desire_content li:nth-child(3) .desire_item::before {
      --color-t: #fff;
      --color-r: transparent;
      --color-b: transparent;
      --color-l: #fff;
    }
    .desire_content li:nth-child(3) .desire_item::before {
      --pos-r: 29.3rem;
    }
  }
  @media (min-width: 769px) and (max-width: 1439px) {
    .desire_content li:nth-child(2) .desire_item::before,
    .desire_content li:nth-child(3) .desire_item::before,
    .desire_content li:nth-child(6) .desire_item::before {
      --pos-r: calc(240vw / 14.4);
      --color-t: #fff;
      --color-r: transparent;
      --color-b: transparent;
      --color-l: #fff;
    }
  }
  @media (max-width: 768px) {
    .desire {
      height: auto;
      margin-top: 0;
      padding-top: 4rem;
      overflow: hidden;
      background-size: 100vw;
    }
    .desire_title {
      margin-bottom: 2.5rem;
      font-size: 2.5rem;
    }
    .desire_img {
      display: block;
    }
    .desire_img img {
      width: 100%;
      height: auto;
    }
    .desire_content {
      position: relative;
      top: -1.6rem;
      left: 50%;
      display: inline-block;
      transform: translateX(-50%);
    }
    .desire_content::after {
      position: relative;
      bottom: -24px;
      left: 50%;
      display: inline-block;
      border: 21px solid transparent;
      border-top: 24px solid var(--color-primary);
      transform: translateX(-50%);
      content: '';
    }
    .desire_item {
      position: relative;
      margin-bottom: 1rem;
      padding: 1.8rem 2.2rem;
      font-size: 1.4rem;
      background: var(--color-bg);
      border-radius: 16px;
    }
    .desire_content li:nth-child(1) .desire_item {
      --pos-t: 0;
      --pos-l: 7rem;
    }
    .desire_content li:nth-child(2) .desire_item {
      --pos-t: 0.4rem;
      --pos-l: 0;
    }
    .desire_content li:nth-child(3) .desire_item {
      --pos-t: 0.4rem;
      --pos-l: 0;
    }
    .desire_content li:nth-child(4) .desire_item {
      --pos-t: 0.4rem;
      --pos-l: -1.74%;
    }
    .desire_item:before {
      --pos-r: 10%;
      --color-t: var(--color-bg);
      --color-r: var(--color-bg);
      --color-b: transparent;
      top: 92%;
      --color-l: transparent;
    }
    .desire_content li:nth-child(2n) .desire_item::before {
      --pos-r: 80%;
      --color-t: var(--color-bg);
      --color-l: var(--color-bg);
      --color-r: transparent;
      --color-b: transparent;
    }
  }
  /*  reason
  ------------------------------------*/
  .reason {
    margin-top: 13rem;
    padding: 6.6rem 3rem 10rem;
    background: var(--color-bg);
  }
  .reason_container {
    max-width: var(--container-width_m);
    margin: 0 auto;
  }
  .reason_title {
    margin-bottom: 2.2rem;
    font-size: 4.6rem;
  }
  .reason_text {
    font-size: 3.2rem;
    font-family: var(--font-zen);
    text-align: center;
  }
  .reason_image {
    margin-top: 2rem;
    margin-bottom: 8rem;
    text-align: center;
  }
  .reason_image img {
    height: auto;
  }
  .reason_list {
    display: flex;
    flex-direction: column;
    margin-top: 4.8rem;
  }
  .reason_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 1rem;
  }
  .reason_item:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .reason_item:nth-child(2) .reason_item_title{
    max-width: 550px;
  }
  .reason_item:not(:last-child) {
    margin-bottom: 4.8rem;
  }
  .reason_order_inner {
    position: absolute;
    top: -2rem;
    left: -2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 12.5rem;
    height: 12.5rem;
    text-align: center;
    background: var(--color-primary);
    border-radius: 50%;
  }
  .reason_order_lead {
    color: #fff;
    font-size: 2rem;
  }
  .reason_order_lead::after {
    display: block;
    width: 9.5rem;
    height: 2px;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    background: #241258;
    border-bottom: solid 1px #64509d;
    content: '';
  }
  .reason_order_num {
    color: #fff;
    font-size: 2.4rem;
    font-family: var(--font-zen);
  }
  .reason_item:nth-child(even) .reason_order_inner {
    top: -2rem;
    right: -2rem;
    left: auto;
  }
  .reason_item_image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 45%;
    overflow: hidden;
    border-radius: 0 1rem 1rem 0;
  }
  .reason_item:nth-child(even) .reason_item_image {
    border-radius: 1rem 0 0 1rem;
  }
  .reason_item_image img {
    width: 100%;
    object-fit: cover;
  }
  .reason_item_title {
    width: 100%;
    max-width: 55%;
    padding: 1rem 4rem 1rem 12rem;
    font-size: 3.2rem;
    font-family: var(--font-zen);
  }
  .reason_item:nth-child(even) .reason_item_title {
    padding: 1rem 12rem 1rem 4rem;
  }
  .reason_item_text {
    width: 100%;
    max-width: 55%;
    padding: 1rem 4rem 1rem 12rem;
    font-size: 2rem;
    font-family: var(--font-zen);
  }
  @media (max-width: 1140px) {
    .reason_item_image img {
      object-fit: contain;
    }
  }
  @media (max-width: 768px) {
    .reason {
      padding: 4.7rem 1.5rem 4.7rem;
    }
    .reason_container {
      margin: 0 auto;
    }
    .reason_title {
      margin-bottom: 3rem;
      font-size: 3.2rem;
    }
    .reason_text {
      font-size: 2rem;
    }
    .reason_image {
      margin-top: 1.8rem;
      margin-bottom: 3.8rem;
    }
    .reason_image img {
      height: auto;
    }
    .reason_list {
      margin-top: 4.8rem;
    }
    .reason_item {
      flex-direction: column;
    }
    .reason_item:nth-child(odd) {
      flex-direction: column;
    }
    .reason_item:not(:last-child) {
      margin-bottom: 4.8rem;
    }
    .reason_order {
      position: relative;
      width: 100%;
    }
    .reason_order_inner {
      top: -10rem;
      left: 1rem;
    }
    .reason_item:nth-child(even) .reason_order_inner {
      top: -10rem;
      right: 0;
      left: 1rem;
    }
    .reason_item_image {
      max-width: 100%;
      border-radius: 1rem 1rem 0 0;
    }
    .reason_item:nth-child(even) .reason_item_image {
      border-radius: 1rem 1rem 0 0;
    }
    .reason_item_image img {
      width: 100%;
      height: auto;
    }
    .reason_item_title {
      max-width: none;
      padding: 4rem 2.5rem 2rem;
      font-size: 2.4rem;
    }
    .reason_item:nth-child(even) .reason_item_title {
      padding: 4rem 2.5rem 2rem;
    }
    .reason_item_text {
      max-width: none;
      padding: 4rem 2.5rem 2rem;
      font-size: 1.6rem;
      line-height: 2;
    }
  }

  /*  flow
  ------------------------------------*/
  .flow {
    position: relative;
    max-width: var(--container-width_s);
    margin: 0 auto;
    padding-top: 7rem;
  }
  .flow::before {
    position: absolute;
    top: -1px;
    left: 50%;
    display: inline-block;
    border: 24px solid transparent;
    border-top: 24px solid #686866;
    transform: translateX(-50%);
    content: '';
  }
  .flow_title {
    padding: 3rem 0 4.3rem;
    font-size: 3.6rem;
    font-family: var(--font-zen);
    line-height: 1.5;
    letter-spacing: var(--letter-spacing);
  }
  .flow_content {
    padding: 0.5rem 4.6rem 1rem 2.8rem;
  }
  .flow_content_title {
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 2.8rem;
    font-family: var(--font-zen);
    line-height: 1.5;
    letter-spacing: var(--letter-spacing);
  }
  .flow_content_title b {
    position: relative;
    color: var(--color-secondary);
    font-weight: 900;
    font-size: 3.6rem;
  }
  .flow_content_title b::after {
    position: absolute;
    bottom: 0.2rem;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 1px;
    background: var(--color-secondary);
    content: '';
  }
  .flow_order {
    box-sizing: content-box;
    width: 16rem;
    min-width: 16rem;
    height: 16rem;
    overflow: hidden;
    border-radius: 50%;
  }
  .flow_order img {
    object-fit: contain;
  }
  .flow_step .list-item {
    position: relative;
    align-items: center;
    margin-bottom: 3.8rem;
    background: var(--color-bg);
    border-radius: 80px;
  }
  .flow_step .list-item:last-child {
    margin-bottom: 6rem;
  }

  @media (min-width: 769px) and (max-width: 970px) {
    .flow {
      max-width: 95%;
    }
  }
  @media (max-width: 768px) {
    .flow {
      max-width: calc(100% - 3rem);
      margin: 1rem auto 0;
      padding-top: 0;
    }
    .flow::before {
      display: none;
    }
    .flow_title {
      padding: 3rem 0 0;
      font-size: 2.2rem;
    }
    .flow_content {
      padding: 6rem 2rem 2rem;
      font-weight: 400;
      letter-spacing: 0.08em;
    }
    .flow_content_title {
      margin-bottom: 1.2rem;
      font-size: 2.6rem;
      text-align: center;
    }
    .flow_content_title b {
      font-size: 2.6rem;
    }

    .flow_order {
      position: absolute;
      top: -6.6rem;
      width: 11rem;
      min-width: 11rem;
      height: 11rem;
    }
    .flow_step {
      margin-top: 10rem;
    }
    .flow_step .list-item {
      margin-bottom: 8rem;
      line-height: 1.75;
      border-radius: 2rem;
    }
    .flow_step .list-item:last-child {
      margin-bottom: 6rem;
    }
  }
  /*  contact-form
  ------------------------------------*/
  .contact-form {
    padding: 12rem 0;
    background-color: #f5f6f0;
  }
  .contact-form_box {
    max-width: 800px;
    height: auto;
    margin: 0 auto;
  }
  .contact-form_iframe {
    width: 100%;
  }

  @media (max-width: 768px) {
    .contact-form {
      margin-top: 2rem;
      padding: 4rem 0;
    }
    .contact-form_iframe {
      height: 2700px;
    }
  }
  /*  company
  ------------------------------------*/
  .company {
    --company-width: var(--container-width_s);
    --company-radius: 7px;
    position: relative;
    max-width: var(--company-width);
    margin: -2rem auto 7rem;
    padding-top: 4rem;
  }
  .company_title {
    position: relative;
    margin-top: 6rem;
    padding: 1.2rem 0;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: var(--letter-spacing);
    text-align: center;
    background: var(--color-base);
    border-radius: var(--company-radius);
  }
  .company_content {
    width: 100%;
    max-width: var(--company-width);
    padding: 0.5rem 5rem 4rem;
    font-size: 1.8rem;
    letter-spacing: var(--letter-spacing);
    border-bottom-right-radius: var(--company-radius);
    border-bottom-left-radius: var(--company-radius);
  }
  .company_table {
    width: 100%;
  }
  .company_th,
  .company_td {
    border-bottom: 1px solid #e0ddd6;
  }
  .company_th {
    padding: 2rem 0rem 2rem 4rem;
    text-align: center;
  }
  .company_td {
    position: relative;
    padding: 2rem;
  }
  .company_td .company_data::before {
    position: relative;
    top: 0.6rem;
    display: inline-block;
    width: 3rem;
    height: 2.6rem;
    border-left: 1px solid #e0ddd6;
    content: '';
  }
  @media (min-width: 769px) and (max-width: 980px) {
    .company {
      --company-width: 90vw;
    }
    .company_data {
      padding-left: 2em;
      text-indent: -2em;
    }
  }
  @media (max-width: 768px) {
    .company {
      --company-width: 89vw;
      margin: -7rem auto 4rem;
    }
    .company_title {
      padding-left: 3rem;
      text-align: left;
    }
    .company_content {
      padding: 0 1rem 2rem;
    }
    .company_th {
      padding: 1.2rem 2rem 0.6rem;
      text-align: left;
      border: none;
    }
    .company_th,
    .company_td {
      display: block;
      width: 100%;
    }
    .company_td {
      padding: 0 2rem 1.5rem;
      font-size: 1.6rem;
      letter-spacing: var(--letter-spacing);
    }
    .company_td .company_data::before {
      content: none;
    }
    .company_th::after {
      position: relative;
      top: 0.6rem;
      display: inline-block;
      width: 2rem;
      height: 2.6rem;
      border-right: 1px solid #e0ddd6;
      content: '';
    }
  }
  /*  footer
  ------------------------------------*/
  .footer {
    padding: 7.4rem 0 9rem;
    color: #fff;
    text-align: center;
    background-color: #393733;
  }
  .footer_tel {
    margin-bottom: 5.5rem;
  }
  .footer .tel_title {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 4.4rem;
    letter-spacing: var(--letter-spacing);
  }
  .footer .tel_message {
    padding: 0;
    font-size: 1.8rem;
    letter-spacing: var(--letter-spacing);
    background: none;
  }
  .footer .tel_num {
    margin-top: 1.6rem;
  }
  .footer .tel_message::before {
    content: none;
  }
  .footer_divider {
    width: 83vw;
    margin: 0 auto;
    border-bottom: 1px solid #211f1c;
    box-shadow: 0 2px 0 #4a4843;
  }
  .footer_logo {
    margin: 5rem 0 3.4rem;
  }
  .footer_links .list-item:not(:last-child) {
    border-right: 1px solid #fff;
  }
  .footer_link {
    padding: 0 1rem;
    font-size: 1.4rem;
    letter-spacing: var(--letter-spacing);
    text-decoration: underline;
  }
  .copyright {
    margin-top: 1.8rem;
    font-size: 1.2rem;
    letter-spacing: var(--letter-spacing);
  }
  .footer .ctaButton {
    margin-bottom: 4rem;
  }
  @media (max-width: 768px) {
    .footer .tel_title {
      font-size: 3rem;
      letter-spacing: var(--letter-spacing);
    }
    .footer .tel_message {
      padding: 0;
      font-size: 1.6rem;
      line-height: 2.8rem;
      letter-spacing: var(--letter-spacing);
    }
    .footer_tel {
      margin-bottom: 2.85rem;
    }
    .footer_logo {
      margin: 3.7rem 0 3rem;
    }
    .footer .logo {
      width: 26.6rem;
      height: 4.3rem;
    }
    .copyright {
      margin-bottom: 5rem;
    }
    .footer .ctaButton {
      margin-bottom: 3rem;
    }
  }
  /*  recommend
  ------------------------------------*/
  .recommend {
    max-width: var(--container-width_m);
    margin: 0 auto 7rem;
  }
  .recommend_card {
    display: flex;
    gap: 2.8rem;
    height: 100%;
  }
  .recommend_card_item {
    width: calc(100% / 2);
  }
  .recommend_card_label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-family: var(--font-zen);
  }
  .recommend_card_label::before {
    color: var(--color-secondary);
    content: '＼';
  }
  .recommend_card_label::after {
    color: var(--color-secondary);
    content: '／';
  }
  .recommend_card_label b {
    color: var(--color-secondary);
  }
  .recommend_card_box {
    margin-top: 1.6rem;
    padding: 2.8rem 2rem 2rem;
    background: var(--color-bg);
    border-radius: 10px;
  }
  .recommend_card_box_title {
    font-size: 2.2rem;
    font-family: var(--font-zen);
    text-align: center;
  }
  .recommend_card_box_title b {
    color: var(--color-secondary);
  }
  .recommend_card_box_label {
    position: relative;
    margin-top: 2.5rem;
  }
  .recommend_card_box_label span {
    position: absolute;
    top: -50%;
    left: 50%;
    z-index: 1;
    padding: 0.8rem 3rem;
    font-size: 1.4rem;
    background: #fff;
    border: solid 2px var(--color-secondary);
    border-radius: 25em;
    transform: translateX(-50%);
  }
  .recommend_card_box_image {
    margin-top: 1.7rem;
  }
  .recommend_card_box_image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .recommend_card_box_step {
    margin-top: 1.8rem;
  }
  .recommend_card_box_step img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  @media (max-width: 768px) {
    .recommend {
      width: 100%;
      max-width: calc(100% - 1.5rem);
      margin: 0 0 7rem 1.5rem;
    }
    .recommend_card {
      flex-wrap: wrap;
      gap: 6.5rem;
      justify-content: center;
    }
    .recommend_card_item {
      position: relative;
      width: 100%;
      margin-bottom: 3rem;
    }
    .recommend_card_item::after {
      position: absolute;
      right: 1.5rem;
      bottom: -3rem;
      font-size: 1.2rem;
      content: '横スクロールでご覧頂けます>>';
    }
    .recommend_card_inner {
      overflow: auto;
    }
    .recommend_card_scroll {
      min-width: 56rem;
    }
    .recommend_card_label {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.2rem;
      font-family: var(--font-zen);
    }
    .recommend_card_label::before {
      color: var(--color-secondary);
      content: '＼';
    }
    .recommend_card_label::after {
      color: var(--color-secondary);
      content: '／';
    }
    .recommend_card_label b {
      color: var(--color-secondary);
    }
    .recommend_card_box {
      margin-top: 1.6rem;
      padding: 2.8rem 2rem 2rem;
      background: var(--color-bg);
      border-radius: 10px;
    }
    .recommend_card_box_title {
      font-size: 2.2rem;
      font-family: var(--font-zen);
      text-align: center;
    }
    .recommend_card_box_title b {
      color: var(--color-secondary);
    }
    .recommend_card_box_label {
      position: relative;
      margin-top: 2.5rem;
    }
    .recommend_card_box_label span {
      position: absolute;
      top: -50%;
      left: 50%;
      z-index: 1;
      padding: 0.8rem 3rem;
      font-size: 1.4rem;
      background: #fff;
      border: solid 2px var(--color-secondary);
      border-radius: 25em;
      transform: translateX(-50%);
    }
    .recommend_card_box_image {
      margin-top: 1.7rem;
    }
    .recommend_card_box_image img {
      height: auto;
    }
    .recommend_card_box_step {
      margin-top: 1.8rem;
    }
    .recommend_card_box_step img {
      height: auto;
    }
  }
} /* /@media screen */
