@charset "UTF-8";


.main_area{
	background:url("../img/index_bk.webp");
	background-repeat: repeat-y;
	background-size:100%;
	background-attachment: fixed;
}

h2{
	font-size:36px;
	font-weight:600;
	letter-spacing:.1em;
	line-height:1em;
}
h2::before{
	display:block;
	font-size:14px;
	font-weight:500;
	color:#555;
	line-height:1.6em;
}
h2 span.pink{color:rgba(255,115,135,1);}
h3 span.pink{color:rgba(255,115,135,1);}

.bkmv{
	position:fixed;
	top:0;
	left:50%;
	transform: translateX(-50%);
	width:100vw;
	height:100vh;
	overflow:hidden;
	z-index: -1;
}

.bkmv video{
	position:absolute;
	top:0;
	left:50%;
	transform: translateX(-50%);
	aspect-ratio:16 / 9;
	width:100%;
	height:auto;
	transition:.2s;
}


.mv_box{
	position: relative;
	display: flex;
	aspect-ratio:16 / 8.3;
	width:100%;
	height:auto;
	background-color:rgba(0,0,0,.83);
	/*background:linear-gradient(to right,rgba(240,35,102,.9),rgba(255,109,184,.85) 10%,rgba(255,109,184,.85) 90%,rgba(240,35,102,.9));*/
}

.mv_box_bk{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	overflow:hidden;
	line-height:0;
	mix-blend-mode:overlay;
}

.mv_box_bk img{
	position: absolute;
}

.mv_box_bk img[src*="top"]{top:15px;width:17%;}
.mv_box_bk img:nth-child(1){left:15px;transform:scale(-1,1);}
.mv_box_bk img:nth-child(2){right:15px;}


.mv_box_bk img:nth-child(3){left:2%;width:64%;bottom:-8%;}
.mv_box_bk img:nth-child(4){bottom:-15px;width:22%;right:-15px;}

.h1_box h1{
	margin: auto;
	width:44%;
	line-height:0;
	filter:drop-shadow(0 0 10px rgba(0,0,0,.4));
	/*filter:drop-shadow(0 0 10px rgba(146,25,88,.85));*/
}

.h1_box h1 img[src*="summary"]{width:80%;padding:10px 0;}
.h1_box h1 img[src*="2025"]{width:20%;padding:10px 0;}
.h1_box h1 img[src*="t-k"]{width:85%;}

.h1_box{
	margin:auto;
}

.h1_design{
	padding-top:15px;
	color:#fff;
	font-size:15px;
	font-weight:500;
	letter-spacing:0.08em;
}

/*==============================*/

.imgline_box{
	overflow: hidden;
}

.imgline{
	display: flex;
	width: 100%;
	width: min-content;
	animation: 36s linear infinite sliderAnimation;
}
.imgline img{
	width: 360px;
	position: relative;
}

@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}

/*==============================*/

.news_box{
	background-color:#fff;
	padding:100px 30px 150px;
}

.news h2{
	padding-bottom: 20px;
}

.news h2::before{
	content:"NEWS";
}

.news_imglist{
	display:flex;
	flex-wrap:wrap;
	gap:20px;
	max-width:1100px;
	margin: auto;
	justify-content: center;
	padding-bottom: 100px;
}

.news_imglist a{
	width:calc((100% - (20px * 2))/ 3);
	filter:drop-shadow(0 0 3px rgba(0,0,0,.3));
	transition: .2s;
}
.news_imglist a img{
	border-radius:5px;
}
@media screen and (min-width:768px) {
	.news_imglist a:hover{
		filter:none;
		opacity:.7;
	}
}

.news_list_box{
	margin: auto;
	max-width:800px;
	max-height:300px;
	overflow-y:scroll;
}

.news_list{
	width:100%;
}
/* スクロールバーの幅と高さを設定する */
.news_list_box::-webkit-scrollbar {
  width: 7px;
  height: 10px;
}
/* スクロールバーの形を設定する */
.news_list_box::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
}
/* スクロールバーの色を設定する */
.news_list_box::-webkit-scrollbar-thumb {
  --bg-opacity: 1;
  background-color:rgba(0,0,0,.25);
}

