@charset "UTF-8";

* {
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 34.5%;
  }
}
body{
  background: #fff;
  user-select:none;
  -webkit-user-select:none;
  -ms-user-select: none;
  -moz-user-select:none;
  -khtml-user-select:none;
  -webkit-user-drag:none;
  -khtml-user-drag:none;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow-y: scroll;
}
a:hover {
  opacity: 0.7;
}


/* ヘッダー */
#emergency {
  display: none;
}

header {
  background: #f6f6f6;
  border-bottom: 2px solid #dfdfdf;
  height: 90px;
}
.header-inner{
  width: 100%;
  margin: auto;
}
.header-logo{
  text-align: center;
  padding-top: 30px;
}
.header-logo img{
  width: 220px;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 25;
  width: 100%;
}

/* メニュー */
.menu {
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  color: #262626;
  position: relative;
  width: 100%;
  height: 90px;
  max-width: 1080px;
}
.menu ul {
  display: none;
}
.menu a{
  color: #333;
}
.menu > li {
    float: left;
    width: 33%; /* グローバルナビ4つの場合 */
    height: 90px;
    background: #f6f6f6;
}
.menu > li a {
    display: block;
}
.return a{
  width: 104px;
  height: 90px;
  padding: 24px 0 0;
  text-align: center;
}
.return img{
  width: 100%;
  max-width: 54px;
}

.menu > li.return {
  visibility: hidden;
}
.signage-style .menu > li.return {
  visibility: visible;
}

.menu > li.language {
  visibility: hidden;
  text-align: right;
  z-index: 9;
  margin-right: 36px;
  font-size: 32px;
  width: 324px;
}
li.language > a:hover{
  opacity: 0.7;
}
.lng-list > li a:hover {
  background: #ccc;
}
.menu > .center {
text-align: center;
}

/* サブメニュー */
.menu > li ul {
  height: auto;
  background-color: #f5f5f5;
}
.menu ul > li {
  display: block;
  border-bottom: 1px solid #ccc;
}
.menu ul > li div{
  line-height: 90px;
  width: 324px;
  padding: 0 36px;
  text-align: left;
}
.language img{
  width: 61px;
  position: relative;
  top: 55%;
  -webkit-transform: translateY(-55%); /* Safari用 */
  transform: translateY(-55%);
  margin-right: 20px;
}
.language > ul {
  display: none;
}
.language.focused > ul {
  /* display: block; */
}


/* メイン */
main{
  font-size: 4.3rem;
  max-width: 1080px;
  margin: 0 auto;
}
div, p {
    line-height: 1.7;
}
img {
    vertical-align: bottom;
    width: 100%;
}

/* タブ */
.tab{
  list-style:none;
  padding: 36px 18px 0;
  display:flex !important;
  justify-content: center;
  font-size: 36px;
  border-bottom: 18px solid #52c3f1;
  background: #fff;
}
.tab li {
  width:25%;
  max-width: 252px;
  background: #fff;
  margin-right: 9px;
  text-align: center;
  border-radius: 18px 18px 0 0;
  cursor: pointer;
}
.tab li a {
  width: 100%;
  line-height: 100px;
  display: block;
  text-decoration: none;
  font-size: 3.2rem;
}
.tab li:hover {
  opacity: 0.7;
}

.tab li.tab-blue a {
  color:  #52c3f1;
}
.tab li.tab-green a {
  color:  #82c500;
}
.tab li.tab-orange a {
  color:  #f9a708;
}
.tab li.tab-pink a {
  color:  #f56e99;
}
.tab li.active a {
  color: #fff;
}
.tab li.active.tab-blue{
  background: #52c3f1;
}
.tab li.active.tab-green{
  background: #82c500;
}
.tab li.active.tab-orange{
  background: #f9a708;
}
.tab li.active.tab-pink{
  background: #f56e99;
}


