/*-------------------------------------------
　共通スタイル
-------------------------------------------*/
div[class^="column-"]{
  position: relative;
  display: flex;
  justify-content: space-between;
}
.column-two{
  gap: 50px;
}
.column-three{
  gap: 30px;
}
@media screen and (max-width: 767px) {
  div[class^="column-"]{
    flex-direction: column;
  }
}
/*-------------------------------------------
　フォーム離脱者に、即時架電ですぐ繋がれる
-------------------------------------------*/
h2{
  margin-bottom: 40px;
  font-size: 6rem;
  line-height: 1.5;
}
#read p{
  font-size: 1.8rem;
  font-weight: bold;
}
.read-box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
  font-weight: bold;
}
.box{
  width: fit-content;
  font-size: 2.2rem;
  margin-bottom: 15px;
  padding: 0.25em 0.75em;
  border-radius: var(--radius);
  color: var(--white);
  background-color: var(--red);
}
.before .box{
  background-color: #505050;
}

#read .column-two:after{
  content: "";
  border-left: 20px solid var(--red);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  position: absolute;
  top: 50%;
  left: calc(50% - 18px);
  transform: translateY(50%) translateX(-50%);
}

@media screen and (max-width: 1280px) {
  h2{
    font-size: 6vw;
  }
}
@media screen and (min-width: 768px) {
  #read .section-inner {
    padding-top: 40px;
    padding-bottom: 170px;
  }
  #benefits .section-inner {
    padding-bottom: 120px;
  }
  #features .section-inner {
    padding-bottom: 200px;
  }
  #operation-flow .section-inner {
    padding-bottom: 110px;
  }
  #application-flow .section-inner {
    padding-top: 180px;
    padding-bottom: 210px;
  }
  #price .section-inner {
    padding-bottom: 90px;
  }
  #case-study .section-inner {
    padding-top: 210px;
    padding-bottom: 150px;
  }
  #faq .section-inner {
    padding-top: 210px;
    padding-bottom: 200px;
  }
  #contact .section-inner {
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 767px) {
  h2{
    margin-bottom: 30px;
    font-size: 2.5rem;
  }
  div[class^="column-"]{
    flex-direction: column;
  }
  #read p{
    font-size: 1.6rem;
  }
  .read-box{
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .box{
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding: 0.5em;
  }
  #read .column-two:after{
    content: "";
    top: calc(50% + 7px);
    left: 50%;
    width: 14px;
    height: 14px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid var(--red);
  }
}
/*-------------------------------------------
　BENEFITS 導入のメリット
-------------------------------------------*/
.title{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: -3em;
}
.title p{
  font-size: 4rem;
  position: relative;
  z-index: 2;
}
.title p.subtitle{
  width: auto;
  padding: 0.75em 3em 0.5em 3em;
  font-size: 2.5rem;
  background-color: var(--white);
  border-radius: 100vh;
  filter: var(--drop-shadow);
  transform: translateY(-1em) rotateZ(0);
  z-index: 1;
}
.benefit-box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: 90px;
  padding: 55px 55px 0;
  font-size: 4rem;
  font-weight: bold;
  border-radius: var(--radius-large);
  background-color: var(--light-blue);
}
.images{
  transform: translateY(30px);
}
.column-two:nth-of-type(2) .benefit-box{
  padding-bottom: 30px;
}
.column-two:nth-of-type(2) .images{
  transform: none;
}
@media screen and (max-width: 1280px) {
  .title p.subtitle{
    padding: 0.75em 2em 0.5em 2em;
    font-size: 2rem;
  }
  .benefit-box{
    padding: 40px 30px 0;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .title{
    margin-top: 40px;
    margin-bottom: -2em;
  }
  .title:first-of-type{
    margin-top: 0;
  }
  .title p{
    font-size: 2rem;
  }
  .title p.subtitle{
    font-size: 1.5rem;
    transform: translateY(-1rem) rotateZ(0);
  }
  .benefit-box{
    margin-bottom: 30px;
    padding: 40px 25px 0;
    font-size: 2.3rem;
  }
}
/*-------------------------------------------
　FEATURES 機能一覧
-------------------------------------------*/
.card{
  display: flex;
  flex-direction: column;
  width: 30%;
  filter: var(--drop-shadow);
  transform: rotateZ(0);
}
.card .icon,
.card .text{
  display: flex;
  flex-direction: column;
  padding: 40px;
  background-color: var(--white);
}
.card .icon{
  height: 230px;
  align-items: center;
  justify-content: center;
  background-color: #d7e0e6;
  border-radius: var(--radius-large) var(--radius-large) 0 0;
}
.card .icon img{
  width: 60%;
  margin: auto;
}
.card:last-of-type .icon img{
  width: 100%;
}
.card .text{
  gap: 10px;
  flex-grow: 1;
  font-size: 15px;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
}
.features{
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
}
.card .text p{
  line-height: 1.7;
}

@media screen and (max-width: 1280px) {
  .card{
    flex-direction: row;
    width: 100%;
  }
  .card .icon,
  .card .text{
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
  }
  .card .icon{
    width: 40%;
    height: auto;
    border-radius: var(--radius-large) 0 0 var(--radius-large);
  }
  .card .icon img{
    width: 80%;
  }
  .card:last-of-type .icon img{
    width: 100%;
  }
  .card .text{
    gap: 0;
    flex-grow: initial;
    justify-content: center;
    width: 60%;
    border-radius: 0 var(--radius-large) var(--radius-large) 0;
  }
  .features{
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  .column-three{
    flex-direction: column;
  }
  .card .text{
    font-size: 1.2rem;
  }
  .features{
    font-size: 1.4rem;
  }
}
/*-------------------------------------------
　OPERATION FLOW 運用フロー
-------------------------------------------*/
#operation-flow strong{
  font-size: 2em;
}
div.column-five{
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px calc((360px - 15%) / 3);
}
.card.radius{
  filter: none;
}
.card.radius .icon{
  width: 370px;
  height: 370px;
  padding: 10px 50px 50px 50px;
  border-radius: 100vh;
  background-color: var(--white);
  filter: var(--drop-shadow);
  transform: rotateZ(0);
}
.card.radius .icon img{
  width: 70%;
}
.card.radius:first-of-type .icon img,
.card.radius:last-of-type .icon img{
  width: 100%;
}
.card.radius .text{
  padding: 0 0 0 20px;
  background: none;
  border-radius: 0;
  border-left: 1px solid var(--red);
  transform: translateY(-100px);
}
@media (min-width: 1025px) and (max-width: 1280px) {
  #operation-flow .section-inner {
    padding-bottom: 165px;
  }
}
@media screen and (max-width: 1280px) {
  #operation-flow strong{
    font-size: 1.5em;
  }
  div.column-five{
    gap: 30px;
  }
  .card.radius{
    flex-direction: row-reverse;
    gap: 15px;
    width: 100%;
  }
  .card.radius .icon{
    width: 110px;
    height: 110px;
    padding: 10px;
  }
  .card.radius .icon img{
    width: 70%;
  }
  .card.radius:first-of-type .icon img,
  .card.radius:last-of-type .icon img{
    width: 100%;
  }
  .card.radius .text{
    flex-grow: 1;
    transform: none;
    padding: 0px 0 0 15px;
  }
}
/*-------------------------------------------
　APPLICATION FLOW 導入までの流れ
-------------------------------------------*/
#application-flow .card.square:not(:first-of-type):after{
  content: "";
  border-left: 20px solid var(--red);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  position: absolute;
  top: calc(50% + 9px);
  left: -30px;
  transform: translate(-50%);
}
.card.square .step{
  position: relative;
  display: inline-block;
  left: 0%;
  width: 14rem;
  padding: 0.1em 0.5em;
  font-weight: 900;
  font-size: 3rem;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.075em;
  color: var(--white);
  transform: rotateZ(-3deg) translate(-0.5em, 50%);
}
.card.square .step::before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--blue);
  transform: skewX(-15deg);
  z-index: -1;
}
.card.square .text{
  border-radius: var(--radius-large);
}
@media screen and (max-width: 1280px) {
  .card.square{
    flex-direction: column;
  }
  .card.square .text{
    width: 100%;
  }
  .card.square .step{
    width: 16vw;
    padding: 0.1em 0.3em;
    font-size: 3vw;
    transform: rotateZ(-3deg) translate(0.5em, 0.5em);
  }
  #application-flow .card.square:not(:first-of-type):after{
    content: "";
    border-left: 12px solid var(--red);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    position: absolute;
    top: calc(50%);
    left: -14px;
    transform: translate(-50%,50%);
  }
  #application-flow div[class^="column-"] {
    align-items: center;
  }
  #application-flow .card .features {
    margin: 12px 0 5px;
  }
}

