@charset "UTF-8";

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  /* 背景色 */
  color: #333;
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 10px;
}

p {
  margin-bottom: 10px;
}

.text__primary {
  color: #eca713;
}

.section {
  background: #fff;
  width: 100%;
}

@media (min-width: 751px) {
  body {
    font-size: 16px;
    line-height: 2;
  }

  .section {
    padding: 0 10px;
  }

  .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
  }

  .text-lg {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
  }

  .kv {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
  }

  .point {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
  }

  .list-disc li {
    margin-bottom: 0;
    position: relative;
    padding-left: 1em;
  }

  .list-disc li::before {
    content: '•';
    color: #eca713;
    position: absolute;
    left: 0;
  }

  .ttl02 {
    color: #fff;
    font-size: 32px;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    text-align: center;
    background-color: #eca713;
    position: relative;
  }

  .ttl02::before {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 100px;
    height: 20px;
    background-color: #eca713;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    transform: translate(-50%, 0);
  }

  .ttl03 {
    color: #eca713;
    padding: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
  }

  .ttl03s {
    color: #fff;
    padding: 10px;
    margin: 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
  }

  .worries-box {
    display: grid;
    max-width: 800px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px 40px;
    position: relative;
    margin: 0 auto;
  }

  .worries-list {
    font-size: 20px;
    line-height: 2.3;
  }

  .worries-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 340px;
    height: 225px;
  }

  .notice-box {
    border: 2px solid #eca713;
    background-color: #fff9ef;
    border-radius: 5px;
    padding: 15px 30px;
    margin: 20px 0;
  }

  /* box01 */
  .box01 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    background-color: #fff9ef;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    counter-increment: bubble-counter;
    list-style-type: none;
    margin-bottom: 50px;
  }

  .box01-label {
    position: relative;
    font-size: 20px;
    font-weight: bold;
  }

  .box01-label::before {
    content: 'メリット' counter(bubble-counter);
    position: absolute;
    background: #eca713;
    color: #fff;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 14px;
    top: -45px;
    left: 10px;
  }

  .box01-label::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50px;
    width: 20px;
    height: 10px;
    background-color: #eca713;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  }

  /* box02 */
  .box02 {
    display: grid;
    margin-bottom: 50px;
  }

  .box02--2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .box02--3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .box02__item {
    background-color: #FCF9F6;
    padding: 30px;
    position: relative;
    border-radius: 10px;
  }

  .box02--3col .box02__item {
    padding: 10px;
  }

  .box02 .cta__btn,
  .box02 .cta__button {
    font-size: min(1.8vw, 18px);
    padding: 15px 10px;
    line-height: 1;
    height: 54px;
    box-sizing: border-box;
  }

  .box02 .cta__button-icon {
    width: 30px;
    height: 24px;
    margin-right: 8px;
  }

  .box02-label {
    position: absolute;
    font-weight: bold;
    background: linear-gradient(to right, #7accf4, #b76ce5, #f482cb);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 16px;
    top: -19px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  /* table */
  .table01 {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 1px solid #ddd;
  }

  .table01__ttl {
    background: #f9f9f9;
    padding: 10px;
    text-align: left;
    font-weight: bold;
    vertical-align: middle;
    border: 1px solid #ddd;
  }

  .table01__txt {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ddd;
    background: #FFF;
  }

  .message {
    margin: 70px 0;
    text-align: center;
    font-size: 24px;
    line-height: 2;
    margin-top: 50px;
    font-weight: 600;
  }

  /* cta */
  .cta {
    padding: 60px 0;
    background-color: #fff2df;
    width: 100%;
  }

  .cta__inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .cta__ttl {
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
    color: #333;
  }

  .cta__ttl--emphasis {
    font-weight: 700;
    font-size: 32px;
  }

  .cta__tel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .cta__call--icon {
    width: 80px;
    margin-right: 15px;
  }

  .cta__call {
    text-align: center;
    line-height: 1.2;
  }

  .cta__call--tel {
    font-size: 60px;
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
  }

  .cta__call--rb {
    text-align: center;
    font-size: 15px;
    font-weight: normal;
    transform: translateY(-2px);
  }

  .cta__call--time {
    font-size: 19px;
    color: #333;
  }

  /* cta__btn */
  .cta__btn-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 20px auto 0;
    gap: 20px;
  }

  .cta__btn {
    position: relative;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px #ca6600;
    border-radius: 5px;
    color: #eca713;
    font-size: 24px;
    font-weight: bold;
    background: #fff9ef;
  }

  /* .cta__btn::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: #fff;
    clip-path: polygon(20% 11%, 20% 0%, 70% 50%, 20% 100%, 20% 89%, 58% 50%);
    right: 10px;
    top: 50%;
    line-height: 0;
  } */

  .cta__btn--small {
    padding: 15px 20px;
    font-size: min(1.8vw, 18px);
    text-align: center;
  }

  .cta__btn--small .cta__call--icon {
    width: min(4vw, 36px);
    margin-right: 10px;
  }

  .cta__btn:hover {
    transform: translateY(5px);
    box-shadow: 0;
  }

  .cta__btn__time {
    display: inline-block;
    background: #fff;
    color: #333;
    font-size: 14px;
    padding: 5px 8px;
    margin-right: 15px;
    text-align: center;
    border-radius: 5px;
  }

  .cta__btn--web {
    background: #eca713;
    color: #fff;
    box-shadow: 0 5px #be8100;
  }

  .cta__btn--tel {
    background: #eca713;
    color: #fff;
    box-shadow: 0 5px 0 #ab0000;
  }

  .cta__btn__time--web {
    background: #fff;
    color: #eca713;
  }

  .cta__btn--line {
    background-color: #00B900;
    color: #fff;
    box-shadow: 0 5px #048b3b;
  }

  .cta__btn__time--line {
    background: #fff;
    color: #00B900;
  }

  .cta__btn__text {
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
  }
}

