/*--
	Theme Name: @mtfuji20250811-jp
	Theme URI: https://the-zekkeihanabi.com/mt-fuji/
	Description: A theme for Wordpress + Works-Yui
	Author: Works-Yui
	Author URL: https://works-yui.com
--*/

@charset "utf-8";

/* font
----------------------------------*/
@font-face {
  font-family: 'Zen Kurenaido';
  src: url(font/ZenKurenaido-Regular.woff) format('woff');
  src: url(font/ZenKurenaido-Regular.ttf) format('truetype');
  font-display: swap;
  font-weight: normal;
}
@font-face {
  font-family: 'Kaisei HarunoUmi';
  src: url(font/KaiseiHarunoUmi-Regular.woff) format('woff');
  src: url(font/KaiseiHarunoUmi-Regular.ttf) format('truetype');
  font-display: swap;
  font-weight: normal;
}
@font-face {
  font-family: 'M PLUS 2';
  src: url(font/MPLUS2-Light.woff) format('woff');
  src: url(font/MPLUS2-Light.ttf) format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Zen Kaku Gothic New';
  src: url(font/ZenKakuGothicNew-Medium.woff) format('woff');
  src: url(font/ZenKakuGothicNew-Medium.ttf) format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Shippori Mincho B1';
  src: url(font/ShipporiMinchoB1-Regular.woff) format('woff');
  src: url(font/ShipporiMinchoB1-Regular.ttf) format('truetype');
  font-display: swap;
  font-weight: normal;
}
@font-face {
  font-family: 'Shippori Mincho B1';
  src: url(font/ShipporiMinchoB1-SemiBold.woff) format('woff');
  src: url(font/ShipporiMinchoB1-SemiBold.ttf) format('truetype');
  font-display: swap;
  font-weight: bold;
}

html {
scroll-behavior: smooth;
}

body {
	font-family: 'Shippori Mincho B1', serif;
	background-color: #FFF;
	position:relative;
	z-index:0;
	font-size:16px;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
img {
	max-width:100%;
	height:auto;
}
a {
	text-decoration:underline!important;
}
.menu a {
	text-decoration:none;
}


/* scrollbar
----------------------------------*/
::-webkit-scrollbar {
    width: 11px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(0,0,0,0);
    border-radius: 100px;
    height: 10px;
}
::-webkit-scrollbar-thumb {
    background: #78aad2;
    border-radius: 100px;
}

/* loading-wrapper
----------------------------------*/
#loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 9999;
	color:#FFF;
	line-height:1.5;
    font-size:1.5vw;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
#loading-wrapper p {
    margin:0 2rem 2rem;
	width:50%;
}
#loading-wrapper p.jp {
	width: auto;
    font-size: 3.2vw;
    display: flex;
    text-align: left;
	line-height:2;
}
#loading-wrapper span {
    display:block;
}
#loading-wrapper span.cored {
    display:inline;
	color: #ff3030;
}

/* header
----------------------------------*/
header {
	position:relative;
	z-index:1;
}

/* nav
----------------------------------*/
nav {

}
nav label {
    position:fixed;
    z-index: 3;
}
nav input {
    display: none;
}
nav input:checked ~ label {
    right: 0;
}
nav .burger {
    position: relative;
    top: 24px;
    cursor: pointer;
}
nav .burger g {
    stroke: #ffffff;
    transition: stroke 0.25s ease-in-out;
}
nav .burger g:hover {
    stroke: darken(#ffffff, 20%);
}
input:checked ~ label .burger {
    opacity: 0;
}
nav .close {
    position: relative;
    top: 24px;
    cursor: pointer;
    opacity: 0;
}
nav .close g:hover {
    stroke: darken(#ffffff, 20%);
}
nav .close g {
    stroke: #ffffff;
    transition: stroke 0.25s ease-in-out;
}
nav .close line {
    transform-origin: 0%;
}
nav .close g {
    transform: rotateZ(45deg);
    transform-origin: 50%;
}
nav input:checked ~ label .close {
    opacity: 1;
}
nav input:checked ~ .menu {
    opacity: 1;
}
nav .menu div.side_bg01, nav .menu div.side_bg02 {
    margin-top: 50px;
    transition: margin 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
nav input:checked ~ .menu div {
    margin-top: 0px;
}
nav .main {
    display: flex;
    width: 100vw;
    height: 100vh;
}
nav .main span {
    margin: auto;
    font-size: 40px;
    color: #ffffff;
}

nav .menu-sns-icon {
    display:none;
}
nav .menu a {
    text-decoration: none!important;
}

/* main-visual
----------------------------------*/
.main-visual {
    background-image: url(img/main-visual.png);
    background-repeat: no-repeat;
    background-size: cover;
	background-position:center;
	width:100vw;
    height: 100vh;
	height: -webkit-fill-available;
	position:relative;
	z-index:0;
}
.main-visual .top_logo {
	width:30vw;
    height:100%;
	margin:0 auto;
	display: flex;
    align-items: center;
    align-content: center;
	justify-content: center;
}
.main-visual h1 {
    animation-name: fadein;
    animation-duration: 5s;

}
@keyframes fadein{
    from{
    opacity: 0;
    transform: translatesy(20px);
    }
    to{
    opacity: 1;
    transform: translatey(0);
    }
}

/* -- =============================== -- */
.main-visual .top_logo {
	flex-wrap: wrap;
}
.select-language {
	margin:3vw 0 0;
}
.select-language select {
  /* styling */
  background-color: white;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  /* reset */
  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
box-shadow: 0px 0px 15px -7px #777777;

}
/* arrows */
.select-language select.classic {
  background-image:
    linear-gradient(45deg, transparent 50%, blue 50%),
    linear-gradient(135deg, blue 50%, transparent 50%),
    linear-gradient(to right, skyblue, skyblue);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
  background-repeat: no-repeat;
}
.select-language select.classic:focus {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    linear-gradient(to right, gray, gray);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
  background-repeat: no-repeat;
  border-color: grey;
  outline: 0;
}
.select-language select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.sns-icon {
	width: 100%;
    margin: 3vw 0 0;
}
.sns-icon ul {
	display: flex;
    justify-content: space-between;
    width: 200px;
    margin: 0 auto;
	text-align: center;
}
.sns-icon ul li {
	width:25%;
}

/* base
----------------------------------*/
.linkbox {
    cursor: pointer;
}
.center {
	text-align:center;
}

/* color
----------------------------------*/
.red {
	color:#e91e63;
	font-weight:800;
}
.yellow {
	color:#FFFF00;
	font-weight:800;
}
.green {
	color:#15ee4b;
	font-weight:800;
}

/* news
----------------------------------*/
section#blog_bg {
    background-color:#A7BD2B;
	width:100vw;
    background-image:url(img/bg_hanabi_toumei.png);
    background-repeat: no-repeat;
    background-size: cover;
	background-position:center;
	position: relative;
    z-index: 0;
}
#blog_bg .news_in {
    width: 1000px;
    margin: 0 auto;
    padding: 10px 0 50px;
}
#blog_bg .news_in h3 {
    background-image:none;
	text-align:center;
}
.breadcrumb {
	font-size:12px;
}
.box_blog_page {
    background-color: rgba(255,255,255,0.8);
    padding: 1rem 3rem 2.5rem;
    line-height: 1.7;
}
.box_blog p {
    margin-bottom:.7rem;
}
.box_blog_page .date {
    text-align:right;
}
#blog_side .widget_recent_entries li {
	display: flex;
    justify-content: space-between;
}
.blog_h4 {
	font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0.3rem;
	margin-top:5rem;
}
.blog_h4:nth-of-type(1) {
	margin-top:0;
}
.blog_h4 a {
	text-decoration:none!important;
}
#blog_side {

}
.post-date {
    margin-left: 1rem;
}
#next {
	margin: 3rem 0;
    display: block;
    width: 100%;
	text-align:center;
}
#next .wp-pagenavi {
    float: none !important;
}

