@charset "UTF-8";
/* base */
* {
  box-sizing: border-box;
}

html {
  color: #47372c;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

::selection {
  color: #47372c;
  background: #f6ff00;
}

html,
body {
  height: 100%;
}

a {
  color: #88addb;
  transition: 0.3s opacity ease;
}

a[href]:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  flex-shrink: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
}

b,
strong {
  font-weight: bold;
}

.pc_only {
  display: block;
}

@media (max-width: 991px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}

@media (max-width: 991px) {
  .sp_only {
    display: block;
  }
}

.report-orange {
  color: #ff8e72;
}

body {
  animation: fadeIn 1s ease 0s 1 normal;
  overflow-x: hidden;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.show_pc {
  display: block;
}

@media (max-width: 750px) {
  .show_pc {
    display: none;
  }
}

.show_sp {
  display: none;
}

@media (max-width: 750px) {
  .show_sp {
    display: block;
  }
}

.report-btn {
  background: linear-gradient(90deg, #fe7cb1 0%, #da5172 100%);
  color: #fff;
  border: 0.3125rem solid #fff;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  padding: 1.5rem 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  text-decoration: none;
  border-radius: 5rem;
}

@media (max-width: 950px) {
  .report-btn {
    font-size: 1.125rem;
  }
}

@media (max-width: 820px) {
  .report-btn {
    font-size: 1rem;
  }
}

@media (max-width: 750px) {
  .report-btn {
    border-width: 0.25rem;
    font-size: 0.95rem;
    padding: 1.375rem 1.5625rem;
    min-width: 100%;
    max-width: 23.4375rem;
  }
}

.report-btn:after {
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  border-top: 0.1875rem solid #fff;
  border-right: 0.1875rem solid #fff;
  transform: rotate(45deg);
  margin-left: 1.25rem;
}

@media (max-width: 750px) {
  .report-btn:after {
    margin-left: 1.125rem;
    width: 0.625rem;
    height: 0.625rem;
  }
}

.report-btn__center {
  width: fit-content;
  margin-inline: auto;
}

.report-btn__center a + a {
  margin-top: 3.125rem;
}

@media (max-width: 750px) {
  .report-btn__center a + a {
    margin-top: 1.875rem;
  }
}

.report-btn-second {
  display: block;
  background-color: #fff;
  border: 1px solid #000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  padding: 1.5rem 1.5625rem;
  text-align: center;
  min-width: 100%;
  text-decoration: none;
  border-radius: 5rem;
  color: currentColor;
}

@media (max-width: 950px) {
  .report-btn-second {
    font-size: 1.125rem;
  }
}

@media (max-width: 820px) {
  .report-btn-second {
    font-size: 1rem;
  }
}

@media (max-width: 750px) {
  .report-btn-second {
    font-size: 1.125rem;
    padding: 1.375rem 1.5625rem;
    min-width: 100%;
    max-width: 23.4375rem;
  }
}

.report {
  position: relative;
  z-index: 0;
}

.report-Main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #dbeaea;
  padding: 9.375rem 1.25rem 6.25rem;
  overflow: hidden;
}

@media (max-width: 991px) {
  .report-Main {
    padding: 5.4375rem 1.25rem 6.25rem;
  }
}

@media (max-width: 750px) {
  .report-Main {
    padding: 5.4375rem 0 6.25rem;
  }
}

.report-Main__inner {
  max-width: 74.25rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8.125rem;
}

@media (max-width: 750px) {
  .report-Main__inner {
    display: block;
  }
}

.report-Main__detail {
  padding-left: 2.75rem;
  flex: 1;
}

@media (max-width: 1030px) {
  .report-Main__detail {
    padding-left: 0;
  }
}

@media (max-width: 750px) {
  .report-Main__detail {
    padding-inline: 1.25rem;
    width: fit-content;
    margin-inline: auto;
  }
}

.report-Main__detail h1 {
  display: grid;
  row-gap: 1.625rem;
  margin-bottom: 1.625rem;
}

@media (max-width: 750px) {
  .report-Main__detail h1 {
    row-gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.report-Main__detail h1 span {
  overflow: hidden;
}

.report-Main__detail h1 span img {
  transform: translateY(100%);
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.8s;
}

@media (max-width: 750px) {
  .report-Main__detail h1 span img {
    width: 6.25rem;
  }
}

.report-Main__detail h1 strong {
  overflow: hidden;
}

.report-Main__detail h1 strong img {
  transform: translateY(100%);
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 1s;
}

@media (max-width: 750px) {
  .report-Main__detail h1 strong img {
    width: 22rem;
  }
}

.report-Main__detail h2 {
  font-size: 1.6875rem;
  font-weight: 400;
  color: #4f4f4f;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  position: relative;
}

@media (max-width: 750px) {
  .report-Main__detail h2 {
    display: block;
    font-size: 1.5rem;
  }
}

.report-Main__detail h2 em {
  font-style: normal;
  font-weight: 600;
}

.report-Main__detail h2 strong {
  font-weight: 700;
  font-size: 2.1875rem;
  padding-left: 0.5rem;
}

@media (max-width: 750px) {
  .report-Main__detail h2 strong {
    display: block;
    font-size: 2rem;
    padding-left: 0;
    padding-top: 0.375rem;
  }
}

.report-Main__detail h2:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #dbeaea;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s cubic-bezier(0.11, 0, 0.5, 0);
  transition-delay: 1.3s;
}

.report-Main__img {
  width: 49.83%;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
  transform: translateY(1em);
}

@media (max-width: 750px) {
  .report-Main__img {
    width: 100%;
    margin-top: 2.1875rem;
    text-align: center;
  }
}

@media (max-width: 750px) {
  .report-Main__img img {
    width: 21.875rem;
  }
}

.report-Main__btn {
  width: fit-content;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.875rem;
  opacity: 0;
  transform: translateY(-1em);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.1s;
  transition-delay: 1.8s;
}

@media (max-width: 750px) {
  .report-Main__btn {
    margin-top: 1.25rem;
  }
}

.report-Main__btn dt {
  width: 19.875rem;
  height: 3.625rem;
  background: url(/assets/images/ai/sukusuku-report/baloon.svg) no-repeat center/100% auto;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 500;
  padding-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.report-Main__btn dt span {
  color: #dc5375;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 0.3125rem;
}

.report-Main.show .report-Main__img {
  opacity: 1;
  transform: translateY(0);
}

.report-Main.show .report-Main__detail h1 span img,
.report-Main.show .report-Main__detail h1 strong img {
  transform: translateY(0);
}

.report-Main.show .report-Main__detail h2:after {
  width: 0;
}

.report-Main.show .report-Main__btn {
  transform: translateY(0);
  opacity: 1;
}

.report-Inner {
  margin-inline: 1.25rem;
}

@media (min-width: 751px) {
  .report-Inner {
    max-width: 71.25rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
  }
}

.report-Howto {
  background-color: #fdf7ee;
  padding-top: 3.75rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 750px) {
  .report-Howto {
    padding-top: 0;
  }
}

.report-Howto:before {
  content: "";
  width: 100%;
  height: 5rem;
  background: url(/assets/images/ai/sukusuku-report/bg_kv.svg) no-repeat center/auto 100%;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
}

@media (min-width: 1417px) {
  .report-Howto:before {
    height: calc(80 / 1417 * 100vw);
  }
}

@media (max-width: 750px) {
  .report-Howto:before {
    display: none;
  }
}

.report-Howto::after {
  content: "";
  width: 100%;
  height: 11.25rem;
  background: url(/assets/images/ai/sukusuku-report/wave.svg) no-repeat center top/auto 100%;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
}

@media (min-width: 1420px) {
  .report-Howto::after {
    height: calc(180 / 1417 * 100vw);
  }
}

@media (max-width: 950px) {
  .report-Howto::after {
    height: 7.5rem;
  }
}

@media (max-width: 750px) {
  .report-Howto::after {
    height: 5.3125rem;
    background-size: cover;
  }
}

.report-Block {
  margin-bottom: 6.25rem;
}

@media (max-width: 750px) {
  .report-Block {
    margin-bottom: 3.75rem;
  }
}

.report-Block__ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
  margin: 0 auto 1.25rem;
}

.report-Block__ttl strong {
  align-self: center;
  opacity: 0;
  transform: translateY(-1.5rem);
}

@media (max-width: 795px) {
  .report-Block__ttl strong {
    width: 100%;
    text-align: center;
    padding-bottom: 0.5em;
  }
}

@media (max-width: 760px) {
  .report-Block__ttl strong img {
    width: 22rem;
  }
}

.report-Block__ttl span {
  font-size: 2.1875rem;
  font-weight: 700;
  color: #4f4f4f;
  padding-left: 0.3125rem;
  opacity: 0;
  transform: translateY(-1rem);
}

@media (max-width: 760px) {
  .report-Block__ttl span {
    font-size: 1.6875rem;
    padding-left: 0;
  }
}

.report-Block__ttl em {
  font-style: normal;
  font-size: 3rem;
  font-weight: 700;
  color: #ff8e72;
  padding-left: 0.3125rem;
  opacity: 0;
  transform: translateY(-1rem);
}

@media (max-width: 760px) {
  .report-Block__ttl em {
    font-size: 2.6875rem;
    padding-right: 0.3125rem;
    letter-spacing: 0.05em;
  }
}

.report-Block__ttl b {
  font-size: 3.125rem;
  font-weight: 700;
  font-style: italic;
  color: #4f4f4f;
  margin-left: -0.2em;
  opacity: 0;
  transform: translateY(-1rem);
}

@media (max-width: 760px) {
  .report-Block__ttl b {
    font-size: 2.8125rem;
  }
}

.report-Block__ttl.is-active > *:nth-child(1) {
  animation: title 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.report-Block__ttl.is-active > *:nth-child(2) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
}

.report-Block__ttl.is-active > *:nth-child(3) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.4s;
}

.report-Block__ttl.is-active > *:nth-child(4) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.5s;
}

