@charset "UTF-8";







body {
 
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  line-height: 1.5;
  font-family: "游明朝体", "Yu Mincho", "Hiragino Mincho ProN", NotoSerifJapanese, serif;
  color: #ffffff;
  overflow-x: hidden;
  width: 100%;
  background-color: #007b63;
}

.top-section {
  width: 100vw;
  
  min-height: 1720px;
 
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

/* 背景画像読み込み改善 */
.top-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007b63;
  z-index: -1;
}

.backgrounds-loaded .top-section::before {
  opacity: 0;
}

.top-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 18px auto;
}

.top-img:first-child {
  margin-top: 0;
}

.top-center {
  overflow: visible;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px 0;
  margin-top: 240px;
}

.top-content-img {
  width: 90%;
  max-width: 90%;
  margin-bottom: 64px;
  display: block;
}

.application-button-img {
  width: 320px;
  max-width: 60vw;
  height: auto;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 32px;
  margin-bottom: 32px;
}

.application-button-img:hover {
  opacity: 0.5;
}

.top-text-img {
  margin-top: 56px;
  display: block;
}

.top-text-img-pc {
  width: 140%;
  max-width: 140%;
  margin-left: -20%;
  margin-right: -20%;
}

.top-text-img-sp {
  display: none;
}

.top-videos-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.top-video {
  width: 560px;
  height: 315px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .top-section {
    min-height: 600px;
    height: auto;
  }
  .top-center {
    max-width: 95vw;
    padding: 0 8px;
    margin-top: 120px;
    padding-bottom: 40px;
  }
  .top-content-img {
    width: 76.5%;
    max-width: 76.5%;
    margin-top: 0;
  }
  .application-button-img {
    width: 90vw;
    max-width: 95vw;
  }
  .top-text-img-pc {
    display: none;
  }
  .top-text-img-sp {
    display: block;
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-videos-container {
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .top-video {
    width: 100%;
    max-width: 560px;
    height: auto;
  }
}

.detail-section {
  width: 100vw;
  min-height: 800px;
  background-color: #007b63;
  background-image: url(../images/detail-section-bg.png);
  
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 80px;
}

/* 背景画像読み込み改善 */
.detail-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007b63;
  z-index: -1;
}

.backgrounds-loaded .detail-section::before {
  opacity: 0;
}

.detail-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 18px auto;
}

.detail-img:first-child {
  margin-top: 0;
}

.detail-center {
  overflow: visible;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px 0;
  margin-top: 80px;
}

.detail-top-img {
  width: 20%;
  max-width: 20%;
  display: block;
  margin-bottom: 64px;
}

.detail-main-img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 40px;
}

.detail-content-img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 40px;
}

.detail-section .application-button-img {
  margin-top: 40px;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .detail-section {
    min-height: 400px;
    padding-bottom: 40px;
  }
  .detail-center {
    max-width: 95vw;
    padding: 0 8px;
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .detail-top-img {
    width: 25%;
    max-width: 25%;
    margin-bottom: 32px;
  }
  .detail-main-img,
  .detail-content-img {
    width: 95%;
    max-width: 95vw;
    margin-bottom: 24px;
  }
  .detail-section .application-button-img {
    width: 90vw;
    max-width: 95vw;
    margin-top: 24px;
  }
}

.contents-section {
  width: 100vw;
  min-height: 800px;
  background-color: #007b63;
  background-image: url(../images/contents-section-bg.png);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 80px;
}

/* 背景画像読み込み改善 */
.contents-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007b63;
  z-index: -1;
}

.backgrounds-loaded .contents-section::before {
  opacity: 0;
}

.contents-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 18px auto;
}

.contents-img:first-child {
  margin-top: 0;
}

.contents-center {
  overflow: visible;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px 0;
  margin-top: 80px;
}

.contents-top-img {
  width: 25%;
  max-width: 25%;
  display: block;
  margin-bottom: 56px;
}

.contents-day1-img {
  width: 55%;
  max-width: 55%;
  display: block;
  margin-bottom: 72px;
}

