@charset "UTF-8";
/*
コンポーネントごとに崩れないように個別のブレイクポイントを持たせています
*/

/* ==========================================================================
kv
========================================================================== */
.kv {
  padding-top: 100px;
  background: linear-gradient(296deg,rgba(255, 95, 42, 1) 0%, rgba(252, 153, 81, 1) 100%);
}
.kv__inner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  column-gap: 52px;
  grid-template-areas:
  "title kv"
  "subtitle kv"
  "button kv";
  align-items: stretch;
  padding: 63px 0 80px 8.56515%;
}
.kv__title {
  grid-area: title;
}
.kv__text {
  margin-top: 33px;
  grid-area: subtitle;
  color: #fff;
  line-height: 1.8;
  word-break: break-all;
}
.kv__image {
  grid-area: kv;
}
.kv__image-inner {
  position: relative;
  margin-right: -135px;
}
.kv__image-terasuke {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 153px;
}
.kv__button-wrapper {
  grid-area: button;
  margin-top: 41px;
}
.kv__button {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 20px 45px;
  color: #222;
  background: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 46px;
}
.kv__button-text span {
  color: #FF7243;
}
.kv__button-arrow {
  height: 25px;
  transition: transform .3s ease;
}
.kv__button:hover .kv__button-arrow {
  transform: translateX(20px);
}

