@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;
  }
}

.pdf-card-row::after {
  content: "";
  display: block;
  clear: both;
}

.pdf-card {
  float: left;
  width: 48%;   /* 横に2枚並ぶ */
  margin: 1%;
}

.pdf-card img {
  width: 100%;
  height: auto;
  display: block;
}

/*-------------------------------------------------------------------------
							/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: block;
  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 {
    display: block; 
  }

  .schedule-container-item__left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 12px; 
  }

  .schedule-container-item-left__inner {
    flex-direction: row; 
    gap: 8px;
  }

  .schedule-container-item-left__path {
    display: none;
  }

  .schedule-container-item__right {
    width: 100%;
  }

  .schedule-container-item-right__wrapper {
    padding-left: 0;
    border-left: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .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%;
  }
}

.schedule-speakers {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.schedule-speakers img {
  width: calc(50% - 10px); 
  height: 400px;         
  object-fit: cover;     
  border-radius: 8px;
  display: block;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid #000;
  padding: 6px 10px;
  text-align: left;
}

th {
  background: #f9f9f9;
}

/*-------------------------------------------------------------------------
							/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;
}

/*-------------------------------------------------------------------------
							/2025-custom/
-------------------------------------------------------------------------*/
/*サッカー教室*/
.sdgs-section {
padding: 60px 20px;
background: #fff;
}


.sdgs-section .container {
max-width: 1100px;
margin: 0 auto;
}


.event-title {
font-size: 1.8rem;
color: #1a1a1a;
margin-bottom: 1.5em;
text-align: center;
}


.soccer-card {
display: flex;
flex-wrap: wrap;
gap: 20px;
align-items: flex-start;
}


.image-wrapper {
flex: 1 1 45%;
}


.image-wrapper img {
width: 100%;
height: auto;
border-radius: 4px;
}


.text-wrapper {
flex: 1 1 50%;
}


.text-wrapper .date-location {
color: #666;
margin-bottom: 1em;
font-weight: bold;
}


.text-wrapper p {
color: #333;
line-height: 1.6;
margin-bottom: 1em;
}


.text-wrapper .times {
font-weight: bold;
margin-bottom: 1.5em;
}


.btn-apply {
display: inline-block;
background-color: #0066cc;
color: #fff;
padding: 12px 24px;
border-radius: 4px;
text-decoration: none;
font-weight: bold;
transition: background 0.3s ease;
}


.btn-apply:hover {
background-color: #0055aa;
}


@media (max-width: 768px) {
.soccer-card {
flex-direction: column;
}
.event-title {
font-size: 1.5rem;
}
}

/*ブース紹介*/
.booth-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 300px);
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
  align-items: stretch;
}

.booth-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.booth-image {
  height: 220px;
  min-height: 220px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #f3f4f6;
}

.booth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.booth-body {
  padding: 1rem;
  flex-grow: 1;
}

.booth-body h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.booth-name {
  font-size: 0.9rem;
  color: #4b5563;
  text-align: center;
  margin-bottom: 1rem;
}

.more-btn {
  width: 100%;
  padding: 0.5rem;
  background: #e6f4ea;
  color: #15803d;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.more-btn:hover {
  background: #d1fae5;
}

.booth-detail {
  display: none;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .booth-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .booth-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .booth-item {
    width: auto;
  }
}

/*飲食ブース紹介*/
.gourmet-zone {
  padding: 60px 20px;
  background: #f9fafb;
}

.gourmet-zone__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px; 
}

.gourmet-zone__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.gourmet-zone__category {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;     
  box-sizing: border-box;
}

.gourmet-zone__category:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.gourmet-zone__category-title {
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-weight: 600; 
  border-left: 4px solid #00A6D6;
  padding-left: 10px;
}

.gourmet-zone__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gourmet-zone__list li {
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.gourmet-zone__list li:last-child {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .gourmet-zone__categories {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/*しゅみ活ナイト参加募集*/

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}

.event-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: 700;
  letter-spacing: 2px;
}

.event-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.event-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.event-image {
  width: 100%;
  height: auto;
  display: block;
}

.event-content {
  padding: 20px;
}

.event-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0 0.8rem 0;
  line-height: 1.3;
}

.event-title .date-row {
  display: flex;
  gap: .4rem;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}

.event-title .date-large {
  font-size: 2rem;
  font-weight: 700;
  color: #d9641a;
  line-height: 1;
}

.event-title .date-small {
  font-size: 1rem;
  color: #555;
}

.event-title .event-place {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 0.35rem;
  color: #2c3e50;
}

.event-title .title-main {
  display: block;
  width: 100%;
  max-width: 360px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.6rem;
  color: #2c3e50;
  border-top: 1px solid #eee;
  padding-top: 0.45rem;
}

@media (max-width: 420px) {
  .event-title .date-row { gap: .25rem; }
  .event-title .date-large { font-size: 1.6rem; }
  .event-title .event-place { font-size: 1rem; }
  .event-title .title-main { font-size: 1.05rem; max-width: 280px; }
}

.event-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  background: #0073e6;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.event-button:hover {
  background: #005bb5;
}