@charset "UTF-8";

/* page
---------------------------------------*/
@media screen and (max-width: 599px) {
  .page .header__logo-icon img {
    height: 20px;
  }
}

/* header
---------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  width: 100%;
}
.header__top {
  width: 100%;
  background: var(--white);
  overflow: hidden;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 31px;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__logo-icon {
  margin-right: 10px;
}

.header__logo-icon img {
  height: 42px;
  width: auto;
}

.header__logo-text {
  font-size: 12px;
}

@media screen and (max-width: 599px) {
  .header__inner {
    padding: 8px 12px;
  }
  .header__logo-icon img {
    height: 25px;
  }
  .header__logo-text {
    font-size: 11px;
  }
}

/* main
---------------------------------------*/
.main {
  margin-top: 58px;
}
@media screen and (max-width: 599px) {
  .main {
    margin-top: 41px;
  }
}

/* main-visutal
---------------------------------------*/
.main-visual {
  position: relative;
  overflow: hidden;
  padding: 130px 20px 180px;
}

.main-visual__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.main-visual__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-visual__content {
  display: grid;
  place-items: center;
}

.main-visual__buttons {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media screen and (max-width: 599px) {
  .main-visual {
    padding: 60px 62px 90px;
  }
  .main-visual__buttons {
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 12px;
  }
}

/* top-slider
---------------------------------------*/
.top-slider {
  margin-top: 30px;
}

.top-slider .splide__list {
  height: auto;
}

/* top-about
---------------------------------------*/
.top-about {
  padding-block: 75px;
}

.top-about .l-inner {
  position: relative;
}

.top-about__title {
  position: absolute;
  left: 20px;
  top: -155px;
}

.top-about__title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--text-color);
  left: 0;
  bottom: -24px;
}

.top-about__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
}

.top-about__copy {
  font-size: 28px;
  font-weight: bold;
}

.top-about__copy span {
  font-size: 44px;
}

.top-about__figure {
  margin-top: 30px;
}

.top-about__right p {
  font-size: 16px;
  line-height: 1.6;
}

.top-about__right p + p {
  margin-top: 28px;
}

@media screen and (max-width: 599px) {
  .top-about {
    padding-block: 70px;
  }
  .top-about__body {
    grid-template-columns: 1fr;
    gap: 5%;
  }
  .top-about__title {
    left: 32px;
    top: -130px;
  }
  .top-about__title::after {
    width: 65px;
  }
  .top-about__copy {
    font-size: 21px;
  }
  .top-about__copy span {
    font-size: 31px;
  }
  .top-about__right p {
    font-size: 15px;
    letter-spacing: 0.5px;
  }
  .top-about__right p + p {
    margin-top: 25px;
  }
}

/* top-schedule
---------------------------------------*/
.top-schedule {
  background-color: var(--light-blue);
  padding-block: 65px 85px;
}

.top-schedule__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.top-schedule__card {
  width: calc(100% / 3 - (15px * 2 / 3));
  padding-top: 15px;
}

.top-schedule__card--blue {
  background-color: var(--place-light-blue);
}

.top-schedule__card--orange {
  background-color: var(--place-light-orange);
}

.top-schedule__card--green {
  background-color: var(--place-light-green);
}

.top-schedule__card--purple {
  background-color: var(--place-light-purple);
}

.top-schedule__card--gray {
  background-color: var(--place-light-gray);
}

.top-schedule__card-bottom {
  padding: 10px 5px 5px;
  display: grid;
  grid-template-columns: calc(152 / 380 * 100%) calc(224 / 380 * 100%);
  gap: 4px;
}

.top-schedule__place {
  font-size: 24px;
  text-align: center;
  padding-block: 5px;
  font-weight: bold;
  color: var(--white);
  border-radius: 3px;
}

.top-schedule__card--blue .top-schedule__place {
  background-color: var(--place-deep-blue);
}

.top-schedule__card--orange .top-schedule__place {
  background-color: var(--place-deep-orange);
}

.top-schedule__card--green .top-schedule__place {
  background-color: var(--place-deep-green);
}

.top-schedule__card--purple .top-schedule__place {
  background-color: var(--place-deep-purple);
}

.top-schedule__card--gray .top-schedule__place {
  background-color: var(--place-deep-gray);
}

.top-schedule__date {
  font-size: 20px;
  text-align: center;
  color: var(--white);
  border-radius: 3px;
  padding-block: 10px;
  letter-spacing: -1px;
}

.top-schedule__card--blue .top-schedule__date {
  background-color: var(--place-blue);
}

.top-schedule__card--orange .top-schedule__date {
  background-color: var(--place-orange);
}

.top-schedule__card--green .top-schedule__date {
  background-color: var(--place-green);
}

