@charset "UTF-8";

.l-inner {
  width: calc(100% - 30px);
  max-width: 1200px;
  margin-inline: auto;
}
@media all and (max-width: 896px) {
  .l-inner {
    padding: 0 15px;
  }
}

.font-zenmaru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.c-btn {
  width: 100%;
  padding: 20px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.032em;
  border-radius: 15px;
  background: #CE746D;
  border: 3px solid #fff;
  display: block;
  transition: 0.5s;
}
@media all and (max-width: 896px) {
  .c-btn {
    font-size: 1.8rem;
  }
}
.c-btn:hover {
  transform: translateY(-5px);
}

/* mv */
.matsuri-mv {
  margin-top: 210px;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 930px) {
    .matsuri-mv {
        margin-top: 180px;
    }
}
@media all and (max-width: 896px) {
  .matsuri-mv {
    margin-top: 110px;
  }
}

.matsuri-mv__inner {
  position: relative;
  z-index: 1;
}

.matsuri-mv__top {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  .matsuri-mv__top {
    flex-direction: column;
  }
}

.matsuri-mv__head {
  width: calc(600 / 1200 * 100%);
}
@media all and (max-width: 896px) {
  .matsuri-mv__head {
    width: 100%;
  }
}

.matsuri-mv__title {
  padding-left: 66px;
  font-size: 4.5rem;
  line-height: calc(54 / 45);
  letter-spacing: 0.32px;
  font-weight: 700;
  position: relative;
}
@media all and (max-width: 896px) {
  .matsuri-mv__title {
    padding-left: 52px;
    font-size: 3.6rem;
  }
}

.matsuri-mv__title::before {
  content: "";
  width: 46px;
  height: 60px;
  background: transparent url(../images/common/icon_lantern.svg) no-repeat center center / 100%;
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
}
@media all and (max-width: 896px) {
  .matsuri-mv__title::before {
    width: 32px;
    height: 42px;
  }
}

.matsuri-mv__area {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 60px;
}
@media all and (max-width: 896px) {
  .matsuri-mv__area {
    margin-top: 22px;
  }
}

.matsuri-mv__area dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 20px;
}

.matsuri-mv__area dl dt {
  min-width: 100px;
  font-size: 1.4rem;
  text-align: center;
  color: #B82039;
  line-height: 1.5;
  font-weight: 600;
  border: 1px solid #B82039;
  border-radius: 50px;
}

.matsuri-mv__area dl dd {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}

.matsuri-mv__body {
  width: calc(555 / 1200 * 100%);
}
@media all and (max-width: 896px) {
  .matsuri-mv__body {
    width: 100%;
    margin-top: 20px;
  }
}

.matsuri-mv__read {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: -0.011em;
  font-weight: 600;
}

.matsuri-mv__splide {
  margin-top: 50px;
  padding-bottom: 44px;
}
@media all and (max-width: 896px) {
  .matsuri-mv__splide {
    padding-bottom: 40px;
  }
}

.matsuri-mv__splide .splide__track {
  padding: 0 calc(245 / 1440 * 100%) !important;
}
@media all and (max-width: 896px) {
  .matsuri-mv__splide .splide__track {
    padding: 0 calc(30 / 393 * 100%) !important;
  }
}

.matsuri-mv__slide {

}

.matsuri-mv__slide{
  position:relative;
  padding-top:66.63%; /* 633 / 950 * 100 */
  border:5px solid #000;
}

.matsuri-mv__slide img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display: block;
}



.matsuri-mv__splide .splide__pagination {
  bottom: 0;
}

.matsuri-mv__splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  margin: 5px;
  border: 1px solid #000;
  background: #EFF0EB;
}

.matsuri-mv__splide .splide__pagination__page:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.matsuri-mv__splide .splide__pagination__page.is-active {
  background: #000 !important;
  transform: scale(1.0);
}

.matsuri-mv__splide__arrow {
  width: 30px;
  position: absolute;
  bottom: -6px;
}

.matsuri-mv__splide__arrow:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.matsuri-mv__splide__arrow--prev {
  left: calc(50% - 95px);
}

.matsuri-mv__splide__arrow--next {
  left: calc(50% + 65px);
}

.matsuri-mv__splide__arrow img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.matsuri-mv__figure {
  width: calc(458 / 1440 * 100%);
  position: absolute;
  top: 14.3%;
  right: 0;
}
@media all and (max-width: 896px) {
  .matsuri-mv__figure {
    width: calc(201 / 393 * 100%);
    top: 55.5%;
  }
}

.matsuri-mv__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* concept */
.matsuri-concept {
  padding-top: 56px;
  position: relative;
}
@media all and (max-width: 896px) {
  .matsuri-concept {
    padding-top: 32px;
  }
}

.matsuri-concept__inner {
  position: relative;
  z-index: 1;
}