@media screen and (max-width: 767px) {
  #application-flow .card.square:not(:first-of-type):after{
    content: "";
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid var(--red);
    top: -11%;
    left: calc(50% - 4px);
  }
  .card.square .step{
    width: 30vw;
    padding: 0.1em 0.3em;
    font-size: 6.5vw;
  }
  #application-flow .card .features {
    margin: 6px 0 5px;
  }
}
/*-------------------------------------------
　PRICE 料金プラン
-------------------------------------------*/
#price .card{
  filter: none;
}
@media screen and (max-width: 1280px) {
  #price .column-three {
    gap: 50px;
  }
  #price .card{
    width: 70%;
    margin: auto;
  }
}
/*-------------------------------------------
　CVセクション
-------------------------------------------*/
#cv{
  margin: 90px 0 135px;
}
.cv-image{
  position: relative;
  max-width: 1220px;
  margin: auto;
}
.cv-left,
.cv-right{
  position: absolute;
  width: 30%;
  height: auto;
  z-index: 1;
}
.cv-left{
  left: 0;
  width: 32%;
}
.cv-right{
  top: 40px;
  right: 0;
}
#cv .section-inner{
  padding: 140px 0 110px;
}
#cv p{
  padding-bottom: 1em;
  color: var(--white);
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  text-align: center;
}
@media screen and (min-width: 1418px) {
  .cv-left{
    transform: translateX(-25%);
  }
  .cv-right{
    transform: translateX(25%);
  }
}
@media screen and (max-width: 1280px) {
  .cv-left{
    max-width: 210px;
  }
  .cv-right{
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  #cv {
    margin: 40px 0 60px;
  }
  #cv .section-inner{
    padding: 140px 0 60px;
  }
  .cv-image{
    padding: 0 5%;
  }
  .cv-left{
    width: 38%;
    top: 0;
    transform: translateY(-30%);
  }
  .cv-right{
    width: 40%;
    top: 0;
    right: 2%;
    transform: translateY(-30%);
  }
  #cv p{
    padding-bottom: 1.5em;
    font-size: 1.6rem;
  }
}
/*-------------------------------------------
　CASE STUDY 導入事例
-------------------------------------------*/
.case{
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  line-height: 1.5;
}
.case-top img {
  margin-bottom: 15px;
}
.read{
  font-size: 1.4rem;
}
.slider{
  margin-top: 90px;
}
.slider__inner{
  display: flex !important;
  justify-content: space-between;
}
.slider__inner .case{
  width: calc(50% - 30px);
  gap: 20px;
}
.slider__inner .case img{
  margin: 20px 0;
}