.news_list li > *{
	position:relative;
	display: flex;
	flex-wrap: wrap;
	padding:14px 0 14px 50px;
	border-bottom:1px solid #eee;
	transition:.2s;
}

.news_list li > *::before{
	content:"";
	position:absolute;
	top:50%;
	left:3px;
	width:30px;
	height:100%;
	transform:translateY(-50%);
	background:url("../img/news_list_icon.webp");
	background-position:center;
	background-repeat: no-repeat;
	background-size:100%;
}

.news_list li > a{
	color:#111;
}

.news_list li > a::after{
	content:"";
	position:absolute;
	top:50%;
	right:3px;
	width:15px;
	height:100%;
	transform:translateY(-50%);
	background:url("../img/news_list_link.webp");
	background-position:center;
	background-repeat: no-repeat;
	background-size:100%;
}

.news_list li time{
	width:110px;
	padding-right:25px;
	text-align: left;
	margin: auto 0;
}

.news_list li > * div{
	width:calc(100% - 110px);
	text-align: left;
}

.news_list li > a div{
	padding-right:30px;
}

@media screen and (min-width:768px) {
	.news_list li > a:hover{
		background-color:#eee;
	}
}



/*==============================*/

.intro_area{
	background: url("../img/intro_bk.webp");
	background-repeat: repeat-y;
	background-size:100%;
	background-attachment: fixed;
	padding:100px 0 0;
}
.intro_box{
	margin: auto;
	max-width:900px;
	padding:0 40px;
}

.intro_box h2{
	font-size:50px;
	padding-bottom:40px;
	opacity:0;
}

.intro_box h2.open{
	animation: electro 1.5s;
	opacity:1;
}

@keyframes electro {
	0% {opacity: 0;}
	9% {opacity: 0;}
	10% {opacity: 1;}
	13% {opacity: 0;}
	16% {opacity: 1;}
	18% {opacity: 0;}
	25% {opacity: 1;}
	30% {opacity: 0;}
	35% {opacity: 1;}
	38% {opacity: 0;}
	50% {opacity: 0;}
	55% {opacity: 1;}
	56% {opacity: 0;}
	60% {opacity: 1;}
	100% {opacity: 1;}
}

.intro_box p{
	font-size:20px;
	font-weight:500;
	padding-bottom:20px;
}

.intro_box p span{
	font-size:160%;
}

.intro_box p i{
	font-style:normal;
	position:relative;
}

.intro_box p i::after{
	content:"";
	position: absolute;
	bottom:0;
	left:0;
	background-color:#FFEF00;
	width:100%;
	height:50%;
	transform: scale(0, 1);
	transform-origin: left bottom;
	mix-blend-mode:multiply;
	transition:.8s;
}

.intro_box p i.open::after{
	transform: scale(1, 1);
}


.intro_student_box{
	position:relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-top:80px;
}

.intro_student_img{
	position:absolute;
	left:0;
	bottom:0;
	width:60%;
	line-height:0;
}

.intro_student_text{
	width:75%;
	position:relative;
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-end;
	height:auto;
	aspect-ratio:27 / 16;
	z-index:3;
	padding:0 100px 40px 0;
}

.intro_student_textinner{
	background-color:rgba(255,255,255,.93);
	width:calc(85% - 100px);
	padding:70px 70px 60px;
}

.intro_student_h3sub{
	text-align: left;
    font-weight:500;
}
.intro_student_textinner h3{
	text-align: left;
	font-weight: 600;
    letter-spacing: .1em;
    line-height: 1em;
	font-size: 40px;
	padding-bottom:40px;
}

.intro_student_textinner p{
	text-align: left;
    font-weight:500;
    padding-bottom:15px;
}

.intro_student_textinner p i{
	font-style:normal;
	position:relative;
}

.intro_student_textinner p i::after{
	content:"";
	position: absolute;
	bottom:0;
	left:0;
	background-color:#FFEF00;
	width:100%;
	height:50%;
	transform: scale(0, 1);
	transform-origin: left bottom;
	mix-blend-mode:multiply;
	transition:.8s;
}

.intro_student_textinner p i.open::after{
	transform: scale(1, 1);
}

.intro_student_textinner .open_after_title{display:none;}



/*==============================*/

.activity_area{
	background-color:#fff;
	padding:100px 0 70px;
}