.report-Block__ttl.is-active > *:nth-child(5) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.6s;
}

.report-Block__lead {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 750px) {
  .report-Block__lead {
    font-size: 1.0625rem;
  }
}

.report-Movie {
  margin-inline: -1.25rem;
}

@media (min-width: 751px) {
  .report-Movie {
    max-width: 57.5rem;
    margin-inline: auto;
    border-radius: 2.4375rem;
    overflow: hidden;
  }
}

.report-Movie__wrap {
  aspect-ratio: 16/9;
}

.report-Movie__wrap iframe {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
}

.report-Movie__controls {
  background-color: #ff8e72;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.375rem 2.5rem;
}

@media (max-width: 750px) {
  .report-Movie__controls {
    padding: 0.625rem 2.5rem 0.625rem 0.625rem;
  }
}

.report-Movie__controls button {
  margin-right: 1.125rem;
}

.report-Movie__controls button span {
  display: block;
  width: 2.8125rem;
  height: 1.8125rem;
  background: url(/assets/images/ai/sukusuku-report/icon_speaker.svg) no-repeat center/100% auto;
}

@media (max-width: 750px) {
  .report-Movie__controls button span {
    width: 2rem;
    height: 1.25rem;
  }
}

.report-Movie__controls button span.mute {
  background-image: url(/assets/images/ai/sukusuku-report/icon_speaker_mute.svg);
}

