@charset "UTF-8";
/* 買取ができるまで
-------------------------------- */
.cv__main {
    display: flex;
    flex-direction: column; /* 初期状態は縦並び */
    align-items: center; /* 中央寄せ */
    text-align: center;
    gap: 10px; /* ボタンと電話番号の間隔 */
}

.cv__main-tel img {
    width: 100%; /* 幅いっぱいに */
    max-width: 500px; /* PC時の適正サイズ（必要に応じて変更） */
    height: auto; /* 縦横比を保持 */
}


@media screen and (min-width: 768px) {
    .cv__main {
        flex-direction: row; /* PCでは横並び */
        justify-content: center; /* 中央揃え */
    }

    .cv__main-tel,
    .cv__main-btns {
        flex: 1; /* 均等に配置 */
        max-width: 50%; /* 幅を半分にする */
    }

    .cv__main-tel {
        text-align: right; /* 電話番号を右寄せ */
    }

    .cv__main-btns {
        text-align: left; /* ボタンを左寄せ */
    }
}






.phone-btn {
    display: inline-block;
    background: linear-gradient(180deg, #2F9A33, #217a28); /* 緑のグラデーション */
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px; /* 角丸 */
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3); /* 立体感 */
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.phone-btn:hover {
    background: linear-gradient(180deg, #259c2c, #1b6e1f);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

.phone-btn:active {
    transform: translateY(3px);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.fixed-footer {
    position: fixed;
    bottom: 15px; /* 画面の最下部に配置 */
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* 画面幅に適用 */
    max-width: 400px; /* 最大幅を設定 */
    background: linear-gradient(180deg, #ff5733, #d83415); /* グラデーション */
    text-align: center;
    padding: 12px 0;
    border-radius: 50px; /* 角丸 */
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3); /* 立体感を出す影 */
    z-index: 1000;
    transition: all 0.2s ease-in-out;
}

.footer-btn {
    display: block;
    font-size: 23px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* 文字に影 */
    border-radius: 50px;
}

/* 押したときの立体感 */
.fixed-footer:active {
    transform: translateX(-50%) translateY(3px);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
    .fixed-footer {
        display: none; /* PCでは非表示 */
    }
}



.c-head01__en--text {
  font-size: 1rem;
  color: #2F9A33;
  text-transform: uppercase;
}

.l-header-info__logo img {
    width: 80px; /* 変更したいサイズに調整 */
    height: auto; /* 縦横比を保持 */
}

.js-c-toggle-content {
    display: none;
}
.js-c-toggle-trigger.is-active {
    font-weight: bold;
}


.purchase {
  background-color: #EAF2EA;
  padding: 16px 0 50px;
}

.purchase__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 23px;
}

.purchase__item {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 1.2rem 0;
}

.purchase__item:first-child:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.4rem 5.8rem 0 0;
  border-color: #2F9A33 transparent transparent transparent;
}

.purchase__item:first-child:after {
  position: absolute;
  display: grid;
  place-items: center;
  content: "強化中";
  font-size: 1rem;
  color: #fff;
  transform: rotate(-30deg);
  width: 5.8rem;
  height: 3.4rem;
  top: -0.5rem;
  left: -1rem;
}

.purchase__img {
  max-height: 9rem;
  margin: 0 auto;
  text-align: center;
}

.purchase__img img {
  display: inline-block;
  max-height: inherit;
  width: auto;
}

.purchase__title {
  font-size: 1.1rem;
  text-align: center;
}

.purchase__text {
  font-size: 1rem;
  text-align: center;
  margin-top: 11px;
}

@media screen and (min-width: 768px) {
  .c-head01__en--text {
    font-size: 1.7rem;
  }
  .purchase {
    padding: 6.4rem 0 12.8rem;
  }
  .purchase__items {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
    gap: 2.6rem 1.7rem;
  }
  .purchase__item {
    padding: 1.7rem 0;
  }
  .purchase__item:first-child::before {
    border-width: 5.4rem 9.2rem 0 0;
  }
  .purchase__item:first-child::after {
    font-size: 1.8rem;
    top: 0.5rem;
    left: 0rem;
  }
  .purchase__img {
    max-height: 14rem;
  }
  .purchase__title {
    font-size: 2rem;
    margin-top: 5px;
  }
  .purchase__text {
    font-size: 2rem;
    margin-top: 28px;
  }
}
/* 買取ができるまで
-------------------------------- */
.works {
  background-color: #FCFBF9;
  padding: 50px 0 50px;
}

.works__inner {
  max-width: 1040px;
}

.works__items {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.works__item {
  background-color: white;
  padding-bottom: 10px;
}

.works__item-title {
  font-size: 2rem;
  line-height: 1.48;
  letter-spacing: 0.032em;
  background-color: #E9F5E1;
  padding: 0 3rem;
  border-bottom: 1px solid #ccc;
}

.works__item-img {
  margin: 20px auto 0;
}

.works__table {
  display: grid;
  gap: 13px;
}

.works__table dl {
  display: flex;
  border-bottom: 1px solid #2F9A33;
}

.works__table dt {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33%;
  text-align: center;
  color: white;
  background-color: #2F9A33;
  padding: 1.5px 0;
  line-height: 1;
}

.works__table dd {
  font-size: 15px;
  color: #2F9A33;
  padding-left: 10.48%;
  line-height: 1;
}

.works__table dl:first-child dd {
  font-size: 30px;
}

.works__table dl:first-child dd span {
  font-size: 20px;
}

.works__text {
  font-size: 16px;
  line-height: 1.625;
  padding: 0 10px;
  margin-top: 20px;
}

.works__text span {
  font-size: 14px;
  letter-spacing: 0.032em;
  display: block;
  text-align: right;
  margin-top: 9px;
}

.is-sp {
  display: none;
}

.is-pc {
  display: none;
}

.works__wrap {
  display: grid;
  gap: 15px;
}
.works__wrap .works__item {
  margin-top: 15px;
}
.works__wrap .works__item-img {
  width: 100%;
  margin-top: 20px;
}
.works__wrap .works__content {
  width: 100%;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
  .works {
    padding: 12.8rem 0 7rem;
  }
  .works__item {
    background-color: white;
    padding-bottom: 10px;
  }
  .works__item-title {
    font-size: 2.5rem;
    border-bottom: 1px solid #ccc;
  }
  .works__item-img {
    width: 51.65%;
    margin-top: 0;
  }
  .works__content {
    margin-left: 3.3%;
    width: 45.05%;
  }
  .works__table {
    display: grid;
    gap: 13px;
  }
  .works__table dl {
    display: flex;
    border-bottom: 1px solid #2F9A33;
  }
  .works__table dt {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33%;
    text-align: center;
    color: white;
    background-color: #2F9A33;
    padding: 1.5px 0;
    line-height: 1;
  }
  .works__table dd {
    font-size: 15px;
    color: #2F9A33;
    padding-left: 10.48%;
    line-height: 1;
  }
  .works__table dl:first-child dd {
    font-size: 30px;
  }
  .works__table dl:first-child dd span {
    font-size: 20px;
  }
  .works__text {
    font-size: 16px;
    line-height: 1.625;
    margin-top: 20px;
  }
  .works__text span {
    font-size: 14px;
    letter-spacing: 0.032em;
    display: block;
    text-align: right;
    margin-top: 9px;
  }
  .works__top {
    max-width: 910px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-top: 11px;
  }
  .works__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .works__wrap .works__item {
    margin-top: 20px;
  }
  .works__wrap .works__item-img {
    width: calc(100% - 60px);
    padding: 0 30px;
    margin: 20px;
  }
  .works__wrap .works__content {
    width: calc(100% - 60px);
    padding: 0 30px;
    margin-top: 20px;
  }
}
/* ビフォーアフター
-------------------------------- */
.beforeAfter {
  position: relative;
  background: url(../img/bf_bg.png) center center/cover no-repeat;
  padding-top: 107px;
  padding-bottom: 100px;
}

.beforeAfter::before {
  position: absolute;
  content: "";
  width: 309px;
  height: 102px;
  background: url(../img/bf_triangle.png) center center/contain no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.beforeAfter__inner.u-inner {
  max-width: 1040px;
}

.beforeAfter__head {
  font-size: 57px;
  font-weight: 400;
  text-align: center;
  color: white;
  background-color: #2F9A33;
  border-radius: 16px;
}

.beforeAfter__bigText {
  font-size: 55px;
  text-align: center;
  line-height: 1.4727272727;
  margin-top: 45px;
}

.beforeAfter__bigText span {
  background: linear-gradient(transparent 68%, #FFF800 68%);
}

.beforeAfter__img {
  max-width: 1152px;
  margin: 0 auto;
  margin-top: 87px;
}

@media screen and (max-width: 767px) {
  .beforeAfter {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .beforeAfter__head {
    font-size: 24px;
    border-radius: 8px;
  }
  .beforeAfter__bigText {
    font-size: 20px;
    margin-top: 20px;
  }
  .beforeAfter__img {
    margin-top: 40px;
  }
}
/* 安さの秘密
-------------------------------- */
.secret {
  background: url(../img/secret_bg.jpg) center center/1280px repeat;
  padding-top: 100px;
  padding-bottom: 15px;
}

.secret__inner.u-inner {
  max-width: 1040px;
  padding: 0 20px;
}

.secret__title {
  z-index: 2;
  position: relative;
  background: white;
  border-radius: 89px;
  padding-top: 12px;
  padding-bottom: 76px;
  padding-left: 11.71875vw;
  box-shadow: 0.5px 20px 0px #FFDA2B;
}

.secret__title::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 80px;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/secret_triangle.png) center center/contain no-repeat;
}

.secret__title-main {
  font-size: 86px;
  line-height: 1;
}

.secret__title-main small {
  font-size: 46px;
  line-height: 126px;
}

.secret__title-main span {
  background: linear-gradient(transparent 68%, #FFF800 68%);
}

.secret__title-img {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
}

.secret__items {
  margin-top: 100px;
}

.secret__item {
  position: relative;
}

.secret__item-img {
  display: block;
  width: 45%;
  max-width: 533px;
}

.secret__item-img img {
  display: inline-block;
  width: 100%;
}

.secret__item-content {
  position: absolute;
  max-width: 588px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: white;
  padding: 32px 40px 55px;
  border-radius: 50px;
  box-shadow: 0.5px 20px 0px #FFDA2B;
}

.secret__item-title {
  color: #2F9A33;
  font-size: 46px;
  text-align: center;
  border-bottom: 5px solid #2F9A33;
}

.secret__item-text {
  font-size: 25px;
  line-height: 1.48;
  margin-top: 30px;
}

.secret__item:nth-child(2) .secret__item-img {
  margin-left: auto;
}

.secret__item:nth-child(2) .secret__item-content {
  right: initial;
  left: 0;
}

@media screen and (max-width: 767px) {
  .secret {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .secret__title {
    padding: 20px 20px 20px;
    border-radius: 40px;
    box-shadow: 0px 10px 0px #FFDA2B;
  }
  .secret__title::before {
    width: 55px;
    height: 40px;
    bottom: -40px;
  }
  .secret__title-main {
    text-align: left;
    line-height: 1.5;
    font-size: 24px;
    transform: translateY(-5px);
  }
  .secret__title-main small {
    line-height: 1.5;
    font-size: 16px;
  }
  .secret__items {
    display: grid;
    gap: 24px;
    margin-top: 50px;
  }
  .secret__item {
    display: flex;
    flex-direction: column-reverse;
  }
  .secret__item-img {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 540px;
    margin-top: 24px;
  }
  .secret__item-content {
    position: relative;
    border-radius: 20px;
    padding: 20px 10px;
    top: initial;
    right: initial;
    transform: translateY(0);
    box-shadow: 0px 10px 0px #FFDA2B;
  }
  .secret__item-title {
    font-size: 24px;
    border-width: 3px;
  }
  .secret__item-text {
    margin-top: 10px;
    font-size: 16px;
  }
  .secret__item:nth-child(2) .secret__item-img {
    margin-left: initial;
  }
}
/* トラブル事例
-------------------------------- */
.case {
  padding-top: 38px;
}

.case__inner {
  margin: 0 auto;
}

.case__title {
  position: relative;
  max-width: 1014px;
  margin: 0 auto;
  border-bottom: 17px solid #2f9133;
}

.case__title-head {
  text-align: center;
  font-size: 57px;
  color: white;
  background-color: #2F9A33;
  border-radius: 16px;
  max-width: 582px;
  margin: 0 auto;
}

.case__title-title-main {
  text-align: center;
  font-size: 86px;
  line-height: 1;
  margin-top: 28px;
  line-height: 126px;
}

.case__title-title-main span {
  font-size: 46px;
  display: block;
  text-align: center;
  line-height: 68px;
}

.case__title-img {
  position: absolute;
  display: block;
  width: 29.93vw;
  left: -6.5vw;
  bottom: 10px;
  z-index: 1;
}

.case__main {
  background-color: #EAF2EA;
  padding: 122px 20px 105px;
  margin-top: 75px;
}

.case__items {
  max-width: 1170px;
  display: grid;
  gap: 11px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}

.case__item {
  position: relative;
  background-color: white;
  border-radius: 41px;
  padding: 100px 20px 56px;
}

.case__item:nth-child(1) {
  padding-top: 131px;
  border: 5px solid #2F9A33;
}

.case__item:nth-child(2) {
  border: 5px solid #FFCB3B;
}

.case__item:nth-child(3) {
  border: 5px solid #FF9855;
}

.case__item-number {
  position: absolute;
  width: 168px;
  left: 50%;
  top: -78px;
  transform: translateX(-50%);
}

.case__item-img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.case__item:nth-child(1) .case__item-img {
  max-width: 303px;
}

.case__item:nth-child(2) .case__item-img {
  max-width: 270px;
}

.case__item:nth-child(3) .case__item-img {
  max-width: 258px;
}

.case__item-text {
  text-align: center;
  font-size: min(2.34375vw, 30px);
  line-height: 1.5;
}

.case__item:nth-child(1) .case__item-text {
  margin-top: 74px;
}

.case__item:nth-child(2) .case__item-text {
  margin-top: 15px;
}

.case__item:nth-child(3) .case__item-text {
  margin-top: 44px;
}

.case__text {
  font-size: min(1.953125vw, 25px);
  line-height: 1.48;
  text-align: center;
  margin-top: 68px;
}

.case__text span {
  background: linear-gradient(transparent 68%, #FFF800 68%);
}

@media screen and (max-width: 767px) {
  .case__title {
    padding-bottom: 20px;
    border-width: 8px;
  }
  .case__title-head {
    width: fit-content;
    font-size: 20px;
    padding: 0 20px;
    border-radius: 8px;
  }
  .case__title-title-main {
    font-size: 40px;
    line-height: 1;
    margin-top: 14px;
  }
  .case__title-title-main span {
    font-size: 24px;
  }
  .case__main {
    padding-top: 80px;
    padding-bottom: 33px;
    margin-top: 40px;
  }
  .case__items {
    padding: 0 10px;
    gap: 60px;
    grid-template-columns: repeat(1, 1fr);
  }
  .case__item:nth-child(1) {
    padding-top: 86px;
  }
  .case__item:nth-child(2) {
    padding-top: 60px;
  }
  .case__item:nth-child(3) {
    padding-top: 73px;
  }
  .case__item-number {
    width: 100px;
    top: -50px;
  }
  .case__item-text {
    font-size: 24px;
  }
  .case__item:nth-child(1) .case__item-text {
    margin-top: 40px;
  }
  .case__text {
    padding: 0 10px;
    font-size: 16px;
    margin-top: 34px;
  }
}
/* CV
-------------------------------- */
.cv {
  position: relative;
  padding-top: 84px;
  padding-bottom: 24px;
  background: url(../img/cv_bg.jpg) center center/cover no-repeat;
}

.cv__inner.u-inner {
  max-width: 1040px;
}

.cv__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -23px;
  max-width: 667px;
}

.cv__lists {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cv__list {
  background-color: white;
  text-align: center;
  font-size: 25px;
  line-height: 1.5;
  padding: 24px 28px;
  border-radius: 76px;
}

.cv__list span {
  color: #FD0000;
}

.cv__main {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 24px 0 24px 31px;
  margin-top: 22px;
}

.cv__main-tel {
  max-width: 376px;
  width: 100%;
}

.cv__main-btns {
  display: grid;
  gap: 10px;
  margin-left: 36px;
}

.cv__main-btn {
  max-width: 495px;
}

.cv__main-btn a {
  display: block;
}

@media screen and (max-width: 767px) {
  .cv__title {
    width: 95%;
  }
  .cv__lists {
    display: grid;
    gap: 10px;
    justify-content: initial;
    text-align: center;
  }
  .cv__list {
    font-size: 20px;
    padding: 16px 10px;
  }
  .cv__main {
    display: flex;
    flex-direction: column;
    padding: 0 15px 15px;
  }
  .cv__main-btns {
    margin-left: 0;
  }
}/*# sourceMappingURL=styles.css.map */