@charset "utf-8";

:root {
  /* PCファースト: 基本はPC幅を想定 */
  --full-width: 1440;
  --pc-full-width: 1440;
}

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

body {
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  /* PCファーストの基本サイズ */
  font-size: calc(20 / var(--full-width) * 100vw);
  font-weight: 400;
  color: #080d29;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #080d29;
}

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

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  appearance: none;
  cursor: pointer;
}

/* section {
  position: relative;
  background: url(../img/main/mv-bg.webp) center top no-repeat;
  background-size: 100% auto;
} */

#mv {
  position: relative;
}

/* SP用に変数を切り替える（SPは--full-width=750） */
@media screen and (max-width: 750px) {
  :root {
    --full-width: 750;
  }

  body {
    line-height: 1.64;
    font-size: calc(28 / var(--full-width) * 100vw);
  }
}

/* ========== parts ========== */
/* scrollUpBtn */
.scrollUpBtn {
  position: fixed;
  z-index: 10;
  bottom: calc(64 / var(--full-width) * 100vw);
  left: calc(40 / var(--full-width) * 100vw);
  display: block;
  width: calc(80 / var(--full-width) * 100vw);
  height: calc(80 / var(--full-width) * 100vw);
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.3s,
    translate 0.3s;
}
.scrollUpBtn.is-view {
  pointer-events: auto;
  opacity: 1;
}
@media (hover: hover) {
  .scrollUpBtn:hover {
    translate: 0 -10%;
  }
}

@media screen and (min-width: 751px) {
  .scrollUpBtn {
    bottom: calc(80 / var(--pc-full-width) * 100vw);
    left: calc(120 / var(--pc-full-width) * 100vw);
    width: calc(50 / var(--pc-full-width) * 100vw);
    height: calc(50 / var(--pc-full-width) * 100vw);
  }
}

/* floatBtn */
.floatBtn {
  position: fixed;
  z-index: 10;
  bottom: calc(64 / var(--full-width) * 100vw);
  right: calc(30 / var(--full-width) * 100vw);
  display: block;
  width: calc(208 / var(--full-width) * 100vw);
  height: calc(208 / var(--full-width) * 100vw);
  border-radius: 50%;
  box-shadow: 0 0 calc(12 / var(--full-width) * 100vw) calc(6 / var(--full-width) * 100vw)
    rgb(213 245 255 / 40%);
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.3s,
    scale 0.2s;
}
.floatBtn.is-view {
  pointer-events: auto;
  opacity: 1;
}
@media (hover: hover) {
  .floatBtn:hover {
    scale: 0.95;
  }
}

@media screen and (min-width: 751px) {
  .floatBtn {
    bottom: calc(80 / var(--pc-full-width) * 100vw);
    right: calc(60 / var(--pc-full-width) * 100vw);
    width: calc(130 / var(--pc-full-width) * 100vw);
    height: calc(130 / var(--pc-full-width) * 100vw);
    box-shadow: 0 0 calc(12 / var(--pc-full-width) * 100vw) calc(6 / var(--pc-full-width) * 100vw)
      rgb(213 245 255 / 40%);
  }
}

/* bandSlider */
.bandSlider-container {
  position: relative;
}

.bandSlider {
  width: 100%;
  padding: calc(10 / var(--full-width) * 100vw) 0;
  background-color: #005a99;
  overflow: hidden;
}

.bandSlider-track {
  width: calc((605 / var(--full-width) * 100vw) * 3 + (50 / var(--full-width) * 100vw) * 2);
  padding: calc(12.5 / var(--full-width) * 100vw) 0;
  border-top: calc(2.5 / var(--full-width) * 100vw) solid #080d29;
  border-bottom: calc(2.5 / var(--full-width) * 100vw) solid #080d29;
  display: flex;
  gap: 0 calc(50 / var(--full-width) * 100vw);
  animation: scroll 25s linear infinite;
}

