@charset "UTF-8";
/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes "circlemove" {
  0% {
    bottom: 55px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes "circlemove" {
  0% {
    bottom: 55px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes "cirlemovehide" {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes "cirlemovehide" {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
}

#header {
  position: relative;
  /* 線の描写 */
}
#header h1 {
  width: 100%;
  height: 56vw;
  text-align: center;
  background-image: url(../img/top_img_5.png);
  background-size: cover;
  background-position: center;
}
#header h1 img {
  margin-top: 180px;
  width: 80%;
}
#header h2 {
  position: relative;
  width: 100%;
  height: 24vw;
  text-align: center;
  background-image: url(../img/top_img_5.png);
  background-size: cover;
  background-position: center;
}
#header h2 img {
  position: absolute;
  width: 50%;
  top: 20%;
  left: 27%;
}
#header .scrolldown2 {
  position: absolute;
  bottom: 20%;
  left: 90%;
}
#header .scrolldown2 span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #eee;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
#header .scrolldown2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #eee;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
#header .scrolldown2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 70px;
  background: #eee;
}
#header .ticket_h2 {
  height: 17vw;
  font-size: 7vw;
  font-weight: bold;
  line-height: 18vw;
  color: #fff;
  text-shadow: 3px 3px 3px #000;
  background-image: url(../img/ticket_bk_2.jpg);
  background-size: cover;
  background-position: center;
}

#main {
  background: url(../img/main_bk_4.svg);
}
#main .content {
  max-width: 1180px;
  margin: 0 auto;
}
#main .top .flex_box {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}
#main .top .flex_box figure {
  padding: 20px;
  width: calc(50% - 60px);
  height: 233px;
  margin: 30px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-transform: skew(0deg);
          transform: skew(0deg);
  background-color: #fff;
}
#main .top .flex_box figure img {
  width: 100%;
  height: 100px;
}
#main .top .flex_box figure .flex_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 100px;
}
#main .top .flex_box figure .flex_img img {
  width: 50%;
  padding: 10px;
}
#main .top .flex_box figure p {
  margin-top: 30px;
  font-size: 1.5rem;
  font-weight: 900;
  background: #fff;
  padding: 10px;
  position: relative;
  text-align: center;
  -webkit-filter: drop-shadow(0px 5px 2px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0px 5px 2px rgba(0, 0, 0, 0.4));
}
#main .top .flex_box figure p a {
  position: relative;
  color: #DA2728;
  text-decoration: none;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
#main .top .flex_box figure p a:hover {
  color: #f87b22;
}
#main .top .flex_box figure p a::after {
  position: absolute;
  content: "＞";
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
#main .top .flex_box figure p a:hover:after {
  margin-left: 10px;
}
#main .top .flex_box figure a {
  background: rgba(255, 255, 255, 0.65);
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}
#main .top .flex_box figure a:hover {
  opacity: 1;
}
#main .top .flex_box figure a p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  font-size: 3.5em;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}
#main .top .flex_box figure a p:hover {
  padding-top: 100px;
  color: rgba(0, 0, 0, 0);
  background: rgba(255, 255, 255, 0);
}
#main .top .flex_box .itoshima {
  position: relative;
  background: url(../img/itoshima_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}
