@charset "utf-8";

/* ------------------
 main
------------------ */
/* mv */
.mv {
  width: 100%;
  padding: 0 5% 35px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px 0;
  line-height: 2;
  @media screen and (max-width: 767px){
    flex-wrap: wrap;
  }
}
.mv_title, .mv_txt01, .mv_txt02 {
  font-weight: 900;
}
.mv_title {
  max-width: 502px;
  width: 100%;
  padding: 0.25em 1em;
  border-radius: 50px;
  background: var(--main-color);
  font-size: 3rem;
  color: #fff;
  text-align: center;
  margin: 75px 0 0.5em;
  @media screen and (max-width: 767px){
    margin-top: 30px;
  }
}
.mv_txt01 {
  font-size: 5.8rem;
  white-space: nowrap;
}
.mv_txt02 {
  font-size: 3.4rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px){
  .mv_title {
    font-size: 2rem;
  }
  .mv_txt01 {
    font-size: 3.2rem;
    white-space: wrap;
    text-align: center;
  }
  .mv_txt02 {
    font-size: 2rem;
    text-align: center;
  }
}
@media screen and (max-width: 360px){
  .mv_txt01 {
    font-size: 2.8rem;
    white-space: wrap;
  }
  .mv_txt02 {
    font-size: 1.8rem;
  }
}
.mv_btn {
  max-width: 337px;
  width: 100%;
  display: inline-block;
  @media screen and (max-width: 767px){
    max-width: 300px;
  }
}
.mv_btn a {
  width: 100%;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: var(--font-20);
}
@media print, screen and (min-width: 768px) {
  .mv_thum {
    margin-left: -50px;
  }
}

/* Awards */
.mv_awards {
  display: inline-block;
  margin-left: 20px;
  @media screen and (max-width: 767px){
    width: 100%;
    display: inline-flex;
    justify-content: center;
    margin: 0 auto;
  }
}
.mv_awards a {
  width: 100%;
  height: 100%;
  padding: 0.5em 1em 0.25em;
  border: 3px solid #a6964f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  white-space: nowrap;
  @media screen and (max-width: 767px){
    width: 90%;
    gap: 10px;
  }
}
.mv_awards--txt {
  font-size: var(--font-24);
  font-weight: bold;
  line-height: 1.5;
  color: #d62337;
  margin-bottom: 0.25em;
  @media screen and (max-width: 767px){
    font-size: 1.7rem;
    margin-bottom: 0.1em;
  }
}
.mv_awards--link {
  text-align: end;
  display: flex;
  align-items: center;
  gap: 0.5em;
  &::after {
    content: "";
    width: 8px;
    aspect-ratio: 1 / 1;
    border-top: 1px solid #d62337;
    border-right: 1px solid #d62337;
    transform: rotate(45deg);
    margin-top: 0.25em;
  }
  @media screen and (max-width: 767px){
    font-size: 1.3rem;
    &::after {
      width: 6px;
    }
  }
}

/* こんなお困りごとはございませんか？ */
.about {
  margin-top: -100px;
}
.about .cmn_heading {
  position: relative;
  z-index: 5;
}
.about_txt {
  max-width: 400px;
  width: 90%;
  margin-inline: auto;
  position: relative;
  z-index: 5;
}
.about_arrow {
  max-width: 368px;
  width: 100%;
  aspect-ratio: 368 / 217;
  position: relative;
  margin: 140px auto 0;
  transform: translateY(70px);
  &::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-yellow);
    clip-path: polygon(0 0, 100% 0%, 100% 50%, 50% 100%, 0 50%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
  @media screen and (max-width: 767px){
    width: 75%;
    margin-top: 100px;
  }
}
.about_arrow--txt {
  width: calc(100% - 4px);
  height: calc(100% - 4.5px);
  padding-top: 0.8em;
  display: block;
  clip-path: polygon(0 0, 100% 0%, 100% calc(50% - 1px), 50% 100%, 0 calc(50% - 1px));
  background: #fff;
  font-size: var(--font-24);
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  top: 2px;
  left: 2px;
}
.about_arrow--img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  transform: translateY(calc(-100% + 20px));
  img {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px){
  .about_arrow--img img {
    width: 75%;
  }
}
.about .gra_box {
  padding-top: 135px;
  padding-bottom: 0;
  @media screen and (max-width: 767px){
    padding-top: 110px;
  }
}
.about .container {
  position: relative;
}
.gra_box .container {
  width: 100%;
}

