html {
  scroll-behavior: smooth;
}

body.open {
  overflow: hidden;
}

a {
  opacity: 1;
  transition: opacity 200ms ease;
}

a:hover {
  opacity: .7;
}

:root {
  --noto-serif: 'Noto Serif JP', serif;
}

.header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
}

.header .logo {
  aspect-ratio: 2/1;
  height: 50px;
  opacity: 1;
  transition: opacity 200ms ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 15px;
  left: 22px;
}
.header .logo:hover{
  opacity: .7;
}

.header .logo .img {
  width: 100%;
  object-fit: cover;
}

.header .menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.header .menu-list .item {
  padding: 30px 0;
  font-family: var(--noto-serif);
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
  box-sizing: border-box;
  border-bottom: solid 2px #fff;
  transition: border-bottom 200ms ease;
}

.header .menu-list .item:nth-child(1) {
  color: #F6638D;
}
.header .menu-list .item:nth-child(1):hover,
.header .menu-list .item:nth-child(1).now {
  border-bottom: solid 2px #F6638D;
}

.header .menu-list .item:nth-child(2) {
  color: #1DC2FF;
}
.header .menu-list .item:nth-child(2):hover,
.header .menu-list .item:nth-child(2).now {
  border-bottom: solid 2px #1DC2FF;
}

.header .menu-list .item:nth-child(3) {
  color: #7ECE12;
}
.header .menu-list .item:nth-child(3):hover,
.header .menu-list .item:nth-child(3).now {
  border-bottom: solid 2px #7ECE12;
}

.header .menu-list .item:nth-child(4) {
  color: #FF9226;
}
.header .menu-list .item:nth-child(4):hover,
.header .menu-list .item:nth-child(4).now {
  border-bottom: solid 2px #FF9226;
}

.header .menu-list .item:nth-child(5) {
  color: #9C6EAA;
}
.header .menu-list .item:nth-child(5):hover,
.header .menu-list .item:nth-child(5).now  {
  border-bottom: solid 2px #9C6EAA;
}

@media screen and (max-width: 840px) {
  .header {
    height: 50px;
  }

  .header .menu-list {
    display: none;
  }

  .header .logo {
    height: 40px;
    top: 5px;
    left: 10px;
  }

  .hamburger-btn {
    width: 20px;
    height: 14px;
    position: fixed;
    top: 18px;
    right: 15px;
    z-index: 4;
    cursor: pointer;
  }

  .hamburger-btn .line {
    width: 20px;
    height: 2px;
    background-color: #F6638D;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 3;
    opacity: 1;
    visibility: visible;
    transition: transform 200ms ease,
    opacity 200ms ease,
    visibility 200ms ease;
  }

  .hamburger-btn .line:nth-child(1) {
    bottom: auto;
  }

  .hamburger-btn .line:nth-child(3) {
    top: auto;
  }

  .hamburger-btn.open .line:nth-child(1) {
    bottom: 0;
    transform: rotate(45deg);
  }

  .hamburger-btn.open .line:nth-child(2) {
    transform: translateX(5px);
    opacity: 0;
    visibility: hidden;
  }

  .hamburger-btn.open .line:nth-child(3) {
    top: 0;
    transform: rotate(-45deg);
  }

  .sp-menu-container {
    display: none;
  }

  .sp-menu-container.open {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, .9);
    backdrop-filter: blur(2px);
    opacity: 1;
    visibility: visible;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
  }

  .sp-menu-container.open .menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 35px;
  }

  .sp-menu-container.open .menu-list .item {
    font-family: var(--noto-serif);
    font-size: 18px;
    font-weight: bold;
  }

  .sp-menu-container.open .menu-list .item:nth-child(1) {
    color: #F6638D;
  }

  .sp-menu-container.open .menu-list .item:nth-child(2) {
    color: #1DC2FF;
  }

  .sp-menu-container.open .menu-list .item:nth-child(3) {
    color: #7ECE12;
  }

  .sp-menu-container.open .menu-list .item:nth-child(4) {
    color: #FF9226;
  }

  .sp-menu-container.open .menu-list .item:nth-child(5) {
    color: #9C6EAA;
  }
    
}

.footer {
  padding: 160px 0 70px;
  text-align: center;
}

.footer .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.footer .logo-container .syogakukan {
  height: 45px;
}

.footer .logo-container .lategra {
  height: 30px;
}

.footer .copy {
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: #707070;
  margin-top: 10px;
}