/* sp */
@media (max-width: 750px) {
  body {
    font-size: 3.8vw;
    line-height: 1.8;
  }

  .section {
    padding: 0;
  }

  .inner {
    width: 100%;
    padding: 10vw 4vw;
    margin: 0 auto;
  }

  .kv {
    width: 100%;
  }

  .point {
    margin: 0 auto;
    padding: 4vw 2vw 6vw;
    max-width: 100%;
    display: block;
  }

  .list-disc li {
    margin-bottom: 0;
    position: relative;
    padding-left: 1em;
  }

  .list-disc li::before {
    content: '•';
    color: #eca713;
    position: absolute;
    left: 0;
  }

  .ttl02 {
    color: #fff;
    font-size: 6.3vw;
    padding: 3.6vw 0;
    border-radius: 5px;
    bottom: 5.2vw;
    text-align: center;
    background-color: #eca713;
    position: relative;
  }

  .ttl02::before {
    content: '';
    position: absolute;
    bottom: -3.8vw;
    left: 50%;
    width: 20vw;
    height: 4vw;
    background-color: #eca713;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    transform: translate(-50%, 0);
  }

  .ttl03 {
    color: #eca713;
    padding: 2.4vw;
    margin: 4.8vw 0;
    text-align: center;
    font-weight: bold;
    font-size: 5.7vw;
  }

  .ttl03s {
    color: #fff;
    padding: 10px;
    margin: 0;
    text-align: center;
    font-weight: bold;
    font-size: 4.6vw;
  }

  .text-lg {
    font-size: 5vw;
    font-weight: bold;
    line-height: 1.5;
  }

  .worries-box {
    display: grid;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 8vw 2vw 0;
    position: relative;
    margin: 0 auto;
  }

  .worries-list {
    font-size: 4.8vw;
    line-height: 2;
    position: relative;
    margin-bottom: 4.8vw;
  }

  .worries-img {
    max-width: 50vw;
    display: block;
    margin: 0 auto;
  }

  .notice-box {
    border: 2px solid #eca713;
    background-color: #fff9ef;
    border-radius: 5px;
    padding: 3.6vw;
    margin: 4.8vw 0;
  }

  /* box01 */
  .box01 {
    display: flex;
    gap: 4.8vw;
    flex-direction: column;
    position: relative;
    background-color: #fff9ef;
    border-radius: 10px;
    padding: 7.2vw;
    margin: 4.8vw 0;
    counter-increment: bubble-counter;
    list-style-type: none;
    margin-bottom: 12vw;
  }

  .box01-label {
    position: relative;
    font-size: 4.8vw;
    font-weight: bold;
  }

  .box01-label::before {
    content: 'メリット' counter(bubble-counter);
    position: absolute;
    background: #eca713;
    color: #fff;
    padding: 1.2vw 4.8vw;
    border-radius: 5px;
    font-size: 3.3vw;
    top: -10.8vw;
    left: 2.4vw;
  }

  .box01-label::after {
    content: '';
    position: absolute;
    top: -3.6vw;
    left: 12vw;
    width: 4.8vw;
    height: 2.4vw;
    background-color: #eca713;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  }

  /* box02 */
  .box02 {
    display: grid;
    border-radius: 10px;
    position: relative;
    gap: 5vw;
  }

  .box02--2col {
    gap: 5vw;
  }

  .box02--3col {
    gap: 5vw;
  }

  .box02__item {
    background-color: #FCF9F6;
    padding: 5vw;
    position: relative;
    border-radius: 10px;
  }

  .box02--2col .box02__item,
  .box02--3col .box02__item {
    padding: 3vw;
  }

  .box02-label {
    position: absolute;
    font-weight: bold;
    background: linear-gradient(to right, #7accf4, #b76ce5, #f482cb);
    color: #fff;
    padding: 1.2vw 4.8vw;
    border-radius: 50px;
    font-size: 3.3vw;
    top: -4vw;
    left: 2.4vw;
  }

  /* table01 */
  .table01 {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 4.8vw;
    border: 1px solid #ddd;
    margin-top: 4.8vw;
  }

  .table01__ttl {
    background-color: #f9f9f9;
    padding: 2.4vw;
    text-align: left;
    font-weight: bold;
    vertical-align: middle;
    border: 1px solid #ddd;
  }

  .table01__txt {
    padding: 2.4vw;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ddd;
  }

  .message {
    margin: 12vw 0;
    text-align: center;
    font-size: 5vw;
    line-height: 2;
    margin-top: 12vw;
    font-weight: 600;
  }

  /* cta */
  .cta {
    padding: 14.4vw 0;
    background-color: #fff2df;
  }

  .cta__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
  }

  .cta__ttl {
    font-size: 4vw;
    text-align: center;
    line-height: 1.5;
    color: #333;
    font-weight: 600;
  }

  .cta__ttl--emphasis {
    font-weight: 700;
    font-size: 7vw;
  }

  .cta__tel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4.8vw;
  }

  .cta__call--icon {
    width: 12vw;
    margin-right: 3.6vw;
  }

  .cta__call {
    text-align: center;
    line-height: 1.2;
  }

  .cta__call--tel {
    font-size: 6.4vw;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    display: block;
  }

  .cta__call--time {
    font-size: 4vw;
    color: #FFF;
  }

  /* cta__btn */
  .cta__btn-box {
    display: grid;
    max-width: 100%;
    margin: 5vw auto 0;
    gap: 5vw;
  }

  .cta__btn {
    padding: 3.8vw 4.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1;
    border-radius: 5px;
    font-size: 5.7vw;
    font-weight: bold;
    background: #fff9ef;
    transition: transform 0.5s;
    box-shadow: 0 4px 6px #3333336b;
    position: relative;
  }

  /* .cta__btn::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    width: 3vw;
    height: 3vw;
    background: #fff;
    clip-path: polygon(20% 11%, 20% 0%, 70% 50%, 20% 100%, 20% 89%, 58% 50%);
    right: 3vw;
    top: 50%;
    line-height: 0;
} */
  .cta__btn:hover {
    transform: translateY(3px);
    box-shadow: 0;
  }

  .cta__btn--call {
    color: #fff;
    border: 2px solid #fff;
    background: #ECA713;
  }

  .cta__call__text {
    display: flex;
    flex-direction: column;
    margin-top: 2vw;
    margin-bottom: 0;
  }

  /* web、LINE共通 */
  .cta__btn__time--web,
  .cta__btn__time--line {
    background: #fff;
    margin-right: 3.6vw;
    border-radius: 5px;
    padding: 1.2vw 1.9vw;
    line-height: 1.5;
    font-size: 4vw;
  }

  /* web相談予約 */
  .cta__btn--web {
    background: #eca713;
    color: #fff;
  }

  .cta__btn__time--web {
    color: #eca713;
  }

  .cta__btn--tel {
    background: #ECA713;
    color: #fff;
  }

  /* LINE相談予約 */
  .cta__btn--line {
    background-color: #00B900;
    color: #fff;
  }

  .cta__btn__time--line {
    color: #00B900;
  }

  .cta__btn__text {
    font-size: 4.3vw;
    color: #fff;
    text-align: center;
    margin-top: 4.8vw;
    line-height: 1.3;
  }

}