.bandSlider-track img {
  width: calc(605 / var(--full-width) * 100vw);
  flex-shrink: 0;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.bandSlider._gold {
  background-color: #b7a55c;
}

.bandSlider._shadow {
  position: relative;
  box-shadow: calc(6 / var(--full-width) * 100vw) calc(3 / var(--full-width) * 100vw)
    calc(10 / var(--full-width) * 100vw) rgb(0 0 0 / 26%);
}

.bandSlider._sizeL {
  padding: calc(12.5 / var(--full-width) * 100vw) 0;
}
.bandSlider._sizeL .bandSlider-track {
  width: calc((756 / var(--full-width) * 100vw) * 2 + (62 / var(--full-width) * 100vw));
  padding: calc(15 / var(--full-width) * 100vw) 0;
  border-top-width: calc(3 / var(--full-width) * 100vw);
  border-bottom-width: calc(3 / var(--full-width) * 100vw);
  gap: 0 calc(62 / var(--full-width) * 100vw);
}
.bandSlider._sizeL .bandSlider-track img {
  width: calc(756 / var(--full-width) * 100vw);
}

.bandSlider._counterclockwise {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -10%;
  width: 150%;
  rotate: -5deg;
}
.bandSlider._clockwise {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -10%;
  width: 150%;
  rotate: 5deg;
}

@media screen and (min-width: 751px) {
  .bandSlider {
    padding: calc(8 / var(--pc-full-width) * 100vw) 0;
  }

  .bandSlider-track {
    width: calc((484 / var(--pc-full-width) * 100vw) * 6 + (20 / var(--pc-full-width) * 100vw) * 5);
    padding: calc(8 / var(--pc-full-width) * 100vw) 0;
    border-top-width: calc(2 / var(--pc-full-width) * 100vw);
    border-bottom-width: calc(2 / var(--pc-full-width) * 100vw);
    gap: 0 calc(20 / var(--pc-full-width) * 100vw);
    animation-duration: 40s;
  }

  .bandSlider-track img {
    width: calc(484 / var(--pc-full-width) * 100vw);
  }

  .bandSlider._shadow {
    box-shadow: calc(6 / var(--pc-full-width) * 100vw) calc(3 / var(--pc-full-width) * 100vw)
      calc(10 / var(--pc-full-width) * 100vw) rgb(0 0 0 / 26%);
  }

  .bandSlider._sizeL {
    padding: calc(8 / var(--pc-full-width) * 100vw) 0;
  }
  .bandSlider._sizeL .bandSlider-track {
    width: calc((512 / var(--pc-full-width) * 100vw) * 6 + (32 / var(--pc-full-width) * 100vw) * 5);
    padding: calc(8 / var(--pc-full-width) * 100vw) 0;
    border-top-width: calc(3 / var(--pc-full-width) * 100vw);
    border-bottom-width: calc(3 / var(--pc-full-width) * 100vw);
    gap: 0 calc(32 / var(--pc-full-width) * 100vw);
  }
  .bandSlider._sizeL .bandSlider-track img {
    width: calc(512 / var(--pc-full-width) * 100vw);
  }

  .bandSlider._counterclockwise {
    rotate: -2deg;
  }
  .bandSlider._clockwise {
    rotate: 2deg;
  }
}

/* ========== common ========== */
@media screen and (max-width: 750px) {
  .c-pc {
    display: none;
  }
}

@media screen and (min-width: 751px) {
  .c-sp {
    display: none;
  }
}

.mv-txt {
  font-size: 0.875rem;
  text-align: center;
  margin-top: calc(30 / var(--full-width) * 100vw);
  padding: 0 calc(30 / var(--full-width) * 100vw) calc(120 / var(--full-width) * 100vw);
  line-height: 1.9;
  /* letter-spacing: 0.06em; */
}

.mv {
  position: relative;
  z-index: 2;
  width: 100vw;
  background-color: #e8dfc4;
}

.mv-logo {
  position: absolute;
  z-index: 3;
  top: calc(120 / var(--full-width) * 100vw);
  left: 50%;
  transform: translateX(-50%);
  width: calc(600 / var(--full-width) * 100vw);
}

.mv-ttl {
  margin-top: calc(160 / var(--full-width) * 100vw);
  padding: 0 calc(40 / var(--full-width) * 100vw);
}

/* .mv-ttl-01 {
  width: 100%;
} */

.mv-ttl-02 {
  /* width: calc(980 / var(--pc-full-width) * 100vw); */
  margin: calc(-118 / var(--pc-full-width) * 100vw) auto 0;
}

.mvPan {
  width: 100vw;
  overflow: hidden;
}

.mvPan-track {
  display: flex;
  height: calc(400 / var(--full-width) * 100vw);
  will-change: transform;
  width: max-content;
}

.mvPan-item {
  flex: 0 0 auto;
  height: 100%;
}

.mvPan-item img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}