/*スライドショー*/
.slick-dots {
  bottom: -36px;
}
.slick-dots li button:before {
  font-size: 11px;
}
.arrow_box {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: -5px 0 6px;
  position: relative;
}
.prev-arrow,
.next-arrow {
  display: block;
  transition: all .3s ease;
  cursor: pointer;
  position:relative;
}
.prev-arrow {
  transform: rotate(180deg);
}
.prev-arrow:first-of-type::before,
.next-arrow:last-of-type:before{
  position:absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #505050;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
}
.prev-arrow:first-of-type::before,
.next-arrow:last-of-type::before{
  transform: translateX(-400%);
  -webkit-transform: translateX(-400%);
}
@media screen and (max-width: 767px) {
  .slider{
    margin-top: 60px;
  }
  .case{
    width: calc(100% - 10px);
    margin: auto;
  }
  .slider__inner{
    flex-direction: column;
    gap: 50px;
  }
  .slider__inner .case{
    width: calc(100% - 10px);
    gap: 10px;
    margin: auto;
  }
  .slider__inner .case img{
    margin: 10px 0 0;
  }
  .arrow_box{
    justify-content: space-around;
  }
  .prev-arrow:first-of-type::before,
  .next-arrow:last-of-type::before{
    border-width: 8px 0 8px 8px;
  }
}
/*-------------------------------------------
　FAQ よくあるご質問
-------------------------------------------*/
.faq-block {
  margin: 20px 0 0;
  padding: 2em 1em;
  border-radius: var(--radius-large);
  background-color: var(--white);
  filter: var(--drop-shadow);
  transform: rotateZ(0);
}
.faq-block h3 {
  position: relative;
  margin: 0;
  padding: 10px 40px 10px 75px;
  font-size: 2rem;
  line-height: 1.4;
  cursor: pointer
}
.faq-block h3::before,
.faq-block p::before {
  content: "Q.";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 20px;
  font-weight: bold;
  font-size: 3.5rem;
  color: var(--red);
}
.faq-block p::before {
  content: "A.";
  color: var(--blue);
  transform: translateY(-50%);
}
.faq-block h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 13px;
  height: 13px;
  border-top: 13px solid var(--red);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  transform: translateY(-50%);
}
.faq-block h3.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-block .faq-answer-content {
  display: none;
}
.faq-block p {
  background: 0 0;
  padding: 0 20px 0 7rem;
  font-size: 1.5rem;
  position: relative;
  word-break: break-all;
  margin-top: 15px;
}
@media screen and (max-width:767px) {
  .faq-block{
    padding: 1.5em 1em;
    margin: 15px 0 0;
  }
  .faq-block h3 {
    padding: 0em 1em 0 2em;
    font-size: 1.4rem;
  }
  .faq-block h3::before,
  .faq-block p::before {
    left: 2px;
    font-size: 1.8rem;
    top: 50%;
    transform: translate(0, -50%);
  }
  .faq-block p {
    font-size: 1.3rem;
    padding: 7px 1em 0 2em;
  }
  .faq-block h3::after {
    right: 3px;
    width: 9px;
    height: 9px;
    border-top: 9px solid var(--red);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
  }
}
/*-------------------------------------------
　CONTACT 問い合わせ
-------------------------------------------*/
.p-inquiry__inner{
  font-size: 1.7rem;
}
.p-inquiry__form {
  position: relative;
}
.p-form__list{
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.p-form__check-text a {
  text-decoration: underline;
}
.p-form__check-text {
  margin-bottom: 35px;
}

/* 問い合わせフォーム　中身*/
.form-box {
  margin: 15px auto 30px;
}

/*エラーメッセージ*/
p[class^="is-error-"]{
  margin-top: 0.5em;
  margin-left: 1em;
  font-size: 1.4rem;
  font-weight: bold;
  color: #B90404;
}
p[class^="is-error-"]:empty{
  margin: 0;
}

/*必須マーク*/
.required-mark {
  margin-left: 0.5em;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  border-radius: 100vh;
  color: var(--white);
  background-color: var(--red);
}

/*input項目*/
.p-form__radio,
.p-form__input {
  width: 100%;
}
.p-form__input-text,
.p-form__textarea{
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-large);
  background-color: var(--white);
  filter: var(--drop-shadow);
  transform: rotateZ(0);
}
.p-form__textarea {
  width: 100% !important;
  height: 200px;
}
.p-form__textarea::-moz-placeholder, .p-form__input-text::-moz-placeholder {
  color: rgba(28, 30, 44, 0.15);
}

