@charset "UTF-8";



/* ================================================================================
common
================================================================================ */
picture{	display: block;	}
picture img{	object-fit: cover;	width: 100%;	height: 100%;	}

p
{
	word-break: break-all;
	font-feature-settings: "palt";
}


:root
{
--innerWidth: 1100px;

--colorGreenLight: rgba(243, 246, 247, 1.0);
--colorGreen: rgba(33, 182, 152, 1.0);
--colorGreenDeep: rgba(58, 117, 131, 1.0);
--colorRed: rgba(216, 68, 72, 1.0);
--colorBrown: rgba(123, 55, 55, 1.0);
--colorGrayDeep: rgba(51, 51, 51, 1.0);
--colorGray: rgba(90, 90, 90, 1.0);
--colorGrayLight: rgba(239, 239, 239, 1.0);

--colorCream: rgba(254, 244, 214, 1.0);
--colorCreamLight: rgba(254, 251, 243, 1.0);

--transition03: 0.3s ease-in-out 0s;
--transition05: 0.5s ease-in-out 0s;


}



section > .inner
{
	width: var(--innerWidth);
	max-width: none;
}


/* ========================================
SP
======================================== */
@media screen and (max-width: 767px)
{

:root
{
--innerWidth: 90vw;
}

}


/* ================================================================================
mv
================================================================================ */
#mv
{
	min-width: var(--innerWidth);
	background: linear-gradient(180deg,
		rgba(24, 179, 6, 1.0) 0%,
		var(--colorGreen) 100%
		);

	);
	margin: 0 0 60px;
}
#mv > .inner
{
	width: var(--innerWidth);
	margin: 0 auto;
}




/* ========================================
SP
======================================== */
@media screen and (max-width: 767px)
{

#mv
{
	padding: 0;
	margin: 0 0 10vw;
}
#mv > .inner
{
	width: 100%;
	margin: 0 auto;
}

}




/* ================================================================================
startView
================================================================================ */
#startView{	margin: 0 0 50px;	}

#startView h2
{
	width: 539px;
	margin: 0 auto 30px;
}

#startView iframe
{
	display: block;
	width: 700px;	height: 450px;
	margin: 0 auto 20px;
}

#startView .note
{
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: center;
}


/* ========================================
SP
======================================== */
@media screen and (max-width: 767px)
{

#startView{	margin: 0 0 10vw;	}

#startView h2
{
	width: 72vw;
	margin: 0 auto 7vw;
}

#startView iframe
{
	width: 90vw;	height: 50vw;
	margin: 0 auto 5vw;
}

#startView .note{	font-size: 1rem;	}

}




/* ================================================================================
summary
================================================================================ */
#summary{	margin: 0 0 50px;	}

#summary h2
{
	width: 539px;
	margin: 0 auto 30px;
}

#summary p
{
	font-size: 1.6rem;
	text-align: center;
}



/* ========================================
SP
======================================== */
@media screen and (max-width: 767px)
{

#summary{	margin: 0 0 10vw;	}
#summary h2
{
	width: 72vw;
	margin: 0 auto 7vw;
}
#summary p
{
	font-size: 1.35rem;
	text-align: left;
}

}




/* ================================================================================
speaker
================================================================================ */
#speaker
{
	margin: 0 0 60px;
}
#speaker > .inner
{
	padding: 0 0 30px;

	background-color: var(--colorCream);
	border: 2px solid var(--colorGreen);
	border-radius: 20px;
}

#speaker > .inner::before
{
	content: "";
	display: block;
	width: 2px;	height: 20px;
	background-color: var(--colorGreen);

	margin: 0 auto 20px;
}

#speaker h2
{
	height: 30px;
	margin: 0 auto 30px;
}
#speaker h2 picture{	height: 100%;	}
#speaker h2 img{	object-fit: contain;	}

#speaker ul
{
	display: flex;	flex-wrap: wrap;	justify-content: center;
	gap: 40px;
	margin: 0 0 40px;
}
#speaker li
{
	position: relative;
	width: 290px;
}
#speaker li::before
{
	content: "";
	position: absolute;
	top: 10px;	right: -10px;
	display: block;
	width: 100%;	height: 100%;

	background: url("../img/index/pattern_greenLine.webp") repeat center;
	background-color: white;
	border-radius: 10px;
}