@media screen and (min-width: 751px) {
  .mvPan-track {
    height: calc(300 / var(--pc-full-width) * 100vw);
  }

  .mv-logo {
    top: calc(80 / var(--pc-full-width) * 100vw);
    width: calc(520 / var(--pc-full-width) * 100vw);
  }

  .mv-ttl {
    /* padding: 0; */
    /* width: calc(980 / var(--pc-full-width) * 100vw); */
    margin-left: auto;
    margin-right: auto;
    padding: 0 calc(25 / var(--pc-full-width) * 100vw);
  }

  .mv-ttl-01 {
    width: 100%;
  }

  .mv-ttl-02 {
    width: calc(980 / var(--pc-full-width) * 100vw);
    margin: calc(-26 / var(--pc-full-width) * 100vw) auto 0;
  }

  .mv-txt {
    margin-top: calc(30 / var(--pc-full-width) * 100vw);
    padding: 0 calc(230 / var(--pc-full-width) * 100vw) calc(60 / var(--pc-full-width) * 100vw);
    font-size: calc(18 / var(--pc-full-width) * 100vw);
  }
}

/* ========== map ========== */
#map {
  background: url(../img/main/mv-bg.webp) center top / 100% auto no-repeat;
  background-color: #e8dfc4;
}

.map-inner {
  padding: calc(140 / var(--full-width) * 100vw) 0 calc(100 / var(--full-width) * 100vw);
}

.map-ttl {
  margin-bottom: calc(40 / var(--full-width) * 100vw);
}

.map-txt {
  /* color: #fff; */
  text-align: center;
  margin-top: calc(30 / var(--full-width) * 100vw);
  padding: 0 calc(40 / var(--full-width) * 100vw) calc(40 / var(--full-width) * 100vw);
  font-size: 0.75rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 751px) {
  .map-txt {
    margin-top: calc(20 / var(--pc-full-width) * 100vw);
    padding: 0 calc(100 / var(--pc-full-width) * 100vw) calc(40 / var(--pc-full-width) * 100vw);
    font-size: calc(18 / var(--pc-full-width) * 100vw);
  }
}

@media screen and (min-width: 751px) {
  .map-inner {
    max-width: calc(1000 / var(--pc-full-width) * 100vw);
    margin: 0 auto;
    padding: calc(280 / var(--pc-full-width) * 100vw) 0 calc(80 / var(--pc-full-width) * 100vw);
  }

  .map-ttl {
    width: calc(980 / var(--pc-full-width) * 100vw);
    margin: 0 auto calc(50 / var(--pc-full-width) * 100vw);
  }
}

/* ========== map pins ========== */
.map-wrap {
  position: relative;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 18px;
  transform: translate(-50%, -100%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.map-pin img {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 96, 152, 0.5));
}

@media screen and (min-width: 751px) {
  .map-pin {
    width: 16px;
    height: 24px;
  }
}

@media (hover: hover) {
  .map-pin:hover {
    transform: translate(-50%, -110%);
  }
}

/* ========== map modal ========== */
.map-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.map-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.map-modal-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.map-modal-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  max-height: calc(90vh - 50px);
  display: flex;
  flex-direction: column;
}