.matsuri-concept__bottom {
  margin-top: 60px;
  padding: 0 56px;
  border: 4px solid #B82039;
}
@media all and (max-width: 896px) {
  .matsuri-concept__bottom {
    margin-top: 54px;
    padding: 0 26px;
  }
}

.matsuri-concept__wrap {
  padding: 11px 0;
  display: flex;
  justify-content: center;
}
@media all and (max-width: 896px) {
  .matsuri-concept__wrap {
    padding: 9px 0;
    flex-direction: column;
    align-items: center;
  }
}

.matsuri-concept__btn {
  box-sizing: border-box;
}
@media all and (max-width: 896px) {
  .matsuri-concept__btn {
    padding: 16px 36.5px;
  }
}

.matsuri-concept__btn:nth-child(1),
.matsuri-concept__btn:nth-child(3) {
  width: calc(320 / 1080 * 100%);
}
.matsuri-concept__btn:nth-child(2) {
  width: calc(440 / 1080 * 100%);
  text-align: center;
}
@media all and (max-width: 896px) {
  .matsuri-concept__btn:nth-child(1),
  .matsuri-concept__btn:nth-child(2),
  .matsuri-concept__btn:nth-child(3) {
    width: 100%;
    max-width: 480px;
  }
}

.matsuri-concept__btn:nth-child(3) {
  text-align: right;
}

.matsuri-concept__btn:not(:first-child) {
  border-left: 1px solid #000;
}

@media all and (max-width: 896px) {
  .matsuri-concept__btn:not(:first-child) {
    border-left: none;
    border-top: 1px solid #000;
  }
}

.matsuri-concept__link {
  min-width: 160px;
  display: inline-flex;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.32px;
  font-weight: 600;
  position: relative;
}

.matsuri-concept__btn:nth-child(1) .matsuri-concept__link,
.matsuri-concept__btn:nth-child(3) .matsuri-concept__link {
  width: calc(200 / 320 * 100%);
}

.matsuri-concept__btn:nth-child(2) .matsuri-concept__link {
  width: calc(200 / 440 * 100%);
}
@media all and (max-width: 896px) {
  .matsuri-concept__btn:nth-child(1) .matsuri-concept__link,
  .matsuri-concept__btn:nth-child(2) .matsuri-concept__link,
  .matsuri-concept__btn:nth-child(3) .matsuri-concept__link {
    width: 100%;
  }
}

.matsuri-concept__link::after {
  content: "";
  width: 21px;
  height: 22px;
  background: transparent url(../images/common/arrow_bottom.png) no-repeat center center / 100%;
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
}
@media all and (max-width: 896px) {
  .matsuri-concept__link::after {
    top: 50%;
  }
}

.matsuri-concept__figure {
  width: calc(327 / 1440 * 100%);
  position: absolute;
  top: -14%;
  left: 0;
}
@media all and (max-width: 896px) {
  .matsuri-concept__figure {
    width: calc(200 / 393 * 100%);
    top: 19%;
  }
}

.matsuri-concept__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* history / highlights */
.maturi-contents {
  max-width: 1440px;
  margin-inline: auto;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  /* row-gap: 90px; */
  position: relative;
}
@media all and (max-width: 896px) {
  .maturi-contents {
    padding-top: 62px;
    /* row-gap: 62px; */
  }
}

.maturi-contents__figure {
  position: absolute;
}

.maturi-contents__figure--01 {
  width: calc(390 / 1440 * 100%);
  top: 44%;
  right: 0;
}
@media all and (max-width: 896px) {
  .maturi-contents__figure--01 {
    width: calc(165 / 393 * 100%);
    top: 8.8%;
  }
}

.maturi-contents__figure--02 {
  width: calc(357 / 1440 * 100%);
  bottom: -3.4%;
  left: 0;
}
@media all and (max-width: 896px) {
  .maturi-contents__figure--02 {
    width: calc(190 / 393 * 100%);
    bottom: auto;
    top: 41.4%;
  }
}

.maturi-contents__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.maturi-contents__container {
  position: relative;
  z-index: 1;
}
@media all and (max-width: 896px) {
  .maturi-contents__container {
    width: 100%;
  }
}

.maturi-contents__container:nth-child(n+2) {
  margin-top: 90px;
}
@media all and (max-width: 896px) {
  .maturi-contents__container:nth-child(n+2) {
    margin-top: 62px;
  }
}

.maturi-contents__inner {
  display: flex;
  justify-content: flex-end;
  column-gap: calc(90 / 1440 * 100%);
}
@media all and (max-width: 896px) {
  .maturi-contents__inner {
    width: calc(100% - 30px);
    margin-inline: auto;
    padding: 0 15px;
  }
}

#HISTORY .maturi-contents__inner {
  flex-direction: row;
}

