@charset "UTF-8";
/*

　トップページ
----------------------------------------------- */
/* ヒーロー */
.hero {
  position: relative;
  padding-inline: calc(50% - 640px);
}
@media (width < 1340px) {
  .hero {
    padding-inline: 30px;
  }
}
@media (max-width: 960px) {
  .hero {
    padding-inline: 25px;
  }
}
.hero {
  background: url(../../img/bg-hero.jpg) no-repeat center/cover;
  overflow: clip;
}
@media (width >= 960px) {
  .hero {
    padding-block: 160px 120px;
    display: grid;
    align-items: end;
    grid-template-columns: 330px 1fr;
  }
}
@media (width < 960px) {
  .hero {
    padding-block: 120px 80px;
    display: flex;
    gap: 20px;
    flex-direction: column-reverse;
  }
}
.hero .text {
  color: #000;
}
.hero .text .ja {
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media (width >= 960px) {
  .hero .text .ja {
    margin-bottom: 20px;
    font-size: 33rem;
  }
}
@media (width < 960px) {
  .hero .text .ja {
    margin-bottom: 17px;
    font-size: 23px;
  }
}
@media (width < 960px) {
  .hero .text .en {
    width: 152px;
  }
}
.hero .image {
  overflow: hidden;
}
.hero .image .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .image .slick-dots li {
  line-height: 1;
  font-size: 0;
}
.hero .image .slick-dots button {
  width: 5px;
  height: inherit;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  text-indent: -9999px;
  font-size: 0;
}
.hero .image .slick-dots .slick-active button {
  background: rgb(255, 255, 255);
}
.hero .image .slick-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  translate: 0 -50%;
  height: inherit;
  aspect-ratio: 1;
  text-indent: -9999px;
}
.hero .image .slick-arrow.slick-prev {
  left: 0;
}
.hero .image .slick-arrow.slick-next {
  right: 0;
}
@media (width >= 960px) {
  .hero .image {
    border-radius: 15px;
  }
}
@media (width < 960px) {
  .hero .image {
    border-radius: 6px;
  }
}
.hero .image img {
  width: 100%;
}
.hero .image .slick-animation {
  animation: fadezoom 5s 0s forwards;
}
.hero .btn-op {
  position: absolute;
}
@media (width >= 960px) {
  .hero .btn-op {
    bottom: 95px;
    right: 50%;
    margin-right: -600px;
  }
}
@media (width < 1340px) {
  .hero .btn-op {
    right: 60px;
    margin-right: inherit;
  }
}
@media (width < 960px) {
  .hero .btn-op {
    right: 45px;
    bottom: 190px;
  }
}
.hero .btn-op .rotation {
  display: block;
  transform-origin: center;
  animation: op_rotation 20s linear infinite;
}
@media (width < 960px) {
  .hero .btn-op .rotation {
    width: 126px;
  }
}
.hero .btn-op .label {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
@media (width < 960px) {
  .hero .btn-op .label {
    width: 76px;
  }
}
.hero .scroll {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 13px;
  transition: left 0.2s;
}
.hero .scroll::after {
  content: "";
  width: 1px;
  height: 100px;
  background: currentColor;
  transform: scaleY(0);
  transform-origin: top;
  animation: scrollbar 3.5s cubic-bezier(0.77, 0, 0.18, 1) infinite;
}
@media (width >= 960px) {
  .hero .scroll {
    left: 30px;
    bottom: 120px;
  }
}
@media (width < 1340px) {
  .hero .scroll {
    left: 12px;
  }
}
@media (width < 960px) {
  .hero .scroll {
    left: inherit;
    right: 25px;
    border-bottom: 0px;
  }
  .hero .scroll::after {
    height: 75px;
  }
}
@keyframes scrollbar {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    transform: scaleY(1);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  85% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes op_rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* ばなー */
.banner-slider {
  position: relative;
}
.banner-slider .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-slider .slick-dots li {
  line-height: 1;
  font-size: 0;
}
.banner-slider .slick-dots button {
  width: 5px;
  height: inherit;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  text-indent: -9999px;
  font-size: 0;
}
.banner-slider .slick-dots .slick-active button {
  background: rgb(255, 255, 255);
}
.banner-slider .slick-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  translate: 0 -50%;
  height: inherit;
  aspect-ratio: 1;
  text-indent: -9999px;
}
.banner-slider .slick-arrow.slick-prev {
  left: 0;
}
.banner-slider .slick-arrow.slick-next {
  right: 0;
}
@media (width >= 960px) {
  .banner-slider {
    margin-top: -55px;
    margin-inline: auto;
    padding-bottom: 45px;
    max-width: 1116px;
  }
}
@media (width < 960px) {
  .banner-slider {
    margin-top: -54px;
    padding-bottom: 40px;
  }
}
.banner-slider a {
  display: block;
  /* aspect-ratio: 195/108; */
  overflow: hidden;
}
.banner-slider a img {
  object-fit: cover;
  /* width: 100%; */
  width: 195px;
  height: 100%;
  max-width: inherit;
  max-height: inherit;
}
@media (width >= 960px) {
  .banner-slider a {
    padding-inline: 15px;
  }
}
@media (width < 960px) {
  .banner-slider a {
    padding-inline: 8px;
  }
}
.banner-slider img {
  border: 1px solid #D7D7D7;
  width: 100%;
}
@media (width >= 960px) {
  .banner-slider img {
    border-radius: 6px;
  }
}
@media (width < 960px) {
  .banner-slider img {
    border-radius: 4px;
    width: 194px;
  }
}
.banner-slider-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  padding-inline: 35px;
}
@media (width >= 960px) {
  .banner-slider-nav {
    margin-top: 35px;
  }
}
.banner-slider .slick-dots {
  position: static;
  gap: 15px;
}
@media (width >= 960px) {
  .banner-slider .slick-dots {
    gap: 20px;
  }
}
.banner-slider .slick-dots button {
  background-color: #F2F2F2;
  width: 12px;
}
.banner-slider .slick-dots .slick-active button {
  background: #5858FF;
}
.banner-slider .slick-arrow {
  width: 8px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-slider .slick-arrow.slick-prev {
  background-image: url(../img/btn-prev.svg);
}
.banner-slider .slick-arrow.slick-next {
  background-image: url(../img/btn-next.svg);
}

/* お知らせ・学生日記 */
.articles {
  padding-inline: calc(50% - 640px);
}
@media (width < 1340px) {
  .articles {
    padding-inline: 30px;
  }
}
@media (max-width: 960px) {
  .articles {
    padding-inline: 25px;
  }
}
@media (width >= 960px) {
  .articles .tabItems {
    display: none;
  }
}
@media (width < 960px) {
  .articles .tabItems {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    padding-bottom: 6px;
    padding-inline: 6px;
    background: url(../../img/bg-title.jpg) no-repeat center bottom/100% 6px;
  }
  .articles .tabItems li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 60px;
    background: #EAD8F7;
    border-radius: 10px 10px 0 0;
    color: #CDAEE4;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
  }
  .articles .tabItems li.active {
    background: #BBE9FB;
    color: var(--color-text-base);
  }
  .articles .tabItems small {
    font-size: 12px;
    font-weight: 400;
  }
}
@media (width >= 960px) {
  .articles .tabContents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}
