@charset "utf-8";

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #111;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  color: #070707;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----------
    color
---------- */
:root {
  --accent-color: #b7a45c;
}


/* ----------
    common
---------- */
@media screen and (min-width: 768px) {
  .__s {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .__l {
    display: none;
  }
}

.linkBtn {
  position: relative;
  width: 300px;
  padding: 15px min(2.7vw, 20px);
  background-color: var(--accent-color);
  border-radius: calc(1px / 0);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  color: #fff;
}
.linkBtn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  translate: 0 -50%;
  display: block;
  width: 2.5em;
  height: .3em;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  transform: skew(60deg);
  transition: translate .3s;
}
@media (hover: hover) {
  .linkBtn:hover::after {
    translate: 10px -50%;
  }
}
.linkBtn._silver {
  background-color: #8a8a89;
}
.linkBtn._closed {
  pointer-events: none;
}
.linkBtn._closed::before {
  content: 'ご好評につき販売終了';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5em;
}

.floatBtn {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  left: 50%;
  translate: -50% 0;
  opacity: 0;
  pointer-events: none;
  cursor: none;
  transition: opacity .3s;
}
.floatBtn.is-scroll {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  transition: opacity .3s;
}

.sec {
  padding: min(13.3vw, 100px) min(4%, 30px) min(16vw, 120px);
}
.sec-inner {
  max-width: 960px;
  margin-inline: auto;
}
.sec-ttl {
  margin-bottom: 15px;
  border-bottom: 2px solid;
  line-height: 1.5;
  font-size: 3.6rem;
  font-weight: 700;
}
.sec-opening {
  line-height: 1.5;
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .sec {
    padding-block: 90px 100px;
  }
  .sec-ttl {
    font-size: 4.2rem;
  }
  .sec-opening {
    font-size: 3.2rem;
  }
}

p ._accentColor {
  color: var(--accent-color);
}
p ._fsLarger {
  font-size: 1.1em;
}
p ._accentShadow {
  text-shadow: 4px 4px 10px color-mix(in srgb, var(--accent-color) 80%, transparent),
    4px -4px 10px color-mix(in srgb, var(--accent-color) 80%, transparent),
    -4px 4px 10px color-mix(in srgb, var(--accent-color) 80%, transparent),
    -4px -4px 10px color-mix(in srgb, var(--accent-color) 80%, transparent);
}

/* ----------
    mv
---------- */
.mv {
  position: relative;
  background-color: #000;
}
.mv-img {
  aspect-ratio: 768 / 1365;
}
.mv-period {
  margin-top: 10px;
  margin-bottom: 30px;
}
.mv-period p {
  margin: 0 auto;
  width: 88%;
  max-width: 500px;
  padding: 0.5em;
  background-color: var(--accent-color);
  clip-path: polygon(3% 0%, 97% 0%, 100% 50%, 97% 100%, 3% 100%, 0% 50%);
  line-height: 1.5;
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
}
.mv-btnContainer {
  width: 100%;
  padding: 0 6% 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 40px;
}
.mv-btn {
  width: 100%;
  max-width: 400px;
  padding-inline: 40px;
  font-size: 1.3rem;
}
.mv-btn::after {
  right: 20px;
  width: 15px;
  height: 4px;
}

@media screen and (min-width: 768px) {
  .mv-img {
    aspect-ratio: 1920 / 1080;
  }
  .mv-period p {
    padding: 0.25em;
    font-size: 2.4rem;
  }
  .mv-btn {
    font-size: 1.6rem;
  }
}

/* ----------
    lead
---------- */
.lead-brnContainer {
  margin: min(13vw, 100px) auto min(8vw, 60px);
  max-width: calc(960px + 30px * 2);
  padding-inline: min(4%, 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px 30px;
}
.lead-bnr {
  /* margin: min(13vw, 100px) auto 0;
  display: block;
  width: min(92%, 800px); */
  max-width: 800px;
}
@media (hover: hover) {
  .lead-bnr {
    position: relative;
    overflow: hidden;
  }
  .lead-bnr::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    background-color: rgb(255 255 255 / 0.1);
    width: 130%;
    height: 100%;
    transform: skewX(25deg);
  }
  .lead-bnr:hover::before {
    animation: skewanime 0.4s forwards;
  }
  @keyframes skewanime {
    100% {
      left: -15%;
    }
  }
}
.lead-btn {
  margin: min(4vw, 30px) auto 0;
}
@media screen and (min-width: 768px) {
  .lead-brnContainer {
    flex-direction: row;
  }
  .lead-bnr {
    width: 100%;
  }
}