/* アコーディオン */
@media (min-width: 751px) {

  /* acc-list */
  .acc-list {
    margin-bottom: 10px;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
  }

  .acc-header {
    display: grid;
    align-items: center;
    position: relative;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    padding: 15px 30px 15px 15px;
    border-radius: 5px;
    background: #FCF9F6;
    line-height: 1.5;
  }

  .acc-header::before {
    position: absolute;
    transform: translate(0, -50%);
    color: #fff;
    font-weight: 900;
    content: '';
    background: url(/lp/taishokudaikou/2506_5/assets/img/icon-plus.svg)no-repeat top left/ contain;
    width: 18px;
    height: 18px;
    top: 50%;
    right: 10px;
  }

  .acc-body {
    display: none;
    margin: 0;
    font-size: 15px;
    padding: 20px 10px;
    background: #fff;
    color: #333;
    line-height: 1.5;
    border-radius: 0 0 5px 5px;
  }

  /* js */
  .js-open.acc-header::before {
    content: '';
    background: url(/lp/taishokudaikou/2506_5/assets/img/icon-minus.svg)no-repeat top left/ contain;
    width: 18px;
    height: 18px;
    top: 48%;
    right: 0;
    transform: translate(-50%, 0);
  }

  .js-open.acc-body {
    border-top: 1px solid #fff;
  }

  /* qa-section */
  .js-open.qa-section-header::before {
    content: '';
    background: url(/lp/taishokudaikou/2506_5/assets/img/icon-minus.svg)no-repeat top left/ contain;
    width: 24px;
    height: 24px;
    top: 48%;
    right: 18px;
    transform: translate(-50%, 0);
  }

  /* qa-section */
  .qa-section {
    background: #eca713;
    border-radius: 10px;
    margin: 20px 0;
    cursor: pointer;
    color: #fff;
  }

  .qa-section-header {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    position: relative;
    border-top: 1px solid #fff;
    font-weight: 400;
    cursor: pointer;
    font-size: 20px;
    padding: 20px 50px 20px 20px;
    border-radius: 10px;
    background-color: #eca713;
    line-height: 1.3;
  }

  .qa-section-header::before {
    position: absolute;
    transform: translate(0, -50%);
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    content: '';
    background: url(/lp/taishokudaikou/2506_5/assets/img/icon-plus.svg)no-repeat top left/ contain;
    width: 24px;
    height: 24px;
    top: 50%;
    right: 30px;
  }

  .qa-section-body {
    display: none;
    margin: 0;
    padding: 30px 20px;
    border-top: 1px solid #fff;
    background-color: #fff9ef;
    color: #333;
    line-height: 1.5;
    border-radius: 0 0 10px 10px;
  }

  .qa-icon {
    object-fit: contain;
  }

  .qa-section__counter {
    counter-reset: qa-counter 0;
  }

  .qa-section--qa {
    background-color: #f7f7f7;
  }

  .qa-section--qa .qa-section-header {
    background-color: #f7f7f7;
    color: #333;
    display: flex;
    align-items: center;
    padding-left: 85px;
    counter-increment: qa-counter;
  }

  .qa-section--qa .qa-section-header::after {
    position: absolute;
    content: 'Q' counter(qa-counter);
    top: 50%;
    left: 30px;
    transform: translate(0, -50%);
    color: #eca713;
    font-weight: 700;
    font-size: 30px;
  }

  .qa-section--qa .qa-section-body {
    background-color: #f7f7f7;
  }
}

