body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.6;
  color: #fff;
  background-color: #f8f9fa;
}

p {
  font-size: 14px;
}

.slider {
  margin: 0 10px;
}
.event-header {
  margin: 0;
  width: 100%;
  background-color: #000;
  height: 60px;
  display: flex;
  align-items: center;
  max-width: 450px;
  margin: 0 auto;
}
footer {
  background-color: #000;
  max-width: 450px;
  margin: 0 auto;
}
.even-header-logo {
  margin: 0 15px;
  height: 40px;
}

/* CTA */
.cta {
  display: flex;
  flex-flow: column;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  margin: 20px auto 20px;
  max-width: 450px;
  text-align: center;
  line-height: 1.1;
  width: 100%;
  cursor: pointer;
}

.fix-cta {
  width: calc(100% - 40px);
  position: fixed; /*配置設定-fixed指定で追従*/
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-flow: column;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  margin: 0 auto;
  padding: 10px 20px;
  max-width: 450px;
  text-align: center;
  line-height: 1.1;
  background-color: rgba(0, 0, 0, 0.5);
}

.floating-position {
  display: flex;
  position: fixed; /*配置設定-fixed指定で追従*/
  z-index: 1;
  width: 100%;
  max-width: 450px;
  justify-content: center;
  align-items: flex-end;
  bottom: 0;
}
.floating-cta {
  display: none;
}

/* マイクロCTA */
.microcta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 5px auto;
  font-weight: 600;
  font-size: 20px;
}
.microcta-accent {
  background: linear-gradient(#ff2e2e 0%, #c62c2c 100%);
  color: #fff;
  display: inline-block;
  padding: 2px 5px;
  border-radius: 2px;
  margin: 0 5px;
}

/* CTAボタン部分 */
.cta-button {
  margin: 0;
  background: linear-gradient(160deg, #f8722d 0%, #ff2f2e 100%);
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #fff;
}

/* アイコンのスタイル */
.cta-button::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 20px;
  width: 30px;
  height: 30px;
  margin: auto;
  border-radius: 30px;
  background-color: #fff;
}
.cta-button::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 28px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 7px solid transparent;
  border-right: 0 solid transparent;
  border-left: 10px solid #f8722d;
  border-bottom: 7px solid transparent;
  box-sizing: border-box;
}