.map-modal-close {
  position: absolute;
  top: -10%;
  right: 4%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

.map-modal-close::before,
.map-modal-close::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
}

.map-modal-close::before {
  transform: rotate(45deg);
}

.map-modal-close::after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 751px) {
  .map-modal-close {
    top: -6%;
    right: -10%;
  }

  .map-modal-close::before,
  .map-modal-close::after {
    width: 40px;
    height: 3px;
  }
}

@media (hover: hover) {
  .map-modal-close:hover {
    opacity: 0.7;
  }
}

.map-modal-inner {
  display: flex;
  flex: 1;
  min-height: 0;
}

.map-modal-media {
  position: relative;
  flex: 0 0 56%;
  background: #111;
  overflow: hidden;
}

.map-modal-slides {
  display: flex;
  height: 100%;
  width: 100%;
  list-style: none;
  transition: transform 0.3s ease;
  cursor: grab;
  user-select: none;
}

.map-modal-slides.is-dragging {
  cursor: grabbing;
  transition: none;
}

.map-modal-slides li {
  flex: 0 0 100%;
  height: 100%;
}

.map-modal-slides li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-modal-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.map-modal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  border: none;
}

.map-modal-dot.is-active {
  background: #fff;
}

.map-modal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  overflow-y: auto;
  min-width: 0;
}