.activity_box{
	padding:0 30px;
}

.activity_h2{
	padding-bottom:30px;
}

.activity_h2 h2::before{
	content:"ACTIVITY";
}

.activity_bk{
	background-image: url("../img/activity_bk.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	max-width:1200px;
	margin:auto;
}

.activity{
	position:relative;
	background-color:rgba(0,0,0,.7);
	padding:120px 40px;
}

.activity::before,
.activity::after{
	content:"";
	position:absolute;
	width:0;
	height:0;
}
.activity::before{
	top:0;
	left:0;
	border-top:rgba(255,255,255,1) solid 30px;
	border-left:rgba(255,255,255,1) solid 30px;
	border-right:rgba(255,255,255,0) solid 30px;
	border-bottom:rgba(255,255,255,0) solid 30px;
}
.activity::after{
	bottom:0;
	right:0;
	border-top:rgba(255,255,255,0) solid 30px;
	border-left:rgba(255,255,255,0) solid 30px;
	border-right:rgba(255,255,255,1) solid 30px;
	border-bottom:rgba(255,255,255,1) solid 30px;
}

.activity_inner{
	margin: auto;
	max-width:780px;
	filter: drop-shadow(0 0 3px rgba(0,0,0,.5));
}

.activity_inner h3{
	color:#fff;
	font-size:47px;
	font-weight:600;
	letter-spacing: 0.06em;
}

.activity_h3{
	text-align:center;
	color:#fff;
	font-size:20px;
	font-weight:500;
}

.activity_inner_par{
	margin:50px auto;
	border:3px solid #fff;
	padding:30px 35px;
}

.activity_inner h4{
	color:#fff;
	font-size:30px;
	font-weight:600;
	letter-spacing: 0.06em;
	padding-bottom:15px;
}

.activity_inner p{
	color:#fff;
	text-align:left;
}

/*==================*/

.activity_links{
	margin: auto;
	max-width:1200px;
	display:flex;
	flex-wrap:wrap;
	gap:15px 20px;
	margin-bottom:30px;
}

.activity_links div.pop_title{
	position:relative;
	width:calc((100% - (20px * 1))/ 2);
	color:#fff;
	font-size:17px;
	letter-spacing:-0.02em;
	font-weight:500;
	border:#ff8793 2px solid;
	background-color:#ff8793;
	border-radius:5px;
	padding:10px 10px;
	transition:.2s;
	filter: drop-shadow(0 0 4px rgba(0,0,0,.2));
}

.activity_links div.pop_title::after{
	position:absolute;
	content:"";
	top:calc(50% - 1px);
	right:20px;
	width:10px;
	height:10px;
	border-top:2px solid #fff;
	border-right:2px solid #fff;
	transform: rotate(45deg) translateY(-50%);	
}

@media screen and (min-width:768px) {
	.activity_links div.pop_title:hover{
		color:#ff8793;
		background-color:rgba(255,255,255,0);
		filter: drop-shadow(0 0 6px rgba(0,0,0,0));
	}
	.activity_links div.pop_title:hover::after{
		border-color:#ff8793;
	}
}

/*==================*/

.activity_widebox{
	display:flex;
	flex-wrap:wrap;
	gap:40px;
	padding:60px 0;
}

.activity_widebox.rtl{padding-right: max(calc((100% - 1300px)/ 2) , 30px);}
.activity_widebox.ltr{padding-left: max(calc((100% - 1300px)/ 2) , 30px);}

.activity_wide_img{
	width:calc(62% - 40px);
	position:relative;
	overflow:hidden;
}

.rtl .activity_wide_img::before,
.ltr .activity_wide_img::before{
	content: "";
	position:absolute;
	width:0;
	height:0;
	top:0;
	border-top:rgba(255,255,255,1) solid 24px;
	border-bottom:rgba(255,255,255,0) solid 24px;
	z-index: 2;
}

.rtl .activity_wide_img::before{
	right:0;
	border-left:rgba(255,255,255,0) solid 24px;
	border-right:rgba(255,255,255,1) solid 24px;
}
.ltr .activity_wide_img::before{
	left:0;
	border-left:rgba(255,255,255,1) solid 24px;
	border-right:rgba(255,255,255,0) solid 24px;
}

.activity_wide_img img{
	position:absolute;
	top:50%;
	left:50%;
	transform: translateX(-50%) translateY(-50%);
	width:120%;
}


.activity_wide_text{
	width:37%;
	padding: 80px 0;
}

.activity_wide_text h3{
	padding-bottom: 25px;
	font-size:26px;
	letter-spacing:-0.02em;
	font-weight:500;
}

.activity_wide_text p{
	text-align:left;
	padding-bottom: 20px;
}


/*=================*/

.activity_pop{
	text-align:left;
}

.activity_pop h3{
	display:flex;
	flex-wrap:wrap;
	padding-bottom: 15px;
}

.activity_pop h3 img{
	margin:auto 0;
	max-width:35px;
}
.activity_pop h3 img[src*="performers"]{
	padding:0 5px;
}
.activity_pop h3 span{
	margin:auto 0 auto 10px;
	font-size: 32px;
	letter-spacing: -0.02em;
	font-weight:600;
}

.activity_pop_jobdetail{
	padding-bottom:10px;
}
.activity_pop_jobdetail h4{
	display: inline-block;
	background-color:#ff8793;
	color:#fff;
	font-size: 17px;
    letter-spacing: -0.02em;
    font-weight: 500;
	padding:3px 20px;
	margin-bottom:7px;
}
.activity_pop_jobdetail p{
	padding-bottom:15px;
}


.activity_pop_ability{
	padding-bottom: 25px;
}
.activity_pop_ability h4{
	margin-bottom:8px;
	font-size: 17px;
    letter-spacing: -0.02em;
    font-weight: 600;
	padding-left: 8px;
	border-left:6px solid #ff8793;
}

.activity_pop_ability p{
	display: flex;
	flex-wrap: wrap;
	gap:8px;
}
.activity_pop_ability p span{
	display: inline-block;
	background-color:#ff8793;
	color:#fff;
    letter-spacing: 0.02em;
    font-weight: 500;
	padding:0 15px;
	border-radius:8px;
}


.activity_pop_img{
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 30px;
}
.activity_pop_img img{width:50%;}


.activity_pop_pointbox{
	display: flex;
	flex-wrap: wrap;
	gap:20px;
	padding-bottom:40px;
}

.activity_pop_point{
	width:calc((100% - 20px)/ 2);
	border:#ff8793 2px solid;
	border-radius:15px;
}

.activity_pop_point h4{
	text-align: center;
	background-color:#ff8793;
	color:#fff;
	font-size: 17px;
    letter-spacing: -0.02em;
    font-weight: 500;
	border-radius:12px 12px 0 0;
	padding:3px;
}

.activity_pop_point div{
	padding:20px;
}

.activity_pop_point div p{
	padding-bottom:10px;
}



/*==============================*/

.tamaten_area{
	background-image: url("../img/tamaten_bk.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.tamaten_box{
	position: relative;
	padding:0 0 20px;
}

.tamaten_bkimg{
	position: absolute;
	bottom:0;
	left:50%;
	transform: translateX(-50%);
	width:100%;
	max-width:1200px;
}

.tamaten_bkimg img{
	position: absolute;
	bottom:0;
	width:48%;
}

.tamaten_bkimg img[src*="yonosuke"]{left:0;}
.tamaten_bkimg img[src*="komahei"]{right:0;}

.tamaten_main{
	position:relative;
	z-index: 5;
}

.tamaten_main_attention{
	display:inline-block;
	margin:0 auto;
	padding:5px 35px;
	font-size:24px;
	font-weight:500;
	background-color:#ad1500;
	color:#fff;
	border-radius:0 0 5px 5px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, .6);
}

.tamaten_logo{
	margin:20px auto;
	max-width: 300px;
}

.tamaten_button{
	margin: auto;
	display: block;
	position:relative;
	font-family: 游明朝, "Yu Mincho", 游明朝体, YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
    max-width: 400px;
	padding:12px;
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.05em;
    background-color:#171a2d;
    color:#fff;
	border:3px solid #fff;
	border-radius:6px;
	filter: drop-shadow(2px 2px 4px rgba(0,0,0,.6));
	transition: .2s;
}

.tamaten_button::before{
	position:absolute;
	content:"";
	top:calc(50% - 1px);
	right:28px;
	width:10px;
	height:10px;
	border-top:2px solid #fff;
	border-right:2px solid #fff;
	transform: rotate(45deg) translateY(-50%);
	transition: .2s;
}

.tamaten_button::after{
	position:absolute;
	content:"";
	top:50%;
	left:50%;
	width:calc(100% - 12px);
	height:calc(100% - 12px);
	border:1px solid #fff;
	transform: translateX(-50%) translateY(-50%);
	transition: .2s;
}

@media screen and (min-width:768px) {
	.tamaten_button:hover{
		border-color:#171a2d;
		filter: drop-shadow(2px 2px 4px rgba(0,0,0,0));
	}
	.tamaten_button:hover::before{
		right:18px;
	}
	.tamaten_button:hover::after{
		border-color:rgba(0,0,0,0);
	}
}

.tamaten_dateline{
	background-image: url(../img/wood.webp);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	padding: 10px 0;
}

.tamaten_dateline_text {
	font-family: 游明朝, "Yu Mincho", 游明朝体, YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .6);
	color:#eee;
}

