@charset "UTF-8";
@import url("grid.css");

:root {
  --sanjou-black: #180944;
  --sanjou-white: #EFF8F9;
  --sanjou-yellow: #FCCD3E;
  --sanjou-blue: #0071AA;
  --sanjou-blue-pale: #A6D2F1;
  --sanjou-red: #DC4F37;
  --sanjou-red-dark: #AB2C1B;
}

body {
  color: var(--sanjou-black);
}

img {
  max-width:100%;
}

a {
  display:block;
  color: #666;
  text-decoration-line: none;
}
a:hover { 
  color: #96a7b6;
}

/* for-pc, for-sp クラスでPC, SPでの表示切替 */
@media screen and (max-width: 768px) {
  .for-pc {
    display: none;
  }
  .for-sp {
    display: unset;
  }
}
@media screen and (min-width: 768px) {
  .for-pc {
    display: unset;
  }
  .for-sp {
    display: none;
  }
}

/*ヘッダー固定・縮小
-------------------------------------*/
.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}
main {
  flex: 1;
  overflow-y: scroll;
  -ms-overflow-style: none;    /* IE, Edge 対応 */
  scrollbar-width: none;       /* Firefox 対応 */
}
main::-webkit-scrollbar {  /* Chrome, Safari 対応 */
  display:none;
}
@media screen and (max-width: 768px){
  h1 img, #open, #close {
    transition: .5s;
  }
  h1 img.header-transform {
    width: 20%;
  }
  #open.header-transform,
  #close.header-transform {
    top: 12px;
  }
}

/*ヘッダー
-------------------------------------*/
.header {
  display: flex;
  flex-direction: row;
  padding: 1.5rem 0 0 0;
}

h1 {
  margin-bottom: 0;
}

nav {
  background-color: var(--sanjou-black);
}
nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  list-style: none;
  margin: 0;
}
nav li {
  flex: 1 0 auto;
}
nav li a {
  text-decoration: none;
  text-align: center;
  width: 100%;
  color: var(--sanjou-white);
}
nav a:hover {
  background-color: #17224F;    
}
nav a {
  padding: 1rem 0;
}

@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
  #open,#close {
    display: none !important;
  }

  #navi {
    display: block !important;
  }
}

@media screen and (max-width: 768px){
  .header {
    flex-direction: column;
    margin-bottom: 10px;
  }
  .header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
  }
  nav ul {
    flex-direction: column;
  }
  .header li {
    padding-top: 0;
  }
  /* スマホ時はMENUボタンを表示 */
  #open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
    z-index: 10;
  }
  #close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
    z-index: 10;
  }
  /* スマホ時はメニューを非表示 */
  #navi {
    display: none;
  }
}

/* navi内にあるチケボタン */
.small-btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #555;/* ボーダーの色と太さ */
  padding: 8px 15px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/   
  transition: ease .2s;
  background-color: #f7ee12;
  margin: 0px auto 10px;
}

.small-btn span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color:#333;
  font-size: .8em;
}

.small-btn:hover span {
  color:#fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background:#333;/*背景色*/
  width: 100%;
  height: 100%;
    /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin:left top;
  transform:scale(1, 1);
}


/*背景画像
-------------------------------------*/
.story-area, .ticket-area, .faq-area {
  background: top center url(../img/blue-sayagata.png);
  background-repeat: repeat;
}

.howto-play-area, .contact-area, footer {
  background: url(../img/paper.jpg);
  background-repeat: repeat;
}


