@charset "utf-8";

body {
    font-family: "Noto Sans JP", sans-serif;
	color: #000000;
	font-size: 16px;
    font-weight: 600;
	margin: 0px;
	padding: 0px;
	text-align: left;
	width: 100%;
	background-color: #000;
}

html{
	height:100%;
	width:100%;
}

html>body{
height:auto;
}

/* ==================== リンク ==================== */
a	{
	color: #000000;
	text-decoration: none;
}

a:hover	{
	text-decoration: underline;
}

img {
	border-style: none;
	vertical-align:top;
}

a:hover img {
	opacity: 0.8;
}

h3 a {
	color: #000000;
	text-decoration: none;
}

h3 a:hover	{
	text-decoration: underline;
}

ul,ol {
		margin: 0;
		padding: 0;
    list-style-type: none
}

/* ==================== ヘッダー ==================== */

#header {
    width: 100%;
    background-color: #000000;
}



#header img {
    width: 100%;
}

.in_box {
    width: 40%;
    margin: 0 auto;
}

@keyframes FadeIn { 
    0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}

/*下から上*/
@keyframes SlideUp {
0% {
    opacity: 0;/* 透明 */
    transform: translateY(300%) 
}
100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0%) 
}
}


/*===========
fadein
===========*/

.fadeIn {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.fadeIn.is-show {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}
.SlideUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(-80px); /* 上に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.SlideUp.is-show {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}
/* コンテンツ */

.ticket_box {
    margin: 0;
    width: 100%;
    padding: 60px 0;
    background-color: #CF1A67;
    text-align: center;
}

.ticket_box img {
    margin: 0 auto 30px;
    width: 40%;
}

.ticket_box br {
    display: none;
}

.content_btn {
    width: 50%;
    margin: 0 auto 20px;
    border: 2px solid #fff;
    border-radius: 40px;
    box-sizing: border-box;
    text-align: center;
}

.content_btn a {
    display: block;
    width: 100%;
    font-size: 1.3em;
    padding: 20px 0;
    color: #fff;
    text-decoration: none;
}

.ticket_box p {
    margin: 0;
    padding: 0;
    color: #FFFFFF;
}

.products_box {
    margin: 0;
    width: 100%;
    background-color: #FFFFFF;
}

.products_in {
    margin: 0 auto;
    padding: 60px 0;
    width: 40%;
    font-size: 1.2em;
}

.products_in p {
    margin: 0 0 20px 0;
}

.br-none {
    display: none;
}

.pc_none {
	display:none;}

.sp_image {
	display:none;}
.sp_image_box50 {
	display:none;}
.pc_image {
	display:block;}

/* ========== form ========== */

.form_box {
	width: 100%;
	font-size: 1em;
	box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
}

.form_box dl {
    margin: 0 0 30px 0;
}

.form_box dt {
    float: none !important;
width: 100% !important;
    margin: 0 0 0 0 !important;
padding: 10px 0 !important;
box-sizing: border-box;
text-align: left!important;
font-size: 1em !important;
}

.form_box dt p {
    font-size: .9em;
    margin: 10px 0 0 0;
}


.form_box dd {
    padding: 10px 0 !important;
    margin: 0 0 20px 0 !important;
    width: 100%;
    box-sizing: border-box;
    font-size: 1em !important;
}

.form_box .button_box {
    width: 100%;
    font-size: 1.2em;
    text-align: center;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 50px;
    color: #000000;
}

input[type="text"],input[type="email"],input[type="tel"],textarea,select {
	background-color: #ECEEED;
    border-radius: 5px;
	padding: 13px;
	font-size: 16px;
	width: 100%;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
}
input[type="checkbox"] {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type=checkbox] {
    position: relative;
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin-top: -1px;
    border-radius: 3px;
    background-color: #ddd;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    transition: .3s;
}
input[type=checkbox]:checked::before {
    position: absolute;
    padding: 0 0 2px 0;
    color: #8A109F;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    content: '\f00c';
}
input[type="text"]:focus,input[type="email"]:focus,input[type="tel"]:focus,textarea:focus,input[type="text"]:hover,input[type="email"]:hover,input[type="tel"]:hover,textarea:hover,.input_btn:hover {
	border:2px solid #3399FF;
}

input[type="submit"] {
    display: block;
    padding: 10px 25px !important;
    font-size: 1.1em !important;
    cursor: pointer;
    background-color: #DB6695 !important;
    border: 1px solid #DB6695;
    margin-left: auto;
    margin-right: auto;
    width: 180px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #FFFFFF;
}

input[type="submit"]:hover {
    background-color: #D2427C !important;
    border: 1px solid #D54D83;
}

/* Mailform pro */

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
border-radius: 0px;
box-shadow: none;
}