/*チェックボックス*/
.p-form__radio {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
input[type=radio]{
  display: none;
}
.p-form__radio input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
}
.p-form__radio input[type=radio] + span::before,
.p-form__radio input[type=radio]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  border-radius: 50%;
}
.p-form__radio input[type=radio] + span::before{
  filter: var(--drop-shadow);
  transform: translateY(-50%) rotateZ(0);
  background: var(--white);
}
.p-form__radio input[type=radio]:checked + span::after {
  left: -5px;
  width: 18px;
  height: 18px;
  background: var(--red);
  transform: translate(50%, -50%);
}

/*項目*/
.p-form__labels {
  display: flex;
  align-items: center;
}
.p-form__label {
  width: 29%;
  font-weight: bold;
}
.p-form__label {
  padding: 10px 0;
  letter-spacing: 0.05em;
}

/*送信ボタン*/
.p-form__button {
  margin: 50px auto 0;
  text-align: center;
  width: 260px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0086A0;
  border-radius: 100px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding: 0;
}
.p-form__button p {
  line-height: 1;
}
.p-form__button input {
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s ease;
  color: var(--white);
}
.p-form__button:hover input {
  color: var(--blue);
}
.p-form__input__flex {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.p-form__input__flex > div > p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.p-form__input__flex input {
  width: 95%;
}

@media screen and (max-width:1280px) {
  .form-box{
    margin: 15px auto 45px;
  }
  .p-inquiry__inner{
    font-size: 1.3rem;
  }
  .p-form__list{
    gap: 0px;
  }
  /*必須マーク*/
  .required-mark {
    padding: 0.25em 1em;
  }
  .p-form__input-text,
  .p-form__textarea{
    padding: 1.25em;
    font-size: 1.3rem;
  }
  .p-form__textarea {
    height: 20vh;
  }

  /*ラジオボタン*/
  .p-form__radio {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 35px 10px;
    margin: 15px 0 0;
  }
  .p-form__radio > label{
    width: calc(50% - 15px);
  }
  .p-form__radio input[type=radio] + span {
    padding-left: 32px;
  }
  span.wpcf7-form-control.wpcf7-radio{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
  }
  .wpcf7-list-item{
    margin: 0 !important;
    width: calc(50% - 8px);
  }
  /*項目*/
  .p-form__labels {
    flex-direction: column;
  }
  .p-form__label {
    width: 100%;
    padding: 10px 0;
    letter-spacing: 0.05em;
  }
  .p-form__radio input[type=radio] + span::before{
    width: 23px;
    height: 23px;
  }
  .p-form__radio input[type=radio]:checked + span::after{
    left: -3px;
    width: 14px;
    height: 14px;
  }
  .p-form__input__flex input {
    width: 100%;
  }
  .p-form__input__flex > div {
    width: 49%;
  }
  .wpcf7-form-control-wrap {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-form__input__flex {
    display: block;
  }
  .p-form__input__flex span:last-child {
    display: block;
  }
  .p-form__input__flex input {
    width: 100%;
  }
  .p-form__input__flex > div {
    width: 100%;
  }
  .p-form__input__flex > div:last-child {
    margin-top: 15px;
  }
}

/* サンクスページ専用CSS start */
.thanks-main {
  margin-top: 85px;
  padding-top: 80px;
}
#complete {
  display: none;
}
.thanks-page main {
  min-height: calc(100vh - 122.23px);
  position: relative;
  padding-bottom: 80px;
  box-sizing: border-box;
}
.thanks-page footer {
  position: relative;
}
.thanks-page .p-flow__inner.section-inner {
  padding: 70px 0 0;
}
.thanks-page .p-form__button {
  margin-top: 75px;
}
.breadcrumb-area {
  margin-top: 85px;
  padding: 30px 0;
}
.p-bg-thanks {
  position: relative;
}
.p-detail {
  font-size: 16px;
  width: 100%;
  margin: 65px auto 0;
}
.p-form__button-img {
  margin: 65px auto 0;
  text-align: center;
  width: 260px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0086A0;
  border-radius: 100px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}
.p-form__button-img::after {
  content: "";
  border-left: 10px solid #FFF;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) translateX(-50%);
}
#thanks .p-detail {
  width: fit-content;
  font-size: 1.7rem;
}
.p-form__label-text {
  display: flex;
  align-items: center;
  line-height: 1;
}
.p-form__button-img a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* サンクスページ専用CSS end */