/* ----------
    seatmap
---------- */
.seatmap .sec-ttl {
  color: #fff;
}
.seatmap-img {
  aspect-ratio: 1000 / 1077;
}
.seatmap-btn {
  margin: min(16vw, 120px) auto 0;
  width: 100%;
  max-width: 400px;
  font-size: 1.4rem;
}
.seatmap-btn::after {
  right: 5%;
  width: 1.5em;
}

@media screen and (min-width: 768px) {
  .seatmap-btn {
    font-size: 1.6rem;
  }
  .seatmap-btn::after {
    right: 7%;
  }
}


/* ----------
    lineup
---------- */
#seat {
  background-color: #fff;
  overflow: hidden;
}

.seatSec + .seatSec {
  margin-top: 60px;
}

.seatSec-slider .slick-dots {
  margin-top: 15px;
  display: flex;
  gap: 7px;
}
.seatSec-slider .slick-dots > li {
  width: 30px;
  height: 4px;
  background-color: #9FA0A0;
  cursor: pointer;
	transition: background-color 0.5s;
}
.seatSec-slider .slick-dots button {
  display: none;
}

.seatSec-slide > img {
  aspect-ratio: 768 / 306;
  object-fit: cover;
  object-position: center;
}

.seatSec-container {
  position: relative;
  margin: 20px 0 0 15px;
  border-left: 3px solid #000;
}
.seatSec-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18px;
  display: block;
  width: 12px;
  height: 100%;
}
.seatSec-info {
  padding: 15px 0 15px 20px;
}

.seatSec-area {
  padding-left: 0.7em;
  border-left: 2px solid #000;
  line-height: 1.4;
  font-size: 1.4rem;
  font-weight: 600;
}
.seatSec-area span{
  display: block;
}

.seatSec-ttl {
  line-height: 1.3;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
}
.seatSec-area + .seatSec-ttl {
  margin-top: 10px;
}

.seatSec-level {
  margin-top: 10px;
  display: flex;
  column-gap: 10px;
  line-height: 1.25;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
.seatSec-level span {
  width: fit-content;
  padding: 0.3em 0.6em;
}

.seatSec-place {
  margin-top: 10px;
  line-height: 1.25;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.seatSec-price {
  margin-top: 10px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.seatSec-price::before {
  content: '¥';
}
.seatSec-price._more::after {
  content: '〜';
}
.seatSec-price span {
  font-size: 0.6em;
}

.seatSec-txt {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 1.4rem;
}

.seatSec-note {
  margin-top: 25px;
  line-height: 1.8;
  font-size: 1.4rem;
}

.seatSec-btnContainer {
  margin-top: 25px;
  display: flex;
  column-gap: 10px;
}
.seatSec-note + .seatSec-btnContainer {
  margin-top: 0;
}
.seatSec-btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 305px;
  padding: 1em 2em;
  border: 1px solid #000;
  border-radius: calc(1px / 0);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #000;
  transition: color 0.5s, background-color 0.5s;
}
.seatSec-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 7px solid #000;
  border-bottom: 5px solid transparent;
  transition: border-left-color 0.5s;
}
@media (hover: hover) {
  .seatSec-btn:hover {
    background-color: #005A99;
    color: #fff;
  }
  .seatSec-btn:hover:after {
    border-left-color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .seatSec {
    display: flex;
    column-gap: 20px;
  }
  .seatSec + .seatSec {
    margin-top: 80px;
  }
  
  .seatSec-sliderContainer {
    width: calc(100% - 400px);
  }
  .seatSec-slider {
    position: relative;
    height: 100%;
  }
  .seatSec-slider .slick-list,
  .seatSec-slider .slick-track {
    height: 100%;
  }
  .seatSec-slider .slick-dots {
    position: absolute;
    top: 0;
    margin-top: 0;
    flex-direction: column;
  }
  .seatSec-slider .slick-dots > li {
    width: 4px;
    height: 30px;
  }

  .seatSec-slide > img {
    height: 100%;
    aspect-ratio: auto;
  }
  
  .seatSec-container {
    margin: 0;
    width: 365px;
    display: flex;
    align-items: center;
    border: none;
  }
  .seatSec-container::before {
    top: 0;
    bottom: 0;
    left: auto;
  }
  .seatSec-info {
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
  }
  
  .seatSec-area {
    font-size: 1.6rem;
  }
  .seatSec-area .ja{
    font-size: 0.9em;
    font-weight: 400;
  }
  
  .seatSec-ttl {
    font-size: 2.5rem;
  }
  
  .seatSec-level {
    font-size: 1.6rem;
  }
  
  .seatSec-place {
    font-size: 1.6rem;
  }
  
  .seatSec-txt {
    font-size: 1.6rem;
  }
  
  .seatSec-note {
    font-size: 1.6rem;
  }

  /* even */
  /* .seatSec:nth-child(even) {
    margin-left: -23%;
  } */
  .seatSec:nth-child(even) .seatSec-slider {
    padding-right: 15px;
  }
  .seatSec:nth-child(even) .seatSec-slider .slick-dots {
    right: 0;
  }
  .seatSec:nth-child(even) .seatSec-container {
    margin-right: 15px;
    border-right: 3px solid #000;
  }
  .seatSec:nth-child(even) .seatSec-container::before {
    right: -18px;
  }
  .seatSec:nth-child(even) .seatSec-info {
    margin-left: auto;
  }
  
  /* odd */
  .seatSec:nth-child(odd) {
    /* margin-right: -23%; */
    flex-direction: row-reverse;
  }
  .seatSec:nth-child(odd) .seatSec-slider {
    padding-left: 15px;
  }
  .seatSec:nth-child(odd) .seatSec-slider .slick-dots {
    left: 0;
  }
  .seatSec:nth-child(odd) .seatSec-container {
    margin-left: 15px;
    border-left: 3px solid #000;
  }
  .seatSec:nth-child(odd) .seatSec-container::before {
    left: -18px;
  }
  .seatSec:nth-child(odd) .seatSec-info {
    margin-right: auto;
  }
}

/* seat1 */
#seat1 .seatSec-slider .slick-dots > li.slick-active,
#seat1 .seatSec-container::before,
#seat1 .seatSec-level span {
  background-color:#B7A55C;
}
#seat1 .seatSec-place,
#seat1 .seatSec-price {
  color:#B7A55C;
}