.mfp_element_submit,.mfp_element_reset,.mfp_element_button,button.mfp_next,button.mfp_prev {
border-radius: 0px;
background: none;
text-shadow: none;
font-size: 18px;
cursor: pointer;
outline: none;
    border: none;
}

.mfp_element_submit:hover,.mfp_element_reset:hover,.mfp_element_button:hover,button.mfp_next:hover,button.mfp_prev:hover {
background: none;
box-shadow: none;
}

.mfp_element_all {
  max-width: 100% !important;
}

form#mailformpro dl dt,
form#mailformpro dl dd {
  border-top: none;
}

form#mailformpro label.mfp_not_checked {
  padding: 3px;
  border: none;
}

input[type="submit"] {
-webkit-appearance: none;
border-radius: 0;
}

input[type="text"],input[type="email"],input[type="tel"] {
-webkit-appearance: none;
}

form#mailformpro label {
    width: 100%;
    line-height: 1.6em;
    white-space: normal
}

textarea {
    width: 100% !important;
-webkit-appearance: none;
}


/* ==================== フッター ==================== */
#foot {
    width: 100%;
    padding: 40px 0 45px 0;
    box-sizing: border-box;
    text-align: center;
    background-color: #000000;
}

#foot p {
    font-size: .9em;
}

.foot_logo {
    margin: 0 0 20px 0;
    
}

.copyright {
    font-size: .8em;
    color: #FFFFFF;
}


/*---- pagetop ----*/

#page-top {
	position: fixed;
	bottom: 20px;
	right: 60px;
	font-size: 36px;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	line-height: 36px;
}
#page-top a {
    text-decoration: none;
    color: #fff;
    width: 100px;
    text-align: center;
    display: block;
    border-radius: 8px;
    background-color: #ccc;
    padding-top: 30px;
    padding-right: 0;
    padding-bottom: 30px;
    padding-left: 0;
}
#page-top a:hover {
    text-decoration: none;
    background-color: #ddd;
}

.clear{
	clear:both;
}
/* clearfix */
.clearfix:after{
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}

.clearfix{
    display:inline-block;
    min-height:1%;  /* for IE 7*/
}

/* Hides from IE-mac */
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */
/* - 768px
---------------------------------------------------------------------*/

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


/* ==================== ヘッダー ==================== */

#header {
    width: 100%;
    background-color: #000000;
}



#header img {
    width: 100%;
}

.in_box {
    width: 100%;
    margin: 0 auto;
}
    

/* コンテンツ */
    
.ticket_box {
    margin: 0;
    width: 100%;
    padding: 40px 0;
    background-color: #CF1A67;
    text-align: center;
    line-height: 1.2em;
}

.ticket_box br {
    display: block;
}
    
.ticket_box img {
    margin: 0 auto 30px;
    width: 100%;
}

.content_btn {
    width: 80%;
    margin: 0 auto 20px;
    border: 2px solid #fff;
    border-radius: 40px;
    box-sizing: border-box;
    text-align: center;
}

.content_btn a {
    display: block;
    width: 100%;
    padding: 20px 0;
    font-size: 1.2em;
    color: #fff;
    text-decoration: none;
}

.ticket_box p {
    width: 80%;
    margin: 0 auto;
    padding: 0;
    color: #FFFFFF;
    font-size: .8em;
}

.products_box {
    margin: 0 auto;
    width: 100%;
}

.products_in {
    margin: 0 auto;
    padding: 20px 0;
    width: 90%;
    font-size: 1em;
}

.products_in p {
    margin: 0 0 15px 0;
}

    
.br-none {
    display: block;
}
    
.sp_none {
	display:none;}
    
.pc_none {
	display:block;}

.sp_image {
	display: block;
    }
    
.sp_image img {
    width: 100%;
    }


/* ==================== フッター ==================== */
#foot {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.copyright {
    font-size: .6em;
}

/* pagetop
---------------------------------------------------------------------*/

#page-top {
	position: fixed;
	bottom: 20px;
	right: 10px;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	line-height: 36px;
}
#page-top a {
	font-size: 0.6em;
	text-decoration: none;
	color: #fff;
	width: 56px;
	text-align: center;
	display: block;
	border-radius: 6px;
	padding-top: 8px;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
}
#page-top a:hover {
	text-decoration: none;
}

}