@media (min-width: 768px) and (max-width: 1280px) {
  /* サンクスページ専用CSS start */
  .thanks-page main {
    min-height: calc(100vh - 146px);
  }
  .thanks-page .p-flow__inner.section-inner {
    padding: 55px 0 0;
  }
  .thanks-page .p-detail-title span {
    font-size: 1.2em;
  }
  .thanks-page .graph-text > div:nth-of-type(1) {
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
  }
  .thanks-page .phone-number {
    margin: 0 15px 0 10px;
    font-weight: bold;
    font-size: 15px;
  }
  .thanks-page .phone-name {
    font-size: 13px;
  }
  .thanks-page .phone-icon {
    width: 14px;
  }
  .thanks-page .p-form__button-img a {
    font-size: 17px;
  }
  .thanks-page .p-form__button {
    margin-top: 55px;
  }
  .products__subtitle {
    font-size: 6vw;
  }
  .thanks-main .products__subtitle {
    font-size: 6vw;
  }
  /* サンクスページ専用CSS end */
}
/*-------------------------------------------
　THANKS 問い合わせ完了
-------------------------------------------*/

@media screen and (min-width: 768px) {
  .slick-slider.sp {
    display: none;
  }
  /* サンクスページ専用CSS start */
  .thanks-page .phone-box.sp {
    display: none;
  }
  /* サンクスページ専用CSS end */
}