.contents-day2-img {
  width: 50%;
  max-width: 50%;
  display: block;
  margin-top: 40px;
  margin-bottom: 80px;
}

.contents-live-container {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 40px;
  left: 0;
  right: 0;
}

.contents-live-back-img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0;
}

.contents-live-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.contents-overlay-img {
  display: block;
  max-width: 90%;
  height: auto;
  margin: 0 auto 20px auto;
}

.contents-award-img {
  width: 60%;
  max-width: 60%;
}

.contents-live-img {
  width: 60%;
  max-width: 60%;
}

.contents-entertainment-img {
  width: 70%;
  max-width: 70%;
}

.contents-overlay-img:last-child {
  margin-bottom: 0;
}

.contents-back-container {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.contents-back-img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contents-back-overlay {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
  box-sizing: border-box;
  z-index: 1;
}

.contents-back-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}

.contents-back-left {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 30%;
}

.contents-part1-img {
  display: block;
  width: 50%;
  max-width: 50%;
  margin-left: 48px;
  height: auto;
}

.contents-back-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 65%;
  gap: 40px;
}

.contents-special-guest-img {
  display: block;
  width: 40%;
  max-width: 40%;
  height: auto;
  margin: 0 auto 32px auto;
}

.contents-ma-img {
  display: block;
  width: auto;
  max-width: 55%;
  height: auto;
  margin: 0 auto 32px auto;
}

.contents-account-img {
  display: block;
  width: auto;
  max-width: 55%;
  height: auto;
  margin: 0 auto 32px auto;
}

.contents-line-img {
  display: block;
  width: 60%;
  max-width: 60%;
  height: auto;
  margin: 0 auto 40px auto;
}

.contents-speakers-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 40px auto;
  flex-wrap: nowrap;
  padding: 0 20px;
  box-sizing: border-box;
}

.contents-speaker-img {
  display: block;
  width: auto;
  max-width: 20%;
  height: auto;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}



.contents-speaker-img:hover {
  opacity: 0.7;
}



.contents-speakers-row-center {
  justify-content: center !important;
  margin-right: 30px !important;
}

.contents-line-img {
  width: 80%;
  max-width: 80%;
  display: block;
  margin: 0 auto 40px auto;
}

@media (max-width: 600px) {
  .contents-section {
    min-height: 400px;
    padding-bottom: 40px;
  }
  .contents-center {
    max-width: 95vw;
    padding: 0 8px;
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .contents-top-img {
    width: 30%;
    max-width: 30%;
    margin-bottom: 24px;
  }
  .contents-day1-img {
    width: 55%;
    max-width: 55%;
    margin-bottom: 32px;
  }
  .contents-day2-img {
    width: 50%;
    max-width: 50%;
    margin-bottom: 24px;
  }
  .contents-special-guest-img {
    width: 70%;
    max-width: 70%;
  }
  .contents-ma-img,
  .contents-account-img {
    width: 70%;
    max-width: 70%;
  }
  .contents-live-container {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 24px;
  }
  .contents-overlay-img {
    max-width: 95%;
    margin-bottom: 16px;
  }
  .contents-award-img {
    width: 60%;
    max-width: 60%;
  }
  .contents-live-img {
    width: 60%;
    max-width: 60%;
  }
  .contents-entertainment-img {
    width: 70%;
    max-width: 70%;
  }
  .contents-back-container {
    margin-bottom: 24px;
  }
  .contents-back-overlay {
    padding: 20px;
    gap: 20px;
  }
  .contents-back-row {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .contents-back-left {
    width: 100%;
    justify-content: center;
  }
  .contents-back-right {
    width: 100%;
    align-items: center;
    gap: 20px;
  }
  .contents-speakers-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .contents-speaker-img {
    max-width: 80%;
  }
  .contents-miyake-img {
    transform: scale(1.15);
  }
  .contents-takeuti-img {
    transform: scale(0.85);
  }
  .contents-nakamura-sama-img {
    transform: scale(1.05);
  }
  .contents-hero-sama-img {
    max-width: 28.5%;
    transform: scale(0.95);
  }
  .contents-line-img {
    width: 80%;
    max-width: 80%;
  }
}

.apply-section {
  width: 100vw;
  min-height: 600px;
  background-color: #007b63;
  background-image: url(../images/apply-section-bg.avif);
 
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 40px;
}

/* 背景画像読み込み改善 */
.apply-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007b63;
  z-index: -1;
}

.backgrounds-loaded .apply-section::before {
  opacity: 0;
}

.apply-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 18px auto;
}