/* seat2 */
#seat2 .seatSec-slider .slick-dots > li.slick-active,
#seat2 .seatSec-container::before,
#seat2 .seatSec-level span {
  background-color:#A07C30;
}
#seat2 .seatSec-place,
#seat2 .seatSec-price {
  color:#A07C30;
}

/* seat3 */
#seat3 .seatSec-slider .slick-dots > li.slick-active,
#seat3 .seatSec-container::before,
#seat3 .seatSec-level span {
  background-color:#036EB8;
}
#seat3 .seatSec-place,
#seat3 .seatSec-price {
  color:#036EB8;
}

/* seat4 */
#seat4 .seatSec-slider .slick-dots > li.slick-active,
#seat4 .seatSec-container::before,
#seat4 .seatSec-level span {
  background-color:#2EA7E0;
}
#seat4 .seatSec-place,
#seat4 .seatSec-price {
  color:#2EA7E0;
}

/* seat5 */
#seat5 .seatSec-slider .slick-dots > li.slick-active,
#seat5 .seatSec-container::before,
#seat5 .seatSec-level span {
  background-color:#F6AB00;
}
#seat5 .seatSec-place,
#seat5 .seatSec-price {
  color:#F6AB00;
}

/* seat6 */
#seat6 .seatSec-slider .slick-dots > li.slick-active,
#seat6 .seatSec-container::before,
#seat6 .seatSec-level span {
  background-color:#00913A;
}
#seat6 .seatSec-place,
#seat6 .seatSec-price {
  color:#00913A;
}



/* ----------
    merit
---------- */
.merit {
  background: top/100% repeat-y url(../img/merit-bg.webp);
  border-color: #fff;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .merit {
    position: relative;
    background-image: url(../img/merit-bg__l.webp);
  }
  .merit::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 144px;
    height: auto;
    aspect-ratio: 144 / 1352;
    background: center/contain no-repeat url(../img/merit-bg-deco.webp);
  }
}