.report-Movie__volume input {
  appearance: none;
  -webkit-appearance: none;
  height: 0.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(90deg, #ffffff 50%, #ffdfd7 50%);
  cursor: pointer;
  width: 10.875rem;
}

@media (max-width: 750px) {
  .report-Movie__volume input {
    width: 16.25rem;
  }
}

.report-Movie__volume input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: none;
}

.report-Movie__volume input::-moz-range-thumb {
  border: none;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: none;
}

.report-Worries {
  position: relative;
  max-width: 56.625rem;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 2.1875rem;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 25% 1fr;
  column-gap: 7.2%;
  align-items: center;
}

@media (max-width: 750px) {
  .report-Worries {
    grid-template-columns: 1fr;
    gap: 1.25rem 0;
    border-radius: 1.25rem;
    padding: 2.5rem 1.25rem;
  }
}

.report-Worries:after {
  content: "";
  --r: 9px;
  height: 1.25rem;
  aspect-ratio: 2;
  -webkit-mask: linear-gradient(0deg, #0000 calc(var(--r) / sqrt(2)), #000 0), radial-gradient(var(--r) at 50% calc(100% - var(--r) * sqrt(2)), #000 98%, #0000 101%);
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: #fff;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  margin-left: -1.5625rem;
}

@media (max-width: 750px) {
  .report-Worries figure {
    text-align: center;
    grid-area: 2/1/3/2;
  }
}

.report-Worries figure img {
  width: 100%;
}

@media (max-width: 750px) {
  .report-Worries figure img {
    width: 10.9375rem;
  }
}

.report-Worries__detail h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #4f4f4f;
}

@media (max-width: 750px) {
  .report-Worries__detail h2 {
    font-size: 1.5rem;
  }
}

.report-Worries__detail ul {
  margin-top: 1.25rem;
  list-style: none;
  display: grid;
  row-gap: 1.125rem;
}

@media (max-width: 750px) {
  .report-Worries__detail ul {
    row-gap: 0.625rem;
  }
}

.report-Worries__detail ul li {
  background-color: #f6f6f6;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.75rem;
  display: grid;
  grid-template-columns: 1.875rem 1fr;
  column-gap: 1.5rem;
  padding: 0.625rem 0.9375rem;
}

@media (max-width: 750px) {
  .report-Worries__detail ul li {
    column-gap: 1.125rem;
    font-size: 1rem;
  }
}

.report-Worries__detail ul li:before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background: url(/assets/images/ai/sukusuku-report/icon_check.svg) no-repeat center/100% auto;
}

.report-Solution__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.5rem;
  list-style: none;
  margin-top: 3.125rem;
}

@media (max-width: 950px) {
  .report-Solution__list {
    column-gap: 1.25rem;
  }
}