.tamaten_dateline_text span {
    font-size: 160%;
    padding: 0 2px;
}


/*==============================*/


.teacher{
	display:flex;
	flex-wrap:wrap;
	max-width:1360px;
	margin: auto;
	padding:40px 30px 0;
	gap:0 30px;
}
.teacher_img{
	margin: auto 0 0;
	line-height:0;
	width:50%;
}

.teacher_text{
	width:calc(50% - 30px);
	padding:30px 0;
}

.teacher_text_head{
	
}

.teacher_text_head h2{
	font-size:22px;
	letter-spacing: 0.3em;
	text-align:left;
	
}

.teacher_text_head h3{
	font-size: 48px;
    font-weight: 600;
	text-align:left;
}
.teacher_text_head h3 span{
	display:block;
	line-height: 1.2em;
}
.teacher_text_head h3 span:nth-child(2) {
    font-size: 55%;
    line-height: 1em;
    font-weight: 500;	
}

.teacher_text_profile{
	text-align: left;
	padding-top: 8px;
}

.teacher_text_profile a{
	position:relative;
	display:inline-block;
	background-color:#111;
	color:#fff;
	border:2px solid #111;
	padding:2px 42px 2px 26px;
	transition:.2s;
}
.teacher_text_profile a::before{
	position: absolute;
    content: "";
    top: calc(50% - 1px);
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg) translateY(-50%);
}

