@charset "UTF-8";

/*-------------------------------------------------------------------------
							/common/
-------------------------------------------------------------------------*/
.sien-pic {
  width: 68%;
  margin: 0 auto 20px;
}

.h2-small {
  color: #b8aa40;
  font-size: 20px;
}

@media screen and (max-width: 800px) {
  .sien-pic {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .h2-small {
    font-size: 16px;
    margin-bottom: 6px;
    line-height: inherit;
  }
}

/*-------------------------------------------------------------------------
							/about/
-------------------------------------------------------------------------*/
.about-content img {
  width: 29%;
  margin-top: 40px;
}

.overview-content {
  margin: 0 auto;
}

.overview-content tr {
  vertical-align: baseline;
}

.overview-content tr th {
  padding-right: 70px;
  font-weight: 300;
}

.overview-content tr td {
  padding-bottom: 20px;
  font-weight: 600;
}

@media screen and (max-width: 800px) {
  .about-content img {
    width: 49%;
  }

  .overview-content tr {
    display: block;
  }

  .overview-content tr th {
    padding-right: 0;
    padding-bottom: 10px;
    display: flex;
    text-align: left;
  }

  .overview-content tr th::before {
    content: "■";
    display: block;
    margin-right: 2px;
  }

  .overview-content tr td {
    padding-bottom: 30px;
    display: block;
  }
}

/*-------------------------------------------------------------------------
							/schedule/
-------------------------------------------------------------------------*/
.schedule-container-item {
  display: flex;
  align-items: stretch;
}
.schedule-container-item:not(:last-of-type) {
  margin-bottom: 40px;
}
.schedule-container-item__left {
  flex: none;
  display: flex;
  gap: 32px;
  width: 240px;
}
.schedule-container-item-left__path {
  position: relative;
  transform: translateY(30px);
}
.schedule-container-item-left-path__elipse {
  flex: none;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 10px;
}
.schedule-container-item:not(:last-of-type) .schedule-container-item-left__path::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 40px);
  background-color: #000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.schedule-container-item-left__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.schedule-container-item-left__day {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #b8aa40;
  padding: 6px 12px;
  line-height: 1;
}
.schedule-container-item-left__date {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
.schedule-container-item__right {
  flex: 1;
}
.schedule-container-item-right__wrapper {
  padding-left: 24px;
  border-left: solid 1px #ddd;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.schedule-container-item-right__inner {
  display: flex;
  gap: 16px;
  margin: -6px 0;
}
.schedule-container-item-right__time {
  font-size: 20px;
  line-height: 1.6;
}
.schedule-container-item-right__title {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1.6;
}
.schedule-detail__title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 24px;
}
.schedule-detail {
  max-width: 800px;
  margin: 72px auto 0;
  padding: 32px 40px 64px;
  border: solid 1px #ddd;
}
.schedule-detail__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  margin: 0;
}
.schedule-detail-list__item {
  width: 330px;
  flex: none;
  font-size: 18px;
  line-height: 1.5;
  display: flex;
  gap: 12px;
}
.schedule-detail-list__item::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #000;
  flex: none;
  border-radius: 6px;
  margin-top: 6px;
}
.schedule-subtitle {
  margin: 40px 0;
}
.schedule-subtitle h4 {
  font-size: 24px;
  font-weight: 600;
  color: #c1051a;
}
.schedule-container-item-right__workshoptext {
  margin: 40px 0 -15px;
  font-size: 20px;
}
.schedule-celebrities {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}
.schedule-celebrities img {
  width: calc(33.33% - (40px * 2 / 3));
}
@media screen and (max-width: 800px) {
  .schedule-container-item__left {
    gap: 16px;
    width: 150px;
  }
  .schedule-container-item-left-path__elipse {
    width: 16px;
    height: 16px;
  }
  .schedule-container-item-left__day {
    font-size: 16px;
  }
  .schedule-container-item-left__date {
    font-size: 18px;
  }
  .schedule-container-item-right__inner {
    flex-direction: column;
    gap: 0;
    margin: -4px 0;
  }
  .schedule-container-item-right__time {
    font-size: 16px;
  }
  .schedule-container-item-right__title {
    font-size: 16px;
  }

  .schedule-detail__title {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .schedule-detail {
    margin-top: 40px;
    padding: 32px;
  }
  .schedule-detail__list {
    flex-direction: column;
  }
  .schedule-detail-list__item {
    width: auto;
    flex: none;
    font-size: 16px;
  }
  .schedule-detail-list__item::before {
    margin-top: 6px;
  }

  .schedule-container-item-right__workshoptext {
    font-size: 16px;
  }
  .schedule-celebrities {
    flex-direction: column;
  }
  .schedule-celebrities img {
    width: 100%;
  }
}

/*-------------------------------------------------------------------------
							/map/
-------------------------------------------------------------------------*/
.map-img {
  margin-bottom: 95px;
}
.map-schedule-wrapper:not(:last-of-type) {
  margin-bottom: 40px;
}
.map-schedule-wrapper__toggle {
  padding: 40px;
  position: relative;
  cursor: pointer;
  background-color: #b8aa40;
}
.map-schedule-wrapper__toggle h4 {
  color: #fff;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}
.map-schedule-wrapper__arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border: solid 2px #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-schedule-wrapper__arrow img {
  width: 27px;
  transition: 0.5s;
}
.map-schedule-wrapper__content {
  overflow-y: hidden;
  height: 0;
  transition: 0.5s;
}
.map-schedule-wrapper__content.active {
  height: 100%;
}
.map-schedule-wrapper__inner {
  padding: 32px 40px;
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
.map-schedule-wrapper-item:not(:last-of-type) {
  margin-bottom: 95px;
}
.map-schedule-wrapper-item--noon {
  border: solid 1px #1b98d8;
}
.map-schedule-wrapper-item--night {
  border: solid 1px #715e8b;
}
.map-schedule-wrapper-item__title {
  padding: 24px;
}
.map-schedule-wrapper-item--noon .map-schedule-wrapper-item__title {
  background-color: #1b98d8;
}
.map-schedule-wrapper-item--night .map-schedule-wrapper-item__title {
  background-color: #715e8b;
}
.map-schedule-wrapper-item__title h5 {
  color: #fff;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.map-schedule-wrapper-item__content {
  padding: 40px 32px;
}
.map-schedule-wrapper-item__img {
  margin-bottom: 24px;
}
.map-schedule-wrapper-item-guide__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 32px;
  padding-bottom: 15px;
  border-bottom: solid 1px #ddd;
}
.map-schedule-wrapper-item-guide__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  padding: 0;
}
.map-schedule-wrapper-item-guide__item {
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 50%;
  min-width: 400px;
}
.map-schedule-wrapper-item-guide__item span {
  color: #fff;
  width: 25px;
  height: 25px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.map-schedule-wrapper-item-guide__item--green span {
  background-color: #299973;
}
.map-schedule-wrapper-item-guide__item--gray span {
  background-color: #926a6a;
}
.map-schedule-wrapper-item-guide__item--blue span {
  background-color: #6594ce;
}
.map-schedule-wrapper-item-guide__item--pink span {
  background-color: #e67c89;
}
.map-schedule-wrapper-item__box {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 95px;
}
.map-schedule-wrapper-item-box__img {
  width: 49.4318%;
}
@media screen and (max-width: 800px) {
  .map-img {
    margin-bottom: 40px;
  }
  .map-schedule-wrapper:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .map-schedule-wrapper__toggle {
    padding: 20px;
  }
  .map-schedule-wrapper__toggle h4 {
    font-size: 20px;
  }
  .map-schedule-wrapper__arrow {
    right: 20px;
    width: 30px;
    height: 30px;
    border: solid 1px #fff;
  }
  .map-schedule-wrapper__arrow img {
    width: 15px;
  }
  .map-schedule-wrapper__inner {
    padding: 20px;
  }
  .map-schedule-wrapper-item:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .map-schedule-wrapper-item__title {
    padding: 20px;
  }
  .map-schedule-wrapper-item__title h5 {
    font-size: 18px;
  }
  .map-schedule-wrapper-item__content {
    padding: 20px;
  }
  .map-schedule-wrapper-item__img {
    margin-bottom: 20px;
  }
  .map-schedule-wrapper-item-guide__title {
    font-size: 16px;
    margin-bottom: 24px;
    padding-bottom: 18px;
  }
  .map-schedule-wrapper-item-guide__list {
    gap: 20px 0;
  }
  .map-schedule-wrapper-item-guide__item {
    font-size: 16px;
    gap: 8px;
    min-width: unset;
    width: 100%;
  }
  .map-schedule-wrapper-item__box {
    gap: 20px;
    margin-top: 40px;
    flex-direction: column;
  }
  .map-schedule-wrapper-item-box__img {
    width: 100%;
  }
}

/*-------------------------------------------------------------------------
							/mayor greeting/
-------------------------------------------------------------------------*/
.mayor-date {
  text-align: end;
}

.mayor {
  margin-bottom: 40px;
  text-align: center;
}

.mayor figure img {
  width: 200px;
}

.mayor-name {
  font-size: 16px;
}

.mayor-name span {
  font-size: 22px;
}

.mayor-greeting-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  float: right;
  margin-left: 40px;
}
.mayor-greeting-profile img {
  width: 240px;
}