.footer .contact-btn {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 16px;
  margin-top: 20px;
}

.footer .twitter {
  margin-bottom: 30px;
}

.footer .twitter .text {
  font-size: 14px;
  font-weight: bold;
  margin-top: 12px;
  line-height: 1;
}

.footer .twitter .text .text-link {
  color: #F6638D;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer .jasrac-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #707070;
  margin-top: 30px;
}

.footer .jasrac-logo .logo {
  height: 16px;
  display: inline-block;
  margin-bottom: -3px;
}

@media screen and (max-width: 840px) {
  .footer {
    padding: 60px 20px 30px;
  }

  .footer .logo-container {
    gap: 20px;
  }

  .footer .logo-container .syogakukan {
    height: 30px;
  }

  .footer .logo-container .lategra {
    height: 20px;
  }

  .footer .copy {
    font-size: 10px;
    margin-top: 20px;
  
  }
}

.main-container {
  width: min(100%, 1200px);
  height: auto;
  margin: 110px auto;
  background-color: rgba(255, 255, 255, .8);
  border-radius: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, .1);
  overflow: hidden;
}

.shortcut-bar {
  width: 100%;
  height: 80px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 2;
  left: 0;
  bottom: 0;
  box-shadow: 0 -2px 2px rgba(0, 0, 0, .1);
}

.shortcut-bar .btn-style {
  border-radius: 10px;
}

.shortcut-bar .btn-style .arrow-box {
  transform: rotate(90deg);
}

.shortcut-bar .btn-style .text {
  font-weight: bold;
}

.btn-style {
  width: 317px;
  height: 58px;
  border-radius: 50px;
  background-color: #F6638D;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-style .arrow-box {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, .3);
}

