@charset "utf-8";
/* CSS Document */

/* パソコン用 */
@media screen and (min-width: 769px) {
/*ここに通常のCSSを入れる*/
}

/* タブレット用 */
@media only screen and (min-width: 641px) and (max-width: 960px) {
/*ここに通常のCSSを入れる*/
}

/* スマートフォン用 */
@media screen and (max-width: 640px) {
/*ここに通常のCSSを入れる*/
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main{
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  flex-wrap: wrap; /* レスポンシブ対応 */
}

img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; /* 幅を指定する必要があります */
}

.btnbox{
	text-align: center;
}

.zoombox {
	text-align: center;
}

.zoom {
	text-align: center;
}

.textbox{
	      width: 90%;
      max-width: 800px;
      margin: auto;
      text-align: left;
      padding: 20px;
}
.textbox2{
	      width: 90%;
      max-width: 800px;
      margin: auto;
      text-align: center;
      padding: 20px;
}
 /* プロフィール */
.profile-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fefefe;
  gap: 20px;
  flex-wrap: wrap; /* レスポンシブ対応 */
}

.profile-text {
  flex: 1;
  min-width: 250px;
}

.profile-text h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #333;
}

.profile-text p {
  color: #555;
  line-height: 1.6;
}

.profile-image img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border: 0px;
}
 /* リスト */
.event-details {
  max-width: 600px;
  margin: 1rem auto;
  padding: 1rem;
  border: 1px solid #fcdfc0;
  border-radius: 8px;
  background-color: #ffe3d9;
  font-family: sans-serif;
}
.event-details h2 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 0.25rem;
}
.details-list {
  list-style: none;
  padding: 0;
}
.details-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ffffff;
}
.details-list li:last-child {
  border-bottom: none;
}
.details-list span {
  flex: 0 0 30%;
  font-weight: bold;
}
.details-list .value {
  flex: 1;
  text-align: left;
  font-weight: normal;
}


    footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 15px 10px;
      font-size: 14px;
    }

    @media (max-width: 800px) {
      footer {
        font-size: 12px;
        padding: 10px 5px;
      }
    }