.apply-img:first-child {
  margin-top: 0;
}

.apply-center {
  overflow: visible;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px 0;
  margin-top: 60px;
}

.apply-top-img {
  width: 15%;
  max-width: 15%;
  display: block;
  margin-bottom: 96px;
}

.apply-text-img {
  width: 75%;
  max-width: 75%;
  display: block;
  margin-bottom: 96px;
}

.apply-section .application-button-img {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .apply-section {
    min-height: 360px;
    padding-bottom: 40px;
  }
  .apply-center {
    max-width: 95vw;
    padding: 0 8px;
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .apply-top-img {
    width: 25%;
    max-width: 25%;
    margin-bottom: 48px;
  }
  .apply-text-img {
    width: 95%;
    max-width: 95vw;
    margin-bottom: 48px;
  }
  .apply-section .application-button-img {
    width: 90vw;
    max-width: 95vw;
  }
}

.price-section {
  width: 100vw;
  min-height: 600px;
  background-color: #007b63;
  background-image: url(../images/price-section-bg.avif);
  
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 40px;
}

/* 背景画像読み込み改善 */
.price-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007b63;
  z-index: -1;
}

.backgrounds-loaded .price-section::before {
  opacity: 0;
}

.price-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 18px auto;
}

.price-img:first-child {
  margin-top: 0;
}

.price-center {
  overflow: visible;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px 0;
  margin-top: 60px;
}

.price-top-img {
  width: 15%;
  max-width: 15%;
  display: block;
  margin-bottom: 96px;
}

.price-detail-img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 96px;
}

.price-section .application-button-img {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .price-section {
    min-height: 400px;
    padding-bottom: 40px;
  }
  .price-center {
    max-width: 95vw;
    padding: 0 8px;
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .price-top-img {
    width: 20%;
    max-width: 20%;
    margin-bottom: 32px;
  }
  .price-detail-img {
    width: 95%;
    max-width: 95vw;
    margin-bottom: 32px;
  }
  .price-section .application-button-img {
    width: 90vw;
    max-width: 95vw;
  }
}

.message-section {
  width: 100vw;
  min-height: 700px;
  background-color: #007b63;
  background-image: url(../images/message-section-bg.avif);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 0;
}

/* 背景画像読み込み改善 */
.message-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007b63;
  z-index: -1;
}

.backgrounds-loaded .message-section::before {
  opacity: 0;
}

.message-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 18px auto;
}

.message-img:first-child {
  margin-top: 0;
}

.message-center {
  overflow: visible;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px 0;
  margin-top: 60px;
}

.message-top-img {
  width: 20%;
  max-width: 20%;
  display: block;
  margin-bottom: 80px;
}

.message-text-img {
  width: 70%;
  max-width: 70%;
  display: block;
  margin-bottom: 40px;
}

.message-kamiebisu-img {
  display: block;
}

.message-kamiebisu-img-pc {
  width: 100%;
  max-width: 100%;
  margin-bottom: 64px;
}

.message-kamiebisu-img-sp {
  display: none;
}

@media (max-width: 600px) {
  .message-section {
    min-height: 320px;
    padding-bottom: 40px;
  }
  .message-center {
    max-width: 95vw;
    padding: 0 8px;
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .message-top-img {
    width: 30%;
    max-width: 30%;
    margin-bottom: 40px;
  }
  .message-text-img {
    width: 95%;
    max-width: 95%;
    margin-bottom: 40px;
  }
  .message-kamiebisu-img-pc {
    display: none;
  }
  .message-kamiebisu-img-sp {
    display: block;
    width: 95%;
    max-width: 95vw;
  }
}

.accounting-day-section {
  width: 100%;
  min-height: 400px;
  background-color: #007b63;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
  margin-top: 0;
  padding-top: 0;
}

.accounting-day-center {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0;
}

.accounting-day-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  margin-top: -2px;
  margin-bottom: -2px;
}