/*メイン画像
-------------------------------------*/
.mainimg_area {
  padding: 20px 0;
  background: no-repeat top left/30% url(../img/kasumi-header-tl.svg), no-repeat top right/30% url(../img/kasumi-header-tr.svg), linear-gradient(180deg, #3A9AD6CC, transparent), repeat url(../img/bg-mainimg.png);
}
.mainimg_img {
  margin: auto;
  width: 70%;
  max-width: 800px;
  text-align: center;
  object-fit: cover;
}
.mainimg_separation {
  height: 150px;
  margin: -150px 0 -20px;
  background: repeat-x bottom center/800px url(../img/kasumi-separation.svg);
}
@media (max-width: 768px) {
  .mainimg_area {
    background: no-repeat top left/45% url(../img/kasumi-header-tl.svg), no-repeat top right/45% url(../img/kasumi-header-tr.svg), linear-gradient(180deg, #3A9AD6CC, transparent), repeat center/50% url(../img/bg-mainimg.png);
  }
  .mainimg_img {
    width: 100%;
    padding: 20px 0 0;
  }
  .mainimg_separation {
    height: 75px;
    margin: -75px 0 -20px;
    background: repeat-x bottom center/400px url(../img/kasumi-separation.svg);
  }
}

/*メインコンテンツ
-------------------------------------*/
main {
  margin: 0;
}
section {
  padding: 3rem 0;
}
.gray-back {
  background-color: #f4f4f4;
}

/*キャッチコピー
-------------------------------------*/
.catch {
  background: var(--sanjou-yellow);
  text-align: center;
  margin-left: auto;
  margin-right: auto;

}

.catch_txt {
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 14px 10px;
  font-weight: bold;
  color: var(--sanjou-black);
}

@media (max-width: 768px) {
  .catch_txt {
    font-size: 1.1rem;
  }
}

.catch_txt span {
  color: var(--sanjou-red);
  font-size: 2rem;
}

/*NEWS欄
-------------------------------------*/
#news {
  background: linear-gradient(180deg, var(--sanjou-yellow), transparent), repeat bottom center url(../img/blue-sayagata.png);
  padding: 30px 0 40px;
}
.frame-main {
  line-height: 1em;
}

.news-title {
  font-family: 'Yuji Syuku', sans-serif;
  font-size: 2em;
  margin:0 auto 30px;
  text-align: center;
}
  
.news-text {
  border-bottom: 2px dotted;
  font-size: 14px;
  margin-bottom: 1em;
}

.news-text span {
  font-size:16px;
  margin-left: .7em;
}

@media (max-width: 768px) {
  .news-title {
    font-size: 1.8em;
  }
  .news-text span {
    margin-left: 0;
  }
}

/*STORY欄 ※backgroundは背景画像欄で変更可
-------------------------------------*/
#story {
  text-align: center;
  padding: 30px 0 60px;
  margin: auto;
  max-width: 940px;
}

.story-frame {
  display: block;
  line-height: 0;
  filter: drop-shadow(0 20px 8px #00003355)
}
.story-body {
  background-color: #EAD8B3;
  filter: drop-shadow(0 20px 8px #00003355)
}

.story-title {
  position: relative;
  margin-bottom: 25px;
  font-family: 'Yuji Syuku', sans-serif;
  font-size: 2.2em;
  line-height: 0.6em;
  text-align: center;
}
.story-title:first-letter {
  font-size: 160%;
}
.story-title::after {
  position: absolute;
  z-index: -1;
  width: 90px;
  height: 90px;
  bottom: -37px;
  right: 53.5%;
  content: '';
  background: no-repeat center/contain url(../img/story-title-circle.png);
}

.story-text {
  font-family: 'Yuji Syuku', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5em;
  margin: 0 auto;
  padding: 10px 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .story-title {
    font-size: 1.8em;
    padding-top: 20px;
  }
  .story-title::after {
    width: 80px;
    height: 80px;
    bottom: -28px;
    right: 58%;
  }
  .story-text {
    padding: 10px 4%;
    font-size: 1.6rem;
    text-align: left;
  }
}

.story-eyecatch {
  position: absolute;
  bottom: -80px;
  right: -80px;
}

@media (max-width: 768px) {
  .story-eyecatch {
    top: -50px;
    right: -60px;
  }
}

.story-eyecatch img {
  max-width: 300px;
}

@media (max-width: 768px) {
  .story-eyecatch img {
    max-width: 170px;
  }
}

/*遊び方欄
-------------------------------------*/
#howto-play {
  padding: 30px 0 30px;
}

.howto-play-title {
  font-family: 'Yuji Syuku', sans-serif;
  font-size: 2em;
  margin:0 auto 30px;
  text-align: center;
}

.howto-play-subtitle {
  font-family: 'Yuji Syuku', sans-serif;
  font-size: 1.5em;
  text-align: center;
}

.howto-play-text {
  font-size: 1.3rem;
  line-height: 1.5em;
  margin: 0 auto;
  padding: 10px 20px;
  text-align: left;
}

.howto-play-image {
  text-align: center;
}

.howto-play-image1 {
  text-align: center;
  margin: 0 auto 30px;
  width: 70%;
}

@media (max-width: 768px) {
  .howto-play-title {
    font-size: 1.8em;
  }
  .howto-play-text {
    padding: 10px 4%;
    font-size: 1.2rem;
  }
  .howto-play-image {
    margin: 0 auto;
    width: 95%;
  }
  .howto-play-image1 {
    margin: 0 auto 20px;
    width: 90%;
  }
}

.play-box1 {
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 1em;
  background-color: var(--sanjou-white);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.4);
}