/* =========================
流体シェイプ 共通CSS
========================= */
.fluid-container {
  width: 100%;
  position: absolute;
  top: -60px;
  left: 0;
  @media screen and (max-width: 767px){
    position: initial;
    top: initial;
    left: initial;
    padding-top: 30px;
  }
}
.fluid-area {
  width: 100%;
  display: flex;
  justify-content: space-between; 
  margin-bottom: 10px;
  @media screen and (max-width: 767px){
    gap: 20px;
    margin-bottom: 20px;
  }
}
.fluid-area:nth-of-type(2) {
  width: 85%;
  margin-inline: auto;
  margin-bottom: 20px;
  @media screen and (max-width: 767px){
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ラッパー */
.fluid-wrap {
  position: relative;
  width: 216px;
  height: 201px;
  @media screen and (max-width: 767px){
    width: calc(50% - 10px);
    aspect-ratio: 216 / 201;
    height: auto;
  }
}

/* SVG共通 */
.fluid {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  will-change: transform;
}

/* 奥・手前の重なり */
.back {
  z-index: 1;
}

.front {
  z-index: 2;
}

/* SVG path（Morphしないので固定） */
.fluid path {
  animation: none;
}

/* =========================
01（緑 × 白）
========================= */

/* 揺れ */
.back-01 {
  animation: float-back01 3s ease-in-out infinite;
}

.front-01 {
  animation: float-front01 6s ease-in-out infinite;
}

/* 色 */
.back-01 path {
  fill: rgba(0, 164, 157, 0.5);
}

.front-01 path {
  fill: #fff;
}

/* keyframes */
@keyframes float-back01 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(-6px, 6px) rotate(-3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-front01 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(5px, -6px) rotate(3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* =========================
02（赤 × 白）
========================= */

.back-02 {
  animation: float-back02 4s ease-in-out infinite;
}

.front-02 {
  animation: float-front02 9s ease-in-out infinite;
}

.back-02 path {
  fill: rgba(219, 37, 2, 0.5);
}

.front-02 path {
  fill: #fff;
}

@keyframes float-back02 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(-7px, 4px) rotate(-2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-front02 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(6px, -5px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}


/* =========================
03（ピンク × 白）
========================= */

.back-03 {
  animation: float-back03 5s ease-in-out infinite;
}

.front-03 {
  animation: float-front03 9s ease-in-out infinite;
}

.back-03 path {
  fill: rgba(222, 60, 117, 0.5);
}

.front-03 path {
  fill: #fff;
}

@keyframes float-back03 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(-5px, 7px) rotate(-4deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-front03 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(7px, -4px) rotate(4deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* =========================
04（黄緑 × 白）
========================= */

.back-04 {
  animation: float-back04 4s ease-in-out infinite;
}

.front-04 {
  animation: float-front04 8s ease-in-out infinite;
}

.back-04 path {
  fill: rgba(149, 191, 71, 0.5);
}

.front-04 path {
  fill: #fff;
}

@keyframes float-back04 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(-6px, 5px) rotate(-3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-front04 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(6px, -5px) rotate(3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* =========================
05（オレンジ × 白）
========================= */

.back-05 {
  animation: float-back05 2s ease-in-out infinite;
}

.front-05 {
  animation: float-front05 6s ease-in-out infinite;
}

/* 色 */
.back-05 path {
  fill: rgba(255, 153, 51, 0.5);
}

.front-05 path {
  fill: #fff;
}

/* keyframes */
@keyframes float-back05 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(-5px, 6px) rotate(-2.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-front05 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(6px, -6px) rotate(2.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* =========================
06（ブルー × 白）
========================= */

.back-06 {
  animation: float-back06 4s ease-in-out infinite;
}

.front-06 {
  animation: float-front06 7s ease-in-out infinite;
}

/* 色 */
.back-06 path {
  fill: rgba(71, 109, 191, 0.5);
}

.front-06 path {
  fill: #fff;
}

/* keyframes */
@keyframes float-back06 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(-6px, 4px) rotate(-3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-front06 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(6px, -4px) rotate(3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* 中身 */
.fluid-wrap--txt {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  position: absolute;
  z-index: 3;
  @media screen and (max-width: 767px){
    img {
      max-width: 60px;
      width: auto;
      height: auto;
    }
  }
}

/* 吹き出し */
.fukidashi01 {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(25%, 25%);
}
.fukidashi02 {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-25%, 25%);
}
.fukidashi03 {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(75%, 75%);
}
.fukidashi04 {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-75%, 75%);
}
.fukidashi05 {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}
.fukidashi06 {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%);
}


/* 大幅な業務効率化を実現します */
.about_flex {
  width: 100%;
  padding: var(--space-65) 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px 20px;
  @media screen and (max-width: 767px){
    flex-wrap: wrap;
    padding-top: 90px;
  }
}
.about_flex--left {
  max-width: 336px;
  width: 100%;
  text-align: start;
  @media screen and (max-width: 767px){
    max-width: 100%;
    width: 85%;
    margin-inline: auto;
  }
}
.about_circle {
  --item-count: 8;
  --item-size: 160px;
  --circle-radius: 295px;
  max-width: 590px;
  width: calc(var(--circle-radius) * 2 + var(--item-size));
  height: calc(var(--circle-radius) * 2 + var(--item-size));
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(#FCE99C, #fff 70%);
  position: relative;
  @media screen and (max-width: 767px){
    max-width: 80%;
    --circle-radius: 130px;
    --item-size: 85px;
    margin-inline: auto;
  }
  @media screen and (max-width: 350px) {
    --circle-radius: 115px;
    --item-size: 75px;
  }
}
.about_circle--wrap {
  --i: 0;
  margin: calc(var(--item-size) / -2);
  transform: rotate(calc(360deg / var(--item-count) * var(--i))) translateY(calc(var(--circle-radius) * -1));
  position: absolute;
  top: 50%;
  left: 50%;
}
.about_circle--item {
  width: var(--item-size);
  aspect-ratio: 1 / 1;
  border: 2px solid var(--var-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  transform: rotate(calc(-360deg / var(--item-count) * var(--i)));
  background: #fff;
  font-size: var(--font-16);
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  @media screen and (max-width: 767px){
    font-size: 1rem;
    img {
      width: 50%;
    }
  }
}
.about_circle--wrap:nth-child(1) {
  --i: 0;
  --var-color: #00A49D;
}
.about_circle--wrap:nth-child(2) {
  --i: 1;
  --var-color: #95BF47;
}
.about_circle--wrap:nth-child(3) {
  --i: 2;
  --var-color: #FF9933;
}
.about_circle--wrap:nth-child(4) {
  --i: 3;
  --var-color: #476DBF;
}
.about_circle--wrap:nth-child(5) {
  --i: 4;
  --var-color: #DE3C75;
}
.about_circle--wrap:nth-child(6) {
  --i: 5;
  --var-color: #DB2502;
}
.about_circle--wrap:nth-child(7) {
  --i: 6;
  --var-color: #DB2502;
}
.about_circle--wrap:nth-child(8) {
  --i: 7;
  --var-color: #00A49D;
}
.about_circle--img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 1em;
  img {
    margin-inline: auto;
  }
  svg {
    margin-inline: auto;
  }
  @media screen and (max-width: 767px){
    svg {
      width: 40%;
    }
    img {
      width: 40%;
    }
  }
}
@media print {
  .about_circle--wrap {
    top: 50%;
    left: 50%;
    margin: 0 !important;
  }
  .about_circle--wrap:nth-child(1) {
    transform: translate(-50%, calc(-50% - 295px));
  }
  .about_circle--wrap:nth-child(2) {
    transform: translate(calc(-50% + 209px), calc(-50% - 209px));
  }
  .about_circle--wrap:nth-child(3) {
    transform: translate(calc(-50% + 295px), -50%);
  }
  .about_circle--wrap:nth-child(4) {
    transform: translate(calc(-50% + 209px), calc(-50% + 209px));
  }
  .about_circle--wrap:nth-child(5) {
    transform: translate(-50%, calc(-50% + 295px));
  }
  .about_circle--wrap:nth-child(6) {
    transform: translate(calc(-50% - 209px), calc(-50% + 209px));
  }
  .about_circle--wrap:nth-child(7) {
    transform: translate(calc(-50% - 295px), -50%);
  }
  .about_circle--wrap:nth-child(8) {
    transform: translate(calc(-50% - 209px), calc(-50% - 209px));
  }
  .about_circle--item {
    transform: none !important;
  }
}

/* 選ばれる理由 */
.reason {
  width: 100%;
  padding: var(--space-65) 0;
  background: var(--base-color);
}
.box_purple {
  --var-color: #476DBF;
}
.box_green {
  --var-color: #00A49D;
}
.box_red {
  --var-color: #DB2502;
}
.box_pink {
  --var-color: #DE3C75;
}
.reason_list--item {
  width: 100%;
  background: linear-gradient(to right, #fff 0%, #fff calc(50% + 256px), rgba(255, 255, 255, 0) calc(50% + 256px), rgba(255, 255, 255, 0) 100%);
  padding-bottom: var(--space-65);
  &:first-child {
    margin-top: var(--space-65);
  }
  &:not(:last-child) {
    margin-bottom: var(--space-65);
  }
  @media screen and (max-width: 767px){
    width: 90%;
    margin-inline: auto;
  }
}
.reason_list--yahoo {
  width: 173px;
  aspect-ratio: 241 / 67;
}
.reason_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.reason_list--content {
  max-width: 522px;
  width: 100%;
}
.reason_name {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 45px;
  @media screen and (max-width: 767px){
    margin-bottom: 20px;
  }
}
.reason_point {
  min-width: 80px;
  width: 80px;
  min-height: 120px;
  height: 100%;
  padding: 15px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--var-color);
  font-size: var(--font-24);
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  @media screen and (max-width: 767px){
    min-width: 60px;
    width: 60px;
    min-height: 80px;
    font-size: 1.6rem;
  }
}
.reason_point--num {
  font-size: var(--font-48);
  @media screen and (max-width: 767px){
    font-size: 2.8rem;
  }
}
.reason_list--image {
  position: relative;
  padding-right: 83.5px;
  margin-top: 83.5px;
  @media screen and (max-width: 767px){
  padding-right: 40px;
  margin-top: 10px;
  }
}
.reason_icon {
  max-width: 167px;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--var-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-40%);
  @media screen and (max-width: 767px){
    max-width: 80px;
    img {
      width: 80%;
    }
  }
}

@media print, screen and (min-width: 768px){
  .reason_list--item:nth-child(even) {
    background: linear-gradient(to left, #fff 0%, #fff calc(50% + 256px), rgba(255, 255, 255, 0) calc(50% + 256px), rgba(255, 255, 255, 0) 100%);
  }
  .reason_list--item:nth-child(even) .reason_flex {
    flex-direction: row-reverse;
  }
  .reason_list--item:nth-child(even) .reason_list--image {
    padding: 0 0 0 83.5px;
  }
  .reason_list--item:nth-child(even) .reason_icon {
    right: initial;
    left: 0;
  }
}

/* 対応モール・カート */
.mall {
  padding: var(--space-65) 0;
}
.mall_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  li {
    max-width: 241px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }
  @media screen and (max-width: 767px){
    gap: 10px;
    li {
      max-width: calc(50% - 5px);
      aspect-ratio: 241 / 67;
    }
  }
}

/* 機能紹介 */
.introduction_list {
  max-width: 724px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-inline: auto;
  @media screen and (max-width: 767px){
    gap: 15px;
  }
}
.introduction_item {
  max-width: 166px;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid #12ACDE;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  span {
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-18);
    line-height: 1.3;
    font-weight: bold;
    text-align: center;
  }
  @media screen and (max-width: 767px){
    max-width: calc(40% - 15px / 2);
  }
  img {
    max-width: 50%;
    max-height: 50px;
    width: auto;
  }
}

/* 導入実績 */
.works {
  padding: var(--space-65) 0;
}
.infinite_scroll {
  display: flex;
  width: 100%;
  overflow: hidden;
  &:first-of-type {
    margin-bottom: 45px;
  }
}
.infinite_scroll--container {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;

  @media screen and (max-width: 767px){
    gap: 15px;
    padding-right: 15px;
  }
}
.infinite_scroll--container.ver02 {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;

  @media screen and (max-width: 767px){
    gap: 15px;
    padding-right: 15px;
  }
}
.infinite_scroll--item {
  flex-shrink: 0;
  width: 233px;
  text-align: center;
  font-size: var(--font-15);
  img {
    width: 100%;
    border: 1px solid #ccc;
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

.infinite_scroll--container:first-child {
  animation: loop 200s -100s linear infinite;
}

.infinite_scroll--container:last-child {
  animation: loop2 200s linear infinite;
}

@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }

  to {
    transform: translateX(0);
  }
}

.infinite_scroll--container.ver2:first-child {
  animation: loop3 200s -100s linear infinite;
}

.infinite_scroll--container.ver2:last-child {
  animation: loop4 200s linear infinite;
}


/* お客様の声 */
.voice {
  width: 100%;
  padding: var(--space-65) 5%;
  background: var(--base-color);
}
.voice_flex {
  max-width: 1170px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-inline: auto;
}
.voice_item {
  max-width: 370px;
  width: 100%;
  background: #fff;
  @media screen and (max-width: 767px){
    max-width: 100%;
  }
}
.voice_thumb {
  border: 1px solid #ccc;
}
.voice_item--table {
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 1em;
  font-size: var(--font-15);
  tr {
    border-bottom: 1px solid #ccc;
  }
  th {
    border-right: 1px solid #ccc;
    padding: 0.5em;
    text-align: start;
  }
  td {
    padding: 0.5em;
  }
  @media print, screen and (min-width: 768px){
    td {
      width: 210px;
    }
  }
  @media screen and (max-width: 767px){
    th {
      width: 110px;
    }
  }
}
.voice_item--contents {
  width: 100%;
  padding: 20px 15px 15px;
}

/* 価格 */
.price_dl {
  max-width: 1024px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price_item {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  gap: 20px 30px;
  background: #fff;
  @media screen and (max-width: 767px){
    flex-direction: column;
    height: auto;
    padding-bottom: 20px;
  }
}
.price_dt {
  width: 296px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to left, #F8D239 0%, #fff 100%);
  clip-path: polygon(0% 0%, 80% 0, 100% 50%, 80% 100%, 0% 100%);
  font-size: var(--font-24);
  font-weight: bold;
  text-align: start;
  @media screen and (max-width: 767px){
    width: 100%;
    padding: 15px 5% 25px;
    clip-path: polygon(0 0, 100% 0%, 100% 70%, 50% 100%, 0 70%);
    background: linear-gradient(to top, #F8D239 0%, #fff 100%);
    text-align: center;
  }
}
@media screen and (max-width: 767px){
  .price_dd {
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.price_txt {
  font-size: var(--font-18);
  font-weight: bold;
  padding-bottom: 1em;
}
.price_btn {
  max-width: 337px;
  width: 100%;
  height: 60px;
  @media screen and (max-width: 767px){
    max-width: 300px;
    height: 50px;
  }
}
.price_btn .btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.price_light {
  width: 100%;
  padding-bottom: 0.25em;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: var(--font-24);
  font-weight: bold;
  span {
    font-size: var(--font-32);
    color: var(--color-red);
  }
  @media screen and (max-width: 767px){
    flex-direction: column;
  }
}
.price_light--plus {
  position: relative;
  display: block;
  min-width: 1em;
  height: 1em;
}
.price_light--plus::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  background: var(--main-color);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-40%);
  margin-inline: auto;
  z-index: 1;
  @media screen and (max-width: 767px){
    width: 22px;
    height: 22px;
  }
}
.price_light--plus::after {
  content: "＋";
  font-size: var(--font-20);
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-45%);
  z-index: 2;
}