.mayor-greeting-profile__name span {
  font-size: 14px;
}

@media screen and (max-width: 800px) {
  .mayor {
    margin: 20px 0;
  }

  .mayor-name {
    font-size: 14px;
  }

  .mayor-name span {
    font-size: 20px;
  }

  .mayor-greeting-profile {
    float: none;
    margin-left: 0;
  }
}

/*-------------------------------------------------------------------------
							/greeting/
-------------------------------------------------------------------------*/
.greeting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-template-areas:
    "box-3 box-1 "
    "box-2 box-2 ";
}

.greeting-person_1 {
  grid-area: box-1;
  text-align: center;
  justify-self: baseline;
  padding: 0 30px;
}

.greeting-text {
  grid-area: box-2;
  margin-top: 40px;
}

.greeting-person_2 {
  grid-area: box-3;
  text-align: center;
  justify-self: end;
  padding: 0 30px;
}

.greeting-person p {
  font-size: 12px;
  margin: 5px 0 10px;
  font-weight: 600;
  line-height: 22px;
}

.greeting-person p span {
  font-size: 18px;
}

.greeting-pic {
  width: 200px;
}

@media screen and (max-width: 800px) {
  .greeting {
    grid-template-columns: 1fr;
    align-items: flex-start;
    grid-template-areas:
      "box-3"
      "box-1"
      "box-2";
  }

  .greeting-pic {
    width: 66%;
  }

  .greeting-text {
    grid-area: box-2;
    padding-left: 0;
    margin-top: 0;
  }

  .greeting-person_1 {
    text-align: center;
    margin-bottom: 30px;
  }

  .greeting-person_2 {
    text-align: center;
    margin: 30px 0 15px;
  }

  .greeting-person p {
  }
}