/* 入れ子タブ */
.sub-inner{
  margin: auto;
  max-width: 1080px;
  padding: 36px 36px 18px;
}
.tab_sub{
  padding:0;
  display:flex;
  justify-content: space-around;
  list-style:none;
}
.tab_sub li{
  margin-right: 9px;
  position: relative;
  display: inline-block;
  width: 144px;
  height: 144px;
  border-radius: 90px;
  text-align: center;
  cursor: pointer;
}
.sub-green li{
  border:7px solid #82c500;
  color:  #82c500;
}
.sub-orange li{
  border:7px solid #f9a708;
  color:  #f9a708;
}
.tab_sub.sub-green li.active{
  background:#82c500;
  color: #fff;
}
.tab_sub.sub-orange li.active{
  background:#f9a708;
  color: #fff;
}
.tab_sub li.active:before {
  content: "";
  position: absolute;
  border: solid 8px transparent;
  top: 98%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.sub-green li.active:before{
  border-top: solid 32px #82c500;
}
.sub-orange li.active:before{
  border-top: solid 32px #f9a708;
}

.tab_sub li:hover {
  opacity: 0.7;
}

.tab_sub li a {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
  display: block;
  font-size: 36px;
  font-weight: bold;
  width: 100%;
  line-height: 130px;
}

.sub-green li a {
  color: #82c500;
}
.sub-orange li a {
  color: #f9a708;
}

.tab_sub li.active a {
  color: #fff;
}

.list .inner,
.list .inner div.sub-div{
    display:none;
}
.list .inner.active{
    display:block;
}

.tab-blue-line {
  border-bottom: 8px solid #52c3f1;
}
.tab-green-line {
  border-bottom: 8px solid #82c500;
}
.tab-orange-line {
  border-bottom: 8px solid #f9a708;
}
.tab-pink-line {
  border-bottom: 8px solid #f56e99;
}

/*
.list .inner.active.border-blue{
  border-top:10px solid #52c3f1;
}
.list .inner.active.border-green{
  border-top:10px solid #82c500;
}
.list .inner.active.border-orange{
  border-top:10px solid #f9a708;
}
.list .inner.active.border-pink{
  border-top:10px solid #f56e99;
}
*/

.list .inner div.sub-div.active{
    display:block;
}


/* イベント */

.archive-content {
    /*padding: 0 11px 0 10px;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 1080px;
    margin: auto;
}
.archive-content-inner {
    width: 100%;
    max-width: 1180px;
    padding: 0 0 108px;
    margin: 0 auto;
}
.archive-list-wrap {
    margin-top: 36px;
}
/*
.archive-list > li {
    width: 100%;
    margin: 0;
}
*/
.archive-list-wrap li a {
  color: #000;
}
.archive-list-wrap li a:hover {
  opacity: 0.7;
}

.mdl-article-event {
    width: 1035px;
}
.mdl-col-list {
  width: 100%;
  border-bottom: 2px solid #DDD;
  /* margin-bottom: 10px; */
  /* border-radius: 5px; */
  background: #fff;
  /* -webkit-box-shadow: 0px 2px 1px rgba(183, 183, 183, 0.34);
  box-shadow: 0px 2px 1px rgba(183, 183, 183, 0.34); */
  position: relative;
}

.mdl-article-event .article-inner {
    display: table;
    width: 100%;
    table-layout: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 14px;
}

.mdl-article-event .thumb-area {
    width: 171px;
    height: 126px;
}
.mdl-article-event .thumb-area {
    display: table-cell;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: top;
    border: 2px solid #DDD;
    text-indent: 0;
    white-space: nowrap;
    overflow: hidden;
}
.mdl-col-list a {
    color: inherit;
    height: 100%;
    text-decoration: none;
    width: 100%;
}

.mdl-article-event .thumb-area img {
  width: 171px;
  height: 126px;
  object-fit: cover;
}

.js-limit-title{
  font-size: 2.9rem;
  font-weight: bold;
}
.panel-info{
  font-size: 2.3rem;
}

.mdl-article-event .text-area {
    display: table-cell;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: top;
    padding-left: 14px;
    position: relative;
}

.event .pager-wrap {
    margin-top: 43px;
}

.pager-wrap {
    padding-top: 54px;
    text-align: center;
}
.pager-wrap {
    position: relative;
}

.wp-pagenavi .current {
    background: #434343;
    color: #fff;
}
.wp-pagenavi .pages {
    padding-right: 27px;
    font-size: 2rem;
}
.wp-pagenavi .pages {
    width: auto;
    display: inline-block;
    padding-right: 90px;
    font-size: 32px;
    border: none;
    background: transparent;
    white-space: nowrap;
}
.wp-pagenavi span, .wp-pagenavi a {
    display: inline-block;
    color: #7d7d7d;
    font-size: 20px;
    font-weight: bold;
    margin: 0 9px 0;
    width: 36px;
    line-height: 65px;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    border: 2px solid #dadada;
    box-sizing: border-box;
    text-decoration: none;
}

.post-categories {
  display: none;
}
.detail-ttl-bottom > li {
    padding-left: 50px;
}
.detail-ttl-bottom > li::before {
    font-size: 5.4rem;
    top: -3px;
}
.detail-txt {
    line-height: 1.6;
    letter-spacing: 0;
}

/* モーダル */
.icon-chocotto-spot {
    position: relative;
    padding-right: 30px;
}
.icon-chocotto-spot::before{
  background: url(../images/chokotto_guide/icon_pin.png) no-repeat;
  position: absolute;
  background-size: contain;
  content: '';
  width: 17px;
  height: 24px;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
}

.modalBoxInner .icon-chocotto-spot::before {
  background: url(../../images/chokotto_guide/icon_pin.png) no-repeat;
  position: absolute;
  background-size: contain;
  content: '';
  width: 21px;
  height: 33px;
}

.modal_btn a{
  color: #fff;
}
.map-detail-visual {
    width: 100%;
    background-image: none;
}
.map-detail-visual .map-visual-inner {
    position: relative;
    width: 100%;
}
.map-detail-visual .thumb-area {
    position: relative;
    width: 400px;
    overflow: hidden;
    margin: auto;
}
.detail-thumb {
    margin-top: 15px;
    text-align: center;
    letter-spacing: -.4rem;
}
.map-detail-visual .spot-info-wrap {
    width: 400px;
    padding: 10px;
    text-align: left;
}
.map-detail-visual .spot-info-wrap .spot-title {
    font-size: 14px;
    font-weight: bolder;
    line-height: 1.25;
    margin-bottom: 5px;
}
.map-detail-visual .spot-info-wrap .spot-desc {
    padding-bottom: 10px;
    line-height: 1.7;
    font-size: 14px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.btn-wrap {
    text-align: center;
    line-height: 1;
}
.map-visual-inner .spot-title{
  margin-bottom: 20px;
  font-size: 20px;
}
.modal_trigger {
  margin: 0 auto;
}

.modal_btn {
  box-sizing: border-box;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  position: relative;
  margin: 20px 0;
  overflow: hidden;
  cursor: pointer;
}
.modal_box {
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.modal_bg {
  background-color: rgba(30, 30, 30, 0.9);
  height: 100%;
  width: 100%;
}

.modal_inner {
  background-color: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 900px;
  text-align: center;
  border-radius: 10px;
  overflow: auto;
}
.modal_close {
  display: inline-block;
  padding: 5px 30px;
  font-size: 14px;
  cursor: pointer;
}
.modal_close img{
  width: 14px;
  vertical-align: middle;
}


/* 施設 */
.ddl-facility-btn{
  background: #82c500;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  width: 200px;
  font-size: 15px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 20px 0 0;
}
.facility-btn{
  background: #82c500;
}



/* スポット */
.ddl-spot-btn{
  background: #f9a708;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  width: 200px;
  font-size: 15px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 20px 0 0;
}
.modal_trigger li,
.spot-btn{

}

.modal_trigger li a {
    background: #f9a708;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  display: flex;
  position: relative;
  margin: 20px 0;
  overflow: hidden;
  cursor: pointer;
}
.modal_trigger li a:hover {
  opacity: 0.7;
}


/* ==============================
お台場診断
================================= */
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url("../../wf/NotoSansJP-Regular.woff") format("woff"); }

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 700;
  src: url("../../wf/NotoSansJP-Bold.woff") format("woff"); }

.txt-result-lead {
  margin-bottom: 36px;
  font-size: 3.6rem;
  text-align:center;
}

.txt-wrap {
  min-height: 333px;
  padding: 80px 0 0;
  background: url(../images/result_bg.png) no-repeat center top;
  background-size: 800px auto;
}

.txt-rank {
  font-size: 9rem;
	text-align:center;
	line-height: 1;
	font-weight:bold;
	color: #f56e99;
	text-shadow: 0.036em 0.036em 0.036em rgba(0,0,0,0.3);
  font-family: 'Noto Sans Japanese', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  margin-bottom: 18px;
}

.txt-level {
  font-size: 3rem;
  font-weight: bold;
}
.txt-level span {
  font-size: 2.5rem;
  color: #444;
  font-weight: normal;
}





.test-wrap{
  background: #f6f6f6;
  text-align: center;
  /*height: 100vh;*/
  height: calc(100vh - 242px);
  padding: 72px;
}

.test,
.quiz_set,
.quiz_result_inner {
  background: #fff;
  border: solid 4px #000;
  border-radius: 10px;
  width: 100%;
  padding: 65px;
  min-height: 1190px;
  margin: auto;
  position: relative;
  box-sizing: border-box;
}

.test-img{
  width: 480px;
  padding: 45px;
}
.test h1,
.q-number {
  color: #fff;
  font-size: 65px;
  background: center / 162px no-repeat url("../images/q-number.png");
  padding: 90px;
}
.test .q-number__item--current {
  display: block;
}
.test h2{
  font-size: 30px;
  margin: 40px;
  text-align: left;
}

.test-btn {
  background: #f56e99;;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  /* text-align: center; */
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 43px;
  margin: 36px 0 0;
  height: 126px;
  line-height: 126px;
  cursor: pointer;
}
.test-btn:hover {
  opacity: 0.7;
}

.quiz-btn li {
  width: 100%;
  line-height: 126px;
  background: #f56e99;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  border-radius: 18px;
  box-sizing: border-box;
  font-size: 43px;
  margin: 36px 0 0;
  cursor: pointer;
}
.quiz-btn li:hover {
  opacity: 0.7;
}

.result-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.result-img img {
  width: 100%;
  max-width: 800px;
}


html, css{
  touch-action:none;
}

/* クイズのすべてを管理する親要素 */
.quiz_area{
    position: relative;
  height: 100%;
}

/* 回答後に上に被せてタップできなくするための要素（デフォルト非表示、回答後に一時的に表示） */
.quiz_area .quiz_area_bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    color: #FFF;
    text-align: center;
}

/* 画面に〇、×を表示するための要素（デフォルト非表示、回答後に一時的に表示） */
.quiz_area .quiz_area_icon{
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    color: red;
    display: none;
    font-size: 10em;
    -webkit-text-stroke: 5px #FFF;
    text-stroke: 5px #FFF;
}

/* .trueまたは.falseのクラスが付与されたら表示するものとみなす */
.quiz_area .quiz_area_icon.true, .quiz_area .quiz_area_icon.false{
    display: block;
}

/* .trueは正解（〇を表示） */
.quiz_area .quiz_area_icon.true:before{
    content: '〇';
    color: #f56e99;
}
/* .falseは不正解（×を表示） */
.quiz_area .quiz_area_icon.false:before{
    content: '×';
    color: #52c3f1;
}

/* 現在の問題数を表示 */
.quiz_area .quiz_no{
    font-weight: bold;
}

/* 問題文と回答後の結果（デザインは使いまわし） */
.quiz_area .quiz_question, .quiz_result{
  min-height: 144px;
  padding: 0;
  border: none;
  font-size: 5rem;
}

/* 回答後の結果は初期非表示 */
.quiz_area .quiz_result{
    display: none;
    text-align: center;
}

/* 以下クイズの選択肢のデザイン */
.quiz_area .quiz_ans_area ul{
    margin: 18px 0 0 0;
    padding: 0;
    display: block;
}

.quiz_area .quiz_ans_area ul::after{
    content: "";
    display: block;
    clear: both;
}

/* 結果ページボボタンタン */
.start{
  width: 700px;
}


/* 使わない？ ------------------------------------------------------------------------------- */

.status{
  width: 366px;
}
.illust{
  width: 309px;
}




/* 終了タグ */
.i-end {
    position: absolute;
    margin: -5px 0 0 -8px;
    left: 0;
    top: 0;
}

.i-end img {
    width: 90px;
    height: auto;
}



.detail-content {
  width: 100%;
}
.detail-txt-wrap {
    margin-top: 30px;
    padding: 0;
}


/* ==============================
共通モーダル
================================= */

  .modal_btn2 {
    background: #fff;
    color: #333;
    padding: 9px;
    display: inline-block;
    border-radius: 9px;
    margin-left: 6px;
    vertical-align: middle;
  }
  .modal_btn2:hover {
    background: #333;
    color: #fff;
  }
  .map-balloon-photo {
    text-align: center;
  }
  .map-balloon-photo img {
    max-width: 360px;
    margin-bottom: 18px;
  }
.map-balloon-txt {
  font-size: 23px;
}

.gm-style .gm-style-iw-c button {
  top: 18px !important;
  right: 18px !important;
  width: 55px !important;
  height: 55px !important;
  border: solid 5px #666 !important;
  border-radius: 100px !important;
}


/* ※Gmap ズレる */
/*
.gm-style img {
    margin: 6px !important;
}*/



