/* ------------------------------
   基本設定
------------------------------ */

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;

  color: #333;
  background: #fff;

  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}


/* ------------------------------
   ヘッダー
------------------------------ */

.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  width: 80%;
  max-width: 1200px;

  margin: 0 auto;

  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: bold;

  color: #333;
  text-decoration: none;
}


/* ------------------------------
   ナビゲーション
------------------------------ */

.global-nav {
  display: flex;
  gap: 30px;
}

.global-nav a {
  color: #333;
  text-decoration: none;
}

.global-nav a:hover {
  opacity: 0.6;
}


/* ------------------------------
   メイン画像
------------------------------ */

.main-visual {
  width: 80%;
  max-width: 1200px;

  margin: 30px auto 0;
}

.main-visual img {
  display: block;
  width: 100%;
}


/* ------------------------------
   コンテンツ
------------------------------ */

.contents {
  width: 80%;
  max-width: 1000px;

  margin: 50px auto;
}

.contents h1 {
  text-align: center;
  margin-bottom: 30px;
}

.program-map {
  position: relative;
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

.program-map img {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;

  padding: 0;
  margin: 0;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.modal {
  padding:15px;
  display: flex;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease,
              background .35s ease,
              visibility .35s;
}

.modal.active {

  opacity: 1;
  visibility: visible;

  background: rgba(0,0,0,.8);

}}

.modal-inner {
  position: relative;

  max-width: 900px;
  max-height: 90vh;
}

.modal-inner img {
  display: block;

  max-width: 90vw;
  max-height: 85vh;

  width: auto;
  height: auto;
}

.modal-close {
  position: absolute;

  top: -45px;
  right: 0;

  border: 0;
  background: transparent;

  color: #fff;
  font-size: 36px;

  cursor: pointer;
}

/* ------------------------------
   主催・協賛・後援
------------------------------ */
.support-info {
  width: 80%;
  max-width: 1000px;
  margin: 10px auto 40px;

  font-family:
   -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;

  font-weight: 600;
}

.support-info dl {
  margin: 0;
}

.support-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;

  padding: 4px 0;
}

.support-row dt {
  font-size: 24px;
  font-weight: bold;
}

.support-row dd::before {
  content: "";
  display: inline-block;

  width: 9px;
  height: 9px;
  margin-right: 10px;

  background: #333;
  border-radius: 50%;

  vertical-align: middle;
}

.support-row dd {
  margin: 0;

  font-size: 23px;
  font-weight: 600;
  line-height: 1.4;

  padding-left: 1.2em;
  text-indent: -1.0em;
}

.company {
  white-space: nowrap;
}

/* ●を自動表示 */
.support-row dd::before {
  content: "";
  display: inline-block;

  width: 7px;
  height: 7px;
  margin-right: 9px;

  background: #333;
  border-radius: 50%;

  vertical-align: middle;
}

/* スマホ */
@media screen and (max-width: 768px) {

  .support-info {
    width: 90%;
    margin: 10px auto;
  }

  .support-row {
    display: block;

    padding: 15px 0;
  }

  .support-row dt {
    font-size: 15px;
  }

  .support-row dd {
    font-size: 13px;
    line-height: 1.3;
    padding-left: 1.2em;
    text-indent: -1.5em;
  }

}

/*--------------------------------
 Facebook
--------------------------------*/

.sns-area{
    text-align:center;
    margin:60px auto;
}

.facebook-banner{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:14px 26px;
    border:2px solid #1877F2;
    border-radius:50px;
    background:#fff;
    color:#333;
    text-decoration:none;
    transition:.25s ease;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.facebook-banner:hover{
    background:#1877F2;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.fb-icon{
    width:24px;
    height:24px;
    color:#1877F2;
    flex-shrink:0;
}

.facebook-banner:hover .fb-icon{
    background:#fff;
    color:#1877F2;
}

.fb-text{
    font-size:17px;
    font-weight:600;
}

.ticket-area{
  text-align:center;
  margin:30px auto 60px;
}

.eplus-banner{
  display:inline-flex;
  align-items:center;
  gap:14px;

  padding:14px 26px;

  border:2px solid #e60012;
  border-radius:50px;

  background:#fff;
  color:#333;

  text-decoration:none;

  transition:.25s ease;

  box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.eplus-banner:hover{
  background:#e60012;
  color:#fff;

  transform:translateY(-2px);

  box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.ticket-icon{
  display:flex;
  align-items:center;
  justify-content:center;

  width:32px;
  height:32px;

  font-size:20px;

  flex-shrink:0;
}

.ticket-text{
  font-size:17px;
  font-weight:600;
}

.link-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin:40px auto;
  flex-wrap:wrap;
}

.eplus-banner{
  display:inline-flex;
  align-items:center;
  gap:14px;

  padding:14px 26px;

  border:2px solid #e60012;
  border-radius:50px;

  background:#fff;
  color:#333;

  text-decoration:none;

  transition:.25s ease;

  box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.ticket-icon{
  width:26px;
  height:26px;

  color:#e60012;

  flex-shrink:0;
}

.ticket-text{
  font-size:17px;
  font-weight:600;
}

.eplus-banner:hover{
  background:#e60012;
  color:#fff;

  transform:translateY(-2px);

  box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.eplus-banner:hover .ticket-icon{
  color:#fff;
}

.lawson-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 14px 26px;

  border: 2px solid #0070c0;
  border-radius: 50px;

  background: #fff;
  color: #333;

  text-decoration: none;

  transition: .25s ease;

  box-shadow: 0 3px 10px rgba(0,0,0,.08);
}

.lawson-ticket-icon {
  width: 26px;
  height: 26px;

  color: #0070c0;

  flex-shrink: 0;
}

.lawson-ticket-text {
  font-size: 17px;
  font-weight: 600;
}

.lawson-banner:hover {
  background: #0070c0;
  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.lawson-banner:hover .lawson-ticket-icon {
  color: #fff;
}
/* ------------------------------
   ボタン
------------------------------ */

.button-area {
  margin-top: 30px;
  text-align: center;
}

.button {
  display: inline-block;

  padding: 12px 40px;

  color: #fff;
  background: #333;

  text-decoration: none;

  border-radius: 4px;
}

.button:hover {
  opacity: 0.8;
}


/* ------------------------------
   フッター
------------------------------ */

.site-footer {
  margin-top: 60px;

  padding: 25px 20px;

  border-top: 1px solid #ddd;

  text-align: center;
  font-size: 13px;
}


/* ------------------------------
   スマートフォン
------------------------------ */

@media screen and (max-width: 768px) {

  .header-inner {
    width: 92%;
    min-height: 60px;
  }

  .logo {
    font-size: 20px;
  }

  .global-nav {
    gap: 15px;
    font-size: 13px;
  }

  .main-visual {
    width: 100%;
    margin-top: 15px;
  }

  .contents {
    width: 90%;
    margin: 35px auto;
  }

  .contents h1 {
    font-size: 24px;
  }

}

@media screen and (max-width: 768px) {

  .program-map {
    width: 100%;
  }

}