@media (width >= 960px) {
  .articles-sec {
    display: block !important;
    padding-top: 70px;
  }
}
@media (width < 960px) {
  .articles-sec {
    display: flex;
    flex-direction: column-reverse;
  }
}
.articles hgroup {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (width >= 960px) {
  .articles hgroup {
    padding-bottom: 35px;
    background: url(../../img/bg-title.jpg) no-repeat center bottom/100% 13px;
  }
}
@media (width < 960px) {
  .articles hgroup {
    margin-top: 15px;
  }
}
.articles h2 {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  white-space: nowrap;
}
@media (width < 960px) {
  .articles h2 {
    display: none;
  }
}
.articles h2 .ja {
  letter-spacing: 0.03em;
}
@media (width >= 960px) {
  .articles h2 .ja {
    font-size: 26rem;
  }
}
@media (width >= 960px) {
  .articles h2 .en {
    font-size: 10rem;
  }
}
.articles .button {
  padding-right: 10px;
  font-size: 15px;
}
.articles .button::after {
  width: 16px;
  right: 15px;
}
@media (width >= 960px) {
  .articles .button {
    margin-left: auto;
    width: 145px;
    height: 40px;
  }
}
@media (width < 960px) {
  .articles .button {
    margin-inline: auto;
    width: 140px;
    height: 38px;
  }
}
.articles .lead {
  margin-inline: 0.8em;
  transform: translateY(4px);
  font-size: 15rem;
  line-height: 1.2;
}
@media (width < 960px) {
  .articles .lead {
    display: none;
  }
}
.articles .news-list a {
  display: grid;
  background: url(../../img/bg-title.jpg) no-repeat center bottom/100% 2px;
  text-decoration: none;
  line-height: 1.7;
}
@media (width >= 960px) {
  .articles .news-list a {
    grid-template-columns: 8em 1fr;
    gap: 15px;
    padding-block: 20px 22px;
    font-size: 15rem;
    line-height: 1.45;
  }
}
@media (width < 960px) {
  .articles .news-list a {
    gap: 5px;
    padding-block: 15px 17px;
    font-size: 15px;
  }
}
.articles .news-list a:hover .title {
  text-decoration: underline;
}
.articles .news-list .date {
  font-weight: bold;
}

/* オープンキャンパス・説明会 */
.opencampus {
  padding-inline: calc(50% - 640px);
}
@media (width < 1340px) {
  .opencampus {
    padding-inline: 30px;
  }
}
@media (max-width: 960px) {
  .opencampus {
    padding-inline: 25px;
  }
}
.opencampus {
  background-repeat: no-repeat;
  background-position: right top, left bottom;
}
@media (width >= 960px) {
  .opencampus {
    padding-top: 300px;
    padding-bottom: 140px;
    margin-top: -200px;
    background-image: url(../../img/bg-op-1.jpg), url(../../img/bg-op-2.jpg);
    background-size: 570px, 557px;
  }
}
@media (width < 960px) {
  .opencampus {
    margin-top: -300px;
    padding-top: 300px;
    padding-bottom: 75px;
    background-image: url(../../img/bg-op-1.jpg), url(../../img/bg-op-2-sp.jpg);
    background-size: 305px, 305px;
    background-position: right -50px top, left bottom;
  }
}
@media (width >= 960px) {
  .opencampus h2 {
    transform: translateY(min(17vw, 230px));
    font-size: 26rem;
  }
}
@media (width < 960px) {
  .opencampus h2 {
    z-index: 2;
    font-size: 22px;
    text-align: center;
    transform: translateY(110px);
  }
}
.opencampus-images {
  background: url(../../img/txt-opencampus.svg) no-repeat;
}
.opencampus-images .item {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.opencampus-images img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: inherit;
  max-height: inherit;
}
@media (width >= 960px) {
  .opencampus-images {
    margin-inline: -30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background-position: 30px 15px;
    background-size: 66%;
  }
  .opencampus-images .item:nth-child(1) {
    margin-top: 60%;
  }
  .opencampus-images .item:nth-child(2) {
    margin-top: 30%;
  }
  .opencampus-images img {
    border-radius: 30px;
  }
}
@media (width < 960px) {
  .opencampus-images {
    margin-inline: -25px;
    padding-top: 130px;
    background-position: 25px 0;
    background-size: min(335px, 100% - 50px);
  }
  .opencampus-images img {
    width: 220px;
    border-radius: 20px;
    margin-inline: 10px;
  }
}
.opencampus-schedule {
  position: relative;
  width: fit-content;
}
@media (width >= 960px) {
  .opencampus-schedule {
    margin-top: -230px;
    padding: 30px;
    border-radius: 20px;
    margin-left: auto;
  }
}
@media (width < 960px) {
  .opencampus-schedule {
    margin-top: -20px;
    margin-inline: auto;
    padding: 15px;
    border-radius: 9px;
  }
}
.opencampus-schedule h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
@media (width >= 960px) {
  .opencampus-schedule h3 {
    margin-bottom: 25px;
    font-size: 19rem;
  }
}
@media (width < 960px) {
  .opencampus-schedule h3 {
    margin-bottom: 13px;
    font-size: 13px;
  }
}
.opencampus-schedule h3 span {
  background-color: var(--color-text-base);
  border-radius: 999px;
  padding: 0.4em 1em;
  color: #fff;
}
.opencampus-schedule .events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (width >= 960px) {
  .opencampus-schedule .events {
    gap: 25px;
  }
}
@media (width < 960px) {
  .opencampus-schedule .events {
    gap: 10px;
  }
}
.opencampus-schedule .card {
  position: relative;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 77, 159, 0.15);
  font-family: var(--font-en);
  font-weight: bold;
  text-decoration: none;
}
.opencampus-schedule .card::before {
  position: absolute;
  top: -10px;
  left: -10px;
}
@media (width < 960px) {
  .opencampus-schedule .card::before {
    scale: 0.66;
    transform-origin: right top;
    top: -8px;
    left: -12px;
  }
}
@media (width >= 960px) {
  .opencampus-schedule .card {
    border-radius: 20px;
    padding: 25px 30px;
  }
}
@media (width < 960px) {
  .opencampus-schedule .card {
    border-radius: 9px;
    padding: 10px 13px;
    max-width: 70px;
    height: 62px;
  }
}
.opencampus-schedule .night::before {
  content: url(../../img/ico-op-night.svg);
}
.opencampus-schedule .petit::before {
  content: url(../../img/ico-op-petit.svg);
}
.opencampus-schedule .year {
  margin-bottom: 0.7em;
  text-align: center;
}
@media (width >= 960px) {
  .opencampus-schedule .year {
    font-size: 14rem;
  }
}
@media (width < 960px) {
  .opencampus-schedule .year {
    font-size: 10px;
  }
}
.opencampus-schedule .date {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.1em 0.3em;
  background: url(../../img/op-line.svg) no-repeat center;
  text-align: center;
}
@media (width >= 960px) {
  .opencampus-schedule .date {
    font-size: 32rem;
  }
}
@media (width < 960px) {
  .opencampus-schedule .date {
    background-size: 35px;
    font-size: 13px;
  }
}
.opencampus-schedule .day {
  grid-column: 2/3;
  grid-row: 2/3;
}