/* info
----------------------------------*/
section.info {
    background-color:#96a92b;
	width:100vw;
}
.info_in {
    background-image:url(img/bg_hanabi_toumei.png);
    background-repeat: no-repeat;
    background-size: cover;
	background-position:center;
	width:100vw;
}
.info_waku {
	margin:0 auto;
	padding:85px 0;
}
.info_waku h2 {
    text-align:center;
	padding-bottom:40px;
}
.info_waku h2::after {
    content:"";
    display:block;
    width:120px;
    height:1px;
	background-color:#FFF;
    position:absolute;
    bottom:0;
    left: calc(50% - 60px)
}
.catch {
	display:flex;
	justify-content: space-between;
    width:900px;
	margin:40px auto;
	color:#FFF;
    flex-wrap: wrap;
}
.koutuukisei {
    margin-top: 50px;
}
.catch .catch-first {
    width:210px;
}
.catch .catch-first p{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	text-orientation: upright;
    font-feature-settings: 'pkna';
    line-height: 2;
    font-family: 'Zen Kurenaido', sans-serif;
	font-size:21px;
	width: 100%;
}
.catch .catch-first p span.jp_moji {
    text-orientation: mixed;
	font-size: .8em;
}
.catch .catch-txt{
    width:600px;
}
h3.date {
    font-family: 'Zen Kurenaido', sans-serif;
    font-size: 53px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
h3.date span {
    display:block;
	font-size:20px;
}
dl.catch-copy {
	line-height: 1.8;
}
dl.catch-copy > dt {
	margin:1rem 0 .3rem;
	line-height: 1.5;
}
dl.catch-copy dt.copy {
	font-size:23px;
}
dl.catch-copy dt.copy-txt {
	font-size:38px;
	font-weight:300;
	border-bottom: 1px dashed #FFF;
}
dl.catch-copy dt .number {
    font-family: 'Zen Kurenaido', sans-seri;
}
dl.catch-copy dt .txt {
    font-size: 22px;
}
dl.catch-copy dd .capacity {
	font-size:22px;
}
dl.catch-copy dd.private {
	line-height:24px;
}
dl.catch-copy dd span {
    background-color: #ffffff70;
    padding: 0 .3rem 0 .5rem;
    margin: 0.2rem 0;
    color: #006c1e;
    font-weight: 800;
    display: inline-block;
}
dl.catch-info {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin: 1rem 0 0;
}
dl.catch-info dt {
	width:15%;
    border-right: 1px solid #FFF;
    margin-bottom: 0.5rem;
}
dl.catch-info dd {
    width: 82%;
    margin-bottom: 0.5rem;
}
.box_txt {
    padding: .5rem .7rem;
    margin: 1rem 0 0;
    line-height: 1.5;
    background: rgb(255 255 255 / 82%);
    color:#ff4c4c;
    font-weight: 700;
}
.catch-copy-in {
	display: flex;
    justify-content: flex-start;
    line-height: 1.5;
    margin-bottom: 0.5em;
}
.catch-copy-in dt {
	white-space: nowrap;
}

/* news
----------------------------------*/
section.news {
    background-image:url(img/info_bg_fuji.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	background-position:center;
	width:100vw;
}
.news_in {
    width:1000px;
	margin:0 auto;
	padding:85px 0;
}
.news_in h3 {
    font-size:59px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
	color:#FFF;
	background-image:url(img/info_ttl_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
	background-position:center;
	padding:50px ;
}
.news_in h3 span {
    font-size:17px;
    font-family:'M PLUS 2', sans-serif;
	display:block;
	letter-spacing:.3rem;
}
.news_in ul {
    margin: 50px 0;
}
.news_in .box_blog ul {
	margin:0 ;
	list-style: disc;
}
.news_in .box_blog ul li {
    background:none;
	padding:0;
	margin:0 0 0 2em;
}
.news_in .box_blog ul li:hover {
    background:none;
}
.news_in ul li {
    background-color: rgb(255 255 255 / 70%);
	padding:1rem 2rem;
	margin:.8rem 0;
	position:relative;
}
.news_in ul li .new {
	background-color: #ff4d4d;
    color: #FFF;
    font-size: 13px;
    padding: 0 0.5rem;
    margin-right: 1rem;
    font-weight: 700;
}
.news_in ul li .date {
    font-family: 'Zen Kurenaido', sans-seri;
    margin-right:1rem;
}
.news_in ul li .title {
    font-weight:800;
}
.news_in ul li .title a {
    text-decoration:underline;
}
.news_in ul li:hover{
    background-color: rgb(255 255 255 / 100%);
}

/* omoi
----------------------------------*/
section.omoi {
    background-color:#004C66;
    background-repeat: no-repeat;
    background-size: cover;
	background-position:center;
	width:100vw;
}
.omoi_bg {
    background-image:url(img/bg_hanabi_toumei.png);
    background-repeat: no-repeat;
    background-size: cover;
	background-position:center;
}
.omoi_in {
    width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.omoi_in h3 {
    width: 400px;
}
.omoi_in .omoi_txt {
    width: 800px;
	background-color:#CECEBF;
	padding: 80px;
	line-height:1.8;
}
.omoi_in .omoi_txt p {
    margin-bottom:.7rem;
}
.omoi_in .omoi_txt p:last-child {
    margin-bottom:0;
}

/* big4
----------------------------------*/
section.big4 {
    background-color:#012639;
	background-image:url(img/omoi_big4_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position:center;
	width:100vw;
	position: relative;
    z-index: 0;
}
.big4_bg {
	width: 1200px;
	margin: 0 auto;
	padding: 120px 0 80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.big4_bg .title {
    width: 500px;
	color:#FFF;
}
.big4_bg .pic{
    width: 617px;
}
.big4_bg .title h3 {
    font-size:80px;
	font-weight:700;
	margin-bottom: 80px;
}
.big4_bg .title h3 span.count {
    display:block;
	font-size:50px;
	color:#FFFF00;
}
.big4_bg .title h3 span.count span {
    font-size:28px;
	color:#FFF;
}
.big4_bg .title p {
    font-size:23px;
	line-height:1.8;
	margin-bottom:1em;
}
.youtubebg {
	margin:0 auto;
	width:900px;
	padding:0 0 100px;
}
.youtube {
	margin:0 auto;
	width:100%;
	position:relative;
}
lite-youtube {
	max-width:100%!important;
}

/* hanabishi
----------------------------------*/
section.hanabishi {
    background-color:#000;
	width: 100vw;
}
.hanabishi_bg {
	width: 1200px;
	margin: 0 auto;
	padding: 120px 0;
}
.hanabishi_bg h3 {
	width:562px;
	height:158px;
	background-image:url(img/hanabishi_ttl_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
	background-position:center;
	margin:0 auto 30px;
	color: #FFF;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.hanabishi_bg h3.world {
	margin-top:120px;
}
.hanabishi_bg h3 .pic {
	width:74px;
}
.hanabishi_bg h3 .title {
    font-family: 'Zen Kurenaido', sans-serif;
}
.hanabishi_bg h3 span.title .hosoku {
    font-size:17px;
	display:block;
	letter-spacing:3px;
}
.hanabishi_bg h3 span.title .hanabishisyoukai {
    font-size:60px;
}
.hanabishi_in {
    color: #FFF;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	align-items: center;
	margin-top:70px;
}
.hanabishi_in.world01 {
	align-items: flex-start;
	
}
.hanabishi_in.prodis {
    border: 1px dashed #636262;
    width: 950px;
    margin: 70px auto 0;
    padding: 15px 20px;
	align-items: center;
}
.hanabishi_in.prodis .hanabishi_info {
    margin: 10px 10px 10px;
}
.hanabishi_in.prodis span.prodis {
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: .9rem;
    margin-left: .5rem;
}
.prodis .hanabishi_in02 h4 .title .history {
    font-size: .9rem;
}
.hanabishi_in .coming-soon {
	width:100%;
    text-align: center;
    font-size: 50px;
    color: #fff;
    margin-top: 1em;
    background-color: rgba(0, 0, 0, .5);
    padding: 3em 0;
    background-image: url(https://the-zekkeihanabi.com/mt-fuji/wp-content/uploads/2025/08/fireworks_masters_Coming_Soon2025.jpg);
    background-size: cover;
    background-blend-mode: color;
	position:relative;
    background-position: center;
}
.hanabishi_in.world02 .hanabishi_in01, .hanabishi_in.obata .hanabishi_in01, .hanabishi_in.isogai .hanabishi_in01, .hanabishi_in.obata .hanabishi_info dt, .hanabishi_in.isogai .hanabishi_info dt {
    order:2;
}
.hanabishi_in.obata .hanabishi_in02, .hanabishi_in.isogai .hanabishi_in02, .hanabishi_in.obata .hanabishi_info dd, .hanabishi_in.isogai .hanabishi_info dd {
    order:1;
}
.hanabishi_in01 {
    width:485px;
}
.world01.prodis .hanabishi_in01 {
    width:300px;
}
.world01.prodis .hanabishi_in01 {
    text-align:center;
}
.world01.prodis .hanabishi_in01 img {
    width:90%;
}
.world01.prodis .hanabishi_in02 {
    width:590px;
}
.world01 .hanabishi_in01 {
    width:440px;
}
.hanabishi_in02 {
    width:715px;
}
.hanabishi_in02 h4 {
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-bottom: 1px solid #FFF;
}
.hanabishi_in02 h4 .pic {
    width:90px;
	margin-right:15px;
}
.hanabishi_in02 h4 .title {
    width:530px;
}
.world01 .hanabishi_in02 h4 .title {
    width: 590px;
}
.hanabishi_in02 h4 .title .company {
    font-family:'Kaisei HarunoUmi', serif;
    font-size: 40px;
}
.prodis .hanabishi_in02 h4 .title .company {
    font-size: 20px;
}
.hanabishi_in02 h4 .title .history {
    font-family:'Kaisei HarunoUmi', serif;
    font-size: 16px;
	margin-left:.5rem;
}
.hanabishi_in02 h4 .title .company-en{
    font-family: 'M PLUS 2', sans-serif;
    font-size: 20px;
	display:block;
	padding-top: .3em;
}
.world01 .hanabishi_in02 h4 .title .company-en{
    font-family: 'M PLUS 2', sans-serif;
    font-size: 20px;
	display:block;
}
.world01 .hanabishi_in02 h4 .title .company-en{
    font-size: 14px;
}
.world01.prodis .hanabishi_in02 h4 .title .company-en{
    font-size: 12px;
}
.prodis .hanabishi_in02 h4 .pic {
	width: 40px;
    margin-right: 10px;
}
.hanabishi_info {
    display: flex;
    margin:25px 20px 15px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hanabishi_info dt {
    width:380px;
	line-height:1.7;
	font-size:14px;
}
.world01 .hanabishi_info dt {
    width:100%;
}
.prodis .hanabishi_info dt {
    font-size: 12px;
}
.hanabishi_info dd {
    width:273px;
}
div.sub-info {
    margin: 0 20px;
    padding: 0.7rem 1rem;
    border: 1px dashed #505050;
    font-size: 14px;
    line-height: 1.5;
}
.prodis div.sub-info {
    padding: 0.5rem .7rem;
    font-size: 12px;
	margin:0;
}
div.sub-info ul {
    list-style: disc;
	margin-left:2em;
}
ul.hanabishi_jyunbi {
	margin: 100px 0 0;
    display: flex;
    justify-content: space-between;
}
ul.hanabishi_jyunbi li {
	width:23%;
}

/* program
----------------------------------*/
section.program {
    background-color:#004c66;
    background-image:url(img/464825.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position:center;
	width:100vw;
}
.program_bg {
	width: 1200px;
	margin: 0 auto;
	padding: 120px 0;
}
.program_bg h3 {
	text-align:center;
}
.program_bg h3 span {
    display: block;
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 26px;
    color: #FFF;
    margin-top: 0.2em;
}
.program_bg table {
    width: 100%;
    margin: 50px 0 10px;
	border-collapse: separate;
	border-spacing: 2px;
	color: #023343;
}
.program_bg table th {
    background-color: #f0f0e1;
    text-align: center;
    padding: 10px 20px;
    vertical-align: middle;
    line-height: 1.5;
	white-space: nowrap;
}
.program_bg table th.hanabishi {
    font-weight:300;
}
.program_bg table th.number {
    font-size:20px;
	color: #023343;
}
.program_bg table td {
    background-color:#f0f0e1;
    padding: 10px 20px;
    vertical-align: middle;
    line-height: 1.5;
}
.program_bg table td strong.co01 {
    font-size: 130%;
    color: #e91e63;
}
.program_bg table td strong.co02 {
    font-size: 115%;
}
.program_bg table tr:nth-of-type(2n) th, .program_bg table tr:nth-of-type(2n) td {
    background-color:#fafaf3;
}
.program_bg table tr:nth-of-type(1) th, .program_bg table tr:nth-of-type(1) td {
    background-color:#023343;
    color: #FFF;
	text-align:center;
	font-weight:700;
}
.program_bg .hosoku {
    text-align:center;
	font-size:14px;
	color:#fff;
}
.program_bg .coming-soon {
	text-align: center;
    font-size: 50px;
    color: #ffffff;
    margin-top: 1em;
    background-color: rgba(0,0,0,.5);
    padding: 7em 0;
    padding-top: 7em;
    padding-right: 0px;
    padding-bottom: 7em;
    padding-left: 0px;
    background-image: url(https://the-zekkeihanabi.com/mt-fuji/wp-content/themes/mtfuji2023/img/DSC5403.jpg);
    background-size: cover;
    background-blend-mode: color;
}

/* ticket
----------------------------------*/
section.ticket {
    background-color:#F0F0E1;
	width:100vw;
}
.ticket_bg {
	width: 1280px;
	margin: 0 auto;
	padding: 120px 0;
}
.ticket_bg h3 {
	width:562px;
	height:158px;
	background-image:url(img/ticket_ttl_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position:center;
	margin:0 auto 30px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}
.ticket_bg h3 .pic {
	width:74px;
}
.ticket_bg h3 .title {
	width:300px;
}
.ticket_bg h3 span.title .hosoku {
    font-size:17px;
	display:block;
	letter-spacing:4px;
}
.ticket_bg h3 span.title .ticket_annai {
    font-size:44px;
}
.ticket_in {
	width:100%;
}
.ticket_map_dantai {
    text-align: center;
    width: 750px;
    max-width: 100%;
    margin: 1.2vw auto 0;

}

.ticket_in .ticket_map {
}
.ticket_in .ticket_info {
	background-color:#e0e7d5;
	padding:25px 30px;
}
.ticket_in .ticket_info dl dt {
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    border-bottom: 1px solid #c2c2c2;
}
.ticket_in .ticket_info dl dt .price {
    font-size: 17px;
    color: #f44336;
}
.ticket_in .ticket_info dl dt .zeikomi {
    font-size: 12px;
}
.ticket_in .ticket_info dl dd {
	line-height:1.5;
    margin-bottom: 1rem;
	font-size: 15px;
}
.btnvip {
    background: #ed7145;
    text-align: center;
    margin: .5em 0 1em;
    padding: .3em 0;
}
.btnvip:hover {
    background: #f00;
}
.btnvip a {
    color: #FFF;
    text-decoration: none!important;
    font-weight: 800;
}
.btninfo {
text-align:center;
font-weight:700;
}
.btninfo a{
color: #fe0002;
}
.ticket_in .ticket_info dl dd ul {
    list-style: disc;
	margin-left:1.5em;
	line-height:1.5;
	font-size: 14px;
	margin-top:.5em;
}
.ticket_in .ticket_info dl dd ul li:first-child {
    list-style: none;
	margin-left:-1.5em;
}
.ticket_info_bg {
	margin-bottom:1em;
	position:relative;
	z-index:0;
}
.ticket_info_bg.soldout:before {
	content: "";
    display: inline-block;
    background: url(//the-zekkeihanabi.com/mt-fuji/wp-content/themes/mtfuji20250401/img/sold-out.png) no-repeat;
    background-size: contain;
    background-position: right;
    height: 157px;
    width: 237px;
    position: absolute;
    right: 0;
    margin-right: 20vw;
	z-index: 1;
}
.ticket_info_bg.soldout.top:before {
	margin-top: 48px;
}
.ticket_info table td.area.soldout img {
    max-height: 3em;
    width: auto;
    position: absolute;
    top: 0;
    margin: 0 0 0 -12px;
}
.ticket_info_bg_left {
	position:relative;
	z-index:0;
}
.ticket_info table td.area del {
	background-image: linear-gradient(#f18200, #f18200);
    background-position: 0 50%;
    background-size: 100% 2px;
    background-repeat: repeat-x;
    text-decoration: none!important;
    padding: 0 3px;
}
.ticket_info table td.price del {
	background-image: linear-gradient(#e91e63, #e91e63);
    background-position: 0 50%;
    background-size: 100% 1px;
    background-repeat: repeat-x;
    text-decoration: none!important;
    padding: 0 3px;
}
.ticket_info table td.price del:before {
    content: "";
    display: inline-block;
    background: url(//the-zekkeihanabi.com/mt-fuji/wp-content/themes/mtfuji20250401/img/sold-out.png) no-repeat;
    background-size: contain;
    background-position: right;
    height: 53px;
    width: 91px;
    position: absolute;
    right: 0;
    left: 2em;
    top: 0;
    bottom: 0;
    z-index: 1;
    margin: auto;
}
.ticket_info table {
    width: 100%;
    border-collapse: collapse;
	position:relative;
	z-index:0;
}
.ticket_info table tr.under-none td, .ticket_info table td.info.under-none {
    border-bottom:0;
}
.ticket_info table th {
    padding: 0.5em 1em;
vertical-align: middle;
text-align:center;
	position:relative;
	z-index:0;
}
.ticket_info table td {
    background-color: #fafaf3;
    padding: 0.7em 1em;
    border: 1px solid #cacfc4;
	vertical-align:middle;
	line-height: 1.5;
	position:relative;
	z-index:0;
}
.ticket_info table td.bi ul {
    margin-top:.5em;
	margin-bottom:.5em;
}
.ticket_info table td.bi ul.pic-parking {
    margin: 1.5em 0 0;
    display: flex;
    justify-content: space-between;
}
.ticket_info table td.bi ul.pic-parking li {
    width:24%;
}
.ticket_info table .zei {
    font-size:.7em;
}
.ticket_info table td span.del {
  text-decoration-line: line-through;
  text-decoration-style:double;
  text-decoration-color:#ff000045;
}
.ticket_info table td.area i {
    margin-right:.3em;
}
.ticket_info table th.area {
	font-size: 22px;
    padding: 0.5em 1em 0.5em .5em;
	text-align:left;
}
.ticket_info table.parking {
    margin-top:1em;
}
.ticket_info table td.area {
	font-family: 'Kaisei HarunoUmi',serif;
    font-size: 20px;
    width: 75%;
}
.ticket_info table td.area .wazuka {
    margin: 0 0 0 1em;
    font-size: .8em;
    border: 1px solid #0071bd;
    padding: 0 1em;
    color: #0071bd;
    font-weight: 700;
    display: inline-block;
}
.ticket_info table td.area .wazuka.soldout {
    border: 1px solid #ff1c1d;
    color: #ff1c1d;
}
.ticket_info table td.number {
    width: 15%;
	text-align:center;
}
.ticket_info table td.number span{
    font-size: .8em;
}
.ticket_info table td.price {
    width: 25%;
	text-align:center;
	font-size: 18px;
    color: #e91e63;
	font-weight: 700;
	position:relative;
	z-index:0;
}
.ticket_info table td.price .fa-yen-sign{
	font-size:.7em;
margin-right: 0.3em;
}
.ticket_info table td.info {
	background: #FFF;
border-top: 0;
}
.ticket_info table td.info p {
	margin-left:.1em;
}
.ticket_info table td.info ul.pic{
    display: flex;
    margin: 0 0 0 1em;
	justify-content: flex-end;
}
.ticket_info table td.info ul.pic li:first-child {
    margin-right:1em;
}
.ticket_info table td.info ul.pic li img {

}
.hosoku-txt {
	text-align:right;
}
.ticket_info table td .hosoku {
    font-size: .85em;
    color: #0071bd;
}
.ticket_info table.bisyoku th {
	font-family: 'Kaisei HarunoUmi',serif;
    font-size: 20px;
	background-color: #fafaf3;
    padding: 0.7em 1em;
    border: 1px solid #cacfc4;
    vertical-align: middle;
    line-height: 1.5;
	text-align:left;
	font-weight: 300;
}
.ticket_info table.bisyoku td {
	background-color: #FFF;
}
.ticket_bg .ticket_info ul.bisyoku-pic {
	display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items:flex-end;
	margin:0;
	text-align: center;
}
.ticket_bg .ticket_info ul.bisyoku-pic > li {
	width:47.5%;
	padding:0;
	font-weight: 700;
}
.ticket_info table.bisyoku th .hosoku {
    font-size: .85em;
    color: #0071bd;
}
.ticket_bg .ticket_info ul.bisyoku-drink {
	margin: 28px;
    border: 1px solid #cacfc4;
    padding: 1em 2.5em 1em 4.5em;
    list-style: disc;
    display: flex;
    flex-wrap: wrap;
    background: #f7f7f7;
}
.ticket_bg .ticket_info ul.bisyoku-drink > li {
	width:33%;
}
.ticket_bg .ticket_info ul.bisyoku-pic > li img {
	margin-top: 5px;
}
.ticket_bg .ticket_info ul.bisyoku-pic > li.kaitai img {
    width: 574px;
}
.ticket_bg .ticket_info ul.bisyoku-pic > li > ul {
	display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    flex-wrap: wrap;
	margin:0;
}
.ticket_bg .ticket_info ul.bisyoku-pic > li > ul > li {
	width:44%;
	padding:0;
}
.ticket_bg .ticket_info ul.bisyoku-pic > li > ul > li span {
	font-size:.9em;
}
.ticket_bg .ticket_info ul.bisyoku-pic > li > ul > li {
	margin-bottom: 10px;
}
.ticket_bg .ticket_info ul.bisyoku-pic.pic2 >li{
	width:100%;
}
.ticket_bg .ticket_info ul.bisyoku-pic.pic2 >li>ul li{
	width:22%;
}
.ticket_bg .ticket_info ul.bisyoku-pic.pic5 {
	margin-top:2%;
}
.ticket_bg .ticket_info ul.bisyoku-pic.pic5 >li>ul li{
	width:18%;
	font-size: .85em;
}
.ticket_bg .ticket_info ul {
	margin:0 0 0 1.5em;
	line-height:1.5;
}
.ticket_bg .ticket_info ul li {
    padding-bottom: 0.3rem;
}
.CheckPoint_Map {
	margin: 1em 0;
}
.CheckPoint_Map img {
	width:1000px;
	max-width:100%;
	height:auto;
}
.ticket_sales_bg h4 {
    font-size: 22px;
    font-weight: 700;
    line-height:2;
	margin-top:30px;
}
.ticket_chu {
	margin-top:100px;
}
.ticket_bg .ticket_bus ul {
	margin:.5rem 0;
}
.ticket_bg ul {
	margin:.5rem 0 0;
}
.ticket_bg .ticket_chu ul {
	margin:.5rem 2rem 0;
	list-style: disc;
}
.ticket_bg .ticket_chu ul li {
	margin:.3rem 0;
}
.ticket_bg .ticket_chu h3 {
	font-family: 'Kaisei HarunoUmi', serif;
    font-size: 36px;
	align-content: center;
}
.ticket_chu h3 span.chu {
    font-size: 16px;
	margin-top: 1rem;
	color: #FF4C4C;
}
.ticket_sales_bg dl {
    background-color: #fafaf3;
    padding: 20px 30px;
    line-height: 1.5;
}
.ticket_sales_bg dt {
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    border-bottom: 1px solid #c2c2c2;
}
.ticket_sales_bg .ticket_bus dt {
    border-bottom: 0;
	margin-bottom:1rem;
}
.ticket_sales_bg dd {
    line-height: 1.5;
    margin-top: 3px;
    margin-bottom: 1rem;
    font-size: 15px;
}
.ticket_sales_bg dd .his , .ticket_sales_bg dd .KKday , .ticket_sales_bg dd .rakuten_travel {
	position:relative;
}
.ticket_sales_bg dd .his .translation , .ticket_sales_bg dd .KKday .translation , .ticket_sales_bg dd .rakuten_travel .translation {
    position: absolute;
    top: -13px;
    background-color: #ff784d;
    color: #FFF;
    padding: 0 .7em;
    font-size: 90%;
    border-radius: 3px;
    border: 1px solid #e91e63;
}
.ticket_sales_bg dd .his {
 	display: inline-block;
    text-align: center;
	margin: 1em 0 0;
}
.ticket_sales_bg .ticket_chu dd {
    margin-bottom: 1rem;
}
.ticket_sales .day, .ticket_bus .day {
	color: #e91e63;
}
.ticket_sales .day span, .ticket_bus .day span {
	font-size:85%;
}
.other-pg-pre {
	margin:1em 0 0.5em;
    font-weight: 700;
	border-bottom: 1px dashed #c9c9c9;
	padding: 0.3em 0;
}
.other-pg-pre .day span{
	font-size:100%;
    font-weight: 300;
}
.ticket_bg ul.ticket_sales_other-pg-pre {
	margin: 1rem 0 0;
}
.ticket_bg ul.ticket_sales_other-pg-pre img {
	width:190px;
	margin: 0 1em;
}
.ticket_bg ul.ticket_sales_other-pg-pre li {
	margin: 0 0 1rem;
}
.ticket_sales_in {
    display: flex;
    flex-wrap: wrap;
}
.ticket_sales_in li {
	margin: 0 1em 2em 0;
    width: 21%;
	font-size: 13px;
    text-align: center;
}
.ticket_sales_bg dd .ticket_sales_in li .his{
    margin:0;
}
.ticket_bus .jtb {
	height:6vw;
}
.ticket_bus .jtb img {
	height:100%;
	width:auto;
}
.Ticket_ippan{
    background: #ff4d4d;
    padding: 2px 18px 3px;
    margin: 0 8px 0 12px;
    color: #fff;
    font-size: 15px!important;
}
.day.day_02{
    color: #afafaf;
    font-size: 15px;
}
.other-pg-pre_gry{
    color:#7d7d7d!important;
}


/* faq
----------------------------------*/
.accbox h4 {
    margin: 50px 0 0.5rem;
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 24px;
    border-bottom: 1px solid #707070;
    line-height: 40px;
}
.accbox {
    margin: 0 auto 80px;
    padding: 0;
    max-width: 100%;
}
.accbox h3 {
	margin:2em 0 1em;
}
.accbox label {
    display: block;
    margin: 1em 0 0;
    padding: 1rem 1.5rem;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.5s;
    background:#fafaf3;
}
.accbox label:before {
    content: '\f054';
    font-family: 'FontAwesome';
    padding-right: 8px;
}
.accbox label:hover {
    background :#e2e2d6;
}
.accbox input {
    display: none;
}
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 1rem 1.5rem;
    background: #FFF;
    opacity: 1;
    border: 1px solid #DDD;
    box-sizing: border-box;
}
.cssacc:checked + label:before {
    content: '\f078';
}
.accbox .accshow p {
	line-height:1.5;
}



/* access
----------------------------------*/
section.access {
    background-color:#C3D852;
	width:100vw;
}
.access_bg {
	width: 1280px;
	margin: 0 auto;
	padding: 120px 0;
}
.access_bg h3 {
	width:562px;
	height:158px;
	background-image:url(img/ticket_ttl_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position:center;
	margin:0 auto 30px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}
.access_bg h3 .pic {
	width:74px;
}
.access_bg h3 .title {
	width:300px;
}
.access_bg h3 span.title .hosoku {
    font-size:17px;
	display:block;
	letter-spacing:4px;
}
.access_bg h3 span.title .ticket_annai {
    font-size:40px;
}
.access_in {
	text-align:center;
}
.access_in h4 {
	font-size:24px;
    font-family:'Shippori Mincho B1', serif;
}
.access_in p img {
	margin-bottom:30px;
}
.googlemap {
    height: 0;
    overflow: hidden;
    padding-bottom: 35%;
    position: relative;
	width:1200px;
	margin:20px auto 0;
}
.googlemap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
iframe {
	max-width:100%;
}

/* gaiyou
----------------------------------*/
section.gaiyou {
    background-color:#F0F0E1;
	width:100vw;
}
.gaiyou_bg {
	width: 1280px;
	margin: 0 auto;
	padding: 120px 0;
}
.gaiyou_bg h3 {
    margin:0 auto 30px;
	width: 500px;
	height:142px;
	background-image:url(img/gaiyou_ttl_bg.png);
	display:flex;
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 30px;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.gaiyou_bg dl {
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	background-color: #fff9;
	padding:20px 30px;
}
.gaiyou_bg dl dt{
    width:20%;
	border-right:1px solid #777;
	margin-bottom:.5rem;
    text-align-last: justify;
    text-justify: inter-ideograph;
	padding:7px 3% 7px 0;
}
.gaiyou_bg dl dd{
    width:77%;
	margin-bottom:.5rem;
	padding:7px;
}


/* covid19
----------------------------------*/
section.covid19 {
    background-color:#BDBDAE;
	width:100vw;
}
.covid19_bg {
	width: 1280px;
	margin: 0 auto;
	padding: 120px 0;
}
.covid19_bg h3 {
    margin:0 auto 50px;
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 40px;
	text-align:center;
	line-height: 1.5;
}
.covid19_bg h3 span {
    display:block;
	font-size:18px;
    font-family:'Shippori Mincho B1', serif;
	color:#333;
}
.covid19_bg ul.pic {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
	margin:3rem 0 0; 
}
.covid19_bg ul.pic li {
    width:22%;
	text-align:center;
	color:#333;
	font-weight:700;
}
.covid19_bg ul.pic li p {
    margin-bottom:.5rem;
}
.covid19_bg ul.pic li p:last-child {
    text-align: left;
    line-height: 1.5;
}
.covid19-txt {
	width:1000px;
	margin:0 auto;
	line-height:1.5;
}
.covid19-txt.hed p {
	margin-bottom:.7rem;
}
.covid19_bg h4 {
    margin: 50px 0 0.5rem;
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 24px;
    border-bottom: 1px solid #707070;
    line-height: 40px;
}
.covid19_bg ul.txt {
    margin: 0.5rem 0 0 2em;
    list-style: disc;
	line-height: 1.5;
}
.covid19_bg ul.txt li {
    padding: 0.3rem 0;
}
.covid19_bg ul.txt li ol {
	list-style: decimal;
	margin-left:1.5rem;
}
.covid19_bg ul.txt li ol li {
	padding: 0.1rem 0;
}


/* footer
----------------------------------*/
footer {
    background-color: #004C66;
    text-align: center;
    font-size: 13px;
    color: #FFF;
    padding: 1rem 0;
    line-height: 1.5;
	width:100vw;
}
footer .contact {
	max-width: 800px;
    margin: 1rem auto 1rem;
    border: 1px solid #FFF;
    padding: 1rem;
    font-size: 1vw;
}
footer .contact ul{
  display: inline-block;
	text-align:left;
}
footer .contact h5 {
	font-size: 20px;
}
footer p.address {
    margin-bottom:.5rem;
}
.ticket_info table td.info p.jtb {
	display: inline-block;
    text-align: center;
}
.ticket_info table td.info p.jtb span {
	display: block;
    margin: 1em;
}

/*-----------------------------------------------------*/
/* PC max */
/*-----------------------------------------------------*/
@media screen and (min-width: 1366px) {
.main-visual {
    height: 100vh;
}
.sns-icon {
	
}
.main-visual .top_logo{
    width: 35vw;
}
nav label {
    display:none;
}
nav .menu {
	opacity: 100;
    width: calc(var(--header-width)*1em/16);
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 99;
	background-color: #0071bd;
    text-align: left;
    overflow:hidden;
	display: flex;
    align-items: center;
    flex-direction: column;
    justify-content:space-between;
}
nav .menu div.side_bg01, nav .menu div.side_bg02 {
    margin-top: 0;
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content:space-evenly;
}
nav .menu div.side_bg01 a {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	text-orientation: upright;
    font-feature-settings: 'pkna';
    line-height: 1;
    display: block;
	font-weight:700;
	width: 1em;
	color:#FFF;
}
nav .menu div.side_bg01 {
    height:70vh;
}
nav .menu div.side_bg02 {
}
nav .menu div.side_bg02 .side_ticket {
    width:100%;
	background-color: #ff4d4d;
	display: flex;
    align-content: center;
    align-items: center;
    padding:.5rem 0;
}
nav .menu div.side_bg02 .side_ticket div {
    width:90%;
	margin:0 auto;
}
}


/*-----------------------------------------------------*/
/* PC min */
/*-----------------------------------------------------*/
@media screen and (min-width: 961px) and (max-width: 1365px) {
.main-visual {
    height: 100vh;
}
.main-visual .top_logo {
	width:47vw;
}
nav label {
    display:none;
}
nav .menu {
	opacity: 100;
    width: calc(var(--header-width)*1em/16);
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 99;
	background-color: #0071bd;
    text-align: left;
    overflow: hidden;
	display: flex;
    align-items: center;
    flex-direction: column;
    justify-content:space-between;
}
nav .menu div.side_bg01, nav .menu div.side_bg02 {
    margin-top: 0;
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content:space-evenly;
}
nav .menu div.side_bg01 a {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	text-orientation: upright;
    font-feature-settings: 'pkna';
    line-height: 1;
    width: 1em;
    display: block;
	font-weight:700;
	color:#FFF;
}
nav .menu div.side_bg01 {
    height:70vh;
	background-color: #0071bd;
}
nav .menu div.side_bg02 {

}
nav .menu div.side_bg02 .side_ticket {
    width: 100%;
    background-color: #ff4d4d;
    display: flex;
    align-content: center;
    align-items: center;
    padding: 0.5rem 0;
}
nav .menu div.side_bg02 .side_ticket div {
    width:90%;
	margin:0 auto;
}
.ticket_info table td.info.pic-in ul {
    font-size: 1.5vw;
}
.ticket_info table td.info.pic-in p {
    font-size: 1.5vw;
}
.ticket_bg .ticket_info ul.bisyoku-pic, .ticket_bg .ticket_info ul.bisyoku-pic>li>ul {
    font-size: 1.2vw;
}
.ticket_bg .ticket_info ul.bisyoku-drink {
	font-size: 1.2vw;
	padding: 1em 1.5em 1em 3.5em;
}
.ticket_info table td.bi {
    font-size: 15px;
}
.world01 .hanabishi_in02 h4 .title {
width: auto;
}
.hanabishi_in.prodis {
	max-width:96%;
}
.omoi_in {
    width: 95%;
    justify-content: space-evenly;
    padding-right: 6%;
}
.omoi_in h3 {
    width: 32%;
}
.omoi_in .omoi_txt {
    width: 60%;
    font-size: 1.3vw;
    padding: 4vw;
}
.news_in {
    width: 93%;
    justify-content: space-evenly;
    padding-right: 6%;
}
.big4_bg {
    width: 93%;
    justify-content: space-evenly;
    padding-right: 6%;
}
.youtubebg {
	margin:0 auto;
	width:87%;
	padding:0 6% 10vw 0;
}
.big4_bg .title {
    width: 40%;
}
.big4_bg .pic {
    width: 50%;
}
.big4_bg .title h3 {
    font-size: 5vw;
	margin-bottom: 3vw;
}
.big4_bg .title h3 span.count {
    display: block;
    font-size: 7vw;
}
.big4_bg .title h3 span.count span {
    font-size: 4vw;
}
.big4_bg .title p {
    font-size: 1.7vw;
}
.hanabishi_bg {
    width: 93%;
    justify-content: space-evenly;
    padding-right: 6%;
}
.hanabishi_in01 {
    width: 35%;
}
.hanabishi_in02 {
    width: 65%;
}
.world01 .hanabishi_in01 {
    width: 30%;
}
.world01.prodis .hanabishi_in01 {
    width: 25%;
}
.world01 .hanabishi_in02 {
    width: 65%;
}
.world01.prodis .hanabishi_in02 {
    width: 70%;
}
.hanabishi_in02 h4 .pic {
    width: 10%;
    margin-right: 2%;
}
.hanabishi_in02 h4 .title {
    width: 88%;
}
.hanabishi_in02 h4 .title .company {
    font-size: 3vw;
}
.hanabishi_in02 h4 .title .history {
    font-size: 1rem;
}
.hanabishi_in02 h4 .title .company-en {
    font-size:1rem;
}
.hanabishi_info dt {
    width: 62%;
    font-size: .9rem;
}
.hanabishi_info dd {
    width: 35%;
}
div.sub-info {
    font-size: .8rem;
}
.program_bg {
    width: 93%;
    padding-right: 6%;
}
.ticket_bg {
    width: 93%;
    padding-right: 6%;
}
.ticket_in .ticket_map {

}
.ticket_in .ticket_info {
    padding: 1.2vw;
	font-size: 1.2vw;
}
.ticket_in .ticket_info dl dt {
    font-size: 1.6vw;
    margin-bottom: 0.8vw;
    line-height: 3vw;
}
.access_bg {
    width: 93%;
    padding-right: 6%;
}
.gaiyou_bg {
    width: 93%;
    padding-right: 6%;
}
.gaiyou_bg h3 {
    width: 90%;
    font-size: 3vw;
}
.covid19_bg {
    width: 93%;
    padding-right: 6%;
}
.covid19_bg h3 {
    font-size: 3vw;
}
.covid19_bg h3 span {
    font-size: 1.5vw;
}
.googlemap {
    width:100%;
}
.catch {
    width: 93%;
    padding-right: 6%;
	justify-content: space-around;
}
#blog_bg .news_in {
    width: 93%;
    justify-content: space-evenly;
    margin-right: 6%;
}
.blog_h4 {
    font-size: 2vw;
}
footer .contact_bg {
    width: 93%;
    margin-right: 6%;
	font-size:1.5vw;
}
footer .contact {
	font-size:1.3vw;
}
.ticket_bg .ticket_info ul {
	font-size:1.5vw;
}
.ticket_sales_in li {
	font-size: .8vw;
margin: 0 1em 3em 0;
}
}

/*-----------------------------------------------------*/
/* 高さ */
/*-----------------------------------------------------*/
@media screen and (max-height: 900px) {
nav .menu {

}
nav .menu div.side_bg01 {
	font-size: 1vw;
}
nav .menu div.side_bg02 {

}
}
@media screen and (max-height: 800px) {
nav .menu div.side_bg01 {
	height: -webkit-calc(100vh - 238px);
	height: calc(100vh - 238px);
	font-size: .8vh;
}
nav .menu div.side_bg02 .side_ticket div {
    width:90%;
	margin:0 auto;
}
}
@media screen and (max-height: 700px) {
nav .menu div.side_bg02 {

}
}

/*-----------------------------------------------------*/
/* タブレット */
/*-----------------------------------------------------*/
@media screen and (min-width: 961px) {
nav .menu div.side_bg01 div.pc_none {
	display:none;
}
}
@media screen and (max-width: 960px) {
.ticket_info_bg.soldout:before {
height: 110px;
}
.ticket_info table td.area .wazuka {
    display: inherit;
}
nav .menu div.side_bg01 div.pc_none {
	display:initial;
}
nav .menu div.side_bg01 div.logo img {
	width:auto;
	height:15vh;
}
nav .menu div.side_bg01 div.ticket span {
	display:block;
	font-size:2vw;
}
.world01 .hanabishi_in02 h4 .title {
width: auto;
}
.main-visual {
    height:90vh;
}
.main-visual .top_logo {

}
.main-visual .top_logo img {
	width:50vw;
}
.ticket_info table td.info {
	font-size:1.8vw;
}
.ticket_info table td.bi {
	font-size:1.8vw;
}
.ticket_info table td.price {
	font-size:2.5vw;
}
.ticket_info table td.area {
	font-size:2.3vw;
}

.ticket_bg .ticket_info ul.bisyoku-pic, .ticket_bg .ticket_info ul.bisyoku-pic>li>ul {
    font-size: 1.6vw;
}
.ticket_bg .ticket_info ul.bisyoku-drink {
	font-size: 1.4vw;
	padding: 1em 1.5em 1em 3.5em;
	margin-left:0;
	margin-right:0;
}
nav label {
    display: block;
}
nav .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    background-color: #a7bd2b;
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 24px;
    z-index: 2;
	position:fixed;
    transition: transform .3s;
}
nav input:checked ~ .menu {
    display: flex;
}
nav .menu div.side_bg01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 80%;
    margin: 0 auto ;
    text-align: center;
    line-height:2;
    background: none;
	flex-direction: row;
    padding-top: 5vh;
}
nav .menu div.side_bg01 div {
    width: 100%;
    margin-bottom: 0.3rem;
    border-bottom: 1px solid #FFF;
    padding-bottom: 0;
    font-size: 2vw;
    font-weight: 700;
	
}
nav .menu div.side_bg01 a {
  writing-mode: horizontal-tb;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
  display: block;
  height: 100%;
    padding-bottom: 0.3rem;
width: 100%;
	line-height:1.8;
}
nav .menu div.side_bg01 .logo a {
    display: initial;
  height: auto;
    padding-bottom: 0;
}
nav .menu div.side_bg02 {
    display:none;
}
nav .menu-sns-icon {
    display:initial;
	padding: 2vw 0 0;
}
nav .menu-sns-icon ul {
    display: flex;
    justify-content: space-between;
    width: 60%;
	max-width: 250px;
    margin: 0 auto;
}
nav .menu-sns-icon ul li {
    width: 25%;
}
nav .menu div.side_bg01 div.menu-sns-icon {
	border:0;
    margin-bottom: 1.5rem;
}
.main-visual .top_logo {
	width: 60vw;
}
.select-language {
    margin: 7vw 0 0;
}
.sns-icon {
	margin: 0;
    padding: 5vw 0 0;
}
nav .menu div.side_bg01 div.logo {
    margin-bottom: 1vh;
	border-bottom:0;
}
nav .menu div.side_bg01 div.logo span {
    display:block;
	font-family: 'Zen Kurenaido', sans-serif;
	font-weight:300;
}
nav .menu div.side_bg01 div.newslist {
	border-top:1px solid #FFF;
	padding-top: 0.3rem;
}
nav .menu div.side_bg01 div.ticket {
    border-bottom: 0;
    background-color: #ff4d4d;
	padding:.3rem;
	margin:2vh 0 1.5vh;
}
nav .menu div.side_bg01 div.ticket div {
    border:1px dashed #FFF;
	margin:0;
	padding:.3rem 0;
	line-height:1.5;
    font-size: 3vw;
}
nav .menu div.side_bg01 div.instagram {
    font-size:1.5vw;
	border:0;
	line-height:1.2;
	font-family: 'M PLUS 2', sans-serif;
	font-weight:300;
}
nav .menu div.side_bg01 div.instagram .fa-instagram-square{
    font-size:12vw;
}
.info_waku h2 {
    margin:0 auto;
	width:70vw;
	padding-bottom: 0;
}
.info_waku {
    padding:8vw 0 4vw;
	width:100vw;
}

.catch {
    flex-wrap: wrap;
    width: 95%;
}
.catch .catch-first {
    width: 100%;
}
.catch .catch-first p {
    font-size: 2.8vw;
	-ms-writing-mode: initial;
    writing-mode: initial;
    line-height: 1.5;
	text-align:center;
}
.catch .catch-txt {
width: 100%;
    font-size: 2vw;
    margin-top: 4vw;
    text-align: center;
}
.catch .catch-txt p {
    text-align: center;
    font-size: 2vw;
}
h3.date {
    font-size: 6vw;
}
h3.date span {
    font-size: 2.2vw;
}
dl.catch-copy dt.copy {
    font-size: 2.8vw;
}
dl.catch-copy dt.copy-txt {
    font-size: 4vw;
}
.news_in {
    width: 90%;
    padding: 3vw 0;
}
.news_in h3 {
    font-size: 7vw;
    padding: 3vw;
}
.news_in h3 span {
    font-size: 2vw;
}
.news_in ul {
    margin: 4vw 0;
}
.news_in ul li {
    font-size:1.7vw;
}
.news_in ul li .date {
	margin-right:0;
	display:block;
}
.news_in ul li .title {
    font-size: 2vw;
    line-height: 1.5;
}
.omoi_in {
    width: 90%;
    padding: 10vw 0;
}
.omoi_in h3 {
    width: 30%;
}
.omoi_in .omoi_txt {
    width:65%;
	padding:3vw;
    font-size: 1.5vw;
}
.big4_bg {
    width:90%;
	padding: 6vw 0;
}
.youtubebg {
	margin:0 auto;
	width:90%;
	padding:0 0 10vw;
}
.big4_bg .title {
    width: 100%;
    color: #FFF;
}
.big4_bg .title h3 span.count {
    font-size: 10vw;
}
.big4_bg .title h3 span.count span {
    font-size: 5vw;
}
.big4_bg .title h3 {
    font-size: 5vw;
    margin-bottom: 2vw;
    text-align: center;
}
.big4_bg .title p {
    font-size: 2.5vw;
    text-align: center;
}
.big4_bg .pic {
    width:100%;
	text-align:center;
}
.hanabishi_bg {
    width:90%;
	padding: 6vw 0;
}
.hanabishi_bg h3 {
    width: 75%;
}
.hanabishi_bg h3 span.title .hosoku {
    font-size: 2vw;
    display: block;
    letter-spacing: .2vw;
}
.hanabishi_bg h3 .pic {
    width: 8vw;
}
.hanabishi_bg h3 .title {
    width: 45vw;
}
.hanabishi_bg h3 span.title .hanabishisyoukai {
    font-size: 7vw;
}
.hanabishi_in .hanabishi_in02, .hanabishi_in .hanabishi_info dd {
    order: 1;
}
.hanabishi_in .hanabishi_in01, .hanabishi_in .hanabishi_info dt {
    order: 2;
}
.hanabishi_in01 {
	width:100%;
	text-align:center;
}
.hanabishi_in02 {
    width: 100%;
}
.world01 .hanabishi_in02 {
    width: 100%;
}
.world01 .hanabishi_in01 {
    width: 100%;
	margin-top: 1em;
}
.hanabishi_in02 h4 .pic {
    width: 10%;
    margin-right: 2%;
}
.hanabishi_in02 h4 .title {
    width: 88%;
}
.hanabishi_in02 h4 .title .company {
    font-size: 5vw;
}
.world01 .hanabishi_in02 h4 .title .company {
    font-size: 3vw;
}
.world01.prodis .hanabishi_in01 img {
    width: 50%;
}
.hanabishi_in02 h4 .title .history {
    font-size: 2vw;
    margin-left: 0.5vw;
}
.hanabishi_in02 h4 .title .company-en {
    font-size: 2.2vw;
}
.hanabishi_info dt {
    width: 55%;
    line-height: 1.7;
    font-size: 1.8vw;
}
.hanabishi_info dd {
    width: 40%;
}
div.sub-info {
    font-size: 1.5vw;
}
.hanabishi_in {
    margin-top: 7vw;
}
.program_bg {
    width:90%;
	padding: 6vw 0;
}
.program_bg .coming-soon {
font-size: 7vw;
}
.hanabishi_in .coming-soon {
font-size: 7vw;
padding: 5em 0;
}
.program_bg h3 {
    width:35%;
	margin:0 auto;
}
.program_bg h3 span {
    font-size: 2.5vw;
    margin-top: 1vw;
}
.program_bg table {
    margin: 4vw 0 1vw;
	font-size: 1.5vw;
}
.program_bg table td strong.co01 {
    font-size: 120%;
}
.program_bg .hosoku {
    font-size:1.5vw;
}
.ticket_bg {
    width:90%;
	padding: 6vw 0 8vw;
}
.ticket_bg h3 {
    width: 70%;
    margin: 0 auto 2vw;
	height:100px;
}
.ticket_bg h3 span.title .hosoku {
    font-size: 2vw;
    display: block;
    letter-spacing: .2vw;
}
.ticket_bg h3 .pic {
    width: 8vw;
}
.ticket_bg h3 .title {
    width: 40vw;
}
.ticket_bg h3 span.title .ticket_annai {
    font-size: 6vw;
}
.ticket_in .ticket_map {
    width:100%;
}
.ticket_in .ticket_info {
    width:100%;
	padding: 2vw 4vw;
}
.ticket_in .ticket_info dl:last-child {
    margin:0;
}
.ticket_in .ticket_info dl dt {
    font-size: 2.8vw;
    margin-bottom: 1vw;
    line-height: 4vw;
}
.ticket_in .ticket_info dl dd {
    font-size:1.8vw;
}
.ticket_in .ticket_info .pia {
    width:20vw;
}
.ticket_bus .jtb {
	height:auto;
    width:20vw;
}
.ticket_bus .jtb img {
	height:100%;
	width:auto;
}
.ticket_sales_bg dl dt {
    font-size: 2.4vw;
    margin-bottom: 1vw;
    line-height: 4vw;
}
.ticket_sales_bg dl dd {
    font-size:1.8vw;
}
.ticket_in .ticket_info dl dt .price {
    font-size: 2.4vw;
}
.ticket_sales_bg h4 {
    font-size: 2.4vw;
    margin-bottom: 1vw;
    line-height: 4vw;
}
.access_bg {
    width:90%;
	padding: 6vw 0;
	font-size:2.4vw;
}
.access_bg h3 {
    width: 70%;
    margin: 0 auto 2vw;
	height:100px;
}
.access_bg h3 span.title .hosoku {
    font-size: 2vw;
    display: block;
    letter-spacing: .2vw;
}
.access_bg h3 .pic {
    width: 8vw;
}
.access_bg h3 .title {
    width: 40vw;
}
.access_bg h3 span.title .ticket_annai {
    font-size: 5vw;
}
.access_in h4 {
    font-size: 2.5vw;
}
.googlemap {
    width:100%;
	margin: 0 auto;
}
.gaiyou_bg {
    width:90%;
	padding: 6vw 0;
}
.accbox {
    font-size: 1.7vw;
    line-height: 1.5;
}
.accbox h4 {
	margin: 3vw 0 1vw;
    font-size: 2.8vw;
    line-height: 6vw;
}
.gaiyou_bg h3 {
    width: 100%;
    height: 100px;
    font-size: 3.2vw;
}
.gaiyou_bg dl {
    padding: 2vw 3vw;
    font-size: 1.8vw;
}
.gaiyou_bg dl dt {
    padding: 0.8vw 3% 0.8vw 0;
}
.gaiyou_bg dl dd {
    width: 77%;
    margin-bottom: 0.5rem;
    padding: 0.8vw;
}
.covid19_bg {
    width:90%;
	padding: 6vw 0;
	margin: 0 auto;
}
.covid19_bg h3 {
    margin: 0 auto 5vw;
    font-size: 4vw;
}
.covid19_bg h3 span {
    font-size: 2vw;
}
.covid19_bg ul.pic {
    justify-content: space-between;
	font-size: 1.6vw;
}
.covid19-txt {
    width:100%;
	font-size: 1.8vw;
}
.covid19_bg h4 {
    margin: 3vw 0 1vw;
    font-size: 3vw;
    line-height: 6vw;
}
.covid19_bg ul.txt {
    margin: 0.7vw 0 0 3vw;
}
.covid19_bg ul.txt li {
    padding: 0.3vw 0;
}
footer {
    font-size: 1.3vw;
    padding: 1vw 0;
}
.ticket_sales_in {
}
.ticket_sales_in li {
    margin: 0 1vw 3vw;
	width:30%;
}
.ticket_sales_bg dd .his .translation, .ticket_sales_bg dd .KKday .translation, .ticket_sales_bg dd .rakuten_travel .translation {
    top: -1.5vw;
    font-size: 90%;
}
#blog_bg .news_in {
    width: 90%;
}
.blog_h4 {
    font-size: 4vw;
}
.breadcrumb {
    display:none;
}
.news_in h3 {
    font-size: 9vw;
    padding: 3vw 0 7vw;
    text-align: center;
}
.box_blog_page {
    padding: 1rem 2rem 1.5rem;
	font-size: 2.4vw;
}
.ticket_chu {
    margin-top: 5vw;
}
.ticket_bg .ticket_chu h3 {
    font-size: 5vw;
}
.ticket_chu h3 span.chu {
    font-size: 2vw;
}
.ticket_sales_bg h4.chu {
	font-size: 3.3vw;
}
.news_in ul li .date {
    display: inline;
	font-size: 2vw;
}
.news_in ul li .title {
	display:block;
}
footer .contact_bg {
    width: 90%;
	margin:0 auto;
}
footer .contact {
	font-size:1.5vw;
}
dl.catch-info {
    width: 70%;
    font-size: 1.5vw;
	margin: 1rem auto 0;
}
.hosoku-txt {
	text-align:left;
	font-size:1.8vw;
}
.ticket_bg ul.ticket_sales_other-pg-pre img {
	width:30%;
	margin: 0;
}
.ticket_bg .ticket_info ul.bisyoku-pic {
    align-items: center;
}
.ticket_bg .ticket_info ul.bisyoku-pic>li.kaitai {
	width: 45%;
}
.ticket_bg .ticket_info ul.bisyoku-pic>li {
	width: 55%;
}
.catch .catch-txt .catch-copy dt.copy-txt {
	text-align:left;
}
.catch .catch-txt .catch-copy dd {
	text-align:left;
}
.ticket_sales_in li {
	font-size: 1.2vw;
}
.hanabishi_in.prodis {
	width:75%;
	padding: 1.5em;
}
.world01.prodis .hanabishi_in01 {
    width: 70%;
	margin:1em auto;
}
.world01.prodis .hanabishi_in02 {
    width: 100%;
}
.hanabishi_in.prodis p.prodis {
        font-size: 4vw;
}
.ticket_sales_bg dd .English .his .translation, .ticket_sales_bg dd .English .KKday .translation, .ticket_sales_bg dd .English .rakuten_travel .translation {
		top: -1.5vw;
        font-size: 1.1vw;
}
}

/*-----------------------------------------------------*/
/* スマホ以上 */
/*-----------------------------------------------------*/
@media screen and (min-width: 521px) {
br.pc_none {
    display:none;
}
}


/*-----------------------------------------------------*/
/* スマホ */
/*-----------------------------------------------------*/
@media screen and (max-width: 520px) {
.ticket_info_bg.soldout:before {
height: 110px;
}
.main-visual .top_logo {
	width:90vw;
}
#next {
	font-size:1.7vw;
}
#loading-wrapper {
	line-height:1.5;
    font-size:4vw;
}
#loading-wrapper p {
	width:auto;
}
#loading-wrapper p.jp {
		font-size: 2.7vh;
        margin: 0 0 0;
        writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        text-orientation: upright;
        line-height: 2;
}
#loading-wrapper p.en {
    font-size:3.5vw;
}
nav .menu div.side_bg01 div {
    font-size: 4vw;
}
.hanabishi_in.prodis .hanabishi_info dt {
        font-size: 2.5vw;
}
.hanabishi_in.prodis div.sub-info {
        font-size: 2.5vw;
}
br.pc_none {
    display: initial;
}
br.sp_none {
    display:none;
}
.br_sp::after {
  content: '／';
}
.info_waku {
    width:93%;
	padding: 10vw 0 7vw;
}
.program_bg h3 span {
    font-size: 3.5vw;
}
.program_bg table tr:nth-of-type(1) th, .program_bg table tr:nth-of-type(1) td {
    display:none;
}
.program_bg table tr:nth-of-type(2n) th{
	background-color: #023343;
}
.program_bg table tr:nth-of-type(2n) td {
    background-color: #f0f0e1;
}
.program_bg table th {
    background-color:#023343;
	color:#FFF;
	box-sizing:border-box;
	padding:1vw 2vw;
    display: flex;
    align-items: center;
}
.program_bg table td {
	width:100%;
	padding:1vw 2vw;
	margin-bottom: 3vw;
	font-size: 3.4vw;
}
.program_bg table tr {
    display: flex;
    flex-wrap: wrap;
	width:100%;
}
.program_bg table th {
	white-space: normal;
}
.program_bg table th.number {
    font-size: 4vw;
	background-color: #023343;
    color:#FFF;
	width:8%;
}
.program_bg table th.title {
    width:55%;
	font-size: 3.8vw;
	white-space: normal;
	padding: 1vw;
    justify-content: center;
}
.program_bg table th.hanabishi {
    width: 37%;
    font-size: 2.4vw;
    white-space: normal;
    display: flex;
    vertical-align: middle;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1vw;
align-content: center;
}
.program_bg table td strong.co01 {
    font-size: 110%;
}
.catch {
    flex-wrap: wrap;
}
.catch .catch-first {
    width: 100%;
}
.catch .catch-first p {
    font-size: 4.8vw;
	-ms-writing-mode: initial;
    writing-mode: initial;
    line-height: 1.5;
	text-align:center;
}
.catch .catch-txt {
    width: 100%;
    font-size: 2vw;
    margin-top: 5vw;
}
.catch .catch-txt p {
    text-align: center;
    font-size: 5vw;
}
dl.catch-info {
    font-size: 2.7vw;
}
dl.catch-info {
    font-size: 2.7vw;
}
dl.catch-info dt {
    width: 18%;
}
dl.catch-info dd {
    width: 79%;
}
h3.date {
    font-size: 13vw;
	text-align:center;
}
h3.date span {
    font-size: 4.2vw;
}
dl.catch-copy dt.copy {
    font-size: 3.8vw;
	text-align:center;
}
dl.catch-copy dd:nth-of-type(1) {
    font-size:3.8vw;
	text-align:center;
}
dl.other dd:nth-of-type(1) {
	text-align:left;
}
dl.catch-copy dt.copy-txt {
    font-size: 8vw;
}
dl.catch-copy dd span {
    background-color: #ffffffab;
    padding: 0.1rem 0.6rem;
    margin: 0.2rem 0;
    line-height: 1.5;
}
dl.catch-copy dt .txt {
    font-size: 5vw;
    display: block;
}
dl.catch-copy dd {
    font-size:3.8vw;
}
dl.catch-copy dd .capacity {
    font-size: 5vw;
}
dl.catch-copy dd span {

}
.ticket_in .ticket_info dl dd ul {
    font-size:3.3vw;
	margin-left: 2em;
}
.ticket_sales_bg dl {
    padding:2vw 3vw;
}
.ticket_in .ticket_info dl dt {
    font-size: 4.8vw;
}
.ticket_in .ticket_info dl dt .price {
    font-size: 4.5vw;
}
.ticket_in .ticket_info dl dt .zeikomi {
    font-size: 3vw;
}
.ticket_in .ticket_info dl dd {
    font-size: 3.5vw;
}
.ticket_sales_bg h4 {
    font-size: 5vw;
    line-height: 7vw;
}
.ticket_sales_bg dl dt {
    font-size: 4.5vw;
    line-height: 7vw;
}
.ticket_sales_bg dl dd {
    font-size: 3.4vw;
	padding-bottom: 0.3rem;
}
.gaiyou_bg dl {
    flex-wrap:wrap;
}
.gaiyou_bg dl dt {
    width:100%;
	text-align-last: initial;
    text-justify: initial;
	border-bottom: 1px solid #777;
	border-right:0;
    margin-bottom: 0;
	padding: 0 0 0.2rem 0;
    font-size: 3.5vw;
}
.gaiyou_bg dl dd {
    width:100%;
    font-size: 2.8vw;
}
.gaiyou_bg h3 {
    margin: 0 auto 1rem;
}
.covid19_bg h3 {
	font-size: 6vw;
}
.covid19_bg h3 span {
    font-size: 2.8vw;
}
.covid19_bg ul.pic {
    justify-content: space-around;
}
.covid19_bg ul.pic li {
    width:45%;
	font-size: 3.3vw;
}
.covid19_bg .covid19-txt {
    font-size:3.5vw;
}
.covid19_bg ul.txt {
    margin: 0.7vw 0 0 5vw;
}
.covid19_bg h4 {
    font-size: 4.5vw;
    line-height: 7vw;
}
.omoi_bg {
    background-size: contain;
}
.omoi_in h3 {
    width:100%;
	text-align:center;
	margin-bottom: 3vw;
}
.omoi_in h3 img {
    width:40%;
}
.omoi_in .omoi_txt {
    width:100%;
    padding: 4vw;
    font-size: 3.4vw;
}
.hanabishi_in02 h4 {
    padding: 2vw 0;
}
.hanabishi_in .hanabishi_info dt {
    width: 100%;
	font-size: 3.5vw;
}
.hanabishi_in02 h4 .title .company {
    font-size: 6vw;
}
.hanabishi_in .hanabishi_info dd {
    display:none;
}
.hanabishi_info {
    margin: 2vw 0;
}
div.sub-info {
    font-size: 3vw;
	margin: 0;
}
.hanabishi_in {
    margin-top: 10vw;
}
.hanabishi_in.aoki {
    margin-top: 3vw;
}
.hanabishi_bg h3 {
    height: 100px;
    margin: 0 auto 0;
}
.hanabishi_bg {
    padding: 6vw 0 10vw;
}
.ticket_sales .day {
	display:block;
    font-size: 3.5vw;
}
.ticket_sales_in {
    flex-wrap: wrap;
    justify-content: space-between;
}
.ticket_sales_in li {
    margin: 0 0 5vw;
	width:48%;
}
.ticket_sales_bg dd .his .translation, .ticket_sales_bg dd .KKday .translation, .ticket_sales_bg dd .rakuten_travel .translation {
    top: -2.5vw;
    font-size: 100%;
}
.ticket_bus .jtb {
    width: auto;
    height: 13vw;
}
.ticket_chu h3 span.chu {
    font-size: 4vw;
}
.gaiyou_bg h3 {
    font-size: 7vw;
}
.accbox h4 {
	margin: 6vw 0 1vw;
    font-size: 4vw;
    line-height: 6vw;
}
.accbox {
    font-size: 3.2vw;
    line-height: 1.5;
}
.accbox label {
	padding:.5rem 1rem;
}
.cssacc:checked + label + .accshow {
	padding:.5rem 1rem;
}
.news_in ul li .new {
	font-size: 2vw;
}
.news_in ul li .date {
	font-size: 3vw;
}
.news_in ul li .title {
	margin: 0 0 0;
	font-size: 3.5vw;
}
.news_in ul li {
    padding: .5rem 1rem;
}
.hanabishi_in02 h4 .title .history {
    font-size: 2.8vw;
}
.ticket_in .ticket_info {
    padding: 3vw 0;
}
.ticket_sales_bg h4.chu {
    font-size: 4vw;
}
.ticket_sales_bg .ticket_bus h4.chu {
    font-size: 4.7vw;
}
.ticket_bg .ticket_chu ul {
    margin: 0.5rem 1.3rem 0;
}
.program_bg .hosoku {
    font-size: 2.5vw;
}
.big4_bg .title p {
	font-size: 4.2vw;
}
.ticket_bg .ticket_chu h3 {
    font-size: 6vw;
}
.access_in .access_info {
	font-size:3vw;
}
footer .contact_bg {
    width: 90%;
	margin:0 auto;
}
footer .contact {
	font-size:2vw;
}
footer {
    padding: 1vw 0 1rem;
}
footer .contact li {
	margin:.3rem 0;
}
footer p.address {
	margin-bottom:0;
}
footer .contact h5 {
    font-size: 3vw;
}
.box_blog_page {
    padding: 0.5rem 1rem 0.5rem;
    font-size: 3.2vw;
}
nav .menu div.side_bg01 div.ticket div {
	font-size:5vw;
}
dl.catch-info {
    width: 100%;
text-align: left;
}
dl.catch-copy {
    text-align: left;
}
.big4_bg .title h3 {
font-size: 8vw;
}
.big4_bg .title h3 span.count {
    font-size: 7vw;
}
.big4_bg .title h3 span.count span {
    font-size: 6vw;
}
.box_txt {
font-size: 3.2vw;
}
.ticket_info table th.area {
    font-size: 5vw;
}
.ticket_info table th {
    font-size: 2.5vw;
}
.ticket_info table td.area {
	font-size: 3.7vw;
    line-height: 1.3;
	width: 55%;
}
.ticket_info table td.number {
	font-size: 2.7vw;
    line-height: 1.3;
}
.ticket_info table td.price {
	font-size: 3.5vw;
	width: 30%;
}
.ticket_info table td.info {
	flex-wrap: wrap;
    font-size: 3.2vw;
}
.ticket_info table td.info ul.pic {
	margin-top:1em;
}
.ticket_bg .ticket_info {
font-size: 3.4vw;
}
.ticket_info table td.bi {
font-size: 3.2vw;
}
.ticket_info table td.info ul.fa-ul {
	max-width:100%;
}
.ticket_info table td.info ul.pic {
	width:100%;
	margin-left:0;
	justify-content: flex-start;
}
.hosoku-txt {
	font-size:2.8vw;
}
.ticket_bg .ticket_info ul li {
	padding-bottom:0;
}
.ticket_info table td.bi ul.pic-parking {
	flex-wrap: wrap;
}
.ticket_info table td.bi ul.pic-parking li {
	width:49%;
	margin-bottom:.5em;
}
ul.hanabishi_jyunbi {
	margin: 50px 0 0;
    flex-wrap: wrap;
}
ul.hanabishi_jyunbi li {
	width:47%;
	margin-bottom:5%;
}
ul.hanabishi_jyunbi li:nth-child(2) {
	order:4;
}
ul.hanabishi_jyunbi li:nth-child(3) {
	order:4;
}
.ticket_bg ul.ticket_sales_other-pg-pre img {
	width:47%;
	margin: 0;
}
.ticket_info table.bisyoku th {
	font-size:3.7vw;
}
.ticket_bg .ticket_info ul.bisyoku-pic>li {
    width: 100%;
}
.ticket_bg .ticket_info ul.bisyoku-pic>li.kaitai {
    margin-bottom:10px;
}
.ticket_bg .ticket_info ul.bisyoku-pic>li>ul {
	justify-content: space-between;
}
.ticket_bg .ticket_info ul.bisyoku-pic>li.kaitai {
	width: 70%;
}
.ticket_bg .ticket_info ul.bisyoku-pic>li>ul>li {
    width: 48%;
}
.ticket_bg .ticket_info ul.bisyoku-pic, .ticket_bg .ticket_info ul.bisyoku-pic>li>ul {
    font-size: 2.7vw;
}
.ticket_bg .ticket_info ul.bisyoku-drink {
	font-size: 2.7vw;
    padding: 2vw 1.5vw 2vw 7.5vw;
    margin: 4vw 0 2vw;
}
.ticket_bg .ticket_info ul.bisyoku-drink>li {
    width: 50%;
}
.ticket_bg .ticket_info ul.bisyoku-pic.pic2 >li>ul>li {
    width: 48%;
}
.ticket_bg .ticket_info ul.bisyoku-pic.pic2>li>ul>li:nth-child(1), .ticket_bg .ticket_info ul.bisyoku-pic.pic2>li>ul>li:nth-child(2) {
    margin-bottom:10px;
}
.select-language {
    margin: 0;
    position: absolute;
    top: 24px;
    right: 5vw;
    font-size: 12px;
}
.select-language select {
	padding: 0.5em 4.5em 0.5em 1em;
}
.select-language select.classic {
    background-size: 5px 5px,5px 5px,3em 2.5em;
}
.select-language select.classic:focus {
    background-size: 5px 5px,5px 5px,3em 2.5em;
}
#ippan-sales .Ticket_ippan {
    padding: 1% 8% 1%;
display: inline-block;
}
#ippan-sales{
    padding: 0 0 4%;
}
.main-visual .top_logo h1 {
	text-align: center;
}
.main-visual .top_logo img {
	width:100%;
}
.sns-icon {
    width: 60%;
	padding: 15vw 0 0;
}
.sns-icon ul {
    justify-content: space-evenly;
}
.news_in ul li {
	font-size: 3vw;
}
.ticket_sales_in li {
	font-size: 2vw;
}
.world01 .hanabishi_in02 h4 .title .company {
        font-size: 5vw;
    }
.world01 .hanabishi_in02 h4 .title .company-en {
font-size: 2.8vw;
}
.hanabishi_in.prodis {
		width: 90%;
        padding: .7em 1em;
}
    .world01.prodis .hanabishi_in01 img {
        width: 70%;
    }
.world01 .hanabishi_in02 h4 .title .company {
        font-size: 4vw;
    }
.hanabishi_in.prodis span.prodis {
    font-size: 2.5vw;
}
.prodis .hanabishi_in02 h4 .title .history {
    font-size: 2.5vw;
}
.world01.prodis .hanabishi_in02 h4 .title .company-en {
    font-size: 2.5vw;
}
.ticket_sales_bg dd .English .his .translation, .ticket_sales_bg dd .English .KKday .translation, .ticket_sales_bg dd .English .rakuten_travel .translation {
		top: -2.5vw;
        font-size: 70%;
}
.ticket_info table td.area.soldout img {
    margin: 0 0 0 -14px;
}

.ticket_info table td.price del:before {
	height: 40px;
    width: 84px;
    right: 0;
    left: 1em;
}
.koutuukisei {
    margin-top:6vw;
}
}