.teacher_text_links{
	display: flex;
	flex-wrap:wrap;
	gap:0 20px;
	padding:15px 0;
	
}
.teacher_text_links a{
	margin: auto 0;
	max-width:40px;
	transition:.2s;
}
.teacher_text_links a img[src*="book"]{
	width:90%;
}

@media screen and (min-width:768px) {
	.teacher_text_profile a:hover{
		background-color:rgba(255,255,255,0);
		color:#111;
	}
	.teacher_text_profile a:hover::before{
		border-color:#111;
	}
	.teacher_text_links a:hover{
		opacity: .5;
	}
}

.teacher_text_main{
	text-align:left;
}

.teacher_text_main p{
	padding-bottom:15px;
}



/*==============================*/

.reader_h2_area{
	padding: 60px 0 30px;
	background-image:url("../img/intro_bk.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.reader_h2_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.reader_h2_treat{
	width:100%;
	display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    line-height: 1.6em;
	letter-spacing: .1em;
	padding-bottom:10px;
}

.reader_h2_box h2{
	position:relative;
	padding:0 15px;
}

.reader_h2_box h2 span.line{
	position:absolute;
	top:-11px;
	left:50%;
	transform: translateX(-50%);
	width:114%;
	border:2px solid #111;
}

.reader_h2_box h2::before,
.reader_h2_box h2::after{
	content:"";
	position:absolute;
	bottom:0;
	width:22px;
	height:55px;
	background-image:url("../img/student_h2.svg");
	background-position: bottom;
	background-size: contain;
	background-repeat: no-repeat;
}

.reader_h2_box h2::before{
	left:-30px;
}
.reader_h2_box h2::after{
	right:-30px;
	transform: scale(-1,1);
}

.member_name_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width:100%;
	max-width:800px;
	margin: auto;
	padding:15px 30px 0;
}