.play-box1-img {
  text-align: center;
}

@media (max-width: 768px) {
  .play-box1 {
    padding:10px;
  }
}

/*チケット欄 ※backgroundは背景画像欄で変更可
-------------------------------------*/
#ticket {
  text-align: center;
  padding: 30px 0 60px;
}
.frame-main {
  line-height: 1em;
}

.ticket-title {
  font-family: 'Yuji Syuku', sans-serif;
  font-size: 2em;
  margin:0 auto 30px;
  text-align: center;
}
  
.ticket-text {
  font-size: 14px;
  margin-bottom: .7em;
}

.ticket-text span {
  font-size:　14px;
  margin-left: .7em;
}

.ticket-micro-text {
  font-size: .8em;
  color: var(--sanjou-red);
}

@media (max-width: 768px) {
  .ticket-title {
    font-size: 1.8em;
  }
  .ticket-text span {
    margin-left: 0;
  }
}

dl.tickettable {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

dl.tickettable dt {
  padding: 5px;
  width: 150px;
  font-weight: bold;
}

dl.tickettable dd {
  padding: 5px 0;
  font-weight: bold;
  font-size: 1.5em;
  color: var(--sanjou-red);
}

dl.tickettable dd span {
  margin-left: 5px;
  font-size: 0.5em;
  color: var(--sanjou-black);
  font-weight: lighter;
}

@media only screen and (max-width: 765px) {
  dl.tickettable dt{ 
    width: 100%;
  }
  dl.tickettable dd{
    width: 100%; 
  }
}

.ticket-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 20px;
}

.ticket-subtitle::before, .ticket-subtitle::after {
  content: '';
  width: 2px;
  height: 30px;
  background-color: #000;
}

.ticket-subtitle::before {
  margin-right: 20px;
  transform: rotate(-45deg)
}
.ticket-subtitle::after {
  margin-left: 20px;
  transform: rotate(45deg)
}

/*発売場所用アコーディオン*/
.spot_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 15px auto;
  color: #ffffff;
}
.spot_actab input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.spot_actab label {
  font-weight: bold;
  line-height: 3;
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0 0 1px 0;
  background: var(--sanjou-red);
  color: var(--sanjou-white);
}
.spot_actab .spot_actab-content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.35s;
  transition: max-height 0.35s;
  color: #333333;
}
.spot_actab .spot_actab-content p {
  margin: 1em;
}
/* :checked */
.spot_actab input:checked ~ .spot_actab-content {
  max-height: 50em;
}
/* Icon */
.spot_actab label::after {
  line-height: 3;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 3em;
  height: 3em;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  text-align: center;
}
.spot_actab input[type=checkbox] + label::after {
  content: '+';
}
.spot_actab input[type=checkbox]:checked + label::after {
  transform: rotate(315deg);
}


/*開催概要欄 
-------------------------------------*/
#gaiyou {
  background: #008080;
  text-align: center;
  padding: 30px 0 60px;
}

.gaiyou-title {
  font-family: 'Yuji Syuku', sans-serif; 
  font-size: 2em;
  color: #fff;
  margin:0 auto 15px;
  text-align: center;
}

/* テーブル設定 */
.gaiyou-table {
  border-collapse: collapse;/* 境界線の共有 */
  border-spacing: 0;
  width: 100%;
  margin: 10px auto;
}