.accounting-day-img-sp {
  display: none;
}


@media (max-width: 600px) {
  .accounting-day-section {
    min-height: 400px;
    padding-bottom: 40px;
  }
  .accounting-day-section {
    overflow: hidden;
  }
  .accounting-day-center {
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
  .accounting-day-img-pc {
    display: none;
  }
  .accounting-day-img-sp {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: -2px;
  }
}

.inquiry-section {
  width: 100vw;
  min-height: 400px;
  background-color: #007b63;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 0;
  margin-top: 0;
}

.inquiry-img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0;
}

.inquiry-img-sp {
  display: none;
}

.inquiry-center {
  overflow: visible;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0;
}

@media (max-width: 600px) {
  .inquiry-section {
    min-height: 200px;
    padding-bottom: 0;
    margin-top: -120px;
  }
  .inquiry-center {
    max-width: 100vw;
    padding: 0;
  }
  .inquiry-img-pc {
    display: none;
  }
  .inquiry-img-sp {
    display: block;
    width: 100%;
    max-width: 100vw;
  }
}

.guest-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
}



.guest-popup {
  position: relative;
  background: rgba(0,0,0,0.0);
  border: 2px solid #fff;
  border-radius: 6px;
  width: 40vw;
  max-width: 560px;
  min-width: 400px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
  padding: 48px 32px 32px 48px;
  overflow-y: auto;
}

.guest-popup-main, .guest-popup-text {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-top: 12px;
}

/* 特定のポップアップ画像のサイズ調整 */
.guest-popup-main[src*="popup-shibata-sama.avif"] {
  width: 80%;
  max-width: 80%;
  height: auto;
  align-self: flex-start;
  margin-left: 0;
  transform: scale(0.80);
}

.guest-popup-main[src*="popup-nakamura-sama.avif"] {
  width: 90%;
  max-width: 90%;
  height: auto;
  align-self: flex-start;
  margin-left: 0;
  transform: scale(1.05);
}

/* ポップアップメイン画像のサイズ調整 */
.guest-popup-main {
  width: 85%;
  max-width: 85%;
  height: auto;
  align-self: flex-start;
  margin-left: 0;
}

.guest-popup-close-img {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 10000;
  transition: opacity 0.2s;
}

.guest-popup-close-img:hover {
  opacity: 0.6;
}



@media (max-width: 600px) {
  .guest-popup {
    max-width: 85vw;
    min-width: 0;
    width: 80vw;
    padding: 16px;
  }
  .guest-popup-main, .guest-popup-text {
    max-width: 100%;
    width: 100%;
  }
}


























































.top-videos-container iframe{
  width: 560px;
}




.card{
      width: 900px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}

.detail2-section img{

    display: block;
    margin: auto;
}

img.place-img {
    max-width: 675px;
        margin-bottom: 80px;

}

.event-img{
  padding-bottom: 100px;
}

.time-box{
      display: flex;
    gap: 20px;
        align-items: flex-start;

}

.stitlelong{
  width: 350px;
}

.stitle{

  width: 450px;
    margin-bottom: 10px;
}

.ap-img{
  width: 610px;
      margin-bottom: 67px;
}

.line-img{
    display: block;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}



.price-title{
      display: block;
    margin: auto;
    margin-bottom: 60px;
    margin-top: 60px;
    width: 125px;
}

.listbox-title{
  border-left: 3px solid #ffffff;
  padding-left: 8px;
}

.price2-section-img{
  max-width: 750px;
      margin-bottom: 60px;
}

section.price2-section.ta-center {
    background: #006661;
    padding-top: 10px;
    padding-bottom: 60px;
}


section.applay2-section.ta-center {
    padding-bottom: 40px;
}