.member_name_list li{
	
}
.member_name_list li::after{
	content:"/";
	padding:0 5px;
}
.member_name_list li:last-child::after{
	content:none;
}


.reader{
	position:relative;
}
.reader::before{
	content: "";
	position:absolute;
	display:block;
	width:0;
	height:0;
	mix-blend-mode:multiply;
}

.reader.rtl::before{
	top:0;
	left:0;
	border-top:250px solid rgba(255,156,170,.85);
	border-left:400px solid rgba(255,156,170,.85);
	border-right:400px solid rgba(255,255,255,0);
	border-bottom:250px solid rgba(255,255,255,0);
}
.reader.ltr::before{
	bottom:0;
	right:0;
	border-top:250px solid rgba(255,255,255,0);
	border-left:400px solid rgba(255,255,255,0);
	border-right:400px solid rgba(80,60,100,.85);
	border-bottom:250px solid rgba(80,60,100,.85);
}


.reader_wrap{
	position:relative;
	display:flex;
	flex-wrap:wrap;
	max-width:1360px;
	margin: auto;
	padding:40px 30px 0;
}
.ltr .reader_wrap{
	justify-content: flex-end;
}

.reader_img{
	line-height:0;
	width:50%;
}
.reader_text{
	position:absolute;
	top:0;
	width:62%;
	text-align:left;
	padding:80px 30px 0;
	mix-blend-mode:multiply;
}

.rtl .reader_text{right:0;}
.ltr .reader_text{left:0;}

.reader_text_namebox{
	display: flex;
	flex-wrap:wrap;
}

.ltr .reader_text_namebox{
	justify-content: flex-end;
}

.reader_text h3{
	margin: auto 0;
	font-size:22px;
	padding-right: 14px;
}
.reader_text h3 span{
	width:100%;
	line-height: 1.1em;
	display:block;
	text-align:right;
}

.reader_text_name{
	font-size:48px;
	font-weight:600;
	padding-left: 14px;
	border-left:2px solid rgba(0,0,0,.85);
}
.reader_text_name span{display:block;line-height:1.05em;}
.reader_text_name span:nth-child(2){font-size:55%;line-height:1em;font-weight:500;}

.reader_text_course{
	padding:5px 0 15px;
}

.ltr .reader_text_course{text-align:right;}

.reader_text_main{
	width:80%;
	padding-top: 40px;
}

.rtl .reader_text_main{margin:0 0 0 auto;}
.ltr .reader_text_main{margin:0 auto 0 0;}

.reader_text_main div{
	padding-bottom:15px;
}

.reader_text_main div p{
	padding-bottom:10px;
}
.reader_text_main div p:last-child{
	padding-bottom: 0;
}

.reader_text_main div.comment{
	margin-bottom:40px;
}

.reader_text_main div.comment p{
	font-size:30px;
	font-weight:500;
	letter-spacing: 0.03em;
}

.reader_text_main div.comment p span{
	font-size:130%;
	letter-spacing: 0.01em;
	padding: 0 0.04em;
}

.reader_text_main div.team p{
	padding-bottom:5px;
	display:flex;
	flex-wrap:wrap;
}
.reader_text_main div.team p a{
	color:#111;
	font-weight:500;
	text-decoration:underline;
}
.reader_text_main div.team p span{display:block;}
.reader_text_main div.team p span:nth-child(1){
	width:120px;
	text-align:center;
	background-color:rgba(0,0,0,.7);
	color:#fff;
	padding:1px 0;
}

.rtl .reader_text_main div.team p span:nth-child(1){background-color:rgba(255,156,170,1);}
.ltr .reader_text_main div.team p span:nth-child(1){background-color:rgba(80,60,100,1);}

.reader_text_main div.team p span:nth-child(2){
	width:calc(100% - 120px);
	padding:0 5px;
}

.reader_more{width:80%;padding:10px 0 0;}
.rtl .reader_more{margin:0 0 0 auto;}
.ltr .reader_more{margin:0 auto 0 0;}

.reader_more .pop_title{
	display:inline-block;
	position:relative;
	padding:2px 30px 2px 10px;
	color:#111;
	font-size:18px;
	font-weight:500;
	border:2px solid #111;
	transition:.2s;
}