#main .top .flex_box .fukuoka {
  background: url(../img/fukuoka_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#main .top .flex_box .event {
  background: url(../img/event_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .top .flex_box .ticket {
  background: url(../img/ticket_bk_2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main .ticket_cont {
  text-align: center;
}
#main .ticket_cont .ticket_cont_h3 {
  padding-top: 30px;
  margin-bottom: 10px;
  text-align: left;
  font-size: 2.5em;
}
#main .ticket_cont .pc_hide {
  display: none;
}
#main .ticket_cont h3 {
  font-size: 3rem;
  font-weight: bold;
  margin: 2rem;
}
#main .ticket_cont h3:first-child {
  margin-top: 0;
}
#main .ticket_cont h3 img {
  width: 140px;
  vertical-align: middle;
  margin: 5px;
}
#main .ticket_cont h3 span {
  vertical-align: middle;
}
#main .ticket_cont .JRkyupo {
  text-align: center;
}
#main .ticket_cont .JRkyupo h3 {
  margin: 0 2rem;
  color: #fff;
  background-color: #DA2728;
  border-radius: 65px;
}
#main .ticket_cont .JRkyupo h3 span {
  font-size: 30px;
  padding: 10px;
  color: #DA2728;
  background-color: #fff;
  border-radius: 50px;
  vertical-align: middle;
}
#main .ticket_cont .JRkyupo h3 span img {
  width: 7vw;
  vertical-align: middle;
}
#main .ticket_cont .JRkyupo .flex_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#main .ticket_cont .JRkyupo .flex_box figure {
  width: calc(25% - 20px);
  margin: 10px;
  background-color: #fff;
  border: 2px solid #DA2728;
}
#main .ticket_cont .JRkyupo .flex_box figure p {
  font-size: 18px;
  font-weight: bolder;
  color: #0c59c5;
  text-align: center;
}
#main .ticket_cont .JRkyupo .JRkyupo_btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #DA2728;
  /* ボーダーの色と太さ */
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
#main .ticket_cont .JRkyupo .JRkyupo_btn span {
  font-weight: bold;
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #DA2728;
}
#main .ticket_cont .JRkyupo .JRkyupo_btn::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #DA2728;
  /*背景色*/
  width: 100%;
  height: 0;
  /*アニメーション*/
  -webkit-transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
#main .ticket_cont .JRkyupo .JRkyupo_btn:hover span {
  color: #fff;
}
#main .ticket_cont .JRkyupo .JRkyupo_btn:hover::before {
  height: 100%;
  background-color: #DA2728;
}
@media screen and (max-width: 1140px) {
  #main .ticket_cont .ticket_img {
    overflow-x: scroll;
  }
}
#main .ticket_cont .ticket_img img {
  width: 1140px;
}
#main .ticket_cont p {
  text-align: left;
  margin: 1rem;
}
#main .ticket_cont p:last-child {
  margin-bottom: 0;
}

/***追従するトップへ戻るボタン***/
.float-wrapper {
  display: block;
  position: fixed;
  right: 10%;
  bottom: 7%;
  width: 64px;
  z-index: 10;
}
.float-wrapper .float-page-top-wrapper {
  margin-top: 16px;
  width: 64px;
  height: 64px;
}
.float-wrapper .float-page-top-wrapper .float-page-top {
  display: block;
  width: 100%;
  height: 100%;
  background: rgb(255, 120, 120) url(../img/float-pageup.png) no-repeat left 20px top 20px/24px auto;
  border-radius: 50%;
  text-indent: -999vw;
}

/***トップへ戻るボタンここまで***/
#ft {
  padding-top: 35px;
  padding-bottom: 35px;
  text-align: center;
  background: #DA2728;
  color: #fff;
}

.content_img img {
  width: 100%;
  text-align: center;
}
.content_img img:first-child {
  margin-top: 3vw;
}
.content_img .map {
  width: 100%;
  margin: 0;
  padding: 10px;
  text-align: center;
  background-color: #fff;
}
.content_img .map iframe {
  width: 100%;
  height: 35vw;
}

.back_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
.back_btn a {
  margin: 30px auto;
  padding: 10px 30px;
  font-size: 1.5em;
  width: 244px;
  height: 78px;
  background: #fff;
  text-decoration: none;
  font-weight: bold;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 3px #da2728;
  border-radius: 6px;
  color: #343030;
  position: relative;
  overflow: hidden;
}
.back_btn a:before {
  content: "";
  position: absolute;
  background-color: #f32f2f;
  width: 244px;
  height: 78px;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-244px);
          transform: translateX(-244px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}
.back_btn a:after {
  content: url(../img/top_btn.png);
  position: absolute;
  width: 450px;
  height: 140px;
  left: -125px;
  top: -34px;
  -webkit-transform: translateX(-244px) scale(2);
          transform: translateX(-244px) scale(2);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.back_btn a:hover:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.back_btn a:hover:after {
  opacity: 1;
  -webkit-transform: translateX(0) scale(0.4);
          transform: translateX(0) scale(0.4);
}/*# sourceMappingURL=style.css.map */