@charset "UTF-8";

/* =========================================================
 common
========================================================= */
main {
  position: relative;
  padding-bottom: 210px;
}
.bg-wrapper {
  background: url(/common/img/home/bg_01_md.png) no-repeat top/contain;
}
@media (min-width: 2000px) {
  .bg-wrapper {
    background: url(/common/img/home/bg_01_lg.png) no-repeat top/contain;
  }
}
@media (max-width: 1440px) {
  .bg-wrapper {
    background: url(/common/img/home/bg_01_sm.png) no-repeat top/contain;
  }
}
@media (max-width: 767px) {
  main {
    padding-bottom: 90px;
  }
  .bg-wrapper {
    background: url(/common/img/home/bg_01_sp.png) no-repeat 0vw -60vw/contain;
  }
}
.curve-block {
  position: relative;
  z-index: 2;
}
.curve-block::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -120px;
  height: 120px;
  width: 100%;
  clip-path: ellipse(60% 100% at 50% 0%);
}
.curve-block + .curve-block {
  z-index: 1;
}
.bg-gray-level-0.curve-block::after {
  background: var(--color-gray0);
}
.bg-white.curve-block::after {
  background: var(--color-white);
}
@media (max-width: 767px) {
  .curve-block::after {
    bottom: -80px;
    height: 80px;
    clip-path: ellipse(80% 100% at 50% 0%);
  }
}
/* メッセージ下背景調整 */
.curve-block:has(.message-sec)::before {
  content: '';
  position: absolute;
  top: 376px;
  left: 24%;
  height: 160px;
  width: 170px;
  z-index: 1;
  background: url(/common/img/home/bg_01_min.png) no-repeat top/contain;
}
@media (min-width: 2580px) {
  .curve-block:has(.message-sec)::before {
    left: 40%;
  }
}
@media (max-width: 1240px) {
  .curve-block:has(.message-sec)::before {
    top: 360px;
    left: 6vw;
  }
}
@media (max-width: 767px) {
  .curve-block:has(.message-sec)::before {
    top: auto;
    bottom: -96px;
    transform: rotate(-25deg);
  }
}
.z-above {
  z-index: 1;
}
.z-below {
  z-index: -1;
}
/* アニメーション
--------------------------------------------------------- */
/* ------------ 平行四辺形画像 ------------ */
.mask-img {
  position: relative;
  margin-left: auto;
  margin-right: 62px;
  width: 21vw;
  max-width: 300px;
}
.mask-img::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -24px;
  display: block;
  width: 59px;
  height: 59px;
  background: var(--color-primary);
  filter: blur(37px);
}
.mask-img.type-1 {
  margin-top: -4%;
  margin-bottom: -16%;
}
.mask-img.type-2 {
  margin-top: -2%;
}
.mask-img.type-3 {
  position: absolute;
  right: 0;
  top: auto;
  margin-top: 200px;
}
.mask-img figure {
  position: relative;
  overflow: hidden;
  clip-path: polygon(34% 0, 100% 0, 66% 100%, 0 100%);
}
.mask-img figure img {
  width: 100%;
  display: block;
  transition: all .3s ease;
  transform: translateX(-100%);
}
/* 青いカバー */
.mask-img figure::before {
  z-index: 10;
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  clip-path: polygon(34% 0, 100% 0, 66% 100%, 0 100%);
  transform: translateX(-100%);
}
/* アニメーション */
.mask-img.is-active figure img {
  animation: slide-img 1.2s ease forwards;
}
.mask-img.is-active figure::before {
  animation: slide-mask 1.2s ease forwards;
}
@keyframes slide-img {
  0% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-mask {
  0% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@media (max-width: 767px) {
  .mask-img {
    width: 37vw;
    min-width: 140px;
    margin-right: 0;
  }
  .mask-img::after {
    right: auto;
    left: 40px;
    top: -11px;
    width: 20px;
    height: 20px;
    filter: blur(15px);
  }
  .mask-img.type-1 {
    margin-top: 32px;
  }
  .mask-img.type-2 {
    margin-top: -22%;
  }
  .mask-img.type-3 {
    position: initial;
    margin-top: 64px;
  }
}
@media (min-width: 1440px) {
  .mask-img.type-1 {
    margin-top: 0;
    margin-bottom: -240px;
  }
}

/* ------------ フェードイン画像 ------------ */
.fade-img {
  opacity: 0;
  transition: all .5s ease;
}
.fade-img.left,
.fade-img.right {
  position: relative;
  z-index: -1;
}
.fade-img.left {
  transform: translate(30px, 30px);
}
.fade-img.right {
  transform: translate(-30px, -30px);
}
.is-active .fade-img.left,
.is-active .fade-img.right {
  opacity: 1;
  transform: translate(0);
}



/* =========================================================
 kv-content
========================================================= */
.kv-video,
.kv-shape,
.text-box,
.mask-img {
  will-change: transform;
  transform: translateZ(0);
}
.kv-content {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100dvh - 75px - 40px);
  border-bottom: 1px solid var(--color-white);
}
.kv-video {
  opacity: 0;
  position: absolute;
  overflow: hidden;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* 白マスク */
.kv-mask {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: #fff;
}
/* SVG */
.kv-shape {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.kv-shape.is-sp {
  display: none;
}
/* パス初期状態 */
.kv-shape path:last-child {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}
/* アニメーション開始 */
.kv-content.is-start .kv-shape path:last-child {
  animation: drawLine 1.2s forwards;
}
/* 線アニメ */
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
/* マスク開く */
.kv-content.is-reveal .kv-mask {
  animation: revealUp .3s ease forwards;
}
@keyframes revealUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
/* 動画表示 */
.kv-content.is-reveal .kv-video {
  opacity: 1;
  transition: opacity 0.6s ease;
}

/* テキスト */
.kv-content .text-box {
  position: relative;
  z-index: 1;
  padding: 32px;
  color: var(--color-white);
  text-align: center;
}
.kv-content .text-box h2.clip-reveal {
  display: inline-block;
  /* 初期：高さ0（下だけ見える） */
  clip-path: inset(100% 0 0 0);
}
/* アニメーション */
.kv-content .text-box.is-reveal h2.clip-reveal {
  animation: clipUp .9s ease forwards;
  animation-delay: 1.5s;
}
@keyframes clipUp {
  to {
    clip-path: inset(0 0 0 0);
  }
}
.kv-content .text-box h2 img {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.05));
  padding: 12px;
}
.kv-content .text-box p {
  opacity: 0;
  margin-top: 22px;
  font-size: 15px;
  font-weight: bold;
  line-height: 220%;
}
.kv-content .text-box.is-reveal p {
  animation: showUp .4s ease forwards;
  animation-delay: 2.5s;
}
@keyframes showUp {
  to {
    opacity: 1;
  }
}
.kv-content .text-box::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.kv-content .text-box.is-reveal::after {
  opacity: 1;
  transition-delay: 1s;
}

@media (max-width: 767px) {
  .kv-content {
    height: calc(100vh - 66px - 32px);
  }
  .kv-content .text-box {
    padding: 32px 16px;
    margin-left: 16px;
    margin-right: 16px;
  }
  .kv-content .text-box h2 img {
    width: 75vw;
    padding: 8px;
    filter: none;
  }
  .kv-shape.is-pc {
    display: none;
  }
  .kv-shape.is-sp {
    display: block;
  }
  .kv-content .text-box p {
    font-size: 12px;
    line-height: 180%;
  }
}
@media (max-width: 480px) {
  .kv-content .text-box h2 img {
    width: 100%;
  }
  .kv-content .text-box p {
    font-size: 3.5vw;
    margin-top: 16px;
  }
}


/* =========================================================
 news-sec
========================================================= */
.news-sec {
  max-width: 840px;
  margin: 64px auto;
}

/* ニューススライダー
--------------------------------------------------------- */
.news-slider {
  background: var(--color-gray1);
  padding: 20px 24px;
}
.news-slider ul li {
  display: flex;
  align-items: center;
  gap: 24px;
}
.news-slider h2 {
  font-size: 18px;
  color: var(--color-red);
}
.news-slider a,
.news-slider .none-link {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  max-width: calc(100% - 49px - 24px);
  transition: color 0.3s;
}
.news-slider h3 {
  font-size: 15px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-slider .category,
.news-slider .date {
  display: block;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}
.news-slider .category {
  margin-right: 8px;
  padding: 3px 16px;
  background: var(--color-white);
  border-radius: 16px;
}
.news-slider .date {
  margin-right: 16px;
}
.news-sec .arrow-link-md {
  display: flex;
  width: fit-content;
  margin: 8px 0 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-sec {padding: 0 32px;}
}
@media (max-width: 767px) {
  .news-sec {
    margin: 40px auto 56px;
    padding: 0 16px;
  }
  .news-slider ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .news-slider h2 {
    position: absolute;
    width: 50px;
  }
  .news-slider h3 {
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 2; /* 行数を制限 */
    white-space: initial;
  }
  .news-slider a,
  .news-slider .none-link {
    row-gap: 8px;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .news-slider .category {
    margin-left: 62px;
  }
  .news-slider .date {
    line-height: 35px;
  }
}
/* チラつき修正 */
@media (max-width: 767px) {
  .splide {
    overflow: hidden!important;
  }
}
/* =========================================================
 message-sec
========================================================= */
.message-sec {
  display: flex;
  justify-content: center;
}
.message-sec-inner {
  position: relative;
  padding: 48px 24px;
  max-width: 1028px;
  width: 100%;
  > * {
    z-index: 1;
  }
}
.message-sec-inner::after {
  content: '';
  position: absolute;
  right: 20px;
  bottom: 32px;
  display: block;
  width: 50vw;
  max-width: 480px;
  min-width: 300px;
  aspect-ratio: 480/148; 
  background: url(/common/img/home/bg_02.svg) no-repeat left center / contain;
}
@media (max-width: 767px) {
  .message-sec-inner {
      padding: 32px 24px 150px;
  }
  .message-sec-inner::after {
    width: 80vw;
    min-width: auto;
  }
}
/* =========================================================
 requirements-sec
========================================================= */
.requirements-sec {
  position: relative;
  padding-top: 200px;
  overflow: hidden;
}
.requirements-sec::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 150px;
  display: block;
  width: 50vw;
  max-width: 600px;
  min-width: 300px;
  aspect-ratio: 600/314; 
  background: url(/common/img/home/bg_03.svg) no-repeat left center / contain;
  z-index: -1;
}
.requirements-sec .img-link {
  gap: 0;
}
.requirements-sec .img-link p img {
  transition: all .3s ease;
}
.requirements-sec .img-link:hover p img {
  transform: translateX(5px);
}
.requirements-sec .link-list .thumb {
  aspect-ratio: 372 / 224;
}
.requirements-sec .link-list .thumb img {
  width: 100%;
  height: 100%;
}
.requirements-sec .link-list li p {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 16px;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  font-weight: bold;
  color: var(--color-white);
}
.requirements-sec .link-list li:first-child p {
  background: var(--color-blue);
}
.requirements-sec .link-list li:nth-child(2) p {
  background: var(--color-blue-mid);
}
.requirements-sec .link-list li:last-child p {
  background: var(--color-primary);
}
.requirements-sec .link-box {
  display: flex;
  gap: 32px;
  padding: 24px;
  background: var(--color-white);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s ease;
}
.requirements-sec .link-box > figure {
  width: 100%;
  max-width: 440px;
  overflow: hidden;
}
.requirements-sec .link-box > figure > img {
  object-fit: cover;
  aspect-ratio: 440/180;
  transition: all .4s ease;
}
.requirements-sec .link-box > div {
  width: calc(55% - 32px);
  min-width: calc(100% - 460px - 32px);
}
.requirements-sec .link-box:hover > figure > img {
  transform: scale(1.1);
}
.requirements-sec .link-box:hover .button-link {
  color: var(--color-white);
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  &:after {
    background-image: url(/common/img/icon_arrow_h.svg);
  }
}
.link-box + .link-box {
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .requirements-sec .link-box > figure {
    width: 30vw;
  }
  .requirements-sec .link-box > figure > img {
    aspect-ratio: 1 / 1;
  }
  .requirements-sec .link-box > div {
    width: calc(100% - 132px);
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .requirements-sec {
    padding-top: 140px;
  }
  .requirements-sec::after {
    top: 100px;
    right: -60px;
  }
  .requirements-sec .img-link {
    flex-direction: row;
  }
  .requirements-sec .link-list .thumb {
    max-width: 104px;
    aspect-ratio: 104 / 80;
  }
  .requirements-sec .link-list .thumb img {
    object-fit: cover;
    height: 100%;
  }
  .requirements-sec .link-list li p {
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 14px;
  }
  .requirements-sec .link-list li p img {
    width: 19px;
    height: 14px;
  }
}
@media (max-width: 480px) {
  .requirements-sec::after {
    top: 70px;
    right: -80px;
  }
  .requirements-sec .link-box {
    flex-direction: column;
    padding: 16px;
  }
  .requirements-sec .link-box > div {
    width: 100%;
  }
  .requirements-sec .link-box > figure {
    width: 100%;
  }
  .requirements-sec .link-box > figure > img {
    aspect-ratio: 440/120;
  }
}

/* =========================================================
 about-sec
========================================================= */
.about-sec {
  position: relative;
  padding-top: 112px;
}
.about-sec::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 30px;
  right: 5%;
  display: block;
  width: 40vw;
  max-width: 500px;
  min-width: 400px;
  height: 100%;
  background: url(/common/img/home/bg_04.svg) no-repeat left top/contain;
}

@media (max-width: 767px) {
  .about-sec {
    padding-top: 80px;
  }
  .about-sec::after {
    min-width: 300px;
    right: 1%;
  }
}
@media (max-width: 480px) {
  .about-sec {
    padding-top: 154px;
    overflow: hidden;
  }
  .about-sec::after {
    min-width: 240px;
    top: -5px;
    right: -30px;
  }
}

/* =========================================================
 Pick Up
========================================================= */
.pickup {
  padding: 200px 0 40px;
  margin-left: 10vw;
}

.slider-content {
  display: flex;
  gap: 62px;
}

@media (max-width: 767px) {
  .pickup {
    padding: 140px 0 30px;
    margin-left: 0;
  }
  .slider-content {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .header_inner .header_logo img {
    width: 130px;
}
}

/* 左側 - テキスト部分
--------------------------------------------------------- */
.pickup-left {
  width: 27%;
}
.pickup-left h2 {
  margin-bottom: 32px;
  line-height: 1.2;
  font-size: 64px;
  color: var(--color-white);
}
.pickup-text-wrap {
  position: relative;
  margin-bottom: 32px;
}
.pickup-text {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.pickup-text p {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 8px 6px;
  margin-bottom: 8px;
  line-height: 1.2;
  color: var(--color-primary);
  font-size: 18px;
  z-index: 0;
}
.pickup-text p::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50%;
  height: 100%;
  background: var(--color-white);
  transition: width .4s ease;
}
.pickup-text.active {
  opacity: 1;
  position: relative;
  visibility: visible;
}
.pickup-text p::after {
  width: var(--w-current, 0px);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .pickup-left h2 {
    font-size: clamp(40px, 6vw, 64px);
  }
  .pickup-text p {
    font-size: clamp(14px, 1.8vw, 18px);
  }
}
@media (max-width: 767px) {
  .pickup-left {
    padding: 0 16px;
  }
  .pickup-left h2 {
    text-align: center;
    margin-bottom: 28px;
    font-size: 48px;
  }
  .pickup-text.active {
    display: flex;
    align-items: center;
  }
  .pickup-text p {
    font-size: 14px;
  }
  .pickup-left {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .pickup-text.active {
    align-items: flex-start;
  }
}

/* 右側 - スライダー部分
--------------------------------------------------------- */
.pickup-right {
  display: flex;
  gap: 16px;
  width: calc(73% - 56px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .slider-content {
    gap: 32px;
  }
  .pickup-left {
    width: 38%;
  }
  .pickup-right {
    width: calc(62% - 32px);
  }
}
@media (max-width: 767px) {
  .pickup-right {
    width: 100%;
  }
}

/* ------------ 表示スライダー ------------ */
.show-slider {
  width: 45%;
}
.show-slide {
  overflow: hidden;
}
.show-slide img {
  aspect-ratio: 400 / 250;
  object-fit: cover;
}
.show-slide a {
  position: relative;
  display: block;
}
.show-slide a:hover .arrow-link-md::after {
  background-image: url(/common/img/icon_arrow_h.svg);
}
.show-slide p {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 16px 8px 8px;
  line-height: 1.2;
  font-size: 15px;
  font-weight: normal;
  background: var(--color-white);
}
.show-slide p::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -18px;
  display: block;
  width: 19px;
  height: 100%;
  background-image: linear-gradient(117deg, transparent, transparent 50%, #ffffff 51% 100%);
}
.show-slide img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
@media (max-width: 767px) {
  .show-slider {
    width: 100%;
  }
}


/* ------------ サムネイルスライダー ------------ */
.thumb-slider {
  overflow: hidden;
  width: 55%;
}
.thumb-slider-wrap {
  display: flex;
  gap: 16px;
  margin-right: -22%;
}
.thumb-slide {
  position: relative;
  width: 50%;
  aspect-ratio: 400 / 250;
  cursor: pointer;
}
.thumb-slide.show:hover {
  opacity: .7;
}
.thumb-slide p {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 16px 8px 8px;
  line-height: 1.2;
  font-size: 15px;
  background: var(--color-white);
}
.thumb-slide p::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -18px;
  display: block;
  width: 19px;
  height: 100%;
  background-image: linear-gradient(117deg, transparent, transparent 50%, #ffffff 51% 100%);
}
.show-slide a {
  display: block;
  padding: 4px;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  background: var(--color-white);
  transition: all .4s ease;
  overflow: hidden;
}
.show-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .4s ease;
}
.show-slide a:hover {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
}
.show-slide a:hover img {
  transform: scale(1.1); 
}
/* 非表示切り替えフェード */
/* .thumb-slide {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.thumb-slide.is-changing {
  opacity: 0;
} */

/* 初期状態 */
.thumb-slide {
  position: relative;
  overflow: hidden;
}
.thumb-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .4s ease;
}
.thumb-slide:hover img  {
  transform: scale(1.1); 
}
.img-current {
  opacity: 1;
  z-index: 1;
}
.img-next {
  opacity: 0;
  z-index: 2;
}

.text-current {
  opacity: 1;
  z-index: 3;
}
.text-next {
  opacity: 0;
  z-index: 4;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .show-slider {
    width: 55%;
  }
  .thumb-slider-wrap {
    margin-right: -75%;
  }
}

/* フェード切替 */
.thumb-slide.is-animating .img-next {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.thumb-slide.is-animating .img-current {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.thumb-slide.is-animating .text-current {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.thumb-slide.is-animating .text-next {
  opacity: 1;
  transition: opacity 0.4s ease;
}
@media (max-width: 767px) {
  .thumb-slider {
    display: none;
  }
}
/* コントロール部分
--------------------------------------------------------- */
.nav {
  margin-top: -8px;
  display: flex;
  align-items: center;
}
.nav .prev {
  margin-right: 17px;
}
.nav .next {
  margin-right: 24px;
}
.nav .prev,
.nav .next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  background: var(--color-white);
  cursor: pointer;
  transition: all .2s ease;
}
.nav .prev::after,
.nav .next::after {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  background-color: var(--color-primary);
  mask: url(/common/img/icon_arrow-right_bl.svg) no-repeat center / contain;
  -webkit-mask: url(/common/img/icon_arrow-right_bl.svg) no-repeat center / contain;
  transition: background-color 0.2s;
}
.nav .prev::after {
  transform: rotate(180deg);
}
@media (hover: hover) {
  .nav .prev:hover,
  .nav .next:hover {
    background: var(--color-primary);
  }
  .nav .prev:hover::after,
  .nav .next:hover::after {
    background-color: #fff;
  }
}

.nav .toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  background: var(--color-white);
  cursor: pointer;
  transition: all .2s ease;
}
.nav .toggle.pause {
  gap: 3px;
}
.nav .toggle.pause::before,
.nav .toggle.pause::after {
  content: "";
  display: block;
  width: 2px;
  height: 7px;
  background: var(--color-primary);
}
.nav .toggle.play::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid var(--color-primary);
  border-right: 0;
  transform: translateX(1px);
}
.nav .toggle.pause:hover,
.nav .toggle.play:hover {
  background: var(--color-primary);
}
.nav .toggle.pause:hover::before,
.nav .toggle.pause:hover::after {
  background: var(--color-white);
}
.nav .toggle.play:hover::after {
  border-left: 7px solid var(--color-white);
}

@media (max-width: 767px) {
  .pickup {
    position: relative;
  }
  .nav {
    position: absolute;
    z-index: 1;
    top: calc(50% - 54px);
    left: 50%;
    margin-top: 0;
    justify-content: space-between;
    transform: translate(-50%, -50%);
    width: 86vw;
    height: 0;
  }
  .nav .toggle {
    display: none;
  }
  .nav .prev,
  .nav .next {
    width: 39px;
    height: 39px;
    margin-right: 0;
    border: 1px solid var(--color-primary);
  }
  .nav .prev::after,
  .nav .next::after {
    width: 11px;
    height: 9px;
  }
}
/* ホーム
--------------------------------------------------------- */
.home-card-link {
  position: relative;
  padding: 40px;
  border: 1px solid var(--color-primary);
  background-color: var(--color-white);
  p {
    color: var(--color-black);
  }
  figure {
    overflow: hidden;
    > img {
      transition: transform 0.3s;
    }
  }
  .button-link {
    pointer-events: none;
  }
  &::before {
    content: '';
    position: absolute;
    top: -1px;
    left: auto;
    display: block;
    width: 100px;
    height: 6px;
    background: var(--color-primary);
  }
}

.home-card-link:hover {
  figure > img {
    transform: scale(1.15);
  }
  .button-link {
    color: var(--color-white);
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    &::after {
      background-image: url(/common/img/icon_arrow_h.svg);
    }
  }
}
@media (max-width: 767px) {
  .home-card-link {
    padding: 24px;
  }
  .home-card-link::before {
    width: 64px;
    height: 4px;
  }
}