.merit-list {
  margin-block: 40px 50px;
}
.merit-list > li {
  position: relative;
  padding-top: 30px;
}
.merit-list > li:has(+ li) {
  margin-bottom: 40px;
}
.merit-list > li:nth-child(even) {
  margin-left: auto;
}
.merit-list > li:before {
  content: '';
  position: absolute;
  top: 0;
  display: block;
  width: auto;
  height: calc(133px / 2);
  background: center/contain no-repeat;
}
.merit-list > li:nth-child(odd)::before {
  left: -2px;
}
.merit-list > li:nth-child(even)::before {
  right: -2px;
}
.merit-list > li:first-child:before {
  aspect-ratio: 143 / 133;
  background-image: url(../img/merit-number-01.webp);
}
.merit-list > li:nth-child(2):before {
  aspect-ratio: 164 / 133;
  background-image: url(../img/merit-number-02.webp);
}
.merit-list > li:nth-child(3):before {
  aspect-ratio: 164 / 133;
  background-image: url(../img/merit-number-03.webp);
}
.merit-list > li:nth-child(4):before {
  aspect-ratio: 160 / 133;
  background-image: url(../img/merit-number-04.webp);
}
.merit-list > li:nth-child(5):before {
  aspect-ratio: 160 / 133;
  background-image: url(../img/merit-number-05.webp);
}
@media screen and (min-width: 768px) {
  .merit-list {
    margin-block: 50px 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
  }
  .merit-list > li {
    padding-top: 50px;
  }
  .merit-list > li:has(+ li) {
    margin-bottom: 0;
  }
  .merit-list > li:before {
    height: calc(133px / 1.5);
  }
}

.meritCard {
  max-width: 500px;
}
.meritCard-box {
  padding: 30px;
  background-color: #1a1a1a;
  border: 2px solid color-mix(in srgb, var(--accent-color) 60%, transparent);
}
.meritCard-img {
  margin-bottom: 20px;
  aspect-ratio: 570 / 350;
}
.meritCard-ttl {
  line-height: 1.5;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .meritCard {
    width: calc(50% - 30px);
  }
  .meritCard-box {
    padding: 40px;
  }
  .meritCard-ttl {
    font-size: 2rem;
  }
}

.merit-btn {
  margin: min(4vw, 30px) auto 0;
  width: 100%;
  max-width: 400px;
  font-size: 1.4rem;
}
.merit-btn::after {
  right: 5%;
  width: 1.5em;
}

@media screen and (min-width: 768px) {
  .merit-btn {
    font-size: 1.6rem;
  }
  .merit-btn::after {
    right: 7%;
  }
}

/* ----------
    resale
---------- */
.resale {
  background-color: #eef1f6;
  border-color: var(--accent-color);
}
.resale-ttl {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .resale-ttl {
    margin-bottom: 60px;
  }
}

.resale-question {
  padding-block-end: 40px;
}
.resale-band {
  margin: 0 auto 35px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0.5em;
  text-align: center;
  line-height: 1.5;
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
}
.resale-band::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  bottom: 0;
  translate: -50% 0;
  display: block;
  width: 108%;
  height: 100%;
  background: rgb(0,80,143);
  background: linear-gradient(90deg, rgb(0 80 143 / 0) 0%, rgb(0 80 143 / 0.7) 10%, rgb(0 80 143 / 0.9) 50%, rgba(0,80,143,0.7) 90%, rgba(0,80,143,0) 100%);
  filter: blur(2px);
}
@media screen and (min-width: 768px) {
  .resale-question {
    padding-block-end: 100px;
  }
}

.resale-comments {
  margin-inline: auto;
  max-width: 800px;
}
.resale-comment {
  margin-bottom: 30px;
  max-width: 500px;
}
.resale-comment:last-child {
  margin-bottom: 0;
}
.resale-comment:nth-child(odd) {
  margin-left: auto;
}
.resale-comment:first-child img {
  aspect-ratio: 676 / 135;
}
.resale-comment:nth-child(2) img {
  aspect-ratio: 642 / 134;
}

.resale-answer {
  position: relative;
  background: top/cover url(../img/resale-bg.webp);
}
.resale-answer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 0;
  height: 0;
  border-top: 25px solid #eef1f6;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
}
.resale-answer .resale-band {
  color: #005a99;
}
.resale-answer .resale-band::before {
  background: rgb(0,80,143);
  background: linear-gradient(90deg, rgb(255 255 255 / 0) 0%, rgb(255 255 255 / 0.7) 10%, rgb(255 255 255 / 1) 50%, rgb(255 255 255 / 0.7) 90%, rgb(255 255 255 / 0) 100%);
}
@media screen and (min-width: 768px) {
  .resale-answer {
    background-image: url(../img/resale-bg__l.webp);
  }
  .resale-answer::before {
    border-top: 40px solid #eef1f6;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
  }
}

