@charset "UTF-8";

/* ===================================
	File Name   : report.css
	Description : Report Page CSS
	Editor      : Bface Nakamura
	Last Editor : Bface Nakamura
	
	Update Description :
	[2025/10/24] 新規作成

====================================== */

/*========== Style Contents ==========

	1. Redefinition
	2. Share Elements
  3. Section [visitors]
  4. Section [scene]
  5. Section [visitor_data]
  6. Section [exhibitor_survey]
  7. Section [visitor_survey]
  8. Section [interview]

====================================== */



/*===== 1. Redefinition =====*/


/*===== 2. Share Elements  =====*/
.survey {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
  padding: 0 1rem;
  > dl {
    box-shadow: 0 .4rem .8rem rgba(0, 0, 0, .25);
    padding: 2rem 3rem;
    background: var(--baseC);
    dt {
      display: flex;
      margin-bottom: 3rem;
      color: var(--dominantC);
      font-weight: 700;
      font-size: 2.4rem;
      span {
        margin-right: 0.5rem;
      }
    }
    dd {
      img {
        display: block;
        width: 80%;
        margin-inline: auto;
      }
    }
  }
}

@media (max-width: 768px) {
  .survey {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
    > dl {
      padding: 2rem 1rem;
       dt {
        margin-bottom: 2rem;
        font-size: 1.6rem;
      }
    }
  }
}



/*===== 3. Section [visitors]  =====*/
#visitors {
  figure {
    max-width: 104.4rem;
    margin: 0 auto;
  }
}



/*===== 4. Section [scene]  =====*/
#scene {
  h3 {
    font-size: 2.8rem;
    &:not(:first-of-type){margin-top: 4rem;}
  }
  > div {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  #scene {
    h3 {
      font-size: 1.8rem;
      &:not(:first-of-type){margin-top: 3rem;}
    }
    > div {
      gap: 1rem;
      padding: 0 ;
    }
  }
}



/*===== 5. Section [visitor_data]  =====*/
#visitor_data {
  > div {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
    padding: 0 1rem;
    > dl {
      box-shadow: 0 .4rem .8rem rgba(0, 0, 0, .25);
      padding: 2rem 3rem;
      background: var(--baseC);
      dt {
        margin-bottom: 3rem;
        color: var(--dominantC);
        font-weight: 700;
        font-size: 2.4rem;
        text-align: center;
      }
    }
  }
}

@media (max-width: 768px) {
  #visitor_data {
    > div {
      grid-template-columns: 1fr;
      gap: 1rem;
      padding: 0;
      > dl {
        padding: 2rem 1rem;
        dt {
          margin-bottom: 2rem;
          font-size: 1.6rem;
        }
      }
    }
  }
}



/*===== 6. Section [exhibitor_survey]  =====*/
#exhibitor_survey {
  .voice_exhibitor {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 1rem 4rem;
    figure {
      width: 10rem;
    }
    p {
      position: relative;
      padding: 2rem;
      margin-left: 3rem;
      border-radius: 5px;
      background: var(--GCl);
      font-weight: bold;
      font-size: 2.4rem;
      span {
        display: block;
        font-size: 1.8rem;
      }
      &::before {
	      position: absolute;
	      top: 4rem;
	      left: -2rem;
	      width: 2rem;
	      height: 2rem;
	      background: var(--GCl);
	      clip-path: polygon(100% 0, 100% 80%, 0 100%);
	      content: "";
      }
    }
  }
}

@media (max-width: 768px) {
  #exhibitor_survey {
    .voice_exhibitor {
      flex-direction: column-reverse;
      gap: 1.5rem;
      margin: 1rem 0 3rem;
      figure {
        width: 6rem;
      }
      p {
        margin-left: 0;
        padding: 1rem;
        font-size: 1.6rem;
        span {
          font-size: 1.4rem;
        }
        &::before {
	        top: auto;
          right: auto;
          left: 12rem;
          bottom: -2rem;
          width: 3rem;
          height: 3rem;
          clip-path: polygon(0 0, 100% 0, 100% 100%);
        }
      }
    }
  }
}



/*===== 7. Section [visitor_survey]  =====*/
#visitor_survey {
  .voice_visitor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem;
    figure {
      width: 10rem;
    }
    p {
      margin-bottom: .5rem;
      color: var(--dominantC);
      font-weight: bold;
      font-size: 2.4rem;
    }
    ul {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      position: relative;
      margin-bottom: 2rem;
      padding: 2rem 2rem 2rem 4rem;
      border-radius: 5px;
      background: var(--GCl);
      font-weight: bold;
      font-size: 2.4rem;
      list-style: disc;
      span {
        display: block;
        font-size: 1.8rem;
      }
      &::before {
	      position: absolute;
        left: 12rem;
        bottom: -2rem;
        width: 3rem;
        height: 3rem;
        background: var(--GCl);
        clip-path: polygon(0 0, 100% 0, 100% 100%);
	      content: "";
      }
    }
  }
  .survey dl:nth-of-type(3) { align-self: start;}
}

@media (max-width: 768px) {
  #visitor_survey {
    .voice_visitor {
      margin: 1rem 0 3rem;
      padding: 0;
      figure {
        width: 6rem;
      }
      ul {
        gap: 1rem;
        padding: 2rem 1rem 2rem 2rem;
        font-size: 1.6rem;
      }
    }
  }
}



/*===== 8. Section [interview]  =====*/
#interview {
  > div {
    width: 50%;
    margin: 0 auto 4rem;
  }
}

@media (max-width: 768px) {
  #interview {
    > div {
      width: 80%;
      margin: 0 auto 2rem;
    }
  }
}