.tc-list{
display: flex;
    width: 20%;
    min-width: 200px;
    flex-wrap: wrap;
    justify-content: center;
}

.tc-listbox{
  display: flex;
      margin-bottom: 24px;
          flex-wrap: wrap;
              justify-content: center;
}

.top-textimg{
      width: 870px;
    margin: auto;
    display: block;
}

.tc-list-img-wrapper{
      width: 150px;
    height: 150px;
    border-radius: 80px;
        overflow: hidden;
        
}
.tc-list-img{
      width: 150px;
    height: 150px;
    object-fit: cover;
}


.stitle-enta{
  width: 600px;
      margin-bottom: 10px;
}

.mr-miyake{
  object-position: 0px -13px;
}

.mr-takeuchi {
   width: 506px;
    object-position: -107px -150px;
}

.mr-kamiebisu{
  width: 191px;
    object-position: -10px 6px;
  
}

.mr-shibata{
    object-position: -15px 0px;
    width: 179px;
}

.mr-kimura {
    object-position: 2px -1px;
    width: 151px;
}

.mr-kamiebisu-back{
  object-position: 9px 12px;
  background: #cecece;
}

.title-day1{
  margin-bottom: 30px;
  width: 390px;
}

.mr-tsuji{
  width: 400px;
      object-position: -125px -26px;
}

.mr-nakamura-s{
    object-position: -127px -25px;
    width: 350px;
}

.mr-hiro{
  width: 370px;
    object-position: -112px 0px;
}

.mr-tachibana{
    object-position: -35px 12px;
    width: 275px;
}

.mr-tachibana-back{
    background: #fff;
}

.mr-okada{
    object-position: -5px 0px;
    width: 195px;
}

.mr-asakura{
    object-position: -80px -3px;
    width: 260px;
}

.tc-list-contents {
    padding-left: 8px;
}

.time-contents {
    width: 100%;
}

.intro-point {
  text-align: left;
    margin: auto;
    margin-bottom: 20px;
    width: 75%;
    background: rgb(255 255 255 / 78%);
    border-radius: 10px;
    padding: 20px 10px;
}

ul.intro-ul {
   text-align: left;
    margin: 0;
    width: 90%;
    list-style: none;
    color: #000000;
    font-weight: bold;
    padding: 0;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
}

li.intro-li {
    list-style: none;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    margin-bottom: 12px;
        gap: 10px;
}

li.intro-li svg {
    width: 30px;
    height: 30px;
    fill: #e37242;
}

.first-section,.intro-section,.schedule-section,.presents-section,.access-section,.detail2-section,.price2-section,.applay2-section,.message2-section{

    margin: 0 calc(50% - 50vw);
    width: 100vw;
    
}

.time-at {
    width: 100px;
        margin-top: 24px;
}

.ta-center{
  text-align: center;
}

.tc-text {
    font-weight: bold;
    font-size: 18px;
}

.presents-box{
  display: flex;
      gap: 20px;
}

.first-section {
    background: url(../images/top-section-bg.avif);
    background-repeat: no-repeat;
    background-size: cover;
}

.intro-section {
    background-color: #0e8d72;
    
}

.entitle-img{
      padding-top: 70px;
    padding-bottom: 40px;
}

.presents-section {
    background-color: #468767;
    
}

.first-section-img{
      width: 100%;
    margin: auto;
    display: block;
}

.s-inner {
    padding: 60px;
    width: 900px;
    margin: auto;
}

.access-section-img{
  width: 100%;
  height: 291px;
}

.present {
    width: 33%;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
}


.cv-buttton {
    background: #ff930a;
    color: #fff;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 40px;
    font-weight: bold;
    font-family: Yu Gothic;
    letter-spacing: 1.2px;
    margin: 20px auto;
    display: block;
    font-size: 18px;
    width: 280px;
    border-bottom: solid 5px #975602;
    margin-top: 0px;
    box-shadow: 5px 5;
    box-shadow: 0px 10px 10px -6px rgb(0 0 0 / 64%);
}