@media only screen and (max-width: 980px) {
  .kv {
    padding-top: 64px;
    background: linear-gradient(to bottom, #ff5f2a 0%, #fc9951 100%);
  }
  .kv__inner {
    padding: 52px 5% 64px;
    grid-template-columns: 380px 1fr;
    column-gap: 20px;
  }
  .kv__title-image {
    width: 100%;
  }
  .kv__text {
    font-size: 14px;
    word-break: break-all;
  }
  .kv__button {
    gap: 14px;
    padding: 20px 36px;
    font-size: 16px;
  }
  .kv__image-terasuke {
    max-width: 129px;
  }
}

@media only screen and (max-width: 768px) {
  .kv__title {
    padding: 0 2%;
  }
  .kv__inner {
    grid-template-areas:
    "title"
    "subtitle"
    "kv"
    "button";
    grid-template-columns: 1fr;
    gap: 0;
    margin-right: 0;
  }
  .kv__title-image {
    max-width: 400px;
  }
  .kv__text {
    margin-top: 30px;
    padding: 0 2%;
  }
  .kv__image {
    margin: 31px -160px 0 67px;
  }
  .kv__image-inner {
    margin-right: 0;
  }
  .kv__image-terasuke {
    left: -40px;
  }
  .kv__button-wrapper {
    text-align: center;
  }
  .kv__button {
    gap: 38px;
  }
}

/* ==========================================================================
クライアント
========================================================================== */
.client__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 42px 2%;
  column-gap: 28px;
}
.client__title {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.client__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 980px) {
  .client__inner {
    gap: 25px;
    padding: 35px 5%;
  }
  .client__title {
    font-size: 16px;
  }
  .client__count-image {
    margin: 0;
  }
  .client__images {
    gap: 5px;
  }
}
/* ==========================================================================
吹き出し
========================================================================== */
.problem__inner {
  padding: 70px 0;
  background: linear-gradient(to bottom,#555 0%, #222 100%);
}
.problem__title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
.problem__title span {
  color: #FF7243;
}
.problem__list {
  max-width: 960px;
  margin: 35px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.problem__item {
  position: relative;
  flex: 1;
  padding: 32px 0;
  background: #fff;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
}
.problem__item:after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 24.292px;
  height: 15.566px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24.292" height="15.566"><defs><clipPath id="a"><path fill="%23fff" d="M0 0h24.292v15.566H0z" data-name="長方形 1576"/></clipPath></defs><g data-name="グループ 842"><g clip-path="url(%23a)" data-name="グループ 841"><path fill="%23fff" d="M24.292 0a2.082 2.082 0 0 0-1.775.849l-8.6 13.869a2.28 2.28 0 0 1-3.55 0L1.775.849A2.08 2.08 0 0 0 0 0Z" data-name="パス 1125"/></g></g></svg>');
}
.problem__item-title {
  font-size: 24px;
  font-weight: 500;
}
.problem__item-title span {
  color: #FF7243;
  font-weight: 600;
}
span.problem__item-title-sub {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #222;
}
.problem__item-text:not(:first-child) {
  margin-top: 3px;
}
@media only screen and (max-width: 980px) { 
  .problem__inner {
    padding: 45px 5%;
  }
  .problem__title {
    font-size: 20px;
  }
  .problem__list {
    padding: 0 2%;
    flex-direction: column;
  }
  .problem__item {
    width: 100%;
    padding: 15px 0;
  }
  .problem__item-title {
    font-size: 20px;
  }
  span.problem__item-title-sub {
    display: inline;
    margin-left: -3px;
  }
  .problem__item-text:not(:first-child) {
    margin-top: 0;
  }
  .problem__item:after {
    left: auto;
    top: calc(50% - 5px);
    right: -20px;
    transform: rotate(270deg) translateY(-50%);
  }
}
/* ==========================================================================
ポイント
========================================================================== */
.point {
  padding: 0 5%;
}
.point__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 0;
}
.point__text {
  margin-top: 26px;
  font-weight: 500;
}
.point__list {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin: 90px 0 0 auto;
}
.point__item {
  display: grid;
  align-items: center;
  column-gap: 60px;
  grid-template-columns: 1fr 440px;
}
.point__item-visual {
  position: relative;
}
.point__item-visual-inner {
  width: 100%;
  border-radius: 10px;
}
.point__item-visual-terasuke {
  position: absolute;
  z-index: 1;
}
.point__item:nth-child(1) .point__item-visual-terasuke {
  bottom: -20px;
  left: 10px;
}
.point__item:nth-child(3) .point__item-visual-terasuke {
  right: 20px;
  bottom: -30px;
}
.point__item-title {
  font-size: 36px;
  font-weight: 600;
}
.point__item-text {
  max-width: 400px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.875;
}
.point__item-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 300px;
  margin-top: 30px;
  padding: 12px 30px;
  border: 1px solid #222;
  border-radius: 50px;
  color: #222;
  font-weight: 500;
  transition: background .3s ease;
}
.point__item-button:hover {
  background: linear-gradient(to right,#ff5f2a 0%, #ff8b43 100%);
  border: 1px solid transparent;
  color: #fff;
}
.point__item-button:after {
  content: "";
  display: block;
  width: 35px;
  height: 25px;
  background-image: url(../img/renew2025/btn_arrow-orange.svg);
  transition: background-image .3s ease, transform .3s ease;
}
.point__item-button:hover:after {
  background-image: url(../img/renew2025/btn_arrow-white-orange.svg);
  transform: translateX(20px);
}

@media only screen and (max-width: 980px) { 
  .point__inner {
    padding: 46px 0;
  }
  .point__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 50px;
    gap: 80px 40px;
  }
  .point__item {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    column-gap: 0;
    align-items: inherit;
  }
  .point__title {
    padding: 0 2%;
  }
  .point__text {
    padding: 0 2%;
  }
  .point__item-title {
    font-size: 26px;
  }
  .point__item-content {
    margin-top: 30px;
    padding: 0 2%;
  }
  .point__item-text {
    max-width: 100%;
    font-size: 14px;
  }
  .point__item-button {
    margin-left: auto;
    font-size: 13px;
  }
  .point__item:nth-child(1) .point__item-visual-terasuke {
    right: 2%;
    top: -70px;
    left: auto;
  }
  .point__item:nth-child(3) .point__item-visual-terasuke {
    bottom: auto;
    top: -40px;
  }
}
/* ==========================================================================
how to
========================================================================== */
.howto {
  background: #F5F5F5;
  padding: 0 5%;
  scroll-margin-top: 100px;
}
.howto__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 70px 0;
  display: flex;
  gap: 75px;
}
.howto__video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  vertical-align: bottom;
}
.howto__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.howto__right {
  flex: 1;
}
.howto__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.howto__title span {
  margin-bottom: 12px;
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.howto__text {
  max-width: 360px;
  margin-top: 32px;
  line-height: 1.8;
}
@media only screen and (max-width: 980px) { 
  .howto__inner {  
    flex-direction: column;
    padding: 54px 0;
    gap: 35px;
  }
  .howto__title {
    font-size: 24px;
  }
  .howto__title span {
    font-size: 16px;
  }
  .howto__left {
    text-align: center;
  }
  .howto__text {
    max-width: 100%;
    padding: 0 2%;
    margin: 24px 0 0;
    text-align: left;
  }
}
/* ==========================================================================
ファンクション
========================================================================== */
.function {
  padding: 0 5%;
}
.function__text {
  margin-top: 21px;
  font-weight: 500;
}
.function__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 94px 0 100px;
}
.function__title {
  position: relative;
}
.function__title:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 309px;
  height: 81px;
  background-image: url(../img/renew2025/top/function_terasuke.gif);
  background-size: 100% 100%;
}
.function__title-image {
  max-width: 329px;
  height: auto;
}
.function__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 100px 92px;
  margin-top: 90px;
}
.function__item {
  display: flex;
  flex-direction: column;
}
.function__item-title {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.02em;
}
.function__item-title span { 
  margin-bottom: 15px;
  display: block;
  color: #FF7243;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.function__item-image {
  margin-top: 35px;
  width: 100%;
}
.function__item-image--shadow {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}
.function__item-text {
  margin: 30px 0 auto;
  line-height: 1.875;
}
.function__note {
  margin-top: 41px;
  font-size: 12px;
  text-align: right;
}
.is-new:after {
  vertical-align: middle;
  content: "NEW";
  display: inline-block;
  margin-top: -5px;
  padding: 6px 10px;
  font-size: 12px;
  color: #FFF;
  background: #FF7243;
  border-radius: 6px;
}
@media only screen and (max-width: 980px) { 
  .function__inner {
    padding: 70px 2%;
  }
  .function__title:after {
    display: none;
  }
  .function__text:after {
    content: "";
    display: block;
    margin: 34px 0 0 auto;
    width: 309px;
    height: 81px;
    background-image: url(../img/renew2025/top/function_terasuke.gif);
    background-size: 100% 100%;

  }
  .function__list {
    margin-top: 24px;
    gap: 65px 40px;
  }
  .function__title-image {
    max-width: 249px;
  }
  .function__item-title {
    text-align: left;
    font-size: 30px;
  }
  .function__item-title span {
    display: block;
    margin-bottom: 12px;
    text-align: left;
    font-size: 16px;
  }
  .function__item-text {
    margin-top: 20px;
    font-size: 14px;
  }
  .function__note {
    margin-top: 30px;
  }
}
/* ==========================================================================
レポート
========================================================================== */
.report {
  background: #F8F8F8;
  padding: 0 5%;
  scroll-margin-top: 100px;
}
.report__inner {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 95px 0 130px;
}
.report__inner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 150px;
  width: 46px;
  height: 74px;
  background-image: url(../img/renew2025/top/report_terasuke.gif);
  background-size: 100% 100%;
}
.report__text {
  margin-top: 26px;
  font-weight: 500;
}
.report__item:first-of-type {
  margin-top: 64px;
}
.report__item:not(:first-of-type) {
  margin-top: 85px;
}
.report__item-title {
  margin-bottom: 34px;
  grid-area: title;
  padding: 34px 54px;
  font-size: 28px;
  color: #fff;
  background: #333;
  border-radius: 10px;
}
.report__item-content {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 575px);
  grid-template-areas:
  "title title"
  "text slider"
  "btn slider";
  grid-template-rows: repeat(2, auto) 1fr;
  justify-content: space-between;
}
.report__item-text-wrapper {
  grid-area: text;
}
.report__item-slider-wrapper {
  grid-area: slider;
  margin-top: -60px;
  padding: 0 30px;
}
.report__item-button-wrapper {
  grid-area: btn;
  display: flex;
  align-items: stretch;
  margin-top: 30px;
}
.report__item-text {
  line-height:1.875;
}
.report .slick-list {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}
.report .slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  cursor: pointer;
}
.report .next-arrow {
  right: -27px;
}
.report .prev-arrow {
  left: -27px;
}
.report .slick-dots li {
  width: 7px;
  height: 7px;
  margin: 0px 8px;
}
.report .slick-dots li button {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  border: 1px solid #333;
}
.report .slick-dots li button:before {
  width: 7px;
  height: 7px;
}
.report li.slick-active button {
  border: 1px solid transparent;
  background: #FF7242;
}
.report__item-button {
  display: flex;
  align-items: center;
  gap: 29px;
  align-self: start;
  padding: 15px 30px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #222;
  border-radius: 33px;
  color: #222;
}
.report__item-button:after {
  content: "";
  display: block;
  width: 35px;
  height: 25px;
  background-image: url(../img/renew2025/btn_arrow-orange.svg);
  transition: background-image .3s ease, transform .3s ease;
}
.report__item-button:hover {
  background: linear-gradient(to right,#ff5f2a 0%, #ff8b43 100%);
  border: 1px solid transparent;
  color: #fff;
}
.report__item-button:hover:after {
  background-image: url(../img/renew2025/btn_arrow-white-orange.svg);
  transform: translateX(20px);
}
.report__detail {
  margin-top: 16px;
}
.report__detail-title {
  font-size: 24px;
  font-weight: bold;
}
.report__detail-columns {
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 71px;
}
.report__detail-subtitle {
  display: flex;
  align-items: center;
  color: #ff7243;
  font-weight: 500;
  white-space: nowrap;
}
.report__detail-subtitle:after {
  content: "";
  width: 100%;
  height: 1px;
  margin-left: 15px;
  background: #707070;
  display: block;
}
.report__detail-items {
  padding: 10px 0;
}
.report__detail-items {
  line-height: 1.875;
}
.report__detail-item:before {
  content: "\30FB";
}
.report__note {
  margin-top: 32px;
  text-align: right;
  font-size: 12px;
}
@media only screen and (max-width: 980px) { 
  .report__inner {
    padding: 60px 2% 90px;
  }
  .report__inner:before {
    right: 46px;
  }
  .report__title-image {
    max-width: 188px;
  }
  .report__text {
    margin-top: 22.5px;
  }
  .report__item:first-of-type {
    margin-top: 50px;
  }
  .report__item:not(:first-of-type) {
    margin-top: 80px;
  }
  .report__item-title {
    margin-bottom: 30px;
    padding: 14px 20px;
    font-size: 20px;
  }
  .report__item-content {
    grid-template-columns: 100%;
    grid-template-rows: 1fr;
    grid-template-areas:
    "title"
    "text"
    "slider"
    "btn";
  }
  .report__item-slider-wrapper {
    margin-top: 40px;
    padding: 0 6%;
  }
  .report__item-text {
    font-size: 14px;
  }
  .report .slide-arrow {
    width: 14px;
  }
  .report .prev-arrow {
    left: -22px;
  }
  .report .next-arrow {
    right: -22px;
  }
  .report .slick-dots {
    bottom: -30px;
  }
  .report__item-button-wrapper {
    margin: 40px auto 0;

  }
  .report__detail {
    margin-top: 70px;
  }
  .report__detail-title {
    font-size: 18px;
  }
  .report__detail-columns {
    margin-top: 20px;
    gap: 0px;
  }
  .report__detail-subtitle {
    font-size: 14px;
  }
  .report__detail-items {
    font-size: 14px;
  }
  .report__note {
    margin-top: 30px;
  }
}
/* ==========================================================================
ボイス
========================================================================== */
.voice {
  background: linear-gradient(163deg,rgba(255, 95, 42, 1) 40%, rgba(252, 153, 81, 1) 100%);
  padding: 0 5%;
}
.voice__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 80px 0;
}
.voice__title {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.voice__list {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}
.voice__item {
  position: relative;
  padding: 40px 34px 55px;
  background: #fff;
  border-radius: 10px;
}
.voice__item:before {
  position: absolute;
  top: -15px;
  left: 20px;
  content: "";
  width: 50px;
  height: 32px;
  display: block;
  background-image: url(../img/renew2025/top/voice_marks.svg);
}
.voice__item:after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 24.292px;
  height: 15.339px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24.292" height="15.339" data-name="グループ 865"><defs><clipPath id="a"><path fill="%23fff" d="M0 0h24.292v15.339H0z" data-name="長方形 1580"/></clipPath></defs><g clip-path="url(%23a)" data-name="グループ 864"><path fill="%23fff" d="M24.292 0a2.092 2.092 0 0 0-1.775.836L13.921 14.5a2.3 2.3 0 0 1-3.55 0L1.775.836A2.091 2.091 0 0 0 0 0Z" data-name="パス 1127"/></g></svg>');
}
.voice__item-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
.voice__item-text {
  max-width: 240px;
  margin: 24px auto 0;
  line-height: 1.875;
}
.voice__item-company {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
}
@media only screen and (max-width: 980px) {
  .voice {
    background: linear-gradient(to top, #ff8b43 0%, #ff5f2a 100%);
  }
  .voice__inner {
    padding: 70px 2%;
  }
  .voice__list {
    gap: 30px;
  }
  .voice__item {
    padding: 30px;
  }
  .voice__item-text {
    max-width: 100%;
  }
  .voice__title {
    font-size: 20px;
  }
  .voice__item-company {
    margin-top: 20px;
  }
  .voice__item-text {
    margin-top: 20px;
    font-size: 14px;
  }
  .voice__item:after { 
    left: auto;
    right: -20px;
    top: 50%;
    transform: rotate(270deg) translateY(-50%);
  }
  .voice__item:before {
    width: 45px;
    height: 28px;
    background-size: 100% 100%;
    background-position: center;
  }
}
/* ==========================================================================
プラン
========================================================================== */
.plan {
  padding: 0 5%;
  scroll-margin-top: 100px;
}
.plan__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 120px 0;
}
.plan__title {
  position: relative;
}
.plan__title:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 94px;
  height: 136px;
  background-image: url(../img/renew2025/top/plan_terasuke.gif);
  background-size: 100% 100%;
}
.plan__text {
  margin-top: 24px;
  font-weight: 500;
}
.plan__table {
  margin-top: 34px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.plan__header {
  min-width: 190px;
  padding: 10px;
  background: #333;
  color: #fff;
}
.plan__header-cell--price {
  display: grid;
  place-items: center;
  height: 305px;
  text-align: center;
}
.plan__header-cell--price {
  border-bottom: 1px solid #fff;
}
.plan__column {
  padding: 0 20px;
  min-width: 280px;
  background: #F8F8F8;
}
.plan__header-cell--features {
  display: flex;
  border-bottom: 1px solid #fff;
}
.plan__header-title {
  font-size: 14px;
}
.plan__header-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  padding: 10px 7px;
}
.plan__header-item--site {
  height: 142px;
}
.plan__header-item--output,
.plan__header-item--period {
  height: 45px;
}
.plan__header-item--report {
  height: 188px;
}
.plan__header-item--logo,
.plan__header-item--ai {
  height: 68px;
}
.plan__header-item--dashboard {
  height: 142px;
}
.plan__header-item--function {
  height: 50px;
}
.plan__header-group {
  display: flex;
  align-items: center;
  padding: 10px;
  border-right: 1px solid #fff;
}
.plan__header-cell--dashboard {
  display: flex;
}
.plan__header-items {
  flex: 1;
}
.plan__header-item:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.plan__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0 27px;
  height: 315px;
  border-bottom: 1px solid#ACACAC;
}
.plan__name {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.plan__price {
  display: none;
  margin-top: 20px;
  font-size: 42px;
  font-weight: bold;
}
.plan__price.is-active {
  display: block;
}
.plan__price--enterprise {
  margin-top: 15px;
}
.plan__price span {
  margin-left: 4px;
  font-size: 18px;
}
.plan__features {
  margin-top: 10px;
}
.plan__feature-text {
  font-weight: 500;
}
.plan__feature-text:before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  width: 12.044px;
  height: 7.963px;
}
.plan__column--basic .plan__feature-text:before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12.044" height="7.963"><path fill="none" stroke="%2317bebe" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1.414 3.847 3.177 3.116 6.04-5.55"/></svg>');
}
.plan__column--advanced .plan__feature-text:before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12.044" height="7.963"><path fill="none" stroke="%23ffa933" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1.414 3.847 3.177 3.116 6.04-5.55"/></svg>');
}
.plan__column--enterprise .plan__feature-text:before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12.044" height="7.963"><path fill="%23fff" stroke="%23ff7243" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1.414 3.847 3.177 3.116 6.04-5.55"/></svg>');
}
.plan__button-cta {
  display: flex;
  align-items: center;

  margin-top: 26px;
  padding: 15px 21px;
  border-radius: 40px;
  font-weight: bold;
  color: #fff;
}
.plan__button-cta:hover:after {
  transform: translateX(10px);
}
.plan__button-cta span {
  color: #222;
}
.plan__column--basic .plan__button-cta {
  background: linear-gradient(to right,#17bebe 0%, #16dbdb 100%);
}
.plan__column--advanced .plan__button-cta {
  background: linear-gradient(to right, #ffa933 0%, #ffd033 100%);
}
.plan__column--enterprise .plan__button-cta {
  background: linear-gradient(to right,#ff5f2a 0%, #ff8b43 100%);
}
.plan__button-cta:after {
  content: "";
  display: block;
  margin-left: 17px;
  width: 35px;
  height: 25px;
  transition: background-image .3s ease, transform .3s ease;
}
.plan__column--basic .plan__button-cta:after {
  background-image: url(../img/renew2025/btn_arrow-white-blue.svg);
}
.plan__column--advanced .plan__button-cta:after {
  background-image: url(../img/renew2025/btn_arrow-white-yellow.svg);
}
.plan__column--enterprise .plan__button-cta:after {
  background-image: url(../img/renew2025/btn_arrow-white-orange.svg);
}
.plan__cell--site {
  display: grid;
  place-items: center;
  height: 142px;
  border-bottom: 1px solid #ACACAC;
  font-size: 14px;
  text-align: center;
}
.plan__cell--output,
.plan__cell--period {
  display: grid;
  place-items: center;
  height: 45px;
  font-size: 14px;
  border-bottom: 1px solid #ACACAC;
}
.plan__cell--report {
  display: grid;
  place-items: center;
  height: 188px;
  font-size: 14px;
  border-bottom: 1px solid #ACACAC;
}
.plan__cell--logo,
.plan__cell--ai {
  display: grid;
  place-items: center;
  align-items: center;
  height: 68px;
  border-bottom: 1px solid #ACACAC;
}
.plan__cell--dashboard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 142px;
  font-size: 14px;
  border-bottom: 1px solid #ACACAC;
  line-height: 1.64;
}
.plan__cell--function {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 14px;
}
.plan__feature-item:before {
  content: "\30FB";
}
.plan__feature-item {
  line-height: 1.64;
}
.plan__feature-item--notsupport {
  color: #C4BFBF;
}
.plan__toggle {
  display: inline-block;
}
.plan__button-wrapper {
  position: relative;
  display: inline-flex;
  margin-top: 49px;
  padding: 3px;
  background: #f8f8f8;
  border-radius: 20px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
.plan__button-wrapper::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: #333;
  border-radius: 17px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
#yearly:checked ~ .plan__button-wrapper::before {
  transform: translateX(100%);
}
.plan__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.plan__button {
  position: relative;
  display: inline-block;
  padding: 10px 26px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  border-radius: 17px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1;
  line-height: 1;
}
#monthly:checked ~ .plan__button-wrapper .plan__button[for="monthly"],
#yearly:checked ~ .plan__button-wrapper .plan__button[for="yearly"] {
  color: #fff;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.plan__cell-text--site {
  display: none;
}
.plan__cell-text--site.is-active {
  display: block;
}
.plan__link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.plan__link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 22px 97px;
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(to right, #222 0%, #4e4d4d 100%);
  color: #fff;
  border-radius: 40px;
  transition: opacity .3s;
}
.plan__link:hover {
  opacity: .8;
}
.plan__link:before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background-image: url(../img/renew2025/ico_question.svg);
  background-size: cover;
}
@media only screen and (max-width: 980px) { 
  .plan__inner {
    padding: 51px 0 81px;
  }
  .plan__title {
    padding: 0 2%;
  }
  .plan__title:after {
    width: 75px;
    height: 108px;
  }
  .plan__text {
    padding: 0 2%;
  }
  .plan__title-image {
    max-width: 123px;
  }
  .plan__button-wrapper {
    margin-top: 60px;
  }
  .plan__toggle-wrapper {
    padding-left: 2%;
  }
  .plan__table {
    margin-top: 40px;
  }
  .plan__link-wrapper {
    margin-top: 80px;
    padding: 0 2%;
  }
  .plan__link {
    justify-content: center;
    max-width: 387px;
    width: 100%;
    padding: 22px 0;
  }
}
/* ==========================================================================
セットアップ
========================================================================== */
.setup {
  padding: 0 5%;
  background: linear-gradient(to left,#ff5f2a 20%, #fc9951 100%);
}
.setup__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 
  "title image"
  "btn image";
  align-items: flex-end;
}
.setup__title {
  grid-area: title;
  font-size: 42px;
  font-weight: 500;
  color: #fff;
}
.setup__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 35px;
  align-self: start;
  grid-area: btn;
}
.setup__image {
  grid-area: image;
}
.setup__image-inner {
  position: relative;
}
.setup__main-image {
  margin-right: -30px;
}
.setup__mascot-icon {
  position: absolute;
  bottom: -20px;
  left: -30px;
  max-width: 84px;
}
.setup__item:first-child .setup__item-link:after  {
  margin-left: 20px;
}
.setup__item:last-child .setup__item-link:after {
  margin-left: 80px;
}
.setup__item-link span {
  color: #FF7243;
}
.setup__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 387px;
  padding: 20px 0;
  background: #fff;
  font-size: 20px; 
  font-weight: bold;
  color: #222;
  border-radius: 46px;
}
.setup__item-link:after {
  content: "";
  display: block;
  width: 35px;
  height: 25px;
  background-image: url(../img/renew2025/btn_arrow-orange.svg);
  transition: background-image .3s ease, transform .3s ease;
}
.setup__item-link:hover:after {
  transform: translateX(20px);
}
@media only screen and (max-width: 980px) { 
  .setup {
    background: linear-gradient(to bottom,#ff5f2a 0%, #fc9951 100%);
  }
  .setup__inner {
    grid-template-areas: 
    "title"
    "image"
    "btn";
    grid-template-columns: 100%;
    padding: 55px 2% 64px;
  }
  .setup__title {
    font-size: 28px;
    text-align: center;
  }
  .setup__image {
    max-width: minmax(307px, 100%);
    margin: 25px auto 0;
    padding: 0 25px;
  }
  .setup__list {
    width: 100%;
    margin: 42px auto 0;
    gap: 10px;
  }
  .setup__item-link:hover:after {
    transform: translateX(10px);
  }
  .setup__item-link {
    margin: 0 auto;
  }
}
/* ==========================================================================
フローティングバナー
========================================================================== */
.floating__bnr {
  position: fixed;
  bottom: -300px;
  right: 30px;
  background: #FF7243;
  border-radius: 8px;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.26));
  z-index: 1000;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating__bnr.is-active {
  bottom: 30px;
}
.floating__bnr-inner {
  position: relative;
}
.floating__bnr-image-wrapper {
  overflow: hidden;
  border-radius: 4px;
}
.floating__bnr-image {
  max-width: 160px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease;
  transform-origin: center center;
}
.floating__bnr-link:hover .floating__bnr-image {
  transform: scale(1.1);
}
.floating__bnr-close {
  position: absolute;
  top: -15px;
  right: -15px;
}
.floating__bnr-link {
  display: block;
  padding: 5px 5px 15px;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.floating__bnr-text {
  margin-top: 11px;
}
@media only screen and (max-width: 768px) { 
  .floating__bnr {
    display: none;
  }
}
.mobile__bnr {
  position: fixed;
  left: 0;
  bottom: -100px;
  display: none;
  width: 100%;
  background: #fff;
  z-index: 8000;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile__bnr.is-active {
  bottom: 0;
}
.mobile__bnr-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 15px 5%;
}
.mobile__bnr-button {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
  color: #fff;
  border-radius: 40px;
}
.mobile__bnr-button--download {
  background: linear-gradient(to right,#222 20%, #4e4d4d 100%);
}
.mobile__bnr-button--cta {
  background: linear-gradient(to right, #ff5f2a 20%, #fc9951 100%);
}
@media only screen and (max-width: 768px) { 
  .mobile__bnr {
    display: block;
  }
}