#HIGHLIGHTS .maturi-contents__inner {
  flex-direction: row-reverse;
}
@media all and (max-width: 896px) {
  #HISTORY .maturi-contents__inner,
  #HIGHLIGHTS .maturi-contents__inner {
    flex-direction: column;
  }
}

.maturi-contents__top {
  width: calc(555 / 1440 * 100%);
}
@media all and (max-width: 896px) {
  .maturi-contents__top {
    width: 100%;
    display: contents;
  }
}

.maturi-contents__head {
  padding: 32px 0;
  position: relative;
}
@media all and (max-width: 896px) {
  .maturi-contents__head {
    order: 1;
  }
}

.maturi-contents__head::before {
  content: "";
  width: 100%;
  height: 8px;
  background: transparent url(../images/common/line_title.png) no-repeat center center / 100%;
  position: absolute;
  top: -2px;
  left: 0;
}

.maturi-contents__head::after {
  content: "";
  width: 100%;
  height: 8px;
  background: transparent url(../images/common/line_title.png) no-repeat center center / 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
}

@media all and (max-width: 896px) {
  .maturi-contents__head::before,
  .maturi-contents__head::after {
    background: transparent url(../images/common/line_title_sp.png) no-repeat center center / 100%;
  }
}

.maturi-contents__title {
  font-size: 3.6rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.32px;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .maturi-contents__title {
    font-size: 3.2rem;
  }
}

.maturi-contents__body {
  margin-top: 32px;
}
@media all and (max-width: 896px) {
  .maturi-contents__body {
    margin-top: 29px;
    order: 3;
  }
}

.maturi-contents__text {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: -0.011em;
  font-weight: 400;
}

.maturi-contents__bottom {
  width: calc(675 / 1440 * 100%);
}
@media all and (max-width: 896px) {
  .maturi-contents__bottom {
    width: 100%;
    margin-top: 34px;
    order: 2;
  }
}

.maturi-contents__img {

}

.maturi-contents__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 675 / 450;
  border: 5px solid #000;
}


.maturi-information {
  padding-top: 126px;
  padding-bottom: 120px;
  position: relative;
}
@media all and (max-width: 896px) {
  .maturi-information {
    padding-top: 116px;
    padding-bottom: 120px;
  }
}

.maturi-information__inner {
  position: relative;
  z-index: 1;
}

.maturi-information__title {
  text-align: center;
  position: absolute;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.maturi-information__title-main {
  padding: 12px 24px;
  display: inline-block;
  justify-content: center;
  align-items: center;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.32px;
  font-weight: 700;
  background: #fff;
  border: 4px solid #000;
}
@media all and (max-width: 896px) {
  .maturi-information__title-main {
    padding: 14px 25.5px;
    font-size: 1.8rem;
  }
}

.maturi-information__wrap {
  padding: 86px 86px;
  background: #fff;
  border: 4px solid #000;
}
@media all and (max-width: 896px) {
  .maturi-information__wrap {
    padding: 41px 26px 25px;
  }
}

.maturi-information__list {
  display: flex;
  flex-direction: column;
  row-gap: 38px;
}
@media all and (max-width: 896px) {
  .maturi-information__list {
    row-gap: 20px;
  }
}

.maturi-information__item {
  display: flex;
  align-items: center;
}
@media all and (max-width: 896px) {
  .maturi-information__item {
    flex-direction: column;
    row-gap: 15px;
  }
}

.maturi-information__item:not(:last-child) {
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}
@media all and (max-width: 896px) {
  .maturi-information__item:not(:last-child) {
    padding-bottom: 20px;
  }
}

.maturi-information__item-head {
  width: 182px;
}
@media all and (max-width: 896px) {
  .maturi-information__item-head {
    width: 100%;
  }
}

.maturi-information__item-title {
  font-size: 1.8rem;
  color: #B82039;
  line-height: 1;
  letter-spacing: 0.32px;
  font-weight: 600;
}

.maturi-information__item-body {
  width: calc(100% - 216px);
  padding-left: 34px;
  border-left: 1px solid #000;
}
@media all and (max-width: 896px) {
  .maturi-information__item-body {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }
}

.maturi-information__item-text {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.32px;
  font-weight: 400;
}

.maturi-information__figure {
  width: calc(458 / 1440 * 100%);
  position: absolute;
  top: 28%;
  right: 0;
}
@media all and (max-width: 896px) {
  .maturi-information__figure {
    width: calc(277 / 393 * 100%);
    top: 28%;
  }
}

.maturi-information__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



.maturi-button {

}
@media all and (max-width: 896px) {
  .maturi-button {
    margin-bottom: 100px;
    padding: 0 30px;
  }
}

.maturi-button__link {
  max-width: 450px;
  margin-inline: auto;
}


