@charset "UTF-8";
/* CSS Document */


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 480px) {
.pc { display: none !important; }
.sp { display: block !important; }
}



.anchor{
    display: block;
    padding-top: 50px;
    margin-top: -50px;
}

/*メニューエリアここから-------------------------------------*/

.gnav {
  width: 100vw;
  height: 100vh;
  background-image: url("../img/meszarosmarta_main.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  vertical-align: middle;
  transform: translateX(-100%);
  transition: transform 0.4s;
  overflow: auto;
  position: fixed;
  z-index: 898;
}

div.gnav__wrap {
  padding: 10% 60% 10% 10%;
  text-align: left;
}


ul.gnav__menu {
  height: 100vh;
}


li.gnav__menu__item {
  margin-bottom: 25px;
 /* width: 800px;*/
}

li.gnav__menu__item a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
	transition: .5s;
}

.q {
color: gray;
font-size: 1.3rem;
  font-weight: 600;
}


li.gnav__menu__item a:hover {
text-decoration:none;
color:#48b9ad;
	transition: .5s;
}





div.contents_wrapper {
  width: 100%;
  font-size: 16px;
  text-align: justify;
  word-break: break-all;
}

#menu_btn {
	width: 10%;
  position: fixed;
  top: 10px;
  right: 2.5%;
  cursor: pointer;
  z-index: 899;
	text-align: right;
}

div#menu_btn_mbl {
  position: fixed;
  top: 0;
  right: 5px;
  cursor: pointer;
  z-index: 899;
}



.change {
  width: 80%;
}

input[type=checkbox] {
  display: none;
}




.open .gnav {
  transform: translateX(0);
}

.close .gnav {
  transform: translateX();
}

nav {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  overflow-x: hidden;
  text-align: center;
  width: 0;
  /* ←100%から 0 に変更 */
}
.gnav__menu__item.gray a{
	color: gray;
	pointer-events: none;
}
.gnav__menu__item.gray a:hover{
	color: gray;
}


ul.gnav__menu {
	    width: 50%;
  height: auto;
	column-count: 2;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}
	
	div.gnav__wrap {
    padding: 0;
	align-items: flex-start;
    display: flex;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
	}
	li.gnav__menu__item {
    width: 100%;
    /*height: 50px;*/
    vertical-align: middle;
    /*line-height: 50px;*/
    display: inline-block;
	}
li.gnav__menu__item a{
	width: 100%;
	display: block;
}






/*共通------------------------------------------*/

body {
font-family: 'Noto Serif JP', sans-serif;
line-height: 1;
background-color: #ffff;
}	

img{
	max-width: 100%;
	height: auto;	
}

a{
     color: blue;
   
}

.mainSite {
 width: 100%;
 padding: 0;
 margin:  0;
}
.wrapper {
	position: relative;
	max-height: 1980px;
	text-align: center;
}


/*loading 1番上：1000--------------------------*/

.loading_wrap{
position: fixed;
    z-index: 999;
	width: 100%;
 height: 100vh;
 background-color: #ffffff;
}


.logo {
position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 15px 30px;
	text-align: center;
    z-index: 1000;
}
.logo img{
	 width: 50%;
}


.blinking{
	-webkit-animation:blink 0.7s ease-in-out infinite alternate;
    -moz-animation:blink 0.7s ease-in-out infinite alternate;
    animation:blink 0.7s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

/*--------------------
TRAILER 2番：900
--------------------*/

.trailer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 900;
    /*opacity: 0;
    display:none;*/
    transition-duration: 0.5s;
    
}

.trailer.on{
    opacity: 1;
}


.trailer_overlay{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    opacity: 1;
    z-index: 900;
    transition-duration: 1s;
    
}

.close_btn{
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 902;
  transition-duration: 0.1s;
  /*opacity: 0;*/
  cursor: pointer;
}
.close_btn i{
	color: #fff;
	z-index: 903;
}


.trailer.on .close_btn{
     opacity: 1;
}
.close_btn::before,
.close_btn::after {
  position: absolute;
  top: calc(50% - 1px);
  left: -1px;
  content: "";
  display: block;
  width: 30px;
  border-top: 3px solid #fff;
}
 
.close_btn::before {
  transform: skewY(-45deg);
}
 
.close_btn::after {
  transform: skewY(45deg);
}

.close_btn:hover{
    opacity: 0.5 !important;
}

.trailer.on .trailer_overlay{
    opacity: 1;
}

.trailer .trailer_inner{
    position: absolute;
    top: calc(50%);
    left: 50%;
    transform: translate(-50%,-50%) scale(0.9,0.9);
    width: 60%;
	padding-bottom: 35%;
    height: 1;
    z-index: 901;
    transition-duration: 0.5s;
}

.trailer.on .trailer_inner{
    transform: translate(-50%,-50%) scale(1,1);
}