.top-schedule__card--purple .top-schedule__date {
  background-color: var(--place-purple);
}

.top-schedule__card--gray .top-schedule__date {
  background-color: var(--place-gray);
}

.top-schedule__bottom {
  margin-top: 50px;
  display: grid;
  place-items: center;
}

.top-schedule__text {
  font-size: 18px;
}

.top-schedule__button {
  margin-top: 10px;
}

.top-schedule__card a{
  display: block;
}

@media screen and (max-width: 599px) {
  .top-schedule {
    padding-block: 45px 50px;
  }
  .top-schedule__cards {
    flex-direction: column;
    gap: 27px;
    margin-top: 25px;
  }
  .top-schedule__card {
    width: 100%;
    padding-top: 15px;
  }
  .top-schedule__card-bottom {
    padding-top: 15px;
    padding-inline: 7px;
  }
  .top-schedule__place {
    padding-block: 12px;
    font-size: 22px;
  }
  .top-schedule__date {
    font-size: 18px;
    padding-block: 16px;
  }
  .top-schedule__bottom {
    margin-top: 30px;
  }
}

/* top-voice
---------------------------------------*/
.top-voice {
  background: var(--light-blue);
  padding-block: 60px 75px;
}

.top-voice .section-title {
  align-items: baseline;
}

.top-voice__lists {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.top-voice__list {
  background-color: var(--white);
  border-radius: 5px;
  padding: 35px 55px;
  display: grid;
  grid-template-columns: 12.5% 82.5%;
  align-items: center;
  gap: 5%;
}

.top-voice__list-thumbnail img {
  border-radius: 50%;
}

.top-voice__list-profile {
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  border-radius: 3px;
  background: var(--main-color);
  padding: 3px 15px;
  display: inline-block;
}

.top-voice__list-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

.top-voice__list-text {
  margin-top: 10px;
  font-size: 16px;
}

@media screen and (max-width: 599px) {
  .top-voice {
    margin-top: 0;
    padding-block: 35px 50px;
  }
  .top-voice__list {
    padding: 20px;
    grid-template-columns: 22.5% 72.5%;
    gap: 0 5%;
  }
  .top-voice__list-body {
    display: contents;
  }
  .top-voice__list-profile {
    font-size: 12px;
    text-align: left;
    padding: 5px 10px;
  }
  .top-voice__list-title,
  .top-voice__list-text {
    grid-column: 1 / 3;
  }
  .top-voice__list-title {
    font-size: 17px;
  }
  .top-voice__list-text {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.3;
  }
}

/* top-history
---------------------------------------*/
.top-history {
  padding-block: 60px 100px;
}

.top-history__lists {
  margin-top: 45px;
  max-width: 1100px;
  margin-inline: auto;
}

.top-history__list {
  position: relative;
  margin-left: 130px;
  padding: 30px 35px;
  display: grid;
  grid-template-columns: 65% 30%;
  gap: 5%;
  border-radius: 5px;
  box-shadow: 0 3px 8px 0 rgba(153, 153, 153, 0.5);
}
.top-history__list::after {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent var(--white) transparent transparent;
  filter: drop-shadow(-5px 0 3px rgba(153, 153, 153, 0.3));
  left: -17px;
  top: 33px;
  height: 20px;
  width: 20px;
}
.top-history__list + .top-history__list {
  margin-top: 30px;
}
.top-history__list:last-child .top-history__list-border {
  height: 0;
}
.top-history__list-border {
  position: absolute;
  height: calc(100% + 30px);
  width: 4px;
  top: 35px;
  left: -75px;
  background: var(--main-color);
}
.top-history__list-border::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: -6px;
  background: var(--main-color);
  border-radius: 50%;
}

.top-history__list-body {
}

.top-history__list-year {
  font-size: 16px;
}

.top-history__list-title {
  font-size: 20px;
  color: var(--main-color);
  font-weight: bold;
  margin-top: 5px;
}

.top-history__list-text {
  font-size: 16px;
  margin-top: 10px;
}

@media screen and (max-width: 599px) {
  .top-history {
    padding-block: 40px 45px;
  }
  .top-history__lists {
    margin-top: 30px;
  }
  .top-history__list {
    margin-left: 55px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 30px 35px 40px;
  }
  .top-history__list + .top-history__list {
    margin-top: 40px;
  }
  .top-history__list::after {
    left: -17px;
    top: 17px;
    height: 17px;
    width: 17px;
  }
  .top-history__list-border {
    left: -43px;
    top: 15px;
    height: calc(100% + 40px);
  }
  .top-history__list-border::before {
    width: 23px;
    height: 23px;
    left: -9px;
  }
  .top-history__list-year {
    font-size: 15px;
  }
  .top-history__list-title {
    font-size: 17px;
  }
  .top-history__list-text {
    font-size: 14px;
    text-align: justify;
  }
  .top-history__list-thumbnail {
    margin-top: 30px;
  }
}

