@charset "UTF-8";

/* default
---------------------------------------------------- */

body {
  margin: 0;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.fs-life-detail .fs-privilege-gallery {
  display: none;
}


/* main
---------------------------------------------------- */

#coa2025autumn_motegicircuit {
  width: min(100%, 940px);
  margin: 0 auto;
}

#coa2025autumn_motegicircuit img {
  width: 100%;
}

/* ---------------------------------------------------
                             SP
---------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
    width: 100%;
  }

  .fs-life-detail .fs-static-01 {
    margin: 0 0 10px;
  }

}

/* ’Ç‰Áƒ^ƒu
---------------------------------------------------- */

.section {
  margin: 0 auto;
  padding: 80px 16px;
}

.section__title {
  width: 100% !important;
  max-width: 430px;
  display: flex;
  margin: 0 auto 40px;

}

.schedule {
  margin-top: -3px;
  background-color: #141414;
  background-image: linear-gradient(45deg, #1a1a1a80 25%, transparent 25%, transparent 75%, #1a1a1a80 75%), linear-gradient(45deg, #1a1a1a80 25%, transparent 25%, transparent 75%, #1a1a1a80 75%);
  background-position: 10px 10px, 30px 30px;
  background-size: 40px 40px;
}

.schedule__img {
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 580px;
}

.schedule__note {
  margin: 16px auto 0;
  display: flex;
  width: 100%;
  max-width: 680px;
}

.tab-design {
  position: relative;
}

.tab-design ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.tab-design ul li {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  color: #141414;
  font-weight: 600;
  font-size: 14px;
  background: #777;
  /* border: 3px solid #e0e0e0; */
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.tab-design ul li.selected {
  color: #141414;
  background: #fe0000;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px) scale(1.05);
}

.tab-design ul li.selected::before {
  transform: scale(1);
}

.tab-design ul li:not(.selected):hover {
  border-color: #fe0000;
  color: #141414;
  transform: translateY(-2px) scale(1.02);
}

.tab-design .tab-content {
  display: none;
  margin: 0 auto;
  max-width: 680px;
  padding: 56px 24px;
  background: #f4f4f4;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.tab-design .tab-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #fe0000;
  border-radius: 16px 16px 0 0;
}

.tab-design .tab-content.selected {
  display: block;
  animation: circleButtonFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes circleButtonFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media screen and (max-width: 767px) {

  .section {
    padding: 48px 16px;
  }

  .section__title {
    width: 100% !important;
    max-width: 280px;
    margin: 0 auto 24px;
  }

  .tab-design ul {
    margin-bottom: 24px;
  }

  .tab-design .tab-content {
    padding: 40px 24px 40px;
  }

}