#speaker li > .inner
{
	position: relative;
	top: 0;	left: 0;
	display: flex;	flex-wrap: wrap;	justify-content: center;

	padding: 12px;

	background-color: white;
	border: 1px solid var(--colorGreen);
	border-radius: 10px;
}
#speaker li picture
{
	width: 100%;
	margin: 0 auto 10px;
	border-radius: 10px;
	overflow: hidden;
}
#speaker li .name{	margin: 0 0 5px;	}
#speaker li .name p{	line-height: 1;	}

#speaker li .name h3
{
	color: var(--colorGreenDeep);
	font-size: 2.4rem;
	font-weight: bold;
}
#speaker li h3 span{	font-size: 0.7em;	}

#speaker .button
{
	position: relative;

	width: 100%;
	padding: 2px 0;

	background-color: var(--colorGreen);
	border-radius: 5px;

	cursor: pointer;
	transition: var(--transition03);
}
#speaker .button:hover{	opacity: 0.7;	}
#speaker .button::after
{
	content: "＋";
	position: absolute;
	top: 50%;	right: 0;

	display: block;

	color: var(--colorGrayDeep);
	font-size: 2rem;
	font-weight: bold;

	transform: translate(-50%, -50%);

}
#speaker .button p
{
	color: white;
	font-size: 2rem;
	text-align: center;
}


#speaker .note
{
	width: 85%;
	background-color: var(--colorCreamLight);

	padding: 10px 0;
	margin: 0 auto;

	font-size: 1.6rem;
	text-align: center;
	line-height: 1.7;
}


/* ========================================
SP
======================================== */
@media screen and (max-width: 767px)
{

#speaker{	margin: 0 0 15vw;	}
#speaker > .inner
{
	padding: 0 0 5vw;
	border-radius: 2vw;
}

#speaker > .inner::before
{
	height: 4vw;
	margin: 0 auto 3vw;
}

#speaker h2
{
	height: 5.5vw;
	margin: 0 auto 4vw;
}


#speaker ul
{
	gap: 5vw;
	margin: 0 0 5vw;
}
#speaker li{	width: calc((100% - 5vw * 3)/2);	}
#speaker li::before
{
	top:1.52vw;	right: -1.5vw;
	border-radius: 1vw;
}

#speaker li > .inner
{
	padding: 2vw 2vw 4vw;
	border-radius: 1vw;
}
#speaker li picture
{
	margin: 0 auto 2vw;
	border-radius: 1vw;
}
#speaker li .name{	margin: 0 0 2vw;	}
#speaker li .name p
{
	margin: 0;
	font-size: 1rem;
}

#speaker li .name h3
{
	margin: 0;
	font-size: 1.3rem;
}

#speaker .button
{
	padding: 0.5vw 0;
	border-radius: 1vw;
}
#speaker .button::after{	font-size: 1.1rem;	}
#speaker .button p{	font-size: 1.1rem;	}


#speaker .note
{
	width: 90%;
	padding: 2vw 0;
	font-size: 1rem;
}

}


/* ================================================================================
date
================================================================================ */
#date
{
	margin: 0 0 20px;
}
#date > .inner
{
	position: relative;

	padding: 0 0 30px;

	background-color: var(--colorCream);
	border: 2px solid var(--colorGreen);
	border-radius: 20px;
}

#date > .inner::before
{
	content: "";
	display: block;
	width: 2px;	height: 20px;
	background-color: var(--colorGreen);

	margin: 0 auto 20px;
}

#date .free
{
	position: absolute;
	top: -40px;	left: 70px;
}

#date h2
{
	height: 30px;
	margin: 0 auto;
}
#date h2 picture{	height: 100%;	}
#date h2 img{	object-fit: contain;	}