.reader_more .pop_title::after{
	content:"";
	position:absolute;
	display:block;
	top:9px;
	right:7px;
	width:9px;
	height:9px;
	border-top:#111 2px solid;
	border-right:#111 2px solid;
	transform:rotate(45deg);
	transition:.2s;
}

@media screen and (min-width:768px) {
	.reader_more .pop_title:hover{
		background-color:rgba(255,156,170,1);
		color:#fff;
		border-color:rgba(255,156,170,1);
	}
	.ltr .reader_more .pop_title:hover{
		background-color:rgba(80,60,100,1);
		border-color:rgba(80,60,100,1);
	}
	.reader_more .pop_title:hover::after{
		border-color:#fff;
	}
}


/*==============================*/


.reader_pop_head{
	display:flex;
	flex-wrap:wrap;
	gap:20px;
}
.reader_pop_iconimg{
	width:200px;
	line-height:0;
}
.reader_pop_iconimg img{
	border-radius:50%;
}
.reader_pop_name{
	width:calc(100% - 220px);
	text-align:left;
}
.reader_pop_name h3{
	font-size:26px;
	font-weight:500;
}
.reader_pop_name h3 span{
	font-size:50%;
}

.reader_pop_team{
	padding:10px 0;
}

.reader_pop_team p{
	padding-bottom: 5px;
	display: flex;
	flex-wrap: wrap;
}
.reader_pop_team p a{
	color:#111;
	font-weight:500;
	text-decoration:underline;
}
.reader_pop_team p span{
	display:block;
}
.reader_pop_team p span:nth-child(1) {
    background-color:#A09A85;
	width: 120px;
    text-align: center;
    color: #fff;
    padding: 1px 0;
}

.reader_pop_team p span:nth-child(2) {
	width: calc(100% - 120px);
	padding: 0 5px;
}

.reader_pop_text{
	padding:40px 0 30px
}

.reader_pop_textdouble{
	display:flex;
	flex-wrap:wrap;
	gap:20px;
}
.reader_pop_doubletext{
	width:50%;
}
.reader_pop_doubleimg{
	width:calc(50% - 20px);
}

.reader_pop_textwrap{
	text-align:left;
	padding-bottom:40px;
}
.reader_pop_textwrap h4{
	font-size:18px;
	font-weight:500;
	line-height:1.2em;
	border-left:6px solid #333;
	padding-left: 7px;
	margin-bottom:3px;
}

.reader_pop_imgwrap{
	display: flex;
	flex-wrap: wrap;
	padding-bottom:40px;
}
.reader_pop_imgwrap img{
	width:50%;
}


/*==============================*/

.director_area{
	background-color:#fff;
	padding:50px 40px;
}

.director_box{
	display:flex;
	flex-wrap:wrap;
	gap:25px;
	max-width:1260px;
	margin:auto;
}

.director_img{
	width:130px;
}
.director_text{
	text-align:left;
	width:calc(100% - 155px);
}
.director_h2sub{
	font-size:18px;
}
.director_text h2{
	font-size:28px;
	letter-spacing:-0.1em;
}

.director_h3box{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}
.director_h3box h3{
	font-size:26px;
	font-weight:500;
}
.director_h3box p{
	margin: auto 0;
}

.director_main{
	padding-top:10px;
}

.director_main p{
	text-align:left;
	padding-bottom:10px;
}

.director_main p a{
	text-decoration:underline;
	color:#222;
}


/*==============================*/


.pop_box{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, .8);
	z-index: 50;
}
.pop_close_back{
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	z-index: 51;
}

.pop_box-inner{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	max-width: 1100px;
	border-radius: 10px;
	padding: 35px 3vw 0;
	width: 90vw;
	background-color: #fff;
	overflow-y: scroll;
	z-index: 60;
}

.pop_close {
	position: absolute;
	display: flex;
	top: 0;
	right: 0;
	aspect-ratio: 1 / 1;
	z-index: 70;
	width: 40px;
	height: auto;
	font-size: 20px;
	background-color: rgba(0, 0, 0, .8);
}

.pop_close span {
	display: block;
	margin: auto;
	color: #fff;
	font-weight: bold;
}


/*==============================*/