.btn-style .text {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

.heading-title {
  text-align: center;
  margin: 170px 0 70px;
}

.heading-title .text {
  display: inline-block;
  font-family: var(--noto-serif);
  font-weight: 400;
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  position: relative;
}

.heading-title .text::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: url(../img/dot.svg) left top / auto 100% repeat-x;
  margin-bottom: 15px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.is-pc {
  display: block;
}
.is-sp {
  display: none;
}

@media screen and (max-width: 840px) {
  .main-container {
    width: calc(100% - 20px);
    margin: 70px auto 110px;
  }
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .heading-title {
    margin: 100px 0 40px;
  }
  
  .heading-title .text {
    font-size: 32px;
  }

  .btn-style {
    width: min(100%, 350px);
  }
}

/* ------------------------------
              HERO
------------------------------- */

.hero {
  position: relative;
}

.hero .kv-bg {
  width: 100%;
}

.hero .logo {
  aspect-ratio: 697/355;
  width: min(calc(697 * 100vw / 1280), 697px);
  position: absolute;
  left: 0;
  right: 0;
  top: min(calc(80 * 100vw / 1200), 80px);
  margin: auto;
}

.hero .date {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.48;
  letter-spacing: 0.05em;
  color: #1DC2FF;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, .1);
  margin-top: 50px;
}

.hero .news {
  width: calc(100% - 100px);
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin: 100px auto -100px;
}

.hero .news strong {
  font-weight: bold;
  color: #F6638D;
}

.hero .news .impact-bold {
  font-weight: bold;
}

.hero .news .title {
  font-size: 30px;
  font-weight: bold;
  color: #F6638D;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-bottom: 20px;
}

.hero .date .small {
  font-size: 36px;
}

.hero .character-img {
  position: absolute;
}

.hero .character-img.group {
  aspect-ratio: 335/509;
  width: min(calc(335 * 100vw / 1280), 335px);
  top: min(calc(195 * 100vw / 1280), 195px);
  left: 0;
}

.hero .character-img.solo {
  aspect-ratio: 235/542;
  width: min(calc(235 * 100vw / 1280), 235px);
  top: min(calc(162 * 100vw / 1280), 162px);
  right: min(calc(50 * 100vw / 1280), 50px);
}

@media screen and (max-width: 840px) {
  .hero .logo {
    width: 100%;
  }

  .hero .character-img.group {
    width: calc(200 * 100vw / 390);
    top: calc(220 * 100vw / 390);
  }

  .hero .character-img.solo {
    width: calc(135 * 100vw / 390);
    top: calc(220 * 100vw / 390);
    right: calc(15 * 100vw / 390);
  }

  .hero .date {
    margin-top: calc(200 * 100vw / 390);
    font-size: 31px;
  }

  .hero .date .small {
    font-size: 22px;
  }
}

/* ------------------------------
            OUTLINE
------------------------------- */
.outline {
  margin: 150px 50px 0;
  scroll-margin-top: 120px;
}

.outline .about-sato {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.outline .about-sato .img {
  aspect-ratio: 352.03/443.37;
  width: min(calc(352.03 * 100vw / 1280), 352.03px);
  height: 100%;
  margin-left: 20px;
}

.outline .about-sato .text {
  font-size: 18px;
  font-weight: 200;
  line-height: 1.88;
}

.outline .about-sato .text .impact-bold {
  font-weight: bold;
}

.outline .about-sato .text .text-link {
  color: #F6638D;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media screen and (max-width: 840px) {
  .outline {
    scroll-margin-top: 80px;
  }

  .outline .about-sato {
    flex-direction: column;
  }

  .outline .about-sato .img {
    width: calc(235 * 100vw / 390);
  }

  .outline .about-sato .text {
    font-size: 16px;
  }
}

/* ------------------------------
            IMAGES
------------------------------- */
.contents-images {
  display: flex;
  flex-wrap: wrap;
  margin-top: 35px;
}
.contents-images .img {
  width: 50%;
}

@media screen and (max-width: 840px) {
  .contents-images {
    flex-direction: column;
    margin-top: calc(20 * 100vw / 390);
  }

  .contents-images .img {
    width: 100%;
  }
}

/* ------------------------------
            MUSIC
------------------------------- */
.songs {
  margin-top: 95px;
}

.songs .lead-text {
  font-size: 22px;
  font-weight: 200;
  line-height: 1.72;
  text-align: center;
}

.songs .head-title {
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  text-align: center;
  margin-top: 50px;
  position: relative;
}
.songs .head-title::after {
  content: "※プログラム順";
  font-size: 14px;
  font-weight: 200;
  line-height: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
}

.songs .list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 60px;
}

.songs .artist .image-box {
  width: 300px;
  height: 300px;
  position: relative;
}

.songs .artist .num {
  width: 92px;
  position: absolute;
  top: 0;
  left: 0;
}

.songs .artist .jacket {
  width: 130px;
  height: 130px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.songs .artist .artist-img {
  height: 280px;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}

.songs .artist:nth-child(1) .artist-img {
  border: solid 1px #EBEBEB;
}

.songs .artist:nth-child(4) .artist-img {
  border: solid 1px #EBEBEB;
}

.songs .artist .info-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.songs .artist .info-box .song {
  font-family: var(--noto-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.songs .artist .info-box .line {
  height: 3px;
}

.songs .artist .info-box .artist {
  font-size: 23px;
  letter-spacing: 0.2em;
  margin-top: 5px;
}

.songs .artist:nth-child(1) .info-box .song,
.songs .artist:nth-child(1) .info-box .artist {
  color: #F6638D;
}
.songs .artist:nth-child(2) .info-box .song,
.songs .artist:nth-child(2) .info-box .artist {
  color: #1DC2FF;
}
.songs .artist:nth-child(3) .info-box .song,
.songs .artist:nth-child(3) .info-box .artist {
  color: #7ECE12;
}
.songs .artist:nth-child(4) .info-box .song,
.songs .artist:nth-child(4) .info-box .artist {
  color: #9C6EAA;
}
.songs .artist:nth-child(5) .info-box .song,
.songs .artist:nth-child(5) .info-box .artist {
  color: #FF9226;
}
  
@media screen and (max-width: 840px) {
  .songs {
    margin-top: 60px;
  }

  .songs .lead-text {
    font-size: 18px;
  }
}

/* ------------------------------
            EVENT DATES
------------------------------- */
.event-dates {
  margin: 0 50px 0;
  scroll-margin-top: 120px;
}

.event-dates .heading-title {
  color: #1DC2FF;
}

.event-dates .event-list {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.event-dates .event-item {
  flex: 1;
}

.event-dates .event-item .btn {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  position: relative;
  z-index: 1;
}

.event-dates .event-item .btn::after {
  content: "";
  width: 100%;
  height: 90px;
  border: solid 3px #FFA3BE;
  position: absolute;
  top: -3px;
  left: -3px;
  border-radius: 14px;
}
.event-dates .event-item.green .btn::after {
  border: solid 3px #B9EB76;
}

.event-dates .event-item .btn::before {
  content: "";
  width: 100%;
  height: 90px;
  background-color: #F6638D;
  border-radius: 14px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .1);
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 0;
}
.event-dates .event-item.green .btn::before {
  background-color: #7ECE12;
}

.event-dates .event-item .btn .box {
  width: 48px;
  height: 48px;
  padding: 0 0 2px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, .3);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  color: #fff;
}

.event-dates .event-item .btn .text {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
}

.event-dates .event-item .impact-text {
  font-weight: bold;
  color: #F6638D;
}
.event-dates .event-item .impact-color {
  color: #F6638D;
}

.event-dates .event-item .impact-bold {
  font-weight: bold;
}

.event-dates .event-item .line-through {
  text-decoration: line-through;
}

.event-dates .event-item .info {
  width: 100%;
  min-height: 170px;
  padding: 20px 30px;
  background-color: #FAFAFA;
  border-radius: 14px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.event-dates .event-item.green .info {
  justify-content: flex-start;
  min-height: auto;
}

.event-dates .event-item .info .date {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.event-dates .event-item .info .memo {
  font-size: 14px;
  line-height: 1.2;
}

.event-dates .event-item .info .memo strong {
  font-weight: bold;
  color: #F6638D;
}

.event-dates .event-item .info .flow .title {
  font-size: 18px;
  font-weight: bold;
}

.event-dates .event-item .info .flow strong {
  font-weight: bold;
  color: #F6638D;
}

.event-dates .event-item .info .time {
  font-size: 18px;
}

.event-dates .event-item .info .text {
  font-size: 16px;
  font-weight: 200;
  margin-top: 5px;
}

.event-dates .event-item .info .text-date {
  font-size: 18px;
}

.event-dates .event-item .note {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-dates .event-item .note .row {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 200;
  padding-left: 1em;
  position: relative;
}

.event-dates .event-item .note .row::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #F6638D;
  position: absolute;
  top: 8px;
  left: 0;
}
.event-dates .event-item.green .note .row::before {
  background-color: #7ECE12;
}

@media screen and (max-width: 840px) {
  .event-dates {
    margin: 0 10px 0;
    scroll-margin-top: 80px;
  }

  .event-dates .event-list {
    flex-direction: column;
  }

  .event-dates .event-item .info {
    align-items: center;
  }
}


/* ------------------------------
            TICKET
------------------------------- */
.ticket {
  margin: 0 50px;
  scroll-margin-top: 120px;
}

.ticket .heading-title {
  color: #7ECE12;
}

.ticket .lead-text {
  font-size: 22px;
  font-weight: 200;
  line-height: 1.72;
  text-align: center;
}

.ticket .how-to-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.ticket .item-container .speech-bubble {
  width: 100%;
  height: min(calc(220 * 100vw / 1280), 220px);
}

.ticket .item-container .speech-bubble::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 17px;
  clip-path: polygon(50% 30%, 0% 100%, 100% 100%); /* 解説② */
  background-color: #011627;
  top: -16px; /* ここの数値でしっぽの位置を変更する */
  left: 25%; /* ここの数値でしっぽの位置を変更する */
  z-index: 1;
}

.ticket .item-container .ticket-box {
  width: 100%;
  height: auto;
  padding: 25px 30px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  transform: translate(-6px, -6px);
  position: relative;
  z-index: 1;
}

.ticket .item-container .ticket-box::after {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 3px #FFA3BE;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 14px;
}
.ticket .item-container.green .ticket-box::after {
  border: solid 3px #B9EB76;
}

.ticket .item-container .ticket-box::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F6638D;
  border-radius: 14px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .1);
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 0;
}
.ticket .item-container.green .ticket-box::before {
  background-color: #7ECE12;
}

.ticket .item-container .ticket-box .category-title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.ticket .item-container .ticket-box .category-title .box {
  width: 48px;
  height: 48px;
  padding: 0 0 2px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, .3);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  color: #fff;
}

.ticket .item-container .ticket-box .category-title .text {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
}

.ticket .item-container .ticket-box .cost {
  font-size: 24px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.ticket .item-container .ticket-box .note {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}

.ticket .how-to-buy {
  font-size: 16px;
  font-weight: 200;
  line-height: 1.875;
  margin-top: 20px;
}

.ticket .btn-style {
  margin: 20px auto 0;
}

.ticket .caution-box {
  border: solid 3px #EAEAEA;
  margin-top: 30px;
  padding: 15px;
}

.ticket .caution-box .title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ticket .caution-box .detail-container {
  display: flex;
  align-items: center;
}

.ticket .caution-box .detail-container .text {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.7;
}

.ticket .caution-box .detail-container .icon {
  height: 49px;
}

.ticket .platform-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.ticket .platform-list .btn-style {
  margin-top: 0;
  background-color: #fff;
  border:  solid 1px #DEDEDE;
}

.ticket .platform-list .btn-style .spwn {
  height: 15px;
}

.ticket .platform-list .btn-style .zaiko {
  height: 21px;
}

.ticket .platform-list .btn-style .eplus {
  height: 32px;
}

@media screen and (max-width: 840px) {
  .ticket {
    margin: 0 10px;
    scroll-margin-top: 80px;
  }

  .ticket .lead-text {
    font-size: 18px;
  }

  .ticket .how-to-list {
    flex-direction: column;
    margin-top: calc(30 * 100vw / 390);
  }

  .ticket .item-container .speech-bubble {
    width: 100%;
    height: auto;
  }

  .ticket .item-container .ticket-box .category-title .box {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .ticket .item-container .ticket-box .category-title .text {
    font-size: 24px;
  }

  .ticket .item-container .ticket-box .cost {
    font-size: 22px;
  }

  .ticket .caution-box .detail-container {
    flex-direction: column;
    gap: 10px;
  }
    
}

/* ------------------------------
            WARNING
------------------------------- */

.warning {
  scroll-margin-top: 120px;
}

.warning .heading-title {
  color: #FF9226;
}

.warning .lead-text {
  font-size: 22px;
  font-weight: 200;
  line-height: 1.72;
  text-align: center;
}

.warning .note-list {
  margin: 0 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 30px;
}

.warning .panel {
  width: calc(50% - 25px);
  padding-left: 25px;
}

.warning .panel:last-child {
  width: 100%;
}

.warning .panel .title {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
}

.warning .panel .title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #FF9226;
  position: absolute;
  top: 3px;
  left: -25px;
}

.warning .panel .img-list {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.warning .panel .img-list .img {
  width: calc((100% - 30px)/2);
}
  

.warning .panel .spec-list {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.warning .panel .head-set {
  font-size: 14px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.warning .panel .head-set .impact-color {
  color: #F6638D;
}

.warning .panel .head-set .name {
  font-size: 16px;
  line-height: 1;
}

.warning .panel .environment {
  font-size: 16px;
  line-height: 1.875;
}

.warning .panel .environment .text-link {
  text-decoration: underline;
}

@media screen and (max-width: 840px) {
  .warning {
    scroll-margin-top: 80px;
  }

  .warning .lead-text {
    font-size: 18px;
    margin: 0 10px;
  }

  .warning .note-list {
    margin: 0 10px;
    flex-direction: column;
  }

  .warning .panel {
    width: 100%;
  }

  .warning .panel .img-list {
    flex-direction: column;
  }
  
  .warning .panel .img-list .img {
    width: 100%;
  }
}

/* ------------------------------
            GALLERY
------------------------------- */
.gallery {
  margin: 0 50px;
  scroll-margin-top: 120px;
}

.gallery .heading-title {
  color: #9C6EAA;
}

.gallery .list {
  display: flex;
}

.gallery .gallery-item {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery .gallery-item .img {
  height: 255px;
}

.gallery .gallery-item .credit {
  font-size: 12px;
  font-weight: 200;
  margin-top: 10px;
}

.gallery .gallery-item .title {
  font-size: 22px;
}

.gallery .gallery-item .comic {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.gallery .gallery-item .detail {
  text-align: center;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.875;
  margin-top: 15px;
}

.gallery .gallery-item .btn-style {
  margin-top: 20px;
  background-color: #9C6EAA;
}

@media screen and (max-width: 840px) {
  .gallery {
    margin: 0 10px;
    scroll-margin-top: 80px;
  }

  .gallery .list {
    flex-direction: column;
    gap: 60px;
  }

  .gallery .gallery-item {
    width: 100%;
    margin: auto;
  }

  .gallery .gallery-item:nth-child(1) .img {
    width: min(100%, 369px);
    height: auto;
  }

  .gallery .gallery-item .title {
    text-align: center;
    margin-top: 20px;
  }

  .gallery .gallery-item .comic {
    font-size: 14px;
    margin-top: 15px;
  }

  .gallery .gallery-item .detail {
    font-size: 14px;
    text-align: left;
  }
}