.resale-txt {
  text-align: center;
  line-height: 1.75;
  font-size: clamp(1.4rem, 3.7vw, 2.4rem);
  font-weight: 500;
  color: #fff;
}
.resale-txt._opening {
  margin-block-end: 30px;
}
.resale-txt ._fs1 {
  font-size: 1.6em;
  font-weight: 600;
  color: #fffbee;
}
.resale-txt ._more {
  margin-bottom: .2em;
  display: block;
  font-size: 1.5em;
  font-weight: 800;
}
.resale-txt ._more::before,
.resale-txt ._more::after {
  font-size: .7em;
}
.resale-txt ._more::before {
  content: '＼';
  padding-inline-end: .5em;
}
.resale-txt ._more::after {
  content: '／';
  padding-inline-start: .5em;
}
.resale-txt ._fsLarger {
  font-weight: 700;
}
.resale-txt ._strong {
  font-size: 2em;
}
.resale-txt ._fsSmaller {
  display: inline-block;
  padding-inline: .2em;
  font-size: .6em;
}
.resale-txt ._underline {
  position: relative;
  z-index: 1;
}
.resale-txt ._underline::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: .3em;
  background-color: var(--accent-color);
}
.resale-txt ._note {
  display: block;
  line-height: 2;
  font-size: .9em;
}
@media screen and (min-width: 768px) {
  .resale-txt._opening {
    margin-block-end: 60px;
  }
  .resale-txt ._note {
    display: inline-block;
  }
}

.resale-point {
  margin: 0 auto min(4vw, 30px);
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .resale-point {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .resale-point > li {
    width: 300px;
  }
}

.resaleCard {
  padding: 20px;
  background-color: #fff;
}
.resaleCard-head {
  padding-bottom: 10px;
  border-bottom: clamp(1px, 0.3vw, 2px) solid var(--accent-color);
  display: flex;
  align-items: center;
  gap: 4%;
}
.resaleCard-mark {
  width: 25%;
  aspect-ratio: 150 / 110;
}
.resaleCard-ttl {
  width: 71%;
  line-height: 1.5;
  font-size: 1.7rem;
  font-weight: 600;
}
.resaleCard-txt {
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .resaleCard-head {
    flex-direction: column;
    gap: 15px;
  }
  .resaleCard-mark {
    width: auto;
    height: 70px;
  }
  .resaleCard-ttl {
    width: 100%;
    text-align: center;
    font-size: 2rem;
  }
  .resaleCard-txt {
    font-size: 1.6rem;
  }
}

.resale-btn {
  margin: min(8vw, 60px) auto 0;
}

/* ----------
    review
---------- */
.review {
  background-color: #eef1f6;
  overflow: hidden;
}
.review-slider {
  margin: 30px auto 10px;
  width: 85vw;
  padding-bottom: 25px;
}
.review-slider .splide__track {
  overflow: visible;
}
.review-slider .splide__pagination {
  right: auto;
  bottom: 0;
  padding: 0;
}
.review-slider .splide__pagination__page {
  margin: 0 min(1.3vw, 10px) 0 0;
  width: min(13.3vw, 100px);
  height: min(1.1vw, 8px);
  border-radius: 0;
  background-color: #999a9a;
  opacity: 1;
}
.review-slider .splide__pagination__page.is-active {
  background-color: #036eb8;
  transform: none;
}
@media screen and (min-width: 768px) {
  .review-slider {
    margin-block: 50px 0;
    width: 100%;
    padding-bottom: 40px;
  }
}

.reviewCard {
  position: relative;
  padding: 30px 20px 35px;
  background-color: #fff;
  box-shadow: 5px 5px 10px 0 rgb(197 208 220 / 26%);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}
.reviewCard::before,
.reviewCard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: auto;
  aspect-ratio: 7 / 6;
}
.reviewCard::before {
  width: 20%;
  background-color: #036eb8;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.reviewCard::after {
  width: 23%;
  background-color: #070707;
  clip-path: polygon(92% 0, 100% 0%, 0 100%, 0 92%);
}
.reviewCard-img {
  width: min(50%, 250px);
  border-radius: calc( 1px / 0 );
}
.reviewCard-body {
  text-align: center;
  line-height: 1.5;
}
.reviewCard-name {
  margin-bottom: 15px;
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 600;
}
.reviewCard-txt {
  font-size: clamp(1.4rem, 3.7vw, 1.6rem);
}
@media screen and (min-width: 768px) {
  .reviewCard {
    padding: 60px;
    flex-direction: row;
    gap: 40px;
  }
  .reviewCard::before {
    width: 10%;
  }
  .reviewCard::after {
    width: 11.5%;
  }
  .reviewCard-img {
    width: 140px;
  }
  .reviewCard-body {
    text-align: left;
  }
}