#date .date
{
	color: var(--colorGreen);
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
}
#date .date span{	display: inline-block;	}
#date .date span:nth-child(1){	font-size: 3.7rem;	}
#date .date span:nth-child(2){	font-size: 6.0rem;	transform: scaleX(1.1);	}
#date .date span:nth-child(3){	font-size: 3.7rem;	}
#date .date span:nth-child(4){	font-size: 6.0rem;	transform: scaleX(1.1);	}
#date .date span:nth-child(5){	font-size: 3.7rem;	}
#date .date span:nth-child(6){	font-size: 3.7rem;	}
#date .date span:nth-child(7){	font-size: 2.7rem;	}

#date .information
{
	display: flex;	justify-content: center;
	margin: 0 auto 20px;
	max-width: 90%;
}
#date .information li
{
	display: flex;	align-items: stretch;
	margin: 0 0 10px;
}
#date .information li:nth-child(1) span:first-child,
#date .information li:nth-child(2) span:first-child
{
	align-items: center;
	display: flex;
	justify-content: center;
	width: 125px;
	padding: 0.5rem 0;
	background-color: var(--colorGreen);

	color: white;
	font-size: 2rem;
	text-align: center;
	line-height: 1;
}
#date .information li:nth-child(1) span:last-child,
#date .information li:nth-child(2) span:last-child
{
	display: block;
	padding: 0.5rem 2rem;
	background-color: white;

	color: var(--colorGreen);
	font-size: 2rem;
	text-align: left;
	line-height: 1;
}
#date .information li:nth-child(1) span:last-child
{
	line-height: 1.4;
}
#date .information li:nth-child(1) span:last-child small
{
	display: block;
}
#date .information li:nth-child(3){	justify-content: space-between;	}
#date .information li:nth-child(3) span
{
	display: block;
	width: 49.5%;
	padding: 0.5rem 0;
	background-color: var(--colorGreen);

	color: white;
	font-size: 2rem;
	text-align: center;
	line-height: 1;
}

#date .note
{
	width: 85%;
	background-color: var(--colorCreamLight);

	padding: 10px 0;
	margin: 0 auto;

	font-size: 1.6rem;
	text-align: center;
	line-height: 1.7;
}

/* ========================================
SP
======================================== */
@media screen and (max-width: 767px)
{

#date{	margin: 0 0 15vw;	}
#date > .inner
{
	padding: 0 0 2vw;
	border-radius: 2vw;
}
#date > .inner::before
{
	height: 4vw;
	margin: 0 auto 3vw;
}

#date .free
{
	top: -7vw;	left: 5vw;
	width: 20vw;
}

#date h2
{
	height: 5.5vw;
	margin: 0 auto 0vw;
}

#date .date span:nth-child(1){	font-size: 2.1rem;	}
#date .date span:nth-child(2){	font-size: 3.5rem;	}
#date .date span:nth-child(3){	font-size: 2.1rem;	}
#date .date span:nth-child(4){	font-size: 3.5rem;	}
#date .date span:nth-child(5){	font-size: 2.1rem;	}
#date .date span:nth-child(6){	font-size: 2.2rem;	}
#date .date span:nth-child(7){	font-size: 1.6rem;	}

#date .information li{	margin: 0 0 2vw;	}
#date .information li:nth-child(1) span:first-child,
#date .information li:nth-child(2) span:first-child
{
	width: 22vw;
	font-size: 1.1rem;
}
#date .information li:nth-child(1) span:last-child,
#date .information li:nth-child(2) span:last-child
{
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
}
#date .information li:nth-child(3) span
{
	width: 49.5%;
	font-size: 1.1rem;
}

#speaker .note,
#date .note
{
	width: 90%;
	padding: 2vw 0;
	font-size: 1rem;
}


}





/* ================================================================================
program
================================================================================ */
#program
{
	margin: 0 0 60px;

	--color1L: white;
	--color2: rgba(145, 72, 0, 1);
	--color2L: rgba(255, 229, 201, 1);
	--color3: rgba(33, 128, 182, 1);
	--color3L: rgba(230, 240, 249, 1);
	--color4: rgba(137, 156, 10, 1);
	--color4L: rgba(239, 244, 203, 1);
}
#program > .inner
{
	position: relative;

	padding: 0 0 30px;

	background-color: white;
	border: 2px solid var(--colorGreen);
	border-radius: 20px;
}