@media (max-width: 750px) {
  .report-Solution__list {
    grid-template-columns: 1fr;
    gap: 1.5625rem 0;
    margin-top: 1.875rem;
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

.report-Solution__list li {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.5625rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.report-Solution__list li figure {
  text-align: center;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY-(1rem);
}

.report-Solution__list li figure img {
  width: 15.25rem;
}

.report-Solution__list li h3 {
  text-align: center;
  font-weight: 700;
  color: #4f4f4f;
  font-size: 1.25rem;
  padding-bottom: 0.9375rem;
  opacity: 0;
  transform: translateY(1rem);
}

.report-Solution__list li p {
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(1rem);
}

@media (max-width: 750px) {
  .report-Solution__list li p {
    font-size: 0.9375rem;
  }
}

.report-Solution__list li:nth-child(1).is-active figure {
  animation: fadeTop 0.3s forwards;
}

.report-Solution__list li:nth-child(1).is-active p,
.report-Solution__list li:nth-child(1).is-active h3 {
  animation: fadeUp 0.3s forwards 0.2s;
}

.report-Solution__list li:nth-child(2).is-active figure {
  animation: fadeTop 0.3s forwards 0.2s;
}

.report-Solution__list li:nth-child(2).is-active p,
.report-Solution__list li:nth-child(2).is-active h3 {
  animation: fadeUp 0.3s forwards 0.4s;
}

.report-Solution__list li:nth-child(3).is-active figure {
  animation: fadeTop 0.3s forwards 0.4s;
}

.report-Solution__list li:nth-child(3).is-active p,
.report-Solution__list li:nth-child(3).is-active h3 {
  animation: fadeUp 0.3s forwards 0.6s;
}

.report-Feature {
  max-width: 59rem;
  margin-inline: auto;
  position: relative;
}

.report-Feature .report-Block__ttl {
  margin-bottom: 5rem;
}

@media (max-width: 750px) {
  .report-Feature .report-Block__ttl {
    margin-bottom: 3.125rem;
  }
}

.report-Feature__point dt {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

.report-Feature__point dt img:first-child {
  width: 5.25rem;
  margin-right: 1.125rem;
  opacity: 0;
  transform: scale(0);
}

@media (max-width: 750px) {
  .report-Feature__point dt img:first-child {
    width: 3.3125rem;
    margin-right: 0.5rem;
  }
}

.report-Feature__point dt img:last-child {
  width: 5rem;
  opacity: 0;
  transition-delay: 0.2s;
  transition: opacity 0.3s;
}

@media (max-width: 750px) {
  .report-Feature__point dt img:last-child {
    width: 3.875rem;
  }
}

.report-Feature__point dt.is-active img:first-child {
  animation: baloon 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.report-Feature__point dt.is-active img:last-child {
  animation: fadeIn 0.3s forwards 0.2s;
}

.report-Feature__point dd {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.78;
  color: #000;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: 0.3s;
}

@media (max-width: 750px) {
  .report-Feature__point dd {
    font-size: 1rem;
  }
}

.report-Feature__point dd.is-active {
  opacity: 1;
  transform: translateY(0);
}

.report-Feature__point-01 {
  margin-top: 0.26562rem;
}

@media (max-width: 750px) {
  .report-Feature__point-01 {
    margin: 0 0 3.125rem;
  }
}

.report-Feature__point-02 {
  width: fit-content;
  margin-left: auto;
  margin-bottom: 9.75rem;
}

@media (max-width: 850px) {
  .report-Feature__point-02 {
    margin-bottom: 5rem;
  }
}

@media (max-width: 750px) {
  .report-Feature__point-02 {
    margin-bottom: 2.5rem;
    margin-left: 0;
  }
}

.report-Feature__point-03 {
  width: fit-content;
  margin-left: auto;
  margin-right: 3.75rem;
  margin-bottom: 12.625rem;
}

@media (max-width: 750px) {
  .report-Feature__point-03 {
    margin: 0 0 3.125rem;
  }
}

.report-Feature__point-04 {
  margin-left: 1.25rem;
}

@media (max-width: 750px) {
  .report-Feature__point-04 {
    margin-left: 0;
  }
}

.report-Feature__img1 {
  pointer-events: none;
  margin-top: -6.875rem;
  opacity: 0;
  transform: translateY(1rem);
}

@media (max-width: 850px) {
  .report-Feature__img1 {
    margin-top: -3.125rem;
    text-align: center;
  }
}

@media (max-width: 750px) {
  .report-Feature__img1 {
    margin-top: 0;
    margin-bottom: 3.125rem;
  }
}

@media (max-width: 850px) {
  .report-Feature__img1 img {
    width: 80%;
  }
}

@media (max-width: 750px) {
  .report-Feature__img1 img {
    width: 100%;
  }
}

.report-Feature__img1.is-active {
  animation: fadeUp 0.5s forwards;
}

.report-Feature__img2 {
  width: 88.8%;
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  opacity: 0;
  transform: translate(0, -2rem);
}

@media (max-width: 850px) {
  .report-Feature__img2 {
    width: 70%;
    bottom: 3.75rem;
    left: 10%;
  }
}

@media (max-width: 750px) {
  .report-Feature__img2 {
    position: static;
    width: 100%;
    margin-bottom: 0.9375rem;
  }
}

.report-Feature__img2.is-active {
  animation: paper 1s linear forwards 0.3s;
}

.report-Voice {
  position: relative;
  margin-top: 16.875rem;
}

@media (max-width: 750px) {
  .report-Voice {
    margin-top: 11.25rem;
  }
}

.report-Voice::before {
  content: "";
  width: 4.3125rem;
  aspect-ratio: 69/65;
  background: url(/assets/images/ai/sukusuku-report/flake.svg) no-repeat center/100% auto;
  position: absolute;
  top: -11.25rem;
  right: 4.0625rem;
}

@media (max-width: 750px) {
  .report-Voice::before {
    width: 3.125rem;
    right: 0;
    top: -9.375rem;
  }
}

.report-Voice__ttl {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.report-Voice__ttl-img {
  position: absolute;
  right: -5.5rem;
  bottom: 100%;
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom center;
}

@media (max-width: 950px) {
  .report-Voice__ttl-img {
    right: 0;
  }
}

@media (max-width: 750px) {
  .report-Voice__ttl-img img {
    width: 10.625rem;
  }
}

.report-Voice__ttl.is-active .report-Voice__ttl-img {
  animation: baloon 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.7s;
}

.report-Voice__lead {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 795px) {
  .report-Voice__lead {
    font-size: 1.0625rem;
  }
}

.report-Voice__lead strong {
  font-size: 1.375rem;
  font-weight: 700;
}

@media (max-width: 795px) {
  .report-Voice__lead strong {
    font-size: 1.25rem;
  }
}

.report-Voice__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.375rem 3.75rem;
  list-style: none;
  margin-top: 5.9375rem;
  margin-bottom: 8.125rem;
}

@media (max-width: 1000px) {
  .report-Voice__item {
    gap: 4.375rem 1.875rem;
  }
}

@media (max-width: 750px) {
  .report-Voice__item {
    grid-template-columns: 1fr;
    gap: 4.375rem 0;
    max-width: 31.25rem;
    margin: 3.75rem auto 5rem;
  }
}

.report-Voice__item li {
  position: relative;
  background-color: #fff;
  padding: 1.5625rem 1.875rem 1.25rem;
  opacity: 0;
  transform: translateY(-1rem);
}

@media (max-width: 750px) {
  .report-Voice__item li {
    padding: 1.5625rem 1.25rem 1.25rem;
  }
}

.report-Voice__item li::before {
  content: "";
  width: 4rem;
  aspect-ratio: 64/33;
  background: url(/assets/images/ai/sukusuku-report/icon_clip.svg) no-repeat center/100% auto;
  position: absolute;
  top: -1.4375rem;
  left: 50%;
  margin-left: -2rem;
}

.report-Voice__item li:after {
  content: "";
  width: calc(100% - fz(24));
  height: 0.875rem;
  background-color: #e1d7c4;
  position: absolute;
  left: 0.75rem;
  top: 100%;
}

.report-Voice__item li p {
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 750px) {
  .report-Voice__item li.is-active {
    animation: fadeTop 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
}

.report-Voice__item li.is-active:nth-child(1) {
  animation: fadeTop 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.report-Voice__item li.is-active:nth-child(2) {
  animation: fadeTop 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.2s;
}

.report-Voice__item li.is-active:nth-child(3) {
  animation: fadeTop 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.4s;
}

.report-Voice__item li.is-active:nth-child(4) {
  animation: fadeTop 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.6s;
}

.report-Voice__item-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (max-width: 850px) {
  .report-Voice__item-ttl {
    flex-direction: column-reverse;
  }
}

.report-Voice__item-ttl h4 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.65;
  flex: 1;
  padding-right: 0.625rem;
}

@media (max-width: 850px) {
  .report-Voice__item-ttl h4 {
    padding-right: 0;
    text-align: center;
    font-size: 1.4375rem;
    margin-inline: -0.9375rem;
  }
}

@media (max-width: 750px) {
  .report-Voice__item-ttl h4 {
    margin-inline: 0;
    font-size: 1.375rem;
  }
}

@media (max-width: 1000px) and (min-width: 851px) {
  .report-Voice__item-ttl h4 br {
    display: none;
  }
}

.report-Voice__item-ttl figure {
  width: 5.3125rem;
}

@media (max-width: 850px) {
  .report-Voice__item-ttl figure {
    margin-block-end: 0.625rem;
  }
}

.report-Detail {
  position: relative;
  padding-block: 18.75rem;
  background-color: #fff;
  margin-top: -2.5rem;
}

@media (min-width: 1417px) {
  .report-Detail {
    padding-block: calc(300 / 1417 * 100vw);
  }
}

@media (max-width: 750px) {
  .report-Detail {
    padding-block: 9.375rem;
  }
}

.report-Detail__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 750px) {
  .report-Detail__wrap {
    display: grid;
  }
}

@media (max-width: 750px) {
  .report-Detail__sp {
    grid-area: 1/1/2/2;
  }
}

.report-Detail__img {
  width: 57.5%;
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 0.3125rem;
  box-shadow: 0 8px 13px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
  .report-Detail__img {
    width: 52%;
  }
}

@media (max-width: 750px) {
  .report-Detail__img {
    width: 100%;
    grid-area: 2/1/3/2;
    margin-bottom: 2.5rem;
  }
}

.report-Detail__sticky {
  position: sticky;
  top: 7.5rem;
  left: 0;
  padding-right: 5.5%;
  flex: 1;
}

@media (max-width: 991px) {
  .report-Detail__sticky {
    top: 5rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__sticky {
    padding-right: 0;
    bottom: 0;
    top: auto;
    grid-area: 3/1/4/2;
  }
}

.report-Detail__ttl {
  width: fit-content;
  margin-bottom: 5.625rem;
}

@media (max-width: 991px) {
  .report-Detail__ttl {
    margin-bottom: 3.75rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__ttl {
    margin-bottom: 2.1875rem;
    margin-inline: auto;
  }
}

.report-Detail__ttl-img {
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom 20%;
}

@media (max-width: 991px) {
  .report-Detail__ttl-img {
    width: 80%;
  }
}

@media (max-width: 750px) {
  .report-Detail__ttl-img {
    width: 15.9375rem;
  }
}

.report-Detail__ttl h2 {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: end;
  line-height: 1.3;
}

.report-Detail__ttl h2 img {
  width: 91%;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(-0.2em);
  padding-right: 0.1em;
  opacity: 0;
  transform: translateY(-1.5rem);
}

@media (max-width: 750px) {
  .report-Detail__ttl h2 img {
    width: 21.4375rem;
  }
}

.report-Detail__ttl h2 small {
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1.6;
  color: #4f4f4f;
  opacity: 0;
  transform: translateY(-1rem);
}

@media (max-width: 991px) {
  .report-Detail__ttl h2 small {
    font-size: 1.5rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__ttl h2 small {
    font-size: 1.875rem;
    line-height: 1.4;
  }
}

.report-Detail__ttl h2 span {
  font-size: 2.5625rem;
  font-style: normal;
  font-weight: 700;
  color: #ff8e72;
  opacity: 0;
  transform: translateY(-1rem);
}

@media (max-width: 991px) {
  .report-Detail__ttl h2 span {
    font-size: 2.125rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__ttl h2 span {
    font-size: 2.625rem;
  }
}

.report-Detail__ttl.is-active .report-Detail__ttl-img {
  animation: baloon 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.7s;
}

.report-Detail__ttl.is-active h2 > *:nth-child(1) {
  animation: title 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.report-Detail__ttl.is-active h2 > *:nth-child(2) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
}

.report-Detail__ttl.is-active h2 > *:nth-child(3) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.4s;
}

.report-Detail__ttl.is-active h2 > *:nth-child(4) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.5s;
}

.report-Detail__ttl.is-active h2 > *:nth-child(5) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.6s;
}

.report-Detail__check {
  position: relative;
}

@media (max-width: 750px) {
  .report-Detail__check {
    padding: 0.5rem;
    margin-inline: -1.25rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.4);
  }
}

.report-Detail__check-block {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 7.5rem;
}

.report-Detail__check-block:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  border-radius: 2.1875rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 991px) {
  .report-Detail__check-block:before {
    border-radius: 1.875rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__check-block:before {
    border-radius: 2.1875rem;
    top: 0;
    left: 0;
  }
}

.report-Detail__check-block:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 2.1875rem;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.3125rem solid;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 991px) {
  .report-Detail__check-block:after {
    border-radius: 1.875rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__check-block:after {
    border-radius: 2.1875rem;
  }
}

.report-Detail__check-block h3 {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  font-size: 1.375rem;
  font-weight: 700;
  z-index: 2;
  transform: translateY(-2.125rem);
  padding-inline: 0.5rem;
}

@media (max-width: 991px) {
  .report-Detail__check-block h3 {
    font-size: 1.125rem;
    transform: translateY(-1.375rem);
  }
}

@media (max-width: 750px) {
  .report-Detail__check-block h3 {
    font-size: 1.625rem;
    transform: none;
    padding-top: 1.25rem;
  }
}

.report-Detail__check-block h3::before {
  content: "";
  width: 100%;
  height: 0.625rem;
  background-color: #fff;
  position: absolute;
  top: 1.875rem;
  left: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .report-Detail__check-block h3::before {
    top: 1.125rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__check-block h3::before {
    display: none;
  }
}

.report-Detail__check-block h3 span {
  font-size: 2.25rem;
  font-weight: 500;
  display: flex;
  align-items: baseline;
}

@media (max-width: 991px) {
  .report-Detail__check-block h3 span {
    font-size: 1.875rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__check-block h3 span {
    font-size: 2rem;
    align-items: center;
  }
}

.report-Detail__check-block h3 span:after {
  content: "";
  width: 1.625rem;
  aspect-ratio: 26/46;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  margin-left: 0.3125rem;
}

@media (max-width: 991px) {
  .report-Detail__check-block h3 span:after {
    width: 1rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__check-block h3 span:after {
    width: 1.25rem;
  }
}

.report-Detail__check-block h3 img {
  width: 3.125rem;
  margin-right: 0.3125rem;
}

@media (max-width: 991px) {
  .report-Detail__check-block h3 img {
    width: 2.375rem;
    margin-left: 0.1875rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__check-block h3 img {
    width: 2.5rem;
  }
}

.report-Detail__check-block ul {
  list-style: none;
  padding: 0 1.25rem 1.25rem;
  margin-top: -0.9375rem;
}

@media (max-width: 991px) {
  .report-Detail__check-block ul {
    margin-top: -0.625rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__check-block ul {
    margin-top: 0.75rem;
    padding: 0 1rem 1.875rem 1rem;
  }
}

.report-Detail__check-block ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.3em;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .report-Detail__check-block ul li {
    font-size: 0.875rem;
  }
}

@media (max-width: 750px) {
  .report-Detail__check-block ul li {
    font-size: 0.9rem;
  }
}

.report-Detail__check-block ul li + li {
  margin-top: 1em;
}

.report-Detail__check-block ul li:before {
  content: "●";
}

.report-Detail__check-block-1:before {
  background-color: #fefff6;
}

.report-Detail__check-block-1:after {
  border-color: #d4e65b;
}

.report-Detail__check-block-1 h3 span {
  color: #909d39;
}

.report-Detail__check-block-1 h3 span:after {
  background-image: url(/assets/images/ai/sukusuku-report/exc_green.svg);
}

.report-Detail__check-block-1 ul li::before {
  color: #d4e65a;
}

.report-Detail__check-block-2:before {
  background-color: #f5fdff;
}

.report-Detail__check-block-2:after {
  border-color: #3fafc7;
}

.report-Detail__check-block-2 h3 span {
  color: #0e768c;
}

.report-Detail__check-block-2 h3 span:after {
  background-image: url(/assets/images/ai/sukusuku-report/exc_blue.svg);
}

.report-Detail__check-block-2 ul li::before {
  color: #0e768c;
}

.report-Detail__check-block-3:before {
  background-color: #eaf2fd;
}

.report-Detail__check-block-3:after {
  border-color: #5095ed;
}

.report-Detail__check-block-3 h3 span {
  color: #35649f;
}

.report-Detail__check-block-3 h3 span:after {
  background-image: url(/assets/images/ai/sukusuku-report/exc_dark.svg);
}

.report-Detail__check-block-3 ul li::before {
  color: #35649f;
}

.report-Detail__check-block-4:before {
  background-color: #fff6f3;
}

.report-Detail__check-block-4:after {
  border-color: #f8966f;
}

.report-Detail__check-block-4 h3 span {
  color: #ce5321;
}

.report-Detail__check-block-4 h3 span:after {
  background-image: url(/assets/images/ai/sukusuku-report/exc_pink.svg);
}

.report-Detail__check-block-4 ul li::before {
  color: #ce5321;
}

.report-Use {
  background-color: #fdf7ee;
  padding-top: 6.25rem;
  padding-bottom: 3.125rem;
  position: relative;
}

@media (max-width: 750px) {
  .report-Use {
    padding-top: 16.25rem;
  }
}

.report-Use::before {
  content: "";
  width: 100%;
  height: 11.25rem;
  background: url(/assets/images/ai/sukusuku-report/wave.svg) no-repeat center top/auto 100%;
  transform: scale(-1, -1);
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
}

@media (min-width: 1420px) {
  .report-Use::before {
    height: calc(180 / 1417 * 100vw);
  }
}

@media (max-width: 950px) {
  .report-Use::before {
    height: 7.5rem;
  }
}

@media (max-width: 750px) {
  .report-Use::before {
    height: 5.3125rem;
    background-size: cover;
  }
}

.report-Value {
  background-color: #fff;
  border-radius: 3.125rem;
  position: relative;
  padding: 3.125rem 3.6% 5.3125rem 5.5%;
  z-index: 1;
  margin-bottom: 1.875rem;
}

@media (max-width: 750px) {
  .report-Value {
    border-radius: 0.875rem;
    padding: calc(340 / 430 * 100vw) 0.875rem 5rem;
    margin-bottom: 1.25rem;
  }
}

.report-Value__img1 {
  position: absolute;
  top: calc(-60 / 1100 * 100vw);
  right: 3.4%;
  width: 36.4%;
  opacity: 0;
  transform: translateY(1rem);
}

@media (min-width: 1100px) {
  .report-Value__img1 {
    top: -3.75rem;
  }
}

@media (max-width: 750px) {
  .report-Value__img1 {
    top: calc(-29 / 430 * 100vw);
    right: auto;
    left: calc(36 / 430 * 100vw);
    width: calc(185 / 430 * 100vw);
  }
}

.report-Value__img1.is-active {
  animation: fadeUp 0.4s ease-in forwards;
}

.report-Value__img2 {
  position: absolute;
  top: calc(352 / 1100 * 100vw);
  right: 3.4%;
  width: 36.4%;
  opacity: 0;
  transform: translateY(1rem);
}

@media (min-width: 1100px) {
  .report-Value__img2 {
    top: 22rem;
  }
}

@media (max-width: 750px) {
  .report-Value__img2 {
    top: calc(49 / 430 * 100vw);
    right: calc(32 / 430 * 100vw);
    width: calc(128 / 430 * 100vw);
  }
}

.report-Value__img2.is-active {
  animation: fadeUp 0.4s ease-in forwards 0.1s;
}

.report-Value__img3 {
  position: absolute;
  bottom: -2.25rem;
  left: 5.5%;
  width: 36.4%;
  opacity: 0;
  transform: translateY(1rem);
}

@media (max-width: 750px) {
  .report-Value__img3 {
    bottom: auto;
    top: calc(176 / 430 * 100vw);
    left: calc(168 / 430 * 100vw);
    width: calc(156 / 430 * 100vw);
  }
}

.report-Value__img3.is-active {
  animation: fadeUp 0.4s ease-in forwards;
}

.report-Value__img4 {
  position: absolute;
  bottom: -4.75rem;
  right: 6%;
  width: 14.0625rem;
}

@media (max-width: 750px) {
  .report-Value__img4 {
    bottom: -3.625rem;
    right: 2.6875rem;
    width: 9.375rem;
  }
}

.report-Value__ttl {
  margin-bottom: 3rem;
  padding-right: 44%;
}

@media (max-width: 750px) {
  .report-Value__ttl {
    position: absolute;
    bottom: 100%;
    left: 0;
    padding-right: 0;
    margin-bottom: calc(calc(29 / 430 * 100vw) + 2rem);
    width: 100%;
    text-align: center;
  }
}

.report-Value__ttl p {
  display: flex;
  align-items: center;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  opacity: 0;
  transform: translateY(-1rem);
}

@media (max-width: 750px) {
  .report-Value__ttl p {
    font-size: 1.4375rem;
    justify-content: center;
  }
}

@media (max-width: 750px) {
  .report-Value__ttl p img {
    width: 9.875rem;
  }
}

.report-Value__ttl h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}

@media (max-width: 750px) {
  .report-Value__ttl h2 {
    line-height: 1.4;
    justify-content: center;
    align-items: baseline;
  }
}

.report-Value__ttl h2 small {
  font-size: 2.1875rem;
  font-weight: 700;
  color: #4f4f4f;
  opacity: 0;
  transform: translateY(-1rem);
}

@media (max-width: 750px) {
  .report-Value__ttl h2 small {
    font-size: 1.875rem;
  }
}

.report-Value__ttl h2 img {
  max-width: 24.125rem;
  width: 90%;
  display: inline-block;
  padding-right: 0.1em;
  opacity: 0;
  transform: translateY(-1.5rem);
}

@media (max-width: 750px) {
  .report-Value__ttl h2 img {
    max-width: 100%;
    width: 21.4375rem;
  }
}

.report-Value__ttl h2 span {
  color: #ff8e72;
  font-size: 3.0625rem;
  padding-left: 0.1em;
  opacity: 0;
  transform: translateY(-1rem);
}

@media (max-width: 750px) {
  .report-Value__ttl h2 span {
    font-size: 2.625rem;
  }
}

.report-Value__ttl.is-active p {
  animation: fadeTop 0.3s forwards;
}

.report-Value__ttl.is-active h2 > *:nth-child(1) {
  animation: title 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s;
}

.report-Value__ttl.is-active h2 > *:nth-child(2) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.5s;
}

.report-Value__ttl.is-active h2 > *:nth-child(3) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.6s;
}

.report-Value__ttl.is-active h2 > *:nth-child(4) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.7s;
}

.report-Value__ttl.is-active h2 > *:nth-child(5) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.8s;
}

.report-Value__ttl.is-active h2 > *:nth-child(6) {
  animation: fadeTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.9s;
}

.report-Value__txt {
  font-size: 1rem;
  line-height: 2.35;
}

.report-Value__txt:not(.left) {
  padding-right: 44%;
}

@media (max-width: 750px) {
  .report-Value__txt:not(.left) {
    padding-right: 0;
  }
}

.report-Value__txt.left {
  margin: 5rem 0 0 45%;
}

@media (max-width: 750px) {
  .report-Value__txt.left {
    margin: 1em 0 0;
  }
}

.report-Value__txt strong {
  background: linear-gradient(transparent 70%, #ffc9bc 70%);
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.8;
}

.report-Case {
  display: none !important;
  margin-top: 16.875rem;
}

@media (max-width: 750px) {
  .report-Case {
    margin-top: 8.75rem;
  }
}

.report-Case__wrap {
  max-width: 68.75rem;
  padding-inline: 5.3125rem;
  box-sizing: content-box;
  margin-inline: auto;
  margin-bottom: 5rem;
}

@media (max-width: 1000px) {
  .report-Case__wrap {
    padding-inline: 4.25rem;
  }
}

@media (max-width: 750px) {
  .report-Case__wrap {
    padding-inline: 1.25rem;
    overflow: hidden;
  }
}

.report-Case__slide {
  margin-top: 5.625rem;
}

@media (max-width: 750px) {
  .report-Case__slide {
    margin-top: 3.125rem;
  }
}

.report-Case__slide .splide__arrow {
  background: #ff8e72;
  width: 3.75rem;
  height: 3.75rem;
  opacity: 1;
}

@media (max-width: 1000px) {
  .report-Case__slide .splide__arrow {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 750px) {
  .report-Case__slide .splide__arrow {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.report-Case__slide .splide__arrow svg {
  fill: #fff;
  width: 2.5rem;
  height: 2.5rem;
}

@media (max-width: 1000px) {
  .report-Case__slide .splide__arrow svg {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 750px) {
  .report-Case__slide .splide__arrow svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.report-Case__slide .splide__arrow--next {
  right: -5rem;
}

@media (max-width: 1000px) {
  .report-Case__slide .splide__arrow--next {
    right: -4rem;
  }
}

@media (max-width: 750px) {
  .report-Case__slide .splide__arrow--next {
    right: -1.125rem;
  }
}

.report-Case__slide .splide__arrow--prev {
  left: -5rem;
}

@media (max-width: 1000px) {
  .report-Case__slide .splide__arrow--prev {
    left: -4rem;
  }
}

@media (max-width: 750px) {
  .report-Case__slide .splide__arrow--prev {
    left: -1.125rem;
  }
}

.report-Case__slide .splide__arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 750px) {
  .report-Case__slide .splide__track {
    overflow: visible;
  }
}

.report-Special {
  position: relative;
  background-color: #fff;
  padding-top: 18.75rem;
  padding-bottom: 9.375rem;
  text-align: center;
}

@media (max-width: 750px) {
  .report-Special {
    padding-top: 9.375rem;
    padding-bottom: 3.125rem;
  }
}

.report-Special::before {
  content: "";
  width: 100%;
  height: 11.25rem;
  background: url(/assets/images/ai/sukusuku-report/wave.svg) no-repeat center top/auto 100%;
  position: absolute;
  left: 0;
  top: -1px;
}

@media (min-width: 1420px) {
  .report-Special::before {
    height: calc(180 / 1417 * 100vw);
  }
}

@media (max-width: 950px) {
  .report-Special::before {
    height: 7.5rem;
  }
}

@media (max-width: 750px) {
  .report-Special::before {
    height: 5.3125rem;
    background-size: cover;
  }
}

.report-Special__tag {
  margin-bottom: 1.25rem;
}

@media (max-width: 750px) {
  .report-Special__tag img {
    width: 12.5rem;
  }
}

.report-Special h2 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 4.375rem;
}

@media (max-width: 750px) {
  .report-Special h2 {
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
}

.report-Special h2 strong {
  font-size: 3rem;
  font-weight: 700;
  color: #ff8e72;
}

@media (max-width: 750px) {
  .report-Special h2 strong {
    font-size: 2.125rem;
  }
}

.report-Special h2 span {
  font-size: 2.1875rem;
  color: #4f4f4f;
}

@media (max-width: 750px) {
  .report-Special h2 span {
    font-size: 1.5625rem;
  }
}

.report-Special h2 img {
  width: 12.375rem;
  transform: translateY(0.3em);
  padding-left: 0.2em;
}

@media (max-width: 750px) {
  .report-Special h2 img {
    width: 9.0625rem;
    transform: none;
    padding-left: 0;
    margin-top: 0.4em;
  }
}

@media (min-width: 751px) {
  .report-Special__movie {
    max-width: 57.5rem;
    margin-inline: auto;
    border-radius: 2.4375rem;
    overflow: hidden;
  }
}

.report-Special__movie #thumb {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}

.report-Special__movie #thumb.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.report-Special__wrap {
  aspect-ratio: 16/9;
  position: relative;
}

.report-Special__wrap iframe {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.st-Case_ListItem {
  padding: 1rem 0.5rem;
}

@media (max-width: 750px) {
  .st-Case_ListItem {
    width: 15.625rem !important;
  }
}

.st-Case_ListItem a {
  border-radius: 1.25rem;
  display: block;
  color: currentColor;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
  height: 100%;
}

.st-Case_ListItem figure img {
  border-radius: 1.25rem;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.st-Case_ListItem--Body {
  padding: 1.5rem;
}

.st-Case_ListItem--Name {
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.st-Case_ListItem .case-Garden_Info--List {
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
}

.st-Case_ListItem .case-Garden_Info--List dt {
  font-weight: 700;
}

.st-Case_ListItem .case-Garden_Info--List dt:not(.dt-inline) {
  width: 100%;
  padding-top: 0.5rem;
}

.st-Case_ListItem .case-Garden_Info--List dt.dt-inline {
  width: auto;
}

.st-Case_ListItem .case-Garden_Info--List dd:not(.dd-inline) {
  padding-top: 0.3rem;
}

.st-Case_ListItem .case-Garden_Info--List dd.dd-inline {
  flex: 1;
}

.st-Case_ListItem .case-Garden_Info--List dd ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.st-Case_ListItem .case-Garden_Info--List dd li:not(:last-child)::after {
  content: "／";
}

.st-Case_ListItem--Title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blog-Content_Head--Tag {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  line-height: 1;
}

.blog-Content_Head--Tag li span {
  display: block;
  background-color: #f5a937;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

footer {
  background-color: #fff;
  position: relative;
}

@keyframes title {
  0% {
    opacity: 0;
    transform: translateY(-1.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeTop {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes baloon {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes paper {
  0% {
    opacity: 0;
    transform: translate(0, -2rem);
  }
  50% {
    opacity: 0.5;
    transform: translate(-1rem, -1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