.cta-animation {
  position: absolute;
  content: "";
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.85) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-45deg);
  animation: cta-button-wrap 2s cubic-bezier(0.55, 0.085, 0.68, 0.53) infinite;
}
@keyframes cta-button-wrap {
  0% {
    left: -100%;
  }
  25% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.es-menjo {
  border: 2px solid #fff;
  margin: 0;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  position: absolute;
  left: 10px;
  background: linear-gradient(#ff2e2e 0%, #c62c2c 100%);
}

.cta-text {
  position: relative;
  margin: 10px auto;
  justify-content: center;
  text-align: center;
  font-size: 20px;
}



.event-main {
  max-width: 450px;
  margin: auto;
}

/* ファーストビュー */
.event-fv {
  display: flex;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  aspect-ratio: 9 / 12;
  box-sizing: border-box;

  background-image: url("../img/fv.png");
  background-size: 100%;
  background-origin: border-box;
  padding: 0 20px;

  align-items: flex-end;
}

.company-logo {
  width: 100%;
}

.event-main h2 {
  text-align: center;
}

.companylist {
  background-color: #111;
  padding: 20px 20px 40px;
}
.about {
  background: linear-gradient(160deg, #5e95cdee 0%, #3e79b3ee 100%);
  padding: 40px 20px;
  color: #333;
}

h2 {
  font-size: 24px;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  border-bottom: 2px solid #ff2e2e;
  line-height: 1.5;
}

.section-border {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
}

.img {
  width: 100%;
  border-radius: 14px;
}

.text-accent {
  color: rgb(255, 0, 0);
  font-weight: 600;
}

.recommend {
  background-image: url("../img/bg-white.png");
  /* background-attachment: fixed; */
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}

.recommend h2 {
  color: #333;
}

.fukidashi-01 {
  background-color: #261834;
  padding: 10px 20px;
  border-radius: 5px;
}
.fukidashi-01 p {
  margin: 0;
  text-align: center;
  font-size: 18px;
}

.fukidashi-02 {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.fukidashi-02 p {
  color: #333;
  margin: 0;
}

.osusume-img {
  width: 60px;
  height: 60px;
  margin: 0 20px -25px auto;
}

.osusume-img img {
  width: 100%;
}
.osusume-img-left {
  width: 60px;
  height: 60px;
  margin: 0 0 -25px 20px;
}
.osusume-img-left img {
  width: 100%;
}
.triangle {
  margin: -1px auto -5px;
  background: #261834;
  height: calc(50px / 2);
  width: 50px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* 参加特典 */
.offer {
  padding: 40px 20px;
  background: linear-gradient(#111 0%, #333 100%);
}
.offer-accent {
  font-size: 24px;
  background: linear-gradient(#ff2e2e 0%, #c62c2c 100%);

  display: flex;
  flex-flow: column;
  margin-bottom: 0;
  padding: 2px 20px;
  border-radius: 5px;
}

.offer-wrap {
  background: linear-gradient(160deg, #7342b3 0%, #566dab 100%);
  padding: 20px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}
.offer h3 {
  font-size: 20px;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
.offer-accent-h3 {
  font-size: 20px;
  background: linear-gradient(#ff2e2e 0%, #c62c2c 100%);
  color: #fff;
  display: flex;
  flex-flow: column;
  margin-bottom: 0;
  padding: 2px 20px;
  border-radius: 5px;
}
.offer-wrap p {
  margin: 0;
}
.offer-img {
  width: 100%;
  margin: 15px auto;
  border-radius: 14px;
}

/* 参加者の声 */
.review {
  padding: 40px 20px;
  background-color: rgb(50, 50, 100);
}
.review-wrap {
  color: #000;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.review-img-wrap {
  width: 70px;
  flex-shrink: 0;
}
.review-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}
.review-body {
  flex: 1;
}
.review-name {
  color: #ff2e2e;
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 15px;
}
.review-wrap p {
  margin: 0;
}

/* イベントスケジュール */
.schedule {
  padding: 40px 20px;
  background: linear-gradient(#000 0%, #333 100%);
}
.schedule-wrap {
  background: linear-gradient(160deg, #3e79b3ee 0%, #9c3e99cc 100%);
  padding: 20px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}
.schedule-wrap2 {
  margin-bottom: 20px;
}
.schedule-wrap2 p {
  font-size: 13px;
  margin: 5px 0;
  line-height: 1.7;
}

.schedule-wrap p {
  margin: 0;
}

.schedule-img {
  width: 100%;
  margin: 5px auto;
  border-radius: 14px;
}
.schedule-headline {
  font-size: 18px;
  border-bottom: #fff 2px solid;
  margin-bottom: 5px;
  line-height: 1.5;
}

/* ご参加までの流れ */
.how-to-reserve {
  padding: 40px 20px;
  background: linear-gradient(160deg, #151a3e 0%, #261834 100%);
}
.how-to-reserve h3 {
  font-size: 22px;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
  display: flex;
  flex-flow: column;
  margin-bottom: 20px;
  padding: 2px 20px;
  border-radius: 5px;
}
.how-to-reserve p {
  margin: 0;
}
.triangle-white {
  margin: 20px auto;
  background: #fff;
  height: calc(25px / 2);
  width: 25px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* アクセス */
.access {
  padding: 40px 20px;
  background-color: #212121;
}
.access-route {
  font-size: 12px;
  line-height: 1.8;
}
/* よくある質問 */
.faq {
  padding: 40px 20px;
  background-color: #000;
}

.faq-q {
  background-color: #2d2d2d;
  padding: 20px 40px 20px 20px;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;

  &:before {
    position: absolute;
    content: "";
    display: block;
    width: 15px;
    height: 2px;
    background-color: #fff;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
  }

  &:after {
    position: absolute;
    content: "";
    display: block;
    width: 15px;
    height: 2px;
    background-color: #fff;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
  }
}
.faq-q.active {
  &:after {
    display: none;
  }
}
.faq-a {
  background-color: #575757;
  padding: 10px 20px 20px 20px;
  margin: 0 0 10px 0;
  display: none;
  font-size: 13px;
  line-height: 1.7;
}

/* フッター */
.footer {
  height: 60px;
}

.footer-logo {
  height: 40px;
  display: flex;
  margin: 0 auto;
}
.footer-copyright {
  font-size: 10px;
  font-weight: 200;
  text-align: center;
  margin: 0;
}

#area {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 9999;
}

#area.active {
  transform: translateX(0);
}

#area .content-wrap-head {
  background-color: #000;
  padding: 40px 20px 20px;
  max-width: 400px;
  margin: 0 auto;
}

#area .content-wrap {
  color: white;
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
}

#area .content {
  background-color: #fff;
  padding: 20px;
  text-decoration: none;
  border-radius: 5px;
}

#area a {
  margin: 0;
  color: #333;
  font-weight: 600;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
/* CTAボタン部分 */
.area-button {
  margin: 0;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px #888;
}

/* アイコンのスタイル */
.area-button::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 20px;
  width: 30px;
  height: 30px;
  margin: auto;
  border-radius: 30px;
  box-shadow: 0 1px 5px #888;
}
.area-button::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 29px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 7px solid transparent;
  border-right: 0 solid transparent;
  border-left: 10px solid #ff2e2e;
  border-bottom: 7px solid transparent;
  box-sizing: border-box;
}

.area-text-01 {
  border-left: #138dff solid 4px;
  padding-left: 15px;
}
.area-text-02 {
  border-left: rgb(255, 124, 124) solid 4px;
  padding-left: 15px;
}

#closeBtn {
  background-color: #fff;
  border: none;
  outline: none;
  padding: 15px 20px;
  border-radius: 5px;
  margin: 10px 0;
  box-shadow: 0 2px 5px #888;
  color: #000;
}

/* ===========================
   PC Desktop Enhancements (>= 1080px)
   =========================== */

@media (min-width: 1080px) {
  /* Hide floating CTA on desktop */
  .floating-cta {
    display: none !important;
  }
}