#program > .inner::before
{
	content: "";
	display: block;
	width: 2px;	height: 20px;
	background-color: var(--colorGreen);

	margin: 0 auto 20px;
}

#program h2
{
	height: 30px;
	margin: 0 auto 20px;
}
#program h2 picture{	height: 100%;	}
#program h2 img{	object-fit: contain;	}


#program .program
{
	width: 980px;
	margin: 0 auto 10px;
}
#program .program li
{	display: flex;	flex-wrap: wrap;	justify-content: space-between;	}

#program .program .box:first-child
{
	position: relative;
	width: 268px;
	padding: 60px 0 30px;
}
#program .program li:nth-child(1) .box:first-child{	padding: 10px 0;	}
#program .program li:nth-child(2) .box:first-child{	padding: 55px 0 0;	}


#program .program .box:last-child
{
	width: 700px;
	border-bottom: 1px dotted var(--colorGray);
	padding: 10px 10px 5px;
}
#program .program li:last-child .box:last-child{	border: none; 	}

#program .program .box:first-child::before
{
	position: absolute;
	top: 0;	left: 0;
	content: "";
	display: block;
	width: 50%;	height: 100%;
}
#program .program .box:first-child::after
{
	position: absolute;
	top: 0;	right: 0;
	content: "";
	display: block;
	width: 51%;	height: 100%;
}

#program .program li:nth-child(2) .box:first-child::before
{
	background: linear-gradient( 190deg,
		var(--color1L) 0%,
		var(--color1L) 30px,
		var(--color2L) 30px,
		var(--color2L) 45px,
		var(--color2L) 45px,
		var(--color2L) 100%
	);
}
#program .program li:nth-child(2) .box:first-child::after
{
	background: linear-gradient( 170deg,
		var(--color1L) 0%,
		var(--color1L) 30px,
		var(--color2L) 30px,
		var(--color2L) 45px,
		var(--color2L) 45px,
		var(--color2L) 100%
	);
}
#program .program li:nth-child(3) .box:first-child::before
{
	background: linear-gradient( 190deg,
		var(--color2L) 0%,
		var(--color2L) 30px,
		white 30px,
		white 45px,
		var(--color3L) 45px,
		var(--color3L) 100%
	);
}
#program .program li:nth-child(3) .box:first-child::after
{
	background: linear-gradient( 170deg,
		var(--color2L) 0%,
		var(--color2L) 30px,
		white 30px,
		white 45px,
		var(--color3L) 45px,
		var(--color3L) 100%
	);
}
#program .program li:nth-child(4) .box:first-child::before
{
	background: linear-gradient( 190deg,
		var(--color3L) 0%,
		var(--color3L) 30px,
		white 30px,
		white 45px,
		var(--color4L) 45px,
		var(--color4L) 100%
	);
}
#program .program li:nth-child(4) .box:first-child::after
{
	background: linear-gradient( 170deg,
		var(--color3L) 0%,
		var(--color3L) 30px,
		white 30px,
		white 45px,
		var(--color4L) 45px,
		var(--color4L) 100%
	);
}
#program .program li:nth-child(5) .box:first-child::before
{
	background: linear-gradient( 190deg,
		var(--color4L) 0%,
		var(--color4L) 30px,
		white 30px,
		white 45px,
		white 45px,
		white 100%
	);
}
#program .program li:nth-child(5) .box:first-child::after
{
	background: linear-gradient( 170deg,
		var(--color4L) 0%,
		var(--color4L) 30px,
		white 30px,
		white 45px,
		white 45px,
		white 100%
	);
}

#program .program hr{	border: none;	border-bottom: 1px dotted var(--colorGray);	}

#program .program h3
{
	margin: 0 0 5px;
	font-size: 2.6rem;
	line-height: 1.5;
}

#program .program h4
{
	z-index: 5;
	position: relative;
	margin: 0 0 10px;
	font-size: 2.4rem;
	line-height: 1;
	text-align: center;
}
#program .program .section
{
	z-index: 5;
	position: relative;
	margin: 0 0 10px;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}
#program .program .section span{	font-size: 3rem;	}
#program .program .time
{
	z-index: 5;
	position: relative;
	margin: 0 0 15px;
	font-size: 1.8rem;
	line-height: 1;
	text-align: center;
}
#program .program .box:last-child p
{
	margin: 0 0 10px;
	font-size: 1.5rem;
	line-height: 1.5;
}

