/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

img{
	width: 100%;
}

ul {
  list-style-type: none;
}

a, a:link{
  text-decoration: none;
}

/* Body */
.body {
  background: #fff;
  color: #000;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: url("../img/goonie_2025aw/bg_body.png");
  background-attachment: fixed;
  background-size: cover;
}

/* Wrapper */
.l-wrap {
  width: 550px;
  margin: 0 auto 0 25%;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
  overflow: hidden;
}

/* Header */
.l-wrap__header {
  padding: 36px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.l-wrap__header-title {
  font-size: 22px;
  margin-bottom: 8px;
}
.l-wrap__header-text {
  color: #334;
  opacity: 0.85;
}

/* Section */
.l-wrap__section {
  padding: 0;
  min-height: 600px;
  line-height: 1;
}

.l-wrap__section-title {
  font-size: 18px;
  margin-bottom: 12px;
}
.l-wrap__cta {
display: inline-block;
margin-top: -2px;
padding: 0;
}

.bg_illust_camp {
  position: fixed;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../img/goonie_2025aw/bg_illust_camp.png");
  background-size: cover;
  width: 255px;
  height: 300px;
}

/* Footer */
footer {
  margin: -3px 0 -7px 0;
  position: relative;
}

.top_arrow{
    display: inline-block;
    margin: auto;
    padding: 0;
    position: absolute;
    width: 65px;
    top: 30px;
    right: 50%;
    transform: translateX(50%);
}


/* Side Navigation */
.nav {
  position: fixed;
  right: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(540px);
  border-radius: 12px;
  z-index: 1200;
  width: 250px;
}
.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav__list::before{
  content: "";
  background: url("../img/goonie_2025aw/nav_header.png");
  width: 250px;
  height: 156px;
  background-size: contain;
  background-repeat: no-repeat;
}

.nav__link {
  display: block;
  padding: 20px 5px;
  border-radius: 8px;
  text-decoration: none;
  color: #68696E;
  font-weight: 600;
  text-align: center;
  font-size: 17px;
  background: #fff;
  position: relative;
}
.nav__link::before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
  background-image:url("../img/goonie_2025aw/nav_icon_01.png");
  width: 67px;
  height: 67px;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  background-size: contain;
}
.nav__link.nav__link--02::before{
  background-image:url("../img/goonie_2025aw/nav_icon_02.png");
}
.nav__link.nav__link--03::before{
  background-image:url("../img/goonie_2025aw/nav_icon_03.png");
}
.nav__link.nav__link--04::before{
  background-image:url("../img/goonie_2025aw/nav_icon_04.png");
}
.nav__link::after{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  background-image:url("../img/goonie_2025aw/icon_nav_arrow.png");
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  background-size: contain;
}
.nav__link:hover {
  opacity:0.7;
}
.nav__link--active {
  background: #0b7285;
  color: white;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06);
}


/* Media Queries */
@media (min-width: 1550px) {
  .l-wrap {
    width: 600px;
  }
  .nav{
    transform: translateY(-50%) translateX(560px);
    width: 300px;
  }
  .nav__list::before{
    width: 306px;
    height: 183px;
  }
}

@media (max-width: 1240px) {
  .l-wrap{
    margin: 0 auto 0 10%;
  }

  .nav {
    position: fixed;
    right: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(470px);
    width: 250px;
  }

  .bg_illust_camp{
    display: none;
  }
}

@media (max-width: 950px) {
  .l-wrap{
    margin: 0 auto 0 0;
    width: 460px;
  }

  .nav {
    position: fixed;
    right: 27px;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    width: 250px;
  }

  .bg_illust_camp{
    display: none;
  }

}



@media (max-width: 800px) {
  
  .l-wrap {
    width: 100%;
    border-radius: 10px;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: auto;
    padding:9px 10px 6px 10px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    background: #D5AD6E;
    filter: drop-shadow(0px -10px 20px rgba(0,0,0,0.5));
  }

  .nav{
    display: none;
    opacity: 0;
    transition: opacity 1.56s ease;
  }

  .nav.visible{
    display: block;
    opacity: 1; 
  }
  
  .nav__list::before{
    display:none;
  }

  .nav__list {
    flex-direction: row;
    gap: 6px;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .nav__list__nav{
    flex: 1;
  }

  .nav__link::before{
    width: 105px;
    height: 100px;
    top: -72px;
    transform: translatex(-50%);
    left: 50%;
  }

  .nav__link::after{
    position: absolute;
    top: auto;
    bottom: 0;
    transform: translateX(50%);
    right: 50%;
    background-image: url("../img/goonie_2025aw/icon_nav_arrow_sp.png");
    width: 40px;
    height: 20px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    background-size: contain;
  }

  .nav__link {
    font-size: 2.5vw;
    padding: 25px 10px;
    width: auto;
    background: #DEBE8D;
    color: #fff;
  }

  .nav__link.nav__link--01::before{
    background-image: url("../img/goonie_2025aw/nav_icon_01_sp.png");
  }
    .nav__link.nav__link--02::before{
    background-image: url("../img/goonie_2025aw/nav_icon_02_sp.png");
  }
    .nav__link.nav__link--03::before{
    background-image: url("../img/goonie_2025aw/nav_icon_03_sp.png");
  }
    .nav__link.nav__link--04::before{
    background-image: url("../img/goonie_2025aw/nav_icon_04_sp.png");
  }

  .body {
    padding-bottom: 76px;
  }
}

@media (max-width: 640px) {
  .l-wrap {
    width: 100%;
  }
  .body {
    padding-bottom: 76px;
  }
}

@media (max-width: 590px) {
  .nav__link::before{
    width: 90px;
    height: 89px;
    top: -66px;
  }
  .nav__link{
    font-size: 2.8vw;
    padding: 25px 2px;
  }
  
}

@media (max-width: 460px) {
  .nav__link::before{
    width: 75px;
    height: 75px;
    top: -51px;
  }
}


html {
  scroll-behavior: smooth;
}

.section-marker {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

/* モーダル */
  .modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    z-index: 1300;
    opacity: 0;
    transition: opacity 220ms ease;
  }
  .modal-overlay.open {
    display: flex;
    opacity: 1;
  }

  .modal {
    background: #fff;
    max-width: 500px;
    width: calc(100% - 40px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 20px;
    transform: translateY(-8px) scale(0.995);
    transition: transform 220ms ease;
    outline: none;
    z-index: 1301;
  }
  .modal-overlay.open .modal {
    transform: translateY(0) scale(1);
  }

  .modal-close {
    position: absolute;
    right: 18px;
    top: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    color: #000;
  }

  .modal-header { margin-bottom: 8px; }
  .modal-body { margin-bottom: 12px; }

  .no-scroll { overflow: hidden; height: 100%; }


  .modal-title{
    font-size: 22px;
    margin: 0 0 20px;
    border-bottom: 1px dotted #000;
    padding: 0 0 15px;
  }

  .modal-body__list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .modal-body__item{
    display: block;
  }

  .modal-body__link{
    display: block;
    padding: 15px 26px 15px 6px;
    background: #000;
    font-size: 16px;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    position: relative;
  }

  .modal-body__link::after{
   position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    background-image: url("../img/goonie_2025aw/icon_target_blank.png");
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    background-size: contain;
  }  