.trailer_tab{
    position: absolute;
    color: #fff;
    top: 100%;
    display:flex;
    width: 100%;
    justify-content: center;
	margin-top: 5px;
}

.trailer_tab li{
	display: flex;
	justify-content: center;
    width: 50%;
	margin-right: 4px;
	padding: 7px 10px;
    border:solid 1px #fff;
    font-size: 1rem;
    text-align: center;
    background:rgba(255, 255, 255, 1);
    color: #000;
}
.trailer_tab li:last-child{
	margin-right: 0;
}

.trailer_tab li.f_act{
    background: #000;
    color: #fff;
	cursor: pointer;
}

.trailer_tab li.f_act:hover{
    background: #aaa;
}

#youtube1,#youtube2{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1,1);
    transition-duration: 1s;
    opacity: 1;
}

.trailer.on #youtube1,.trailer.on #youtube2{
    transform: scale(1,1);
    opacity: 1;
}

/*TOP------------------------------------------*/

/*section.top{
	background-image: url("../img/main_top_pc.jpg");
	padding-bottom: calc(1328 / 1920 * 100%);
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	width: 100%;
	height: 0;
}*/

section.top{
	height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
	min-height: 720px; 
	display: flex;
	flex-flow: column;
	  z-index: 2;
    position: relative;
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.top_inner{
	width: 100%;
	height: 93%;
	display: flex;
}

.top_left{
	width: 60%;
	height: 100%;
	background-image: url("../img/main_pc_1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	position: relative;
}
.top_left_inner{
	width: 100%;
	height: 100%;
	display: flex;
    flex-flow: column;
	    justify-content: space-between;
}
.copy{
    text-align: left;
    width: 50%;
	padding: 2% 0 0 2%;
}
.logo_en{
	width: 75%;
	padding: 0 0 2% 2%;
	text-align: left;
}

.top_right{
	width: 40%;
	background-image: url("../img/main_pc_2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}
.top_right_inner{
	height: 100%;
	position: relative;
}

.copyright{
	width: 90%;
	margin: 0 auto;
	position: absolute;
	bottom: 2%;
	left: 50%;
	transform: translate(-50%, 0);
}





.logo_jp{
	width: 85%;
    margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 0);
}

.top_btm{
	height: 7%;
	padding: 5px 2%;
	display: flex;
    align-items: center;
	background-color: #fff;
}
.top_btm_img{
	height: 100%;
	display: flex;
	align-items: center;
	
}

.top_btm img{
	vertical-align: top;
	max-height: 100%;
	}



/*bgfix------------------------------------------*/

.bgrepeat{
	width: 100%;
	background-image: url("../img/meszarosmarta_bg_middle.jpg");
	background-size: cover;
	position: relative;
	z-index: 2;
}
.bgrepeat::before{
	content: "";
	width: 100%;
	height: 500px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: url("../img/meszarosmarta_bg_top.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
}
.bgrepeat::after{
	content: "";
	width: 100%;
	height: 500px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	background-image: url("../img/meszarosmarta_bg_bottom.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
}
.bgrepeat_wrap{
	width: 70%;
	margin: 0 auto;
	/*padding: 10% 0;*/
	padding-bottom: 10%;
	
    z-index: 2;
    position: inherit;

}

.midashi_title{
	text-align: left;
	margin-bottom: 50px;
	padding-bottom: 10px;
	border-bottom: 3px solid #48b9ad;
}
.midashi_title img{
	height:24px; 
}

/*INTRO------------------------------------------*/
.intro_copy {
    width: 70%;
    margin: 0 auto;
    padding: 5% 0;
    text-align: left;
}
.intro, .profile, .program{
	margin-bottom: 10%;
}

/*PROFILE------------------------------------------*/

/*PROGRAM------------------------------------------*/

.program{
	margin-bottom: 20%;
}
.program_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.program_text{
	width: 48%;
	margin-bottom: 50px;
}
.program_text:nth-child(2n+1){
	margin-right: 2%;
}

.program_text:last-child{
	margin-bottom: 0;
}


/*COMMENT------------------------------------------*/
.comment{
	width: 100%;
	color: #fff;
	text-align: left;
	line-height: 1.7rem;
	overflow: hidden;
}
.comment_bg_fix{
	background-attachment:fixed;
	background-image: url("../img/cmt_bg.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 5% 0;
	position: relative;
	z-index: 1;
}
/*.comment_bg_fix::before{
	 content: '';
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
	z-index: 1;
}*/
	.comment_bg_fix::before{
		content:"";
display:block;
position:fixed;
top:0;
left:0;
z-index:-10;
width:100%;
height:100vh;
background-repeat:no-repeat;
/*background-position:50% 100%;*/
background-position: top;
background-image: url("../img/cmt_bg.webp");
background-size:cover;
	}
.inner{
	width: 70%;
	margin: 0 auto;
	position: inherit;
	z-index: 2;
}
.midashi_title{
	text-align: left;
	margin-bottom: 50px;
	padding-bottom: 10px;
	border-bottom: 3px solid #48b9ad;
	
}
.comment .midashi_title span{
	font-size: 16px;
    margin-left: 10px;
}
.midashi_title img{
	height:24px; 
}
.press .img_wrap.wrap1{
	margin-bottom: 50px;
}
.comment_wrap{
	margin-bottom: 50px;
}
.comment_wrap:last-child {
    margin-bottom: 0;
}
h1.comment_title{
	font-weight: bold;
	margin-bottom: 40px;
	font-size: 24px;
}
h1.comment_title img{
	height: 40px;
	margin-right: 5px;
	filter: drop-shadow(0px 0px 8px #000);
}
ul.comment_list{
	display: flex;
    flex-wrap: wrap;
	width: 100%;
}
li.comment_item{
	width: 49%;
	background-color: rgba(255,255,255,0.8);
    color: #000;
    padding: 30px;
	margin-bottom: 2%;
	display: flex;
    flex-flow: column;
    align-items: flex-end;
    justify-content: space-between;
	flex-direction: column;
}
.ttot li.comment_item{
	width: 100%;
}
li.comment_item:nth-child(2n+1) {
    margin-right: 2%;
}
li.comment_item:nth-last-child(-n+2){
		margin-bottom: 0;
	}
li.comment_item .text{
	margin-bottom: 20px;
}
li.comment_item .name span{
	font-size: 14px;
}
li.comment_item .name{
	text-align: right;
}





/*PRESS------------------------------------------*/

.press{
	text-align: left;
	position: relative;
    z-index: 2;
    background-color: #fff;
	
}
.press .inner{
	margin: 0 auto;
	padding: 5% 0;
}
h1.press_title{
	    margin-bottom: 40px;
    font-weight: bold;
    font-size: 20px;
}
.press .text{
	margin-bottom: 40px;
	    line-height: 1.7rem;
}
.press .text a{
	 text-decoration: underline;
	transition: .7s;
	word-wrap: break-word;
}
.press .text a:hover{
	 opacity: 0.7;
	transition: .7s;
}
.press .text:last-child{
	margin-bottom: 0;
}
.press .text span{
	font-size: 14px;
}
.press .text_wrap{
	width: 100%;
	display: flex;
	margin-bottom: 40px;
}
.press .text_wrap .text, .press .text_wrap .img{
	width: 49%;
}

.press .text_wrap .text{
	margin-right: 2%;
	margin-bottom: 0;
}
.press .img_wrap{
	display: flex;
	margin-bottom: 40px;
}
.press .img_wrap.wrap1{
	margin-bottom: 50px;
}
.press .img_wrap img{
	width: 48%;
}

.press .img_wrap.wrap1 img:first-child{
	margin-right: 4%;
}
.press .img_wrap.wrap2{
	width: 100%;
	margin-bottom: 0;
}
.press .img_wrap.wrap2 img{
	width: 25%;
}



.press .text h2{
	font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    display: block;
    width: fit-content;
	font-weight: bold;
}
.press_btm{
	position: relative;
	z-index: 1;
}
.press_btm img{
	vertical-align:top;
}
.btm_logo{
	position: absolute;
	bottom: 5%;
	left: 5%;
	width: 35%;
}

/*SCHEDULE------------------------------------------*/

.schedule{
	position: relative;
	z-index: 1;
	background-color: #fff;
}
#schedule:before {
    content: " ";
    margin-top: -100px;
    height: 100px;
    display: block;
    visibility: hidden;
}
.timetable.tt_mb1{
	margin-bottom: 12%;
	
}
.timetable:last-child{
	    margin-top: 5%;
	margin-bottom: 5%;
}
.schedule .inner{
	padding-bottom: 5%;
}




@media screen and (max-width: 960px) {
	
	
	.trailer .trailer_inner {
    position: absolute;
    top: calc(50%);
    left: 50%;
    transform: translate(-50%,-50%) scale(1,1);
    width: 90%;
    padding-bottom: 50%;
	}
	ul.gnav__menu {
    column-count: 1;
}
	
	#menu_btn{
		width: 15%;
	}
	.gnav {
  background-image: url("../img/marta_main_mbl.jpg");
	}
	
/*TOP------------------------------------------*/

	.top_inner{
		display: block;
	}
	.top_left {
    width: 100%;
		    height: 58%;
        background-position-x: right;
	}
	.top_left_inner{
		    z-index: 2;
	}

	
	.logo_en {
    width: 55%;
}
	
	.top_right {
		width: 100%;
		height: 42%;
    background-position: center;
	}
	
	.copy{
		width: 42%;
	}
	.logo_jp {
    width: 70%;
		top: 45%;
	}
	.top_btm{
		justify-content: center;
	}
	.top_btm img{
	}

.top_right{
	background-image: url("../img/main_mbl_2.jpg");
	}
	
	
/*bgrepeat------------------------------------------*/
	
	.bgrepeat_wrap {
    width: 80%;
	}
	.bgrepeat::before, .bgrepeat::after{
	height: 300px;
}
	.midashi_title {
    margin-bottom: 30px;
	}
	.midashi_title img{
	height: 14px; 
}
	
	
/*intro------------------------------------------*/	
	
	.intro_copy {
    width: 80%;
    padding: 8% 0;
	}
	
	
/*program------------------------------------------*/
	
	.program_wrap{
		display: block;
	}
.program_text{
		width: 100%;
	margin-right: 0;
	margin-bottom: 10%;
	}
	
	
	
	.midashi_title {
    padding-bottom: 5px;
	}
	
	.program {
    margin-bottom: 25%;
}
	
	
/*comment------------------------------------------*/	
	

	
	
	
	.inner {
    width: 80%;
	}
	h1.comment_title img {
    	/*height: 35px;*/
		height: auto;
		max-height: 35px;
	}
	h1.comment_title {
    	font-weight: bold;
    	margin-bottom: 20px;

		}
	.comment_bg_fix {
    padding: 15% 0;
}
	
/*press------------------------------------------*/
	.press .inner{
		padding: 15% 0;
	}

	h1.press_title {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.8rem;
}
	.press .text_wrap {
    width: 100%;
    display: block;
	}
	.press .text_wrap .text, .press .text_wrap .img {
    width: 100%;
}
	.press .text_wrap .text {
    margin-right: 0;
		margin-bottom: 40px;
}
	.shedule .inner {
    padding-bottom: 15%;
}

	
	
}


@media screen and (max-width: 768px) {
	
		.logo_en {
    width: 75%;
        margin: 0 auto;
    margin-bottom: -12%;
			padding: 0;
}
	.copy{
		width: 50%;
	}
	
	section.top{
		min-height: 500px;
		  
	}
	
	
	
}


@media screen and (max-width: 480px) {
	
	
	
	#menu_btn{
		width: 25%;
	}
	.gnav {
  background-image: url("../img/marta_main_mbl.jpg");
	}
	ul.gnav__menu {
  height: auto;
		column-count: 1;
		width: 70%;
}

	
	div.gnav__wrap {
    padding: 0;
	
    display: flex;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
	}
	li.gnav__menu__item {
    margin-bottom: 0;
		height: 50px;
	}
	li.gnav__menu__item a {
		font-size: 1rem;
	}

	
/*LOADING------------------------------------------*/
	
.logo img{
	 width: 100%;
}
	
/*TOP------------------------------------------*/
	.top_inner{
		display: block;
	}
	.top_left {
    width: 100%;
		    height: 58%;
        background-position-x: right;
		background-image: url("../img/main_mbl_1.jpg");
	}
	.top_left_inner{
		    z-index: 2;
    position: relative;
	}

	.logo_en {
	width: 95%;
		position: absolute;
    bottom: -10%;
    left: 50%;
	transform: translate(-50%, 0);
		padding: 0;
}
	.logo_jp{
		width: 85%;
		top: 50%;
	}
	.top_right {
		width: 100%;
		height: 42%;
    background-position: right;
	}
	
	.copy{
		width: 60%;
	}
	.top_btm{
		justify-content: center;
	}
	.top_right{
	background-image: url("../img/main_mbl_2.jpg");
	}
	
	
	.intro, .profile, .program {
    margin-bottom: 15%;
	}
	
	.bgrepeat::before, .bgrepeat::after{
	height: 200px;
}
	
/*comment------------------------------------------*/
	.comment_bg_fix::before {
  
    background-position: 65% 100%;
	}
	.comment .midashi_title span{
	font-size: 14px;
}
	ul.comment_list {
    display: block;
	}
	li.comment_item {
    width: 100%;
		margin-bottom: 10px;
		padding: 20px;
	}
	li.comment_item:nth-last-child(-n+2){
		margin-bottom: 10px;
	}
	li.comment_item:last-child{
		margin-bottom: 0;
	}
	li.comment_item:nth-child(2n+1) {
    margin-right: 0;
}

	h1.comment_title {
    font-size: 20px;
	}
	h1.comment_title img {
    /*height: 25px;
		max-height: auto;*/
		max-height: 25px;
}
	
/*press------------------------------------------*/

	.press .text{
		    word-wrap: break-word;
	}
	/*.press .text:last-child {
    margin-bottom: 0;
}*/
	
	
	
	
	
	

}