#program .program p.indent
{
	padding-left: 1em;
	text-indent: -1em;
}
#program .program h4:last-child,
#program .program p:last-child,
#program .program p.mb0
{	margin: 0 !important;	}


#program .program li:nth-child(2) h3,
#program .program li:nth-child(2) h4,
#program .program li:nth-child(2) .time,
#program .program li:nth-child(2) .section
{	color: var(--color2);	}

#program .program li:nth-child(3) h3,
#program .program li:nth-child(3) h4,
#program .program li:nth-child(3) .time,
#program .program li:nth-child(3) .section
{	color: var(--color3);	}

#program .program li:nth-child(4) h3,
#program .program li:nth-child(4) h4,
#program .program li:nth-child(4) .time,
#program .program li:nth-child(4) .section
{	color: var(--color4);	}


#program .note
{
	width: 85%;
	background-color: var(--colorGrayLight);

	padding: 10px 0;
	margin: 0 auto;

	font-size: 1.6rem;
	text-align: center;
	line-height: 1.7;
}



/* ========================================
SP
======================================== */
@media screen and (max-width: 767px)
{

#program{	margin: 0 0 8vw;	}
#program > .inner
{
	padding: 0 0 5vw;
	border-radius: 2vw;
}

#program > .inner::before
{
	height: 4vw;
	margin: 0 auto 3vw;
}

#program h2
{
	height: 5.5vw;
	margin: 0 auto 8vw;
}


#program .program
{
	width: 100%;
	margin: 0 auto 5vw;
}

#program .program li
{
	position: relative;
	padding: 0 0 12vw;
}
#program .program li:first-child,
#program .program li:last-child
{	padding: 0;	}

#program .program li::before
{
	position: absolute;
	top: 0;	left: 0;
	content: "";
	display: block;
	width: 50%;	height: 100%;
}
#program .program li::after
{
	position: absolute;
	top: 0;	right: 0;
	content: "";
	display: block;
	width: 51%;	height: 100%;
}
#program .program li:nth-child(2)::before
{
	background: linear-gradient( 190deg,
		white 0%,
		white 8vw,
		var(--color2L) 8vw,
		var(--color2L) calc(100% - 8vw),
		white calc(100% - 8vw),
		white 100%
	);
}
#program .program li:nth-child(2)::after
{
	background: linear-gradient( 170deg,
		white 0%,
		white 8vw,
		var(--color2L) 8vw,
		var(--color2L) calc(100% - 8vw),
		white calc(100% - 8vw),
		white 100%
	);
}
#program .program li:nth-child(3)::before
{
	background: linear-gradient( 190deg,
		white 0%,
		white 8vw,
		var(--color3L) 8vw,
		var(--color3L) calc(100% - 8vw),
		white calc(100% - 8vw),
		white 100%
	);
}
#program .program li:nth-child(3)::after
{
	background: linear-gradient( 170deg,
		white 0%,
		white 8vw,
		var(--color3L) 8vw,
		var(--color3L) calc(100% - 8vw),
		white calc(100% - 8vw),
		white 100%
	);
}
#program .program li:nth-child(4)::before
{
	background: linear-gradient( 190deg,
		white 0%,
		white 8vw,
		var(--color4L) 8vw,
		var(--color4L) calc(100% - 8vw),
		white calc(100% - 8vw),
		white 100%
	);
}
#program .program li:nth-child(4)::after
{
	background: linear-gradient( 170deg,
		white 0%,
		white 8vw,
		var(--color4L) 8vw,
		var(--color4L) calc(100% - 8vw),
		white calc(100% - 8vw),
		white 100%
	);
}


#program .program .box:first-child
{
	z-index: 5;
	position: relative;
	width: 100%;
	padding: 12vw 0 3vw;
}
#program .program li:nth-child(1) .box:first-child{	padding: 0;	}
#program .program li:last-child .box:first-child{	padding: 5vw 0 0;	}
#program .program li:nth-child(2) .box:first-child{	padding: 12vw 0 3vw;	}

#program .program .box:last-child
{
	z-index: 5;
	position: relative;
	width: calc(100% - 10vw);
	padding: 3vw;
	margin: 0 auto;

	background-color: white;
	border: none;
}
#program .program li:first-child .box:last-child{	display: none;	}
#program .program li:last-child .box:last-child{	display: none; 	}

#program .program .box:first-child::before,
#program .program .box:first-child::after
{	display: none;	}

#program .program hr
{
	border: none;
	border-bottom: 3vw solid var(--color3L);
	transform: scaleX(1.2);
}

#program .program h3
{
	margin: 0 0 2vw;
	font-size: 1.8rem;
	text-align: center;
}
#program .program h4
{
	margin: 0 0 2vw;
	font-size: 1.8rem;
}
#program .program .section
{
	margin: 0 0 2vw;
	font-size: 1.6rem;
}
#program .program .section span{	font-size: 2.4rem;	}
#program .program .time
{
	margin: 0 0 3vw;
	font-size: 1.4rem;
}
#program .program .box:last-child p
{
	margin: 0 0 2vw;
	font-size: 1.1rem;
}


#program .note
{
	width: 90%;
	padding: 2vw 0;
	font-size: 1rem;
}

}