/* 選ばれる4つの魅力 */
.attractive {
  position: relative;
  padding-inline: calc(50% - 640px);
}
@media (width < 1340px) {
  .attractive {
    padding-inline: 30px;
  }
}
@media (max-width: 960px) {
  .attractive {
    padding-inline: 25px;
  }
}
.attractive {
  background: linear-gradient(90deg, #D1F1FB, #F2E0F8);
}
@media (width >= 960px) {
  .attractive {
    padding-block: 180px 170px;
  }
}
@media (width < 960px) {
  .attractive {
    padding-block: 150px 140px;
  }
}
.attractive::before {
  position: absolute;
  right: 0;
  content: "";
  background: url(../../img/bg-attractive-1.svg) no-repeat center/100%;
}
@media (width >= 960px) {
  .attractive::before {
    top: 45px;
    width: 514px;
    height: 475px;
  }
}
@media (width < 960px) {
  .attractive::before {
    top: 20px;
    right: -20px;
    width: 305px;
    height: 282px;
  }
}
.attractive::after {
  position: absolute;
  right: 0;
  content: "";
  background: url(../../img/bg-attractive-2.svg) no-repeat center/100%;
}
@media (width >= 960px) {
  .attractive::after {
    bottom: 380px;
    width: 188px;
    height: 278px;
  }
}
@media (width < 960px) {
  .attractive::after {
    display: none;
  }
}
.attractive h2 {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
}
@media (width >= 960px) {
  .attractive h2 {
    gap: 15px 15px;
    margin-bottom: 50px;
  }
}
@media (width < 960px) {
  .attractive h2 {
    gap: 8px 10px;
    margin-bottom: 20px;
  }
}
@media (width >= 960px) {
  .attractive h2 .en-1 {
    font-size: 13rem;
  }
}
@media (width < 960px) {
  .attractive h2 .en-1 {
    font-size: 10px;
  }
}
@media (width >= 960px) {
  .attractive h2 .ja {
    font-size: 33rem;
  }
}
@media (width < 960px) {
  .attractive h2 .ja {
    font-size: 22px;
  }
}
.attractive h2 .en-2 {
  grid-column: 1/-1;
}
@media (width >= 960px) {
  .attractive h2 .en-2 {
    font-size: 60rem;
  }
}
@media (width < 960px) {
  .attractive h2 .en-2 {
    font-size: 30px;
  }
}
.attractive .features {
  position: relative;
  z-index: 2;
  display: grid;
}
@media (width >= 960px) {
  .attractive .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }
}
@media (width < 960px) {
  .attractive .features {
    gap: 15px;
  }
}
.attractive .card {
  position: relative;
}
@media (width >= 960px) {
  .attractive .card {
    padding-top: 45px;
  }
  .attractive .card:nth-child(even) {
    margin-top: -110px;
  }
}
@media (width < 960px) {
  .attractive .card {
    padding-top: 30px;
  }
}
.attractive .number {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.attractive .number small {
  writing-mode: vertical-rl;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (width >= 960px) {
  .attractive .number small {
    font-size: 10rem;
  }
}
@media (width < 960px) {
  .attractive .number small {
    font-size: 10px;
  }
}
@media (width >= 960px) {
  .attractive .number span {
    font-size: 88rem;
  }
}
@media (width < 960px) {
  .attractive .number span {
    font-size: 60px;
  }
}
.attractive .image {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 124/80;
}
.attractive .image.multiple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.attractive .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: inherit;
  max-height: inherit;
}
.attractive .lead {
  margin-block: 1em 0.5em;
  font-weight: bold;
  line-height: 1.7;
}
@media (width >= 960px) {
  .attractive .lead {
    font-size: 22rem;
  }
}
@media (width < 960px) {
  .attractive .lead {
    font-size: 20px;
  }
}
@media (width >= 960px) {
  .attractive .desc {
    font-size: 15rem;
    line-height: 2.5;
  }
}
@media (width < 960px) {
  .attractive .desc {
    font-size: 15px;
    line-height: 1.85;
  }
}

/* キャンパスライフ・カリキュラム */
.buttons .button-container {
  position: absolute;
  z-index: 2;
  margin-inline: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 77, 159, 0.1);
  display: flex;
  transform: translateY(-50%);
}
@media (width >= 960px) {
  .buttons .button-container {
    left: 0;
    right: 0;
    width: 1280px;
    max-width: 100%;
    padding-block: 70px;
    gap: 70px;
    justify-content: center;
  }
}
@media (width < 960px) {
  .buttons .button-container {
    left: 25px;
    right: 25px;
    flex-direction: column;
    gap: 16px;
    padding-block: 30px;
  }
}
@media (width >= 960px) {
  .buttons .button {
    min-width: 285px;
    height: 60px;
    font-size: 20rem;
  }
}
@media (width < 960px) {
  .buttons .button {
    margin-inline: auto;
    width: 280px;
    height: 60px;
    font-size: 20px;
  }
}
.buttons .button.alt{
  line-height: 1.4;
  text-align: center;
  width: fit-content;
  min-width: 280px;
  padding-left: 30px;
  padding-right: 70px;
}
/* 福寿会医療看護専門学校はこんな学校です！ */
.voice {
  position: relative;
  padding-inline: calc(50% - 640px);
}
@media (width < 1340px) {
  .voice {
    padding-inline: 30px;
  }
}
@media (max-width: 960px) {
  .voice {
    padding-inline: 25px;
  }
}
.voice {
  background-repeat: no-repeat;
}
@media (width >= 960px) {
  .voice {
    margin-bottom: -230px;
    padding-block: 180px 360px;
    background-image: url(../../img/bg-voice-1.png), url(../../img/bg-voice-2.png);
    background-position: left bottom, right bottom 160px;
    background-size: 515px, 302px;
  }
}
@media (width < 960px) {
  .voice {
    margin-bottom: -50px;
    padding-block: 150px 120px;
    background-image: url(../../img/bg-voice-1-sp.png), url(../../img/bg-voice-2.png);
    background-position: left bottom, right bottom 40px;
    background-size: max(278px, 57vw), max(140px, 25vw);
  }
}
.voice::before {
  position: absolute;
  content: "";
}
@media (width >= 960px) {
  .voice::before {
    right: -10px;
    top: -470px;
    width: 869px;
    height: 892px;
    background: url(../../img/bg-voice-top.png) no-repeat center/100%;
  }
}
@media (width < 960px) {
  .voice::before {
    right: 0px;
    top: -590px;
    width: 390px;
    height: 892px;
    background: url(../../img/bg-voice-top-sp.png) no-repeat center/100%;
  }
}
.voice h2 {
  font-weight: 500;
  line-height: 1.6;
}
.voice h2 em {
  font-size: 38rem;
  font-weight: bold;
}
@media (width >= 960px) {
  .voice h2 {
    font-size: 20rem;
  }
}
@media (width < 960px) {
  .voice h2 {
    font-size: 16px;
    line-height: 1.5;
  }
  .voice h2 em {
    font-size: 22px;
  }
}
.voice .en {
  margin-top: 0.6em;
  font-weight: bold;
}
@media (width >= 960px) {
  .voice .en {
    font-size: 11rem;
  }
}
@media (width < 960px) {
  .voice .en {
    font-size: 10px;
  }
}
.voice .seniors {
  position: relative;
  z-index: 2;
}
@media (width >= 960px) {
  .voice .seniors {
    margin-top: -80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
  }
}
@media (width < 960px) {
  .voice .seniors {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 22px;
  }
}
.voice .card {
  position: relative;
}
@media (width >= 960px) {
  .voice .card {
    flex: 1 1 25%;
    max-width: 268px;
  }
  .voice .card:nth-last-child(4) {
    margin-top: 180px;
  }
  .voice .card:nth-last-child(3) {
    margin-top: 120px;
  }
  .voice .card:nth-last-child(2) {
    margin-top: 60px;
  }
}
@media (width < 960px) {
  .voice .card:first-child:nth-last-child(odd) {
    grid-column: 1/-1;
    width: calc(50% - 11px);
    justify-self: center;
  }
}
.voice .card .number {
  position: absolute;
  z-index: 2;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}