@media screen and (max-width: 767px) {
  .thanks-main .products__subtitle {
    font-size: 6vw;
  }
  .thanks-main .section-inner {
    padding: 90px 5% 70px;
  }
  .thanks-main {
    margin-top: 75px;
    padding-top: 50px;
  }
  .p-detail {
    margin: 0 auto;
  }
  .p-form__button-img {
    margin: 40px auto 0;
  }
  .p-form__label-text {
    margin-top: 10px;
  }
}


/*-------------------------------------------
　フッター前　CVエリア
-------------------------------------------*/
.footer__cv__cover{
  position: relative;
  background-color: var(--pail-blue);
}
.footer__link{
  display: flex;
  flex-direction: column;
  position: absolute;
  min-width: 350px;
  top: 55%;
  right: 5%;
  transform: translate(0%, -50%);
}
.footer__link .c-cv-btn__item{
  width: 250px;
}
.footer__cv__cover .c-cv-btn{
  margin-bottom: 20px;
  flex-direction: column;
}
.footer__link .links {
  font-size: 1.5rem;
  justify-content: space-evenly;
  display: inline-flex;
  text-align: center;
  width: 100%;
}
.footer__link .links a{
  text-align: center;
  text-decoration: underline;
}
.footer__link .links span {
  border-right: 1px solid var(--black);
}
.footer__cv__cover img{
  margin-bottom: -3px;
}
.footer__copyright{
  margin-top: 60px;
  text-align: right;
  font-size: 1.2rem;
}
@media screen and (max-width: 1280px) {
  .footer__link{
    min-width: 250px;
    justify-content: flex-start;
    align-items: center;
    top: 0;
    right: 0;
    transform: translate(0%, 15%);
  }
  .footer__link .links{
    font-size: 1.2rem;
  }
  .footer__copyright{
    margin-top: 10px;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .footer__link {
    margin-right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__link {
    margin-right: 20px;
    min-width: 220px;
  }
  .footer__link .c-cv-btn__item {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .footer__link{
    position: relative;
    align-items: center;
    top: 0;
    right: 0;
    transform: none;
  }
  .footer__cv__cover{
    display: flex;
    gap: 50px;
    flex-direction: column;
    padding: 40px 5%;
    background: url(https://re-cone.jp/wp-content/uploads/2025/11/contact-sp-bg.png) no-repeat top / cover;
  }
  .footer__cv__cover .c-cv-btn{
    position: static;
    flex-direction: column;
    transform: none;
  }
  .footer__link .links{
    justify-content: center;
    gap: 10px;
  }
  .footer__copyright{
    margin-top: 30px;
    text-align: center;
  }
}