@media (max-width: 768px) {
  .gaiyou-title {
    font-size: 1.8em;
  }
  .gaiyou-table {
    width: 95%;
  }
}

.gaiyou-table th, .gaiyou-table td {
  border-bottom: 1px solid var(--sanjou-blue-pale);
  padding: .8em;
  text-align: left;
}

.gaiyou-table tr:last-child th,
.gaiyou-table tr:last-child td {
  border-bottom: none;
}

.gaiyou-table th span, .gaiyou-table td span {
  font-size: 12px;
}

.gaiyou-table th {
  width: 22%;
}

/*概要内ボタン*/
.gaiyou-btn {
  /*ボタンの形状*/   
  margin: 10px auto 5px;
  display:inline-block;
  background: #053D62;
  color: #fff;
  font-size: 0.7em;
  padding: 10px 15px;
  border: 5px double #fff;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/   
  transition:.3s ease-out;
}

/*hoverした際の角丸のアニメーション*/
.gaiyou-btn:hover{
  background:#053D62;
  border-radius:10px; 
}
/*ボタンのセンター寄り*/
.gaiyou-wrap {
  text-align: center;
}

.gaiyou-btn-subtext {
  font-size: .7em;
  text-align: center;
}

@media (max-width: 768px) {
  .gaiyou-table th {
    text-align: center;
    background: var(--sanjou-yellow); 
    display: block;
    width: auto;
    border-top: none;
    border-bottom: none;
  }
  .gaiyou-table td {
    display: block;
    width: auto;
    font-size: 90%;
    border-bottom: none;
  }
}

/*販売場所＆施設情報
-------------------------------------*/
.table-info {
  border: 1px solid var(--sanjou-black);
  border-collapse: collapse;/* 境界線の共有 */
  width: 90%;
  margin: 10px auto 10px;
  padding: 5px auto;
}

@media (max-width: 768px) {
  .table-info {
    width: 100%;
  }
}

.table-info th, .table-info td {
  border: 1px solid var(--sanjou-black);
  padding: .8em;
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
  font-weight: normal;
}

.table-info td {
  font-size: 0.7em;
}

.table-info th {
  font-size: 0.7em;
}

.table-info th span, .table-info td span {
  font-size: 0.5em;
}

.table-info th {
  width: 22%;
}

.table-info-title th {
  background-color: var(--sanjou-blue);
  color: #fff;
}

/* 抽選プレゼントエリア */
.chusen-present {
  margin-top: 30px;
  text-align: center;
  color: var(--sanjou-white);
}
.chusen-explain {
  font-size: larger;
  font-weight: bold;
}
.marker-line01 {
  background:linear-gradient(transparent 60%, var(--sanjou-red) 60%);
}

/*FAQと注意事項欄 ※backgroundは背景画像欄で変更可
-------------------------------------*/
#faq {
  text-align: center;
  padding: 30px 0 60px;
}

.faq-title {
  font-family: 'Yuji Syuku', sans-serif;
  font-size: 2em;
  margin:0 auto 10px;
  text-align: center;
}

.notice-title {
  font-family: 'Yuji Syuku', sans-serif;
  font-size: 2em;
  margin:30px auto 10px;
  text-align: center;
}

.notice-list li {
  text-align: left;
  list-style: square;
  margin-left: 18px;
  margin-bottom: 10px;
  line-height: 1.2em
}

.notice-list li::marker {
  color: var(--sanjou-red);
}

.notice-list span {
  font-size: 0.8em;
}

.notice-midashi {
  padding: 0.1em 0.5em;/*上下 左右の余白*/
  margin-bottom: .5em;
  background: transparent;/*背景透明に*/
  border-left: solid 5px var(--sanjou-black);/*左線*/ 
  text-align: left;  
  font-size: 0.9em;
  font-weight: bold;
}

hr.midashi {
  height: 1px;
  border:none;
  border-top: 1px var(--sanjou-black) dotted;
  margin: 25px 20px;
}