.micro-text {
    margin: 0;
    margin-top: 60px;
    font-weight: bold;
    color: #a30000;
        font-family: Yu Gothic;
}


/* 吹き出し本体の背景色用 */
.border-balloon {
  position: relative;
    display: inline-block;
    background: #fff;
    border-radius: 30px;
    padding: 6px 15px;
    font-weight: bold;
    color: #b40909;
    border: 2px solid #d5d5d5;
    box-sizing: border-box;
    margin-bottom: 7px;
     animation: fluffy 2s infinite;
}

/* 吹き出しのしっぽ：本体の背景色用 */
.border-balloon::before {
  content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    z-index: 2;
}

/* 吹き出しのしっぽ：枠線の色用 */
.border-balloon::after {
   content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #d5d5d5 transparent transparent transparent;
    z-index: 1;
}

.balloon-text{
      font-size: 13px;
    font-family: Yu Gothic;
    margin: 0;
}

@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.mappy {
        width: 60px;
    height: 60px;
    display: none;
}

.tc-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-section{
     padding: 40px 0;
    background: url(../images/top-section-bg.avif);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.schedule-box{
    color: #fff;
    border-radius: 10px;
}

.intor-text{
  margin-bottom: 50px;
  text-align: justify;
}

.access-section-button-box{
  margin-top: 50px;
}

.tc-list-title {
    text-align: center;
        margin-bottom: 0;
}

.tc-list-text {
    font-size: 14px;
    margin-top: 3px;
        min-height: 42px;
        text-align: center;
}

.present-img {
    border-radius: 10px;
    width: 150px;
}

.access-box{
      display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    margin: 30px 0;
}

.access-box-img {
    width: 50%;
}

.access-box-content {
  width: 50%;
    text-align: left;
}

.access-box-content p {
    margin: 0;
    margin-bottom: 11px;
}

.access-section iframe {
    width: 100%;
    height: 320px;
}

p.balloon-text{
  margin: 0;
}

.time-mt{
  margin-top: 40px;
}

.detail2-section{
  background-color: #06706f;
  padding-bottom: 50px;
}

.fixbutton-section{
       position: fixed;
    bottom: 0;
    width: 100vw;
    background: #29332e;
    height: 84px;
    padding-top: 12px;
    margin: 0 calc(50% - 50vw);
    left: 0;
}

.break-time{
  font-size: 16px;
    margin: 2px 0px;
    justify-content: center;
        height: 35px;
}

.light-button{
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
      padding: 10px 36px;
}

.fix-button{
    border: 2px solid transparent;
  position: relative;
  overflow: hidden;
      padding: 10px 36px;
}

.light-button:before {
   content: '';
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shine 3.5s ease-in-out infinite;
    position: absolute;
    top: -180px;
    left: 0;
    opacity: 0;
    transform: rotate(45deg);
}

@keyframes shine {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
  
.micro-text-w{
  color: #fff;
    margin: 0;
    text-align: center;
    font-size: 12px;
}

 .is_sp{
    display: none;
  }

.main-title{
   font-size: 32px;
}


.title-sub {
    font-size: 17px;
    line-height: 1.2;
    display: block;
}




.last-li{
  font-size: 16px;
  margin-bottom: 35px;
}



.message-section{
  background: #448f5e;
}


.message-box{
  display: flex;
  gap: 25px;
  justify-content: center;
      display: block;
}

.message-box--reverse{
  flex-direction: row-reverse;
}

.m-content-box{
  width: 63%;
  max-width: 570px;
  width: 100%;
    max-width: 920px;
}
.m-img-box{
    width: 30%;
    min-width: 300px;
    float: left;
    margin-right: 20px;
}

.m-img-box-img {
    max-width: 300px;
}

.m-img-box-right{
  float: right;
    margin-left: 20px;
    margin-right: 0;
}

.m-content-box-title {
  font-size: 28px;
  font-weight: bold;
      margin-top: 0;
}

.m-title{
  margin-bottom: 40px;
}


.m-content-box-content {
    text-align: justify;
}


.message-wrapper {
    background: #fff;
    color: #151515;
    border-radius: 10px;
    padding-top: 10px;
    margin: 50px;
}

.sign-img{
  width: 187px;
}


.m-first-box{
  margin-bottom: 32px;
}


.ta-sign{
  display: flex;
  font-size: 13px;
      justify-content: end;
    align-items: center;
}


.mi-sign{
  display: flex;
      font-size: 13px;
          justify-content: end;
}



.fv-box{
        margin: auto;
    width: 100%;
    max-width: 490px;
    line-height: 0;
        margin-bottom: 60px;
    padding-top: 140px;
}

.m-content-box-content{
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #2d2d2d;
}

.m-content-box-content strong{
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  color: #000;
}

.mr-ogawa{
  width: 359px;
  object-position: -80px -10px;
}




@media (max-width: 798px) {

  .tc-list {
    display: flex;
    width: 33%;
    min-width: 200px;
    flex-wrap: wrap;
    justify-content: center;
}

.mi-sign{
      flex-wrap: wrap;
    justify-content: end;
    text-align: right;
}

.ta-sign{
      flex-wrap: wrap;
    justify-content: end;
    text-align: right;
}

  .m-img-box {
    width: 100%;
}
.m-content-box {
    width: 100%;
}

.m-img-box-img {
    max-width: 100%;
}

.message-box {
  flex-wrap: wrap;
  justify-content: center;
}


    .last-li {
        font-size: 14px;
        margin: 15px 0;
    }
.main-title{
   font-size: 27px;
}


  .title-sub {
    font-size: 14px;
    line-height: 1.2;
    display: block;
}


  .is_sp{
    display: initial;
  }

  .s-inner {
    margin: auto;
            padding: 12px;
            width: 91%;
}

.first-section-img {
    width: 94%;
}

.access-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    margin: 30px 0;
    flex-wrap: wrap;
}

.access-box-content {
    width: 100%;
    text-align: left;
}
.access-box-img {
    width: 100%;
}

.presents-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.present {
    width: 90%;

}

.presents-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tc-listbox {
    display: flex;
    margin-bottom: 24px;
    flex-wrap: nowrap;
    overflow-x: scroll;
    
}

.access-section{
  margin-bottom: 163px;
}


.intro-point {
    text-align: left;
    margin: auto;
    margin-bottom: 10px;
    width: 92%;
    background: rgb(255 255 255 / 78%);
    border-radius: 10px;
    padding: 10px;
}


.loop-area {
  display: flex;
  animation: loop-slide 15s infinite linear 1s both;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tc-listbox-wrapper{
  overflow: hidden;
  display: flex;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

li.intro-li {
    list-style: none;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    margin-bottom: 12px;
}





.jc-center{
  justify-content: center;
}

.top-textimg {
    width: 94%;
    margin: auto;
    display: block;
}

img.place-img {
 width: 94%;
    max-width: 675px;
    margin-bottom: 80px;
}

.detail2-section img {
    display: block;
    margin: auto;
    width: 94%;
}
.card {
    width: 94%;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}

.ap-img {
    width: 94%;
    margin-bottom: 67px;
}
.price2-section-img {
   width: 94%;
    margin-bottom: 60px;
}

.line-img {
  width: 94%;
    display: block;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.stitle {
    width: 94%;
    margin-bottom: 10px;
}

.top-videos-container iframe{
  width:  94%;
}

.first-section {
    background: url(../images/top-section-bg.avif);
    background-repeat: no-repeat;
    background-size: contain;
}

.fv-box {
    margin: auto;
    width: 100%;
    max-width: 490px;
    line-height: 0;
    margin-bottom: 60px;
    padding-top: 51px;
    padding-bottom: 40px;
}

.detail2-section img.entitle-img {
    padding-top: 70px;
    padding-bottom: 40px;
    width: 140px;
}

section.price2-section.ta-center {
    background: #006661;
    padding-top: 10px;
    padding-bottom: 60px;
    margin-bottom: 95px;
}

.stitle-enta{
  width:94%;
      margin-bottom: 10px;
}


.is_pc{
display: none;
}

}