/*-------------------------------------------------------------------------
							/news
-------------------------------------------------------------------------*/
.news-contents {
  width: 780px;
}

.news-contents .content-box {
  width: 28%;
  margin-bottom: 40px;
}

.news-contents::after {
  /*左詰め用のコード*/
  display: block;
  content: "";
  width: 28%;
}

.news-time {
  font-size: 12px;
}

.view-more {
  text-align: center;
}

.view-more img {
  width: 186px;
}

@media screen and (max-width: 800px) {
  .news-contents {
    width: 100%;
  }

  .news-contents .content-box {
    width: 47%;
  }

  .news-contents::after {
    /*左詰め用のコード*/
    width: 47%;
  }
}

/*-------------------------------------------------------------------------
							/outside event
-------------------------------------------------------------------------*/
.outside_event {
  flex-wrap: wrap;
  align-items: center;
}

.outside_event div {
  margin-right: 30px;
}

.outside_event_bnr img {
  height: 300px;
}

@media screen and (max-width: 800px) {
  .outside_event div {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .outside_event_bnr img {
    height: auto;
    width: 80%;
  }
}

/*-------------------------------------------------------------------------
							/schedule
-------------------------------------------------------------------------*/
.schedule-pic {
  width: 66%;
}

.schedule-content {
  align-items: center;
}

.schedule-btn {
  font-size: 20px;
  font-weight: 600;
  display: block;
  width: 250px;
  margin: 25px auto 50px;
  border: 1px solid #000;
  padding: 17px;
  text-align: center;
}

.bnr-contents {
  width: 50%;
  margin: 100px auto 50px;
}

.bnr-contents_2 {
  width: 50%;
  margin: 50px auto 0;
}

.schedule-content div p span {
  font-size: 14px;
}

@media screen and (max-width: 800px) {
  .schedule-btn {
    font-size: 16px;
    width: 250px;
  }

  .schedule-content div p {
    margin-top: 20px;
  }

  .schedule-pic {
    width: 100%;
  }

  .bnr-contents {
    width: 100%;
    margin: 60px auto 20px;
  }

  .bnr-contents_2 {
    margin: 20px auto 0;
  }
}

/*-------------------------------------------------------------------------
							/application/
-------------------------------------------------------------------------*/
.application-content a {
  width: 47%;
}

@media screen and (max-width: 800px) {
  .application-content a:first-child img {
    margin-bottom: 20px;
  }
}

/*-------------------------------------------------------------------------
							/sponsorship/
-------------------------------------------------------------------------*/

.sponsorship-content_1 div {
  display: block;
  width: 24%;
  margin: 0 5px;
  /* paddingと合わせてbox-sizingも指定 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

.sponsorship-content_1 {
  margin-bottom: 3rem;
}

.sponsorship-content_2 {
  margin-bottom: 3rem;
}

.sponsorship-content_3 {
  margin-bottom: 3rem;
}

/*
 between指定で最後のコンテンツを左寄せにする指定 
.sponsorship-content_1:after {
    content: "";
    display: block;
    width: 24%;  
    height: 0;
}

4カラムの場合
.sponsorship-content_1:before {
    content: "";
    display: block;
    width: 24%;  
    height: 0;
    order: 1;  
}

*/

.sponsorship-content_2 div {
  width: 17.5%;
  margin: 0 8px;
}

.sponsorship-content_3 div {
  width: 15%;
  margin: 0 8px;
}

p.sponsorship-caption {
  margin-bottom: 40px;
  font-size: 13px;
}

@media screen and (max-width: 800px) {
  .sponsorship-content_1 div {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 0;
  }

  .sponsorship-content_2 div {
    width: 48%;
    margin: 0 0 9px 0;
  }

  .sponsorship-content_3 div {
    width: 28%;
    margin: 0 8px;
  }

  .sponsorship-content_2:after {
    content: "";
    display: block;
    width: 24%;
    height: 0;
  }
}

/*-------------------------------------------------------------------------
							/bottom-bunners/
-------------------------------------------------------------------------*/
.bottom-bunners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.bottom-bonners__bunner img {
  width: 100%;
  max-width: 340px;
}