/* アコーディオン */
.faq_accordion *, .faq_accordion *:after, .faq_accordion *:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.faq_accordion {
  overflow-x: hidden;
  margin: 0 auto;
  color: #333333;
  text-align: left;
}
.faq_accordion .faq_actab {
  padding: 15px 0;
  border-bottom: 1px solid var(--sanjou-blue-pale);
}
.faq_accordion .faq_actab:first-child {
  border-top: 1px solid var(--sanjou-blue-pale);
}
.faq_accordion label {
  font-size: 0.9em;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 10px 0 48px;
  cursor: pointer;
}
.faq_accordion .faq_actab-content {
  font-size: 0.8em;
  position: relative;
  overflow: hidden;
  height: 0;
  margin: 0 40px;
  padding: 0 14px;
  -webkit-transition: 0.4s ease;
          transition: 0.4s ease;
  opacity: 0;
}
.faq_accordion .faq_actab input[type=checkbox]:checked ~ .faq_actab-content {
  height: auto;
  padding: 14px 14px 0 14px;
  opacity: 1;
}
.faq_accordion .faq_plus {
  font-size: 1.2em;
  line-height: 100%;
  position: absolute;
  z-index: 5;
  margin: 3px 0 0 10px;
  -webkit-transition: 0.2s ease;
          transition: 0.2s ease;
}
.faq_accordion .faq_actab input[type=checkbox]:checked ~ .faq_plus {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq_accordion .faq_actab input[type=checkbox] {
  display: none;
}

@media (max-width: 768px) {
  .faq_accordion label {
    font-size: 0.9em;
  }
  .notice-list span {
    font-size: 0.8em;
  }

  .faq_accordion .faq_actab-content {
    margin: 0 10px;
    padding: 0 10px;
    font-size: 0.9em;
  }
}

/*フッターSNS欄
-------------------------------------*/
#footer-sns {
  padding: 0 0 10px;
  text-align: center;
  position: relative;
}

.footer-sns-img {
  margin: 0 auto 0;
  width: 300px;
}

.sns-icon li {
  display: inline-block;
  list-style-type: none;
  margin:5px;
  padding: 5px 0;
}

/*お問い合わせ欄
-------------------------------------*/
#contact-area {
  padding: 30px 0 30px;
}
#contact-area .frame-main {
  background-color: transparent;
}

.contact-area-title {
  font-family: 'Yuji Syuku', sans-serif;
  font-size: 2em;
  margin:0 auto 40px;
  text-align: center;
}

.contact-area-subtitle {
  font-family: 'Yuji Syuku', sans-serif;
  font-size: 1.5em;
  text-align: center;
}

.contact-area-text {
  font-size: 1.5rem;
  line-height: 1.5em;
  margin: 0 auto;
  padding: 5px 10px;
  text-align: center;
}

.contact-area-image {
  text-align: center;
  margin: 0 auto 5px;
  width: 40%;
}

.conact-area-sns {
  text-align: center;
}

@media (max-width: 768px) {
  .contact-area-text {
    padding: 10px 4%;
    font-size: 1.2rem;
  }
  .contact-area-image{
    width: 50%;
  }
}
@media (min-width: 768px) {
  #contact-area .gaiyou-table {
    border-top: 2px solid var(--sanjou-blue);
    border-bottom: 2px solid var(--sanjou-blue);
  }
}

/*クレジット欄
-------------------------------------*/
#footer-credit {
  padding: 20px 0 20px;
  text-align: center;
  font-size: 1.2rem;
  color: var(--sanjou-blue);
}

/*コピーライト
-------------------------------------*/
.copyright {
  text-align: center;
  padding: 1rem 0;
  background-color: var(--sanjou-black);
  font-size: x-small;
}
.copyright-link {
  color: var(--sanjou-white);
  text-decoration: none;
  display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 25px;
}
#pagetop a {
  display: block;
  width: 90px;
  padding: 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #pagetop {
    position: fixed;
    bottom: 25px;
    right: 10px;
  }
  #pagetop a {
    width: 50px;
  }
}
  
/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
/*お問い合わせ
-------------------------------------*/
  .table th {
    width: 100%;
    display: block;
  }
  .table td {
    display: block;
  }
}