/* ================================================================================
buttons
================================================================================ */
#buttons
{
	margin: 0 0 20px;
}
#buttons > .inner
{
	position: relative;
	padding: 0 0 30px;
}

#buttons .join{	margin: 0 0 70px;	}
#buttons .join a
{
	position: relative;

	display: flex;	justify-content: center;	align-items: center;
	width: 445px;	height: 96px;
	margin: 0 auto;

	background-color: rgba(32, 146, 123, 1.0);
	border-radius: 48px;

	color: white;
	font-size: 3.3rem;
	letter-spacing: 0.3em;
}

#buttons .join a::after
{
	position: absolute;
	top: 50%;	right: 30px;
	content: ">";
	display: block;

	transform: translate(0, -50%);
}

#buttons .banner
{
	width: 747px;
	margin: 0 auto;
}

/* ========================================
SP
======================================== */
@media screen and (max-width: 767px)
{

#buttons{	margin: 0 0 15vw;	}
#buttons > .inner{	padding: 0;	}

#buttons .join{	margin: 0 0 10vw;	}
#buttons .join a
{
	width: 80vw;	height: 15vw;
	border-radius: 7.5vw;
	font-size: 2.0rem;
}
#buttons .banner{	width: 90vw;	}


}

/* ================================================================================
modal
================================================================================ */
#modal
{
	z-index: 10;
	position: fixed;
	top: 0;	left: 0;

	width: 100%;	height: 100%;

	opacity: 0;
	transition: var(--transition03);
	pointer-events: none;
}
#modal.dialog_1,	#modal.dialog_2,	#modal.dialog_3,	#modal.dialog_4,	#modal.dialog_5,	#modal.dialog_6
{
	opacity: 1;
	pointer-events: all;
}