@media (max-width: 750px) {

  /* acc-list */
  .acc-list {
    margin-bottom: 10px;
    background: #fff;
    border-radius: 5px;
  }

  .acc-header {
    display: grid;
    align-items: center;
    position: relative;
    font-weight: 600;
    cursor: pointer;
    font-size: 4.2vw;
    padding: 4vw 9vw 4vw 4vw;
    border-radius: 5px;
    background: #FCF9F6;
    line-height: 1.5;
  }

  .acc-header::before {
    position: absolute;
    transform: translate(0, -50%);
    color: #fff;
    font-weight: 900;
    content: '';
    background: url(/lp/taishokudaikou/2506_5/assets/img/icon-plus.svg)no-repeat top left/ contain;
    width: 4vw;
    height: 4vw;
    top: 50%;
    right: 4vw;
  }

  .acc-body {
    display: none;
    margin: 0;
    font-size: 4vw;
    padding: 4vw 2vw;
    background: #fff;
    color: #333;
    line-height: 1.5;
    border-radius: 0 0 3vw 3vw;
  }

  /* js */
  .js-open.acc-header::before {
    content: '';
    background: url(/lp/taishokudaikou/2506_5/assets/img/icon-minus.svg)no-repeat top left/ contain;
    width: 3.5vw;
    height: 3.5vw;
    top: 48%;
    right: 2vw;
    transform: translate(-50%, 0);
  }

  .js-open.qa-section-header::before {
    content: '';
    background: url(/lp/taishokudaikou/2506_5/assets/img/icon-minus.svg)no-repeat top left/ contain;
    width: 4vw;
    height: 4vw;
    top: 48%;
    right: 4vw;
    transform: translate(-50%, 0);
  }

  .js-open.qa-section-body {
    border-top: 1px solid #fff;
  }

  /* qa-section */
  .qa-section__counter {
    counter-reset: qa-counter 0;
  }

  .qa-section {
    background: #eca713;
    border-radius: 10px;
    margin: 2.4vw 0;
    cursor: pointer;
    color: #fff;
  }

  .qa-section-header {
    display: grid;
    grid-template-columns: 14vw 1fr;
    align-items: center;
    position: relative;
    border-top: 1px solid #fff;
    font-weight: 400;
    cursor: pointer;
    font-size: 4.8vw;
    padding: 4vw 12vw 4vw 4vw;
    border-radius: 10px;
    background-color: #eca713;
    gap: 2vw;
    line-height: 1.3;
  }

  .qa-section-header::before {
    position: absolute;
    transform: translate(0, -50%);
    color: #fff;
    font-weight: 900;
    font-size: 5.2vw;
    content: '';
    background: url(/lp/taishokudaikou/2506_5/assets/img/icon-plus.svg)no-repeat top left/ contain;
    width: 4vw;
    height: 4vw;
    top: 50%;
    right: 6vw;
  }

  .qa-section-body {
    display: none;
    margin: 0;
    padding: 7.2vw 4.8vw;
    border-top: 1px solid #fff;
    background-color: #fff9ef;
    color: #333;
    line-height: 1.5;
    border-radius: 0 0 10px 10px;
  }

  .qa-icon {
    object-fit: contain;
  }

  .qa-section--qa {
    background-color: #f7f7f7;
  }

  .qa-section--qa .qa-section-header {
    background-color: #f7f7f7;
    color: #333;
    display: flex;
    align-items: center;
    padding-left: 17.2vw;
    counter-increment: qa-counter;
  }

  .qa-section--qa .qa-section-header::after {
    position: absolute;
    content: 'Q' counter(qa-counter);
    top: 50%;
    left: 4.2vw;
    transform: translate(0, -50%);
    color: #eca713;
    font-weight: 700;
    font-size: 7.2vw;
  }

  .qa-section--qa .qa-section-body {
    background-color: #f7f7f7;
  }
}