.map-modal-platform {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.map-modal-igIcon {
  width: 24px;
  height: 24px;
  display: block;
}

.map-modal-ttl {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #080d29;
}

.map-modal-txt {
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.85;
  color: #333;
  overflow-y: auto;
}

.map-modal-txt p + p {
  margin-top: 0.5em;
}

.map-modal-user {
  margin-top: 25px;
  padding-top: 20px;
  /* border-top: 1px solid #eee; */
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.map-modal-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: #ccc;
  flex-shrink: 0;
}

.map-modal-avatarImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-modal-name {
  font-size: 1rem;
  font-weight: 600;
  color: #080d29;
}

/* 「続きを見る」はSP専用：デフォルト非表示 */
.map-modal-readmore {
  display: none;
}

@media screen and (max-width: 750px) {
  .map-modal-overlay {
    padding: 0;
    align-items: stretch;
  }

  .map-modal-wrap {
    position: relative;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* 白背景ヘッダーバー（×ボタンエリア） */
  .map-modal-close {
    position: relative;
    top: auto;
    right: auto;
    height: 52px;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    flex-shrink: 0;
    z-index: auto;
  }

  .map-modal-close::before,
  .map-modal-close::after {
    background-color: #333;
    width: 24px;
    height: 2px;
  }

  .map-modal-card {
    flex: 1;
    max-height: none;
    height: auto;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .map-modal-inner {
    flex: 1;
    flex-direction: column;
    min-height: 0;
  }

  .map-modal-media {
    flex: 0 0 55vh;
    height: 55vh;
  }

  .map-modal-content {
    flex: 1;
    max-height: none;
    overflow-y: auto;
    padding: 20px 16px 16px;
    min-height: 0;
  }

  .map-modal-ttl {
    font-size: 1.125rem;
  }

  /* テキスト折りたたみ (SP) */
  .map-modal-txt._truncated {
    flex: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .map-modal-readmore {
    color: #005a99;
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 4px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
  }

  .map-modal-txt._truncated ~ .map-modal-readmore {
    display: block;
  }
}

/* ========== share ========== */
#share {
  background: url(../img/main/mv-bg.webp) center top / 100% auto no-repeat;
  background-color: #421300;
}

.share-inner {
  min-width: var(--full-width);
  overflow: hidden;
  padding: calc(180 / var(--full-width) * 100vw) 0 calc(120 / var(--full-width) * 100vw);
}

.share-ttl {
  margin-bottom: calc(30 / var(--full-width) * 100vw);
}

.share-txt {
  color: #fff;
  text-align: center;
  margin-top: calc(30 / var(--full-width) * 100vw);
  padding: 0 calc(40 / var(--full-width) * 100vw) calc(40 / var(--full-width) * 100vw);
  font-size: 0.75rem;
  line-height: 1.9;
  /* letter-spacing: 0.06em; */
}
.share-snsContainer {
  width: 120%;
  overflow: hidden;
  margin: 0 auto;
  margin-left: 20px;
}

@media screen and (min-width: 751px) {
  .share-inner {
    max-width: calc(1200 / var(--pc-full-width) * 100vw);
    overflow: hidden;
    margin: 0 auto;
    padding: calc(280 / var(--pc-full-width) * 100vw) 0 calc(120 / var(--pc-full-width) * 100vw);
  }

  .share-ttl {
    width: calc(980 / var(--pc-full-width) * 100vw);
    margin: 0 auto calc(30 / var(--pc-full-width) * 100vw);
  }

  .share-txt {
    margin-top: calc(20 / var(--pc-full-width) * 100vw);
    padding: 0 calc(115 / var(--pc-full-width) * 100vw) calc(40 / var(--pc-full-width) * 100vw);
    font-size: calc(18 / var(--pc-full-width) * 100vw);
  }

  .share-snsContainer {
    width: 90%;
    margin: 0 auto;
  }
}

.sns-share {
  margin-top: calc(45 / var(--full-width) * 100vw);
}

.sns-share p {
  font-family: "Teko", sans-serif;
  line-height: 1;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
}

.sns-share ul {
  margin-top: calc(30 / var(--full-width) * 100vw);
  display: flex;
  justify-content: center;
  gap: calc(90 / var(--full-width) * 100vw);
}

.sns-share ul li {
  width: 2.75rem;
  height: 2.75rem;
}

.sns-share ul li a {
  display: block;
}
.sns-share ul li._x a {
  padding: calc(6 / var(--full-width) * 100vw);
}

@media screen and (min-width: 751px) {
  .sns-share p {
    font-family: "Teko", sans-serif;
    line-height: 1;
    text-align: center;
    font-size: calc(40 / var(--pc-full-width) * 100vw);
    font-weight: 400;
    color: #fff;
  }

  .sns-share {
    margin-top: calc(45 / var(--pc-full-width) * 100vw);
  }

  .sns-share ul {
    margin-top: calc(24 / var(--pc-full-width) * 100vw);
    gap: calc(40 / var(--pc-full-width) * 100vw);
  }
  .sns-share ul li {
    width: calc(45 / var(--pc-full-width) * 100vw);
    height: calc(45 / var(--pc-full-width) * 100vw);
  }
}

@media (hover: hover) {
  .sns-share ul li a:hover {
    opacity: 0.7;
  }
}

/* ========== campaign ========== */
#campaign {
  background:
    url(../img/main/mv-bg.webp) center top / 100% auto no-repeat,
    url(../img/main/campaign-bg.webp) center top / cover no-repeat;
}
.campaign-inner {
  padding: calc(180 / var(--full-width) * 100vw) 0 calc(100 / var(--full-width) * 100vw);
}

.campaign-ttl {
  width: 100%;
  margin: 0 auto calc(30 / var(--full-width) * 100vw);
}

@media screen and (min-width: 751px) {
  .campaign-inner {
    max-width: calc(980 / var(--pc-full-width) * 100vw);
    margin: 0 auto;
    padding: calc(280 / var(--pc-full-width) * 100vw) 0 calc(80 / var(--pc-full-width) * 100vw);
  }

  .campaign-ttl {
    width: calc(980 / var(--pc-full-width) * 100vw);
    margin: 0 auto calc(40 / var(--pc-full-width) * 100vw);
  }

  .eventBox {
    width: 90%;
    margin: 0 auto;
  }
}
.eventBox {
  width: 90%;
  margin: 0 auto;
}
.eventBox + .eventBox {
  margin-top: min(9.3vw, 70px);
}

.eventBox-head {
  display: flex;
  justify-content: space-between;
}

.eventBox-date {
  width: auto;
  height: min(15.4vw, 116px);
}

.eventBox-date._period {
  height: min(12.1vw, 91px);
}

.eventBox-vsBox {
  display: flex;
  align-items: flex-end;
  column-gap: min(0.8vw, 6px);
}

.eventBox-vs {
  width: min(7vw, 53px);
  translate: 0 -35%;
}

.eventBox-logo {
  width: min(12vw, 90px);
  aspect-ratio: 1 / 1;
}

.eventBox-list {
  margin-top: min(2.6vw, 20px);
}

.eventBox-list > li + li {
  margin-top: min(5.3vw, 40px);
}

.eventBox-btn {
  margin: min(4vw, 30px) auto 0;
  width: min(70.6vw, 530px);
}

@media screen and (min-width: 751px) {
  .eventBox + .eventBox {
    margin-top: calc(70px * var(--container-magnification));
  }

  .eventBox-date {
    height: calc(116px * var(--container-magnification));
  }

  .eventBox-date._period {
    height: calc(91px * var(--container-magnification));
  }

  .eventBox-vsBox {
    column-gap: calc(6px * var(--container-magnification));
  }

  .eventBox-logo {
    width: calc(90px * var(--container-magnification));
  }

  .eventBox-list {
    margin-top: calc(20px * var(--container-magnification));
  }

  .eventBox-list > li + li {
    margin-top: calc(40px * var(--container-magnification));
  }

  .eventBox-btn {
    margin-top: calc(30px * var(--container-magnification));
    width: calc(530px * var(--container-magnification));
  }
}

.eventPresent {
  position: relative;
  display: block;
  padding: min(5vw, 40px);
  background-color: #fff;
  border-radius: min(2.1vw, 16px);
  box-shadow: min(0.8vw, 6px) min(0.8vw, 6px) min(1.6vw, 12px) 0 rgb(0 0 0 / 24%);
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

.eventPresent-target {
  position: relative;
  margin-bottom: min(4vw, 30px);
  padding-bottom: min(4.3vw, 32px);
  text-align: right;
  font-size: 1.6em;
  font-weight: 500;
  color: #421300;
}

.eventPresent-target::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: min(1.6vw, 12px);
  background-color: #421300;
}

.eventPresent-target ._fsL {
  padding-left: 0.1em;
  padding-right: 0.1em;
  font-size: 2em;
  font-weight: 700;
}

.eventPresent-link {
  margin-bottom: min(4vw, 30px);
  display: block;
  color: #fff;
}

.eventPresent-img > img {
  border: 2px solid transparent;
  border-radius: min(1.3vw, 10px);
  /* aspect-ratio: 3 / 2; */
  object-fit: cover;
  object-position: center;
  transition:
    filter 0.2s,
    border-color 0.2s;
}

.eventPresent-img._16x9 > img {
  aspect-ratio: 16 / 9;
}

.eventPresent-img > figcaption {
  line-height: 1.5;
  text-align: right;
  font-size: 1.2em;
}

.eventPresent-img > figcaption::before {
  content: "※";
}

@media screen and (min-width: 751px) {
  .eventPresent {
    position: relative;
    display: block;
    padding: min(8vw, 40px) min(5vw, 40px) min(8vw, 40px);
    background-color: #fff;
    border-radius: min(2.1vw, 16px);
    box-shadow: min(0.8vw, 6px) min(0.8vw, 6px) min(1.6vw, 12px) 0 rgb(0 0 0 / 24%);
    overflow: hidden;
    width: 72%;
    margin: 0 auto;
  }
}

@media (hover: hover) {
  .eventPresent-link:hover .eventPresent-img > img {
    border-color: #fff;
    filter: brightness(0.8);
  }
}

.eventPresent-ttl {
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 600;
}

.eventPresent-txt {
  line-height: 2;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 14px;
}

.eventPresent-btn {
  margin: min(8vw, 60px) auto 0;
  width: min(70.6vw, 530px);
}