#modal > .inner
{
	display: flex;	justify-content: center;	align-items: center;
	width: 100%;	height: 100%;
}
#modal .cover
{
	position: absolute;
	top: 0;	left: 0;
	width: 100%;	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

#modal .speakerDialog
{
	position: relative;
	display: none;
	width: 100%;	height: 100%;
	max-width: 980px;	max-height: 640px;
}
#modal .speakerDialog > .inner
{
	position: relative;
	width: 100%;	height: 100%;

	padding: 40px;
	margin: 0;

	background-color: white;

	border: 1px solid var(--colorGreen);
	border-top: 10px solid var(--colorGreen);
	border-radius: 10px;
	overflow-y: scroll;
}
#modal.dialog_1 .speakerDialog.dialog_1{	display: block;	}
#modal.dialog_2 .speakerDialog.dialog_2{	display: block;	}
#modal.dialog_3 .speakerDialog.dialog_3{	display: block;	}
#modal.dialog_4 .speakerDialog.dialog_4{	display: block;	}
#modal.dialog_5 .speakerDialog.dialog_5{	display: block;	}
#modal.dialog_6 .speakerDialog.dialog_6{	display: block;	}

#modal .speakerDialog::before
{
	content: "";
	position: absolute;
	top: 10px;	right: -10px;

	display: block;
	width: 100%;	height: 100%;
	/* max-width: 1000px;	max-height: 640px; */

	background: url("../img/index/pattern_greenLine.webp") repeat center;
	background-color: white;
	border-radius: 10px;
}

#modal .speakerDialog .boxes
{	display: flex;	flex-wrap: wrap;	justify-content: space-between;	}
#modal .speakerDialog .box:first-child{	width: 38%;	}
#modal .speakerDialog .box:last-child
{
	width: 58%;
	padding: 15px 0 0;
}
#modal .speakerDialog picture
{
	border-radius: 10px;
	overflow: hidden;
}

#modal .speakerDialog .kana
{
	margin: 0 0 8px;
	font-size: 1.3rem;
	line-height: 1;
}
#modal .speakerDialog h3
{
	margin: 0 0 20px;
	color: var(--colorGreenDeep);
	font-size: 2.8rem;
	line-height: 1;
}
#modal .speakerDialog h3 span{	font-size: 0.7em;	}

#modal .speakerDialog hr
{
	height: 10px;
	margin: 0 0 20px;
	background: url("../img/index/pattern_greenLine.webp") repeat center;
	background-color: white;
	border: none;
}
#modal .speakerDialog .description{	font-size: 1.6rem;	}

#modal .speakerDialog .close
{
	position: absolute;
	bottom: 50px;	left: 50%;

	display: flex;	justify-content: space-between;	align-items: center;
	width: 90px;	height: 32px;
	padding: 10px;

	background-color: white;
	border: 1px solid var(--colorGreen);

	transform: translate(-50%, 0);
	cursor: pointer;

	transition: var(--transition03);
}
#modal .speakerDialog .close::before
{
	content: "×";
	color: var(--colorGreen);
	font-size: 1.8rem;
	line-height: 1;
	transition: var(--transition03);
}
#modal .speakerDialog .close p
{
	color: var(--colorGreen);
	font-size: 1.6rem;
	line-height: 1;
	transition: var(--transition03);
}

#modal .speakerDialog .close:hover{	background-color: var(--colorGreen);	}
#modal .speakerDialog .close:hover::before,
#modal .speakerDialog .close:hover p
{	color: white;	}



/* ========================================
SP
======================================== */
@media screen and (max-width: 767px)
{

#modal .speakerDialog{	max-width: 90vw;	max-height: 70vh;	}
#modal .speakerDialog > .inner
{
	padding: 5vw;
	border-top: 3vw solid var(--colorGreen);
	border-radius: 2vw;
}

#modal .speakerDialog::before
{
	top: 3vw;	right: -2vw;
	max-width: 90vw;	max-height: 70vh;
	border-radius: 2vw;
}
#modal .speakerDialog .boxes{	margin: 0 auto 5vw;	}
#modal .speakerDialog .box:first-child
{
	width: 45vw;
	margin: 0 auto;
}
#modal .speakerDialog .box:last-child
{
	display: flex;	flex-wrap: wrap;	justify-content: center;
	width: 100%;
	padding: 5vw 0 0;
}

#modal .speakerDialog picture{	border-radius: 1vw;	}

#modal .speakerDialog .kana
{
	margin: 0 0 1vw;
	font-size: 0.9rem;
}
#modal .speakerDialog h3
{
	margin: 0 0 3vw;
	font-size: 1.8rem;
}
#modal .speakerDialog hr
{
	width: 100%;	height: 1.5vw;
	margin: 0 0 3vw;
}
#modal .speakerDialog .description{	font-size: 1.2rem;	}

#modal .speakerDialog .close
{
	position: static;
	width: 18vw;	height: 7vw;
	margin: 0 auto;
	padding: 0 2vw;

	transform: translate(0,0);
}
#modal .speakerDialog .close::before{	font-size: 1.2rem;	}
#modal .speakerDialog .close p{	font-size: 1.2rem;	}


}




/* ================================================================================
prepare
================================================================================ */
.footer_logo_area
{
	padding: 35px 0;
}



/* ======================================== end ======================================== */