/* counter-box カウンター */
@media (min-width: 751px) {
  .counter-box {
    counter-reset: counter-box 0;
  }

  .counter-box .counter-box__item {
    counter-increment: counter-box;
    position: relative;
  }

  .counter-box .counter-box__item::before {
    content: counter(counter-box);
  }

  /* counter flow */
  .counter-box .counter-box__item--flow::before {
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 32px;
    color: #fff;
    border-radius: 50%;
    background: #eca713;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 750px) {
  .counter-box {
    counter-reset: counter-box 0;
  }

  .counter-box .counter-box__item {
    counter-increment: counter-box;
    position: relative;
  }

  .counter-box .counter-box__item::before {
    content: counter(counter-box);
  }

  /* counter flow */
  .counter-box .counter-box__item--flow::before {
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 4.8vw;
    color: #fff;
    border-radius: 50%;
    background: #eca713;
    width: 10vw;
    height: 10vw;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* btn_box-line アニメーション */
@media (max-width: 750px) {
  #btn_animation .btn_line-animation {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 10vw;
  }

  #btn_animation .cta__btn {
    display: flex;
    justify-content: center;    
    animation: btn_animation 2s infinite;
  }

  @keyframes btn_animation {
    0% {
      transform: translate(4px, 0px);
    }

    5% {
      transform: translate(-4px, 0px);
    }

    10% {
      transform: translate(4px, 0px);
    }

    15% {
      transform: translate(-4px, 0px);
    }

    20% {
      transform: translate(4px, 0px);
    }

    25% {
      transform: translate(-4px, 0px);
    }

    30% {
      transform: translate(0px, 0px);
    }
  }
}

/* フローティングCTA */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.floating-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (min-width: 751px) {
  .floating-cta {
    padding: 15px 10px;
  }

  .floating-cta__inner {
    gap: 20px;
  }

  .floating-cta>.floating-cta__inner>.cta__btn {
    flex: 1;
    max-width: 100%;
  }

  /* 電話ボタン */
  .floating-cta>.floating-cta__inner>.cta__button {
    font-size: 24px;
    gap: 10px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    position: relative;
    border-radius: 5px;
  }

  .floating-cta>.floating-cta__inner>.cta__button--tel {
    /* background: #FF7700; */
    background: linear-gradient(135deg, #F5684B 0%, #F1382E 100%); 
    box-shadow: 0 5px #ab0000;
  }

  .floating-cta>.floating-cta__inner>.cta__button--tel:link {
    color: #fff;
  }

  .floating-cta>.floating-cta__inner>.cta__button--tel>div>.cta__button_tel--time {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    padding: 1px;
    color: #fff;
    margin-top: 5px;
    display: block;
    color: #F1382E;
    background-color: #fff;
    border-radius: 15px;
    text-align: center;
  }

  /* web相談予約 */
  .floating-cta>.floating-cta__inner>.cta__btn {
    position: relative;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    flex-direction: row-reverse;
  }

  .floating-cta>.floating-cta__inner>.cta__btn--web {
    background: #eca713;
    box-shadow: 0 5px #be8100;
  }

  .floating-cta>.floating-cta__inner>.cta__btn--web:link {
    color: #fff;
  }

  /* LINE相談予約 */
  .floating-cta>.floating-cta__inner>.cta__btn--line {
    background-color: #00B900;
    box-shadow: 0 5px #048b3b;

  }
}

@media (max-width: 750px) {
  .floating-cta>.floating-cta__inner>.cta__button--tel {
    font-size: 4.375vw;
    font-weight: 700;
    border-radius: 0;
    background: linear-gradient(135deg, #F5684B 0%, #F1382E 100%);    
    box-shadow: none;
    padding: 2.5vw;
    text-align: center;
  }

  .floating-cta>.floating-cta__inner>.cta__button--tel:link {
    color: #fff;
  }

  .floating-cta>.floating-cta__inner>.cta__button--tel>div>picture>.cta__button-icon {
    width: 9vw;
    margin-right: 1vw;
  }

  .floating-cta>.floating-cta__inner>.cta__button--tel>div>.cta__button_tel--time {
    font-size: 3.125vw;
    line-height: 1.5;
    font-weight: 500;
    background: #fff;
    border-radius: 15px;
    padding: 0.5vw 1.6vw;
    color: #F1382E;
    margin: 2vw 0 0 0;
    text-align: center;
    display: inline-block
  }

  .floating-cta>.floating-cta__inner>.cta__btn {
    font-size: 3.8vw;
    padding: 3vw 2vw;
    line-height: 1.2;
    width: 26vw;
    display: grid;
    flex: none;
    border-radius: 0;
    text-align: center;
  }

  .floating-cta>.floating-cta__inner>.cta__btn__time {
    font-size: 2.8vw;
    padding: 1vw 1.5vw;
    margin-right: 1.5vw;
    display: inline-block;
    background: #fff;
    color: #333;
    text-align: center;
    border-radius: 5px;
  }

  .floating-cta>.floating-cta__inner>.cta__btn>.cta__btn__time--web,
  .floating-cta>.floating-cta__inner>.cta__btn>.cta__btn__time--line {
    font-size: 2.8125vw;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 0.5vw 2vw;
    margin: 1.5625vw auto 0;
    display: inline-block;
  }

  .floating-cta>.floating-cta__inner>.cta__btn>.cta__btn__time--web {
    color: #eca713;
  }

  .floating-cta>.floating-cta__inner>.cta__btn>.cta__btn__time--line {
    color: #00B900;
  }
}


/* 電話ボタン */
.cta__button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  position: relative;
  border-radius: 5px;
}

.cta__button:active {
  transform: scale(0.98);
}

.cta__button--tel:link {
  color: #fff;
}

.cta__button--tel {
  background: linear-gradient(135deg, #F5684B 0%, #F1382E 100%);
  box-shadow: 0 5px #ab0000;
}

.cta__button--tel:hover {
  transform: translateY(5px);
  box-shadow: 0;
}

.cta__button-icon {
  width: 40px;
  margin-right: 10px;
}

.cta_br--sp {
  display: none;
}

@media (min-width: 751px) {
  .cta__button {
    font-size: 24px;
    gap: 10px;
  }

  .cta__button-icon {
    width: 50px;
    margin-right: 15px;
  }
}

@media (max-width: 750px) {
  .cta__button {
    font-size: 5.7vw;
    padding: 3.8vw 4.8vw;
  }

  .cta__button--tel {
    box-shadow: 0 4px 6px #3333336b;
  }

  .cta__button-icon {
    width: 12vw;
    margin-right: 3.6vw;
  }

  .cta_br--sp {
    display: inline;
  }
}