/* top-entry
---------------------------------------*/
.top-entry {
  background: var(--light-blue);
  padding-block: 65px 80px;
}
.top-entry .section-title {
  align-items: baseline;
}
.top-entry__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 25px;
}
.top-entry__card {
  padding: 42px 14%;
  display: grid;
  grid-template-rows: 96px 40px 40px;
  gap: 18px;
}
.top-entry__card--blue {
  background: var(--place-light-blue);
}
.top-entry__card--orange {
  background: var(--place-light-orange);
}
.top-entry__card--green {
  background: var(--place-light-green);
}
.top-entry__card--purple {
  background: var(--place-light-purple);
}
.top-entry__card--gray {
  background: var(--place-light-gray);
}
.top-entry__card-date {
  border-radius: 5px;
  background: var(--white);
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  padding-block: 8px;
  letter-spacing: 0;
}
.top-entry__card--blue .top-entry__card-date {
  color: var(--place-deep-blue);
}
.top-entry__card--orange .top-entry__card-date {
  color: var(--place-deep-orange);
}
.top-entry__card--green .top-entry__card-date {
  color: var(--place-deep-green);
}
.top-entry__card--purple .top-entry__card-date {
  color: var(--place-deep-purple);
}
.top-entry__card--gray .top-entry__card-date {
  color: var(--place-deep-gray);
}
.top-entry__card-button .button {
  width: 100%;
  min-width: 100%;
  font-size: 14px;
  padding-left: 20px;
}
.top-entry__card-button .button::after {
  width: 14px;
  height: 14px;
  right: 10px;
}

@media screen and (max-width: 599px) {
  .top-entry {
    padding-block: 25px 55px;
  }
  .top-entry__cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    gap: 10px 5px;
  }
  .top-entry__card {
    padding: 32px 10%;
    grid-template-rows: auto;
    gap: 12px;
  }
  .top-entry__card-loto {
    height: 85px;
  }
  .top-entry__card-date {
    font-size: 11px;
  }

  .top-entry__card-button {
    margin-top: 6px;
  }
  .top-entry__card-button .button {
    padding-block: 7px;
    padding-inline: 0 10px;
    font-size: 3.2vw;
  }
}

/* top-exhibit
---------------------------------------*/
.top-exhibit {
  padding-block: 65px;
}
.top-exhibit .section-title {
  align-items: baseline;
}
.top-exhibit__main {
  display: grid;
  padding-inline: 15px;
  grid-template-columns: 41% 55%;
  gap: 4%;
  margin-top: 30px;
}

.top-exhibit__iamge {
}

.top-exhibit__text {
  font-size: 16px;
}

.top-exhibit__button {
  margin-top: 25px;
}

.top-exhibit__button .button {
  font-size: 18px;
}

.top-exhibit__sns {
  margin-top: 90px;
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 599px) {
  .top-exhibit {
    padding-block: 45px;
  }
  .top-exhibit__main {
    grid-template-columns: 1fr;
    margin-top: 35px;
    padding-inline: 0;
    gap: 5%;
  }
  .top-exhibit__text {
    font-size: 15px;
    line-height: 1.3;
  }

  .top-exhibit__button .button {
    width: 100%;
  }
  .top-exhibit__sns {
    grid-template-columns: 1fr;
    margin-top: 80px;
    gap: 60px;
  }
}

/*===================================
	10th mark
===================================*/

.main-visual{
  position: relative;
}

.main-visual__10th-wrap{
  width: 100%;
  padding-top: 30px;
  padding-right: 4%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 599px){
  .main-visual__10th-wrap{
    padding-top: 0;
  }
  .main-visual__10th{
    width: 27.5%;
    display: block;
  }
}

/*===================================
	10th banner
===================================*/

.bnr-10th-wrap{
  margin-top: 75px;
  text-align: center;
}

.bnr-10th-wrap > a{
  display: inline-block;
  transition: all .2s linear;
}

.bnr-10th-wrap > a:hover{
  opacity: .7;
}

.bnr-10th-pc{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

.bnr-10th-sp{
  display: none;
}

@media screen and (max-width: 1280px){
  .bnr-10th-wrap{
    padding: 0 20px;
  }
}

@media screen and (max-width: 599px){
  .bnr-10th-wrap{
    margin-top: 45px;
    padding: 0;
  }
  .bnr-10th-wrap > a{
    width: 86%;
  }
  .bnr-10th-wrap > a:hover{
    opacity: 1;
  }
  .bnr-10th-pc{
    display: none;
  }
  .bnr-10th-sp{
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}

