/*============================
全体
============================*/
html {
    scroll-behavior: smooth;
}
main {
    overflow: hidden;
}
.m-plus-rounded-bold {
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 700;
    letter-spacing: 0.15em;
}
.m-plus-rounded-1c-black {
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 900;
    letter-spacing: 0.15em;
}
.oswald {
    font-family: "Oswald", serif;
}
.ml-container {
    max-width: 1200px;
    margin: 0 auto;
}
/* PC画面*/
@media screen and (min-width: 768px) {
    .sp_only {
      display: none;
    }
}
/* スマホ画面*/
@media screen and (max-width: 767px) {
    .ml-container {
      padding: 0 5%;
    }
    .pc_only {
      display: none;
    }
    .sp_only {
        display: block;
    }
}
/*============================
ヘッダー
============================*/
.ml-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 20px;
    background-color: #fff;
    z-index: 99;
}
.ml-header-container {
    max-width: 1200px;
    margin: 0 auto;
}
.ml-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 5px;
}
.ml-logo img {
    width: 205px;
}
/* ハンバーガーメニュー非表示 */
.ml-toggle-menu {
    display: none;
}
/* ヘッダーリンク */
.ml-header-top-nav {
    display: flex;
    align-items: center;
    gap: 19px;
}
.ml-header-txt {
    font-size: 12px;
    font-weight: bold;
    text-align: right;
}
.ml-header-button-content {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-weight: bold;
}
.ml-sales-office-button,
.ml-contact-button {
    width: 140px;
    border: 2px solid #072981;
    border-radius: 6px;
    padding: 11px 0 9px;
    text-align: center;
    transition: .3s;
}
.ml-sales-office-button {
    background-color: #072981;
    color: #fff;
}
.ml-contact-button {
    background-color: #fff;
    color: #072981;
}
.ml-global-nav-content {
    margin-top: 21px;
    padding-bottom: 14px;
    font-size: 16px;
}
.ml-global-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
}
@media screen and (min-width: 768px) {
    .ml-sales-office-button:hover {
        background-color: #fff;
        color: #072981;
    }
    .ml-contact-button:hover {
        background-color: #072981;
        color: #fff;
    }
}
  @media screen and (max-width: 767px) {
    .ml-header {
        padding: 0;
    }
    .ml-header-inner {
        display: block;
        margin: 0;
        padding-left: 30px;
    }
    .ml-logo img {
        width: 180px;
    }
    .ml-logo-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    /* ハンバーガーメニュー */
    .ml-toggle-menu {
        display: inline-block;
        width: 50px;
        height: 50px;
        position: relative;
        z-index: 100;
        background-color: #072981;
    }
  
    .ml-toggle-menu .ml-toggle-line {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        text-indent: -9999px;
        width: 24px;
        height: 3px;
        background-color: #fff;
    }
  
    .ml-toggle-menu .ml-toggle-line::before,
    .ml-toggle-menu .ml-toggle-line::after {
        content: "";
        position: absolute;
        left: 0;
        width: 24px;
        height: 3px;
        background-color: #fff;
        transition: .3s;
    }
  
    .ml-toggle-menu .ml-toggle-line::before {
        top: -7px;
        animation: menu-barTop 0.6s forwards;
    }
  
    .ml-toggle-menu .ml-toggle-line::after {
        top: 7px;
        animation: menu-barBottom 0.6s forwards;
    }
  
    .ml-header-mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        margin-top: 50px;
        padding: 0 5% 0;
        display: flex;
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        background-color: #072981;
        z-index: 150;
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
        
    }
    .ml-main-menu {
        font-size: 20px;
        font-weight: bold;
        list-style: none;
    }
    .ml-header-list {
        margin-top: 10px;
    }
    .ml-list-sub-menu {
        font-size: 16px;
        font-weight: normal;
        list-style: none;
        margin-top: 4px;
        padding-left: 20px;
    }
    .ml-list-sub-menu li {
        margin-bottom: 2px;
        padding-bottom: 2px;
        border-bottom: 1px dotted #fff;
    }
    .ml-mobile-button-content {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 24px;
        gap: 10px;
    }
    .ml-mobile-sales-office-button,
    .ml-mobile-contact-button {
        width: 180px;
        font-weight: bold;
        background-color: #fff;
        border-radius: 6px;
        padding: 13px 0 11px;
        text-align: center;
        transition: .3s;
    }
    .ml-mobile-sales-office-button {
        color: #E24325;
    }
    .ml-mobile-contact-button {
        color: #072981;
    }
    .open .ml-toggle-menu {
        transition: all 0.5s linear 1s;
    }
    .open .ml-toggle-menu .ml-toggle-line {
        height: 0;
    }
    .open .ml-toggle-menu .ml-toggle-line::before {
        background-color: #fff;
        animation: active-menu-barTop 0.6s forwards;
        transform: rotate(-45deg);
        top: 0;
    }
    .open .ml-toggle-menu .ml-toggle-line::after {
        background-color: #fff;
        animation: active-menu-barBottom 0.6s forwards;
        transform: rotate(45deg);
        top: 0;
    }
    .open .ml-header-mobile-menu {
        transform: translateX(0);
        overflow: auto;
    }
    .ml-header-nav ul {
        flex-flow: column;
    }
    .ml-header-nav ul li a {
        list-style: none;
        color: #fff;
    }
  }
  /*============================
  re-ml-loading
  ============================*/
  .c-loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #072981;
    z-index: 100;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  .js-loader-text {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    letter-spacing: -1px; /* 文字間隔を狭く */
    display: flex;
    gap: 3px; /* 文字の間隔を微調整 */
  }
  .js-loader-text span {
    display: inline-block;
  }
  .js-text {
    overflow: hidden;
  }
  .js-mv_title-item span,
  .js-title span {
    display: inline-block;
    opacity: 0; /* 最初は非表示 */
    transform: translateY(30px); /* 最初は30px下にずらす */
  }
  .fade-in {
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    filter: blur(10px); /* 初期状態でぼかしを追加 */
    transition: filter 0.5s ease-out;
  }
  /* スマホ画面*/
  @media screen and (max-width: 767px) {
    .js-loader-text {
      font-size: 24px;
      gap: 2px; /* 文字の間隔を微調整 */
    }
  }
  /*============================
  re-ml-fv
  ============================*/
  #re-ml-fv {
    position: relative;
    width: 100%;
    height: 84vh;
  }
  /* カルーセル背景用の設定 */
  .carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 84vh;
    overflow: hidden;
    z-index: -1;
  }
  .carousel-bg-item {
    position: absolute;
    width: 100%;
    height: 84vh;
    background-size: cover;
    background-position: center;
    opacity: 0;
  }
  /* 背景画像の設定 */
  .bg1 {
    background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/re-fv_1.jpg);
  }
  
  .bg2 {
    background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/re-fv_2.jpg);
  }
  
  .re-ml-fv-title {
    position: relative;
    z-index: 10;
    padding-top: 240px;
    text-align: center;
  }
  .fv-title {
    font-size: 40px;
    font-weight: bold;
    text-shadow: 
      -2px -2px 0 white,
       2px -2px 0 white,
      -2px  2px 0 white,
       2px  2px 0 white,
      -2px  0px 0 white,
       2px  0px 0 white,
       0px -2px 0 white,
       0px  2px 0 white;
  }
  .fv-title-img {
    padding-top: 10px;
  }
  .fv-title-img img {
    width: calc(727 / 1600 * 100%);
    height: 100%;
  }
  
  /* スマホ画面*/
  @media screen and (max-width: 767px) {
    #re-ml-fv {
      margin-top: -50px;
      height: 80vh;
    }
      /* カルーセル背景用の設定 */
    .carousel-bg {
      height: 80vh;
    }
    .carousel-bg-item {
      height: 94vh;
    }
    .re-ml-fv-title {
      padding-top: 42vh;
    }
    .fv-title {
      font-size: 24px;
    }
    .fv-title-img {
      padding-top: 10px;
    }
    .fv-title-img img {
      width: 90%;
    }
    /* 背景画像の設定 */
    .bg1 {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/re-fv_1_sp.jpg);
    }
    .bg2 {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/re-fv_2_sp.jpg);
    }
  }
  /*============================
  re-ml-service
  ============================*/
  #re-ml-service {
    padding: 110px 0 110px;
  }
  .section-title-box {
    text-align: center;
  }
  #re-ml-service  .section-title {
    width: calc( 259 / 1000 * 100%);
  }
  .section-subtitle {
    color: #231815;
      margin-top: 35px;
      font-size: 18px;
      font-weight: normal;
  }
  .re-ml-service-content {
    margin-top: 54px;
    display: flex;
    flex-flow: column;
    gap: 24px;
  }
  .re-ml-service-list {
  
  }
  .re-ml-service-title {
    width: fit-content;
    color: #005BAC;
    font-size: 40px;
      font-weight: bold;
      font-style: italic;
      padding-left: 15px;
      margin-bottom: 7px;
  }
  .re-ml-service-title-bb {
    width: fit-content;
    color: #005BAC;
    font-size: 40px;
      font-weight: bold;
      font-style: italic;
    margin-bottom: 20px;
      padding-left: 15px;
    padding-bottom: 7px;
    border-bottom: 2px solid #898989;
  }
  .re-ml-service-txt {
    width: fit-content;
    font-size: 20px;
    color: #231815;
    border-top: 2px solid #898989;
      padding-top: 12px;
      padding-left: 15px;
  }
  .re-ml-service-img1 {
    width: 100%;
  }
  .re-ml-service-img2,
  .re-ml-service-img3 {
    width: calc(1100 / 1200 * 100%);
    margin: 0 auto;
  }
  .re-ml-service-img5 {
    width: calc(1100 / 1200 * 100%);
    margin: 20px auto 0;
  }
  .re-ml-service-img4 {
    width: calc(800 / 1200 * 100%);
    margin: 0 auto;
  }
  .re-ml-service-img6 {
    width: calc(540 / 1200 * 100%);
    margin: 0 auto;
  }
  /* スマホ画面*/
  @media screen and (max-width: 767px) {
    #re-ml-service {
      padding: 60px 0 60px;
    }
    #re-ml-service  .section-title {
      width: calc( 259 / 600 * 100%);
    }
    .section-subtitle {
      margin-top: 20px;
    }
    .re-ml-service-content {
      margin-top: 40px;
      gap: 28px;
    }
    .re-ml-service-title {
      font-size: 20px;
      padding: 0 4px;
      margin-bottom: 7px;
    }
    .re-ml-service-title-bb {
      font-size: 20px;
      margin-bottom: 20px;
      padding: 0 4px;
    }
    .re-ml-service-txt {
      font-size: 14px;
      padding-top: 4px;
      padding-left: 10px;
    }
    .re-ml-service-img1,
    .re-ml-service-img2,
    .re-ml-service-img3,
    .re-ml-service-img4,
    .re-ml-service-img5 {
      width: calc(560 / 600 * 100%);
    }
    .re-ml-service-img6 {
      width: calc(500 / 600 * 100%);
    }
  }
  /*============================
  #re-ml-plan
  ============================*/
  #re-ml-plan {
    background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/plan-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 113px 0 105px;
  }
  .re-ml-plan-title {
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
  .re-ml-plan-contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-top: 100px;
  }
  .re-ml-plan-left,
  .re-ml-plan-right {
    width: calc(440 / 1000 * 100%);
  
  }
  .re-ml-plan-left-title,
  .re-ml-plan-right-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    line-height: 2;
  }
  .re-ml-plan-left-txt,
  .re-ml-plan-right-txt {
    width: calc(420 / 440 * 100%);
    height: 160px;
    font-size: 20px;
    line-height: 2;
    text-align: justify;
    margin: 24px auto 0;
    padding: 16px 0 28px;
  }
  .re-ml-plan-fonts {
    font-size: 12px;
  }
  .re-ml-plan-link {
    display: inline-block;
    width: 100%;
    height: auto;
    margin-top: 100px;
    transition: .3s;
  }
  .re-ml-plan-link img {
    border-radius: 10px;
  }
  
  @media screen and (min-width: 768px) {
    .re-ml-plan-link:hover {
      opacity: .7;
    }
  }
  
  /* スマホ画面*/
  @media screen and (max-width: 767px) {
    #re-ml-plan {
      padding: 60px 0 60px;
    }
    .re-ml-plan-title {
      font-size: 24px;
    }
    .re-ml-plan-contents {
      flex-flow: column;
      margin-top: 60px;
    }
    .re-ml-plan-left,
    .re-ml-plan-right {
      width: 100%;
    }
    .re-ml-plan-right {
      margin-top: 60px;
    }
    .re-ml-plan-left-img,
    .re-ml-plan-right-img {
      margin-bottom: 10px;
    }
    .re-ml-plan-left-img img,
    .re-ml-plan-right-img img {
      width: 60%;
    }
    .re-ml-plan-left-title,
    .re-ml-plan-right-title {
      font-size: 18px;
    }
    .re-ml-plan-left-txt,
    .re-ml-plan-right-txt {
      height: initial;
      font-size: 14px;
      margin: 12px auto 0;
      padding-top: 8px;
      padding-bottom: 14px;
    }
    .re-ml-plan-fonts {
      font-size: 10px;
    }
    .re-ml-plan-link {
      margin-top: 60px;
    }
  }
  
  /*============================
  re-ml-trucks
  ============================*/
  #re-ml-trucks {
  padding: 100px 0 190px;
  }
  #re-ml-trucks .section-title {
    width: calc( 210 / 1000 * 100%);
  }
  .re-ml-trucks-content {
    text-align: center;
      margin-top: 110px;
  }
  .re-ml-trucks-txt {
    font-size: 20px;
    font-weight: bold;
  }
  .re-ml-trucks-btn {
    margin-top: 58px;
      text-align: center;
  }
  .re-ml-trucks-btn a {
    display: inline-block;
      width: 276px;
      font-size: 22px;
      font-weight: bold;
      color: #005BAC;
      background-color: #fff;
      border: 4px solid #005BAC;
      border-radius: 12px;
      padding: 27px 0;
      transition: .3s;
  }
  @media screen and (min-width: 768px) {
    .re-ml-trucks-btn a:hover {
        background-color: #005BAC;
        color: #fff;
    }
  }
  /* スマホ画面*/
  @media screen and (max-width: 767px) {
    #re-ml-trucks {
      padding: 60px 0 50px;
      }
      #re-ml-trucks .section-title {
        width: calc( 210 / 600 * 100%);
      }
      .re-ml-trucks-content {
        margin-top: 40px;
      }
      .re-ml-trucks-txt {
        font-size: 14px;
      }
      .re-ml-trucks-btn {
        margin-top: 40px;
      }
      .re-ml-trucks-btn a {
        width: 240px;
        font-size: 18px;
      }
  }
  /*============================
  #re-ml-flow
  ============================*/
  #re-ml-flow {
    padding: 110px 0 100px;
    background-color: #072981;
  }
  #re-ml-flow  .section-title {
    width: calc( 148 / 1000 * 100%);
  }
  #re-ml-flow .section-subtitle {
    color: #fff;
  }
  .re-ml-flow-content {
    margin-top: 110px;
      display: flex;
      flex-flow: column;
      gap: 40px;
  }
  .re-ml-flow-list {
    position: relative;
      display: flex;
      align-items: center;
      gap: 40px;
      background-color: #fff;
      padding: 6px 7px;
  }
  .re-ml-flow-list::before {
    content: '';
      display: inline-block;
      background-repeat: no-repeat;
    background-size: cover;
      position: absolute;
      width: 58px;
      height: 58px;
      top: -30px;
      left: 50%;
      transform: translateX( -50%);
  }
  .re-ml-flow-list:nth-of-type(1)::before {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/flow-num1.svg);
  }
  .re-ml-flow-list:nth-of-type(3)::before {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/flow-num2.svg);
  }
  .re-ml-flow-list:nth-of-type(5)::before {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/flow-num3.svg);
  }
  .re-ml-flow-list:nth-of-type(7)::before {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/flow-num4.svg);
  }
  .re-ml-flow-list:nth-of-type(9)::before {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/flow-num5.svg);
  }
  .re-ml-flow-img {
    width: calc(230 / 1000 * 100%);
    height: auto;
    vertical-align: bottom;
  }
  .re-ml-flow-img img {
    width: 100%;
  }
  .re-ml-flow-title {
    font-size: 22px;
      font-weight: bold;
      color: #005BAC;
  }
  .re-ml-flow-txt {
    font-size: 16px;
    margin-top: 11px;
  }
  .arrow-bottom {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 18px;
    margin: 0 auto 20px;
  }
  
  .arrow-bottom::before,
  .arrow-bottom::after {
    content: "";
    position: absolute;
    text-align: center;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 33px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: 50% calc(100% - 1px);
  }
  
  .arrow-bottom::before {
    transform: rotate(55deg);
  }
  
  .arrow-bottom::after {
    transform: rotate(-55deg);
  }
  /* スマホ画面*/
  @media screen and (max-width: 767px) {
    #re-ml-flow {
      padding: 60px 0 50px;
    }
    #re-ml-flow  .section-title {
      width: calc( 148 / 600 * 100%);
    }
    .re-ml-flow-content {
      margin-top: 80px;
      gap: 30px;
    }
    .re-ml-flow-list {
      flex-flow: column;
      justify-content: center;
      align-items: flex-start;
      gap: 12px;
      padding: 8px 8px 16px;
    }
    .re-ml-flow-list:nth-of-type(1)::before {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/flow-num1.svg);
    }
    .re-ml-flow-list:nth-of-type(3)::before {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/flow-num2.svg);
    }
    .re-ml-flow-list:nth-of-type(5)::before {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/flow-num3.svg);
    }
    .re-ml-flow-list:nth-of-type(7)::before {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/flow-num4.svg);
    }
    .re-ml-flow-list:nth-of-type(9)::before {
      background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/flow-num5.svg);
    }
    .re-ml-flow-img {
      width: 100%;
    }
    .re-ml-flow-txt-box {
      width: 100%;
    }
    .re-ml-flow-title {
      text-align: center;
    }
    .re-ml-flow-txt {
      font-size: 14px;
      margin-top: 6px;
    }
  }
  /*============================
  re-ml-faq
  ============================*/
  #re-ml-faq {
    padding: 110px 0 100px;
  }
  #re-ml-faq .section-title {
    width: calc( 102 / 1000 * 100%);
  }
  .re-ml-faq-content {
    width: calc( 940 / 1000 * 100%);
      margin-top: 91px;
  }
  .re-ml-faq-list {
    padding: 35px 80px 40px 87px;
      border-top: 1px solid #231815;
  }
  .re-ml-faq-list:last-of-type {
    border-bottom: 1px solid #231815;
  }
  .re-ml-faq-q-txt {
    font-size: 16px;
    font-weight: bold;
      position: relative;
  }
  .re-ml-faq-q-txt::before,
  .re-ml-faq-a-txt::before {
    content: '';
      position: absolute;
      width: 30px;
      height: 30px;
      top: -2px;
      left: -50px;
      display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .re-ml-faq-q-txt::before {
    background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/faq-q.svg);
  }
  .re-ml-faq-a-txt {
    font-size: 16px;
    margin-top: 18px;
      position: relative;
  }
  .re-ml-faq-a-txt::before {
    background-image: url(/wp/wp-content/themes/fcvanilla/img/re-matching-lease/faq-a.svg);
  }
  /* スマホ画面*/
  @media screen and (max-width: 767px) {
    #re-ml-faq {
      padding: 60px 0 50px;
    }
    #re-ml-faq .section-title {
      width: calc( 102 / 600 * 100%);
    }
    .re-ml-faq-content {
      width: 100%;
      margin-top: 60px;
    }
    .re-ml-faq-list {
      padding: 15px 10px 15px 47px;
    }
    .re-ml-faq-q-txt {
      font-size: 14px;
    }
    .re-ml-faq-q-txt::before,
    .re-ml-faq-a-txt::before {
      width: 24px;
      height: 24px;
      left: -40px;
    }
    .re-ml-faq-a-txt {
      font-size: 14px;
      margin-top: 10px;
    }
  }
  /*============================
  re-ml-contact
  ============================*/
  #re-ml-contact {
    padding-top: 66px;
    padding-bottom: 74px;
    background-color: #DCDDDD;
  }
  .contact-contents {
    display: flex;
    align-items: center;
    gap: 43px;
    padding: 0 4%;
  }
  .re-ml-contact-img {
    width: calc(710 / 1100 * 100%);
  }
  .re-ml-contact-img img {
    width: 100%;
  }
  .re-ml-contact-content {
    width: calc(350 / 1100 * 100%);
  }
  .pc-ml-contact-title {
    font-size: 30px;
    color: #072981;
    margin-bottom: 30px;
  }
  .re-ml-contact-txt {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 70px;
  }
  .re-ml-contact-btn {
    display: flex;
    flex-flow: column;
    gap: 24px;
  }
  .re-ml-tel-contact,
  .re-ml-mail-contact {
    font-size: 16px;
    text-align: left;
    background-color: #E24325;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 30px 27px 30px 38px;
    border-radius: 15px;
    transition: background-color .3s ease-in-out;
    cursor: pointer;
  }
  
  .tel-contact-txt,
  .mail-contact-txt {
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease-in-out;
  }
  .tel-contact-txt::before,
  .mail-contact-txt::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .tel-contact-txt::before {
    left: -60px;
  }
  .mail-contact-txt::before {
    left: -56px;
  }
  .tel-contact-txt::after,
  .mail-contact-txt::after {
    content: '';
    background-color: #fff;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1.0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out;
  }
  .tel-contact-txt::after {
    right: -130px;
  }
  .mail-contact-txt::after {
    right: -115px;
  }
  
  @media screen and (min-width: 768px) {
    .re-ml-tel-contact:hover,
    .re-ml-mail-contact:hover {
      background-color: #072981; /* ホバー時の背景色 */
      transition: 0.3s ease-in-out;
    }
    .re-ml-tel-contact:hover .tel-contact-txt {
      transform: translateX(64px);
    }
    .re-ml-mail-contact:hover .mail-contact-txt {
      transform: translateX(60px);
    }
    .re-ml-tel-contact:hover .tel-contact-txt::after,
    .re-ml-mail-contact:hover .mail-contact-txt::after {
      transform: scale(0.2);
    }
  }
  
  /* スマホ画面*/
  @media screen and (max-width: 767px) {
    #re-ml-contact {
      padding-top: 60px;
      padding-bottom: 60px;
    }
    .contact-contents {
      flex-flow: column;
      align-items: flex-start;
      gap: 20px;
      padding: 0;
    }
    .re-ml-contact-img {
      width: 100%;
    }
    .re-ml-contact-content {
      width: 100%;
    }
    .sp-ml-contact-title {
      font-size: 24px;
      color: #072981;
      margin-bottom: 0px;
    }
    .re-ml-contact-txt {
      font-size: 14px;
      margin-bottom: 28px;
    }
    .re-ml-contact-btn {
      display: flex;
      flex-flow: column;
      gap: 14px;
    }
    .re-ml-tel-contact,
    .re-ml-mail-contact {
      width: 280px;
      font-size: 14px;
      margin: 0 auto;
      padding: 20px 18px 21px 18px;
    }
    .tel-contact-txt::after,
    .mail-contact-txt::after {
      width: 8px;
      height: 8px;
      background: none;
      border-radius: 0;
      border-top: solid 2px #fff;
      border-right: solid 2px #fff;
      transform: translateY(-50%) rotate(45deg);
    }
    .tel-contact-txt::after {
      right: -112px;
    }
    .mail-contact-txt::after {
      right: -97px;
    }
  }