@media (width >= 960px) {
  .voice .card .number {
    top: 20px;
    left: 10px;
    font-size: 15rem;
  }
}
@media (width < 960px) {
  .voice .card .number {
    top: 15px;
    left: 5px;
    font-size: 10px;
  }
}
.voice .card figure {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(90deg, rgba(209, 241, 251, 0.5), rgba(242, 224, 248, 0.5));
  /*
  @include overTab {
    height: 370px;
  }
    */
  border-radius: 9999px;
  overflow: hidden;
}
.voice .card .button {
  position: absolute;
  bottom: 0;
  right: 0;
  aspect-ratio: 1;
}
@media (width >= 960px) {
  .voice .card .button {
    width: 65px;
  }
}
@media (width < 960px) {
  .voice .card .button {
    width: 38px;
  }
  .voice .card .button img {
    width: 12px;
  }
}
.voice .btn-interview {
  position: relative;
  z-index: 2;
}
.voice .btn-interview .button {
  margin-left: auto;
}
@media (width >= 960px) {
  .voice .btn-interview .button {
    margin-top: -80px;
    width: 290px;
    height: 60px;
    font-size: 20rem;
  }
}
@media (width < 960px) {
  .voice .btn-interview .button {
    margin-top: 50px;
    margin-right: auto;
    width: 290px;
    height: 60px;
    font-size: 20px;
  }
}