/* =============================================================================
   HTML5 element display
   ============================================================================= */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio[controls], canvas, video { display: inline-block; *display: inline; *zoom: 1; }


/* =============================================================================
   Base
   ============================================================================= */

html { font-size: 100%; -webkit-overflow-scrolling: touch; -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }

body { margin: 0; font-size: 100%; line-height: 1.45; }

body, input, textarea {
	line-height: 1.75;	/* 16 / 28 */
	color: var(--rdm-text-color);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
/*	letter-spacing: 0.05em; 2025.10 Aki moved to */
	background-color: white;
	text-align: left;	/* Aki */
}
input, textarea, select {
	font-size: 100%;
}

*, *:before, *:after {	/* 2023.7 KAZ */
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

/* Variables
----------------------------------------------- */
:root {
	/* Dimensions */
	--pagewidth: calc(100vw - 16px);	/* 2024.7 KAZ: added */
	--viewheight: 100vh;

	/* Colors */
	--rdm-text-color: #2f5e3b;
	--rdm-dark-green-color: #496d52;
	--rdm-green-color: #30a651;
	--rdm-pale-green-color: #eaf6ee;
	--rdm-greenish-white-color: #f5fbf6;
	--rdm-teal-color: #328fa5;	/* #328fa3 in XD */
	--rdm-gray-color: #cccccc;
	--rdm-light-gray-color: #f8f8f8;
	--rdm-child-bg-color: rgba(56, 194, 188, 0.1);
	--rdm-linkbtn-gradient: linear-gradient(to right, #3ac8a7 0%, #3fd96a 100%);
}
@media print, screen and (min-width: 768px) {	/* PC */
	:root {
		/* Dimensions */
		--rdm-wall-width: 95.2381%;	/* 1200 / 1260 */
		--rdm-footer-wall-width: 95.2381%;	/* 1200 / 1260 */
		--rdm-max-wall-width: 1200px;
		--rdm-semi-wall-width: 1000px;
		--rdm-news-wall-width: 750px;
	}
	.sponly {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {	/* SP */
	:root {
		/* Dimensions */
		--rdm-wall-width: 89.3333%;	/* 335 / 375 */
		--rdm-footer-wall-width: 80%;	/* 300 / 375 */
		--rdm-max-wall-width: none;
		--rdm-semi-wall-width: none;
		--rdm-news-wall-width: none;
	}
	.pconly {
		display: none !important;
	}
}



/* Links
----------------------------------------------- */

a { color: var(--rdm-green-color); }
a:focus { outline: none; /* 2023.7 KAZ: was thin dotted */ }

/* Improve readability when focused and hovered in all browsers: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { /*outline: 0; */}


/* Typography
----------------------------------------------- */

abbr[title] { border-bottom: 1px dotted; }

b, strong { font-weight: bold; }

blockquote { margin: 1em 40px; }

dfn { font-style: italic; }

hr { display: block; height: 1px; border: 0; border-top: 2px solid rgba(0,86,135,0.2); background: none; margin: 1em 0; padding: 0; }

ins { background: #ff9; color: #000; text-decoration: none; }

mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }

/* Redeclare monospace font family: en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }

/* Improve readability of pre-formatted text in all browsers */
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }

q { quotes: none; }
q:before, q:after { content: ""; content: none; }

small { font-size: 85%; line-height: 1.2; }

/* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* Lists
----------------------------------------------- */

ul, ol { margin: 5px 0; padding: 0; }
dd { margin: 0 0 0 40px; }
ul.nostyle {
	list-style: none;
	margin: 0;
}

/* Embedded content
----------------------------------------------- */

img { border: 0; -ms-interpolation-mode: bicubic; max-width: 100%;}
svg:not(:root) {
    overflow: hidden;
}

/* Forms
----------------------------------------------- */

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
legend { border: 0; *margin-left: -7px; padding: 0; }
label { cursor: pointer; }
button, input, select, textarea { font-size: 100%; margin: 0; } /* KAZ c/o: vertical-align: baseline; *vertical-align: middle; */
button, input { line-height: normal; *overflow: visible; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; }

/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }


/* Tables
----------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0;
}

td {
	padding: 0;
}

table.noborder {
	margin: 0;
}
table.noborder td {
	border: 0;
}

/* Initializr Theme
----------------------------------------------- */

p, address {
	margin-top: 5px;
	margin-bottom: 10px;
}
address {
	font-style: normal;
}
section {
	clear: both;
}
h2, h3, h4, h5 {
/*	margin: 12px 0 0; */
}
h2, h3, h4 {
/*	color: black; */
}
/*
h2 {
	font-size: 180%;
	background: url(/institution/suirlo/rdm/assets/css/image/h2.jpg) no-repeat left center;
	margin-left: -45px;
	padding-left: 45px;
}
h3 {
	font-size: 160%;
	background: url(/institution/suirlo/rdm/assets/css/image/h3.gif) no-repeat left center;
	padding-left: 15px;
	line-height: 130%;
}
h4 {
	font-size: 105%;
	background: url(/institution/suirlo/rdm/assets/css/image/h4.gif) no-repeat left center;
	padding-left: 15px;
}
h5 {
	font-size: 100%;
	color: #0D5593;
	background: url(/institution/suirlo/rdm/assets/css/image/h5.gif) no-repeat left center;
	padding-left: 13px;
}
*/

iframe {
	display: block;
	overflow: hidden;
	border: 0;
}
.nomargin {
	margin: 0;
}
a:hover img,	/* MTL Mat changed from .transbtn:hover to this. Perfect automatic opacity */
span.current .transbtn {
/*	opacity: 0.75;
	filter: alpha(opacity=75);
*/
}
.righttop {	/* Force to position right top most of the parent element, which has position: relative */
	 position: absolute;
	 right: 0;
	 top: 0;
}
.rightbottom {
	 position: absolute;
	 right: 0;
	 bottom: 0;
}
.imgonly {
	line-height: 0;
}
img.withintext {
	vertical-align: middle;
}
img.imgonlynotinblock {	/* to avoid gap under this */
	display: block;
}
.newscience, .en {
	font-family: "new-science", sans-serif;
	font-style: normal;
}


/* ======================================================
   The Structure
  ====================================================== */
#page {
	position: relative;
}
#content {
}
section .wall,
.pseudo-section .wall {
	width: var(--rdm-wall-width);
	max-width: var(--rdm-max-wall-width);
	margin: 0 auto;
}
.linkbtn {
	background: var(--rdm-linkbtn-gradient);
	border-radius: 10px;
	display: inline-block;
	position: relative;
	width: 200px;
	height: 66px;
	padding-inline: 19px;
	color: white;
	font-weight: 500;
	line-height: 66px;
	text-decoration: none;
}
.linkbtn::after {
	content: '';
	background: url(/institution/suirlo/rdm/assets/img/arrow_linkbtn_white.svg) no-repeat center / 100% auto;
	display: block;
	position: absolute;
	width: 25px;
	height: 14px;
	top: calc(50% - 7px);
	right: 19px;
}
.linkbtn.ex_link {
	color: var(--rdm-green-color);
	text-align: left;
	background: transparent;
	border: solid 1px var(--rdm-green-color);
}
.linkbtn.ex_link::after {
	background: url(/institution/suirlo/rdm/images/ic_ex.svg) no-repeat center / 100% auto;
	width: 9px !important;
	height: 9px !important;
	top: calc(50% - 2px);
}
.linkbtn.linkpdf::after {
	background-image: url(/institution/suirlo/rdm/images/ic_pdf_white.svg);
	width: 26px;
	height: 23px;
	top: calc(50% - 11px);
	right: 16px;
}
@media (any-hover: hover) {
	.linkbtn:hover {
		background: white;
		border: var(--rdm-green-color) 1px solid;
		padding-inline: 18px;
		color: var(--rdm-green-color);
		line-height: 64px;
	}
	.linkbtn.ex_link:hover {
		line-height: 66px;
		padding-inline: 19px;
	}
	.linkbtn:hover::after {
		background-image: url(/institution/suirlo/rdm/assets/img/arrow_linkbtn_green.svg);
	}
	.linkbtn.ex_link:hover::after {
		background-image: url(/institution/suirlo/rdm/images/ic_ex.svg);
	}
	.linkbtn.linkpdf:hover::after {
		background-image: url(/institution/suirlo/rdm/images/ic_pdf_green.svg);
	}
	.entry_form .linkbtn:hover {
		background-color: white;
		line-height: 80px;
	}
}
.linkbtn.has_shadow {
	filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.2));
}


/* PC ------------------------------------------------- */
@media print, screen and (min-width: 768px) {

	.linkbtn {
		font-size: 1rem;	/* 16px */
	}
}


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

	.linkbtn {
		font-size: 0.875rem;	/* 14px */
		height: 56px;
		line-height: 56px;
	}
	.linkbtn::after {
		background: url(/institution/suirlo/rdm/images/sp/arrow_linkbtn_white.svg) no-repeat center / 100% auto;
		width: 13px;
		height: 13px;
		top: calc(50% - 5px);
		right: 15px;
	}
	.ex_link {
		width: 177px;
	}
	.ex_link::after {
		top: calc(50% - 3px);
	}
	.linkbtn.linkpdf::after {
		width: 22px;
		height: 20px;
		top: calc(50% - 10px);
		right: 13px;
	}
}


/*======================================================
   Header: logo, top menu area
  ====================================================== */
#masthead {
	background-color: rgba(255,255,255,0.85);
	display: flex;
	justify-content: space-between;
	position: fixed;
	z-index: 9999;
}
#headlogo,
#footlogo {
	display: flex;
	gap: 0 9.9174%;	/* 36 / 363 */
	position: relative;
	margin: 0;
}
#headlogo h1 {
	margin: 0;	/* 2026.3 KAZ */
}
#headlogo a,
#footlogo a {
	display: block;
}
#headlogo a img {
	width: auto;
	height: 100%;
}
#headlogo::after,
#footlogo::after {
	content: '';
	background-color: black;
	display: block;
	position: absolute;
	width: 1px;
	left: 50%;
}
#headlogo::after {
	height: 50%;
}
#headmenu {
}
#headmenu ul {
}
#headmenu ul li {
}
#headmenu ul li a {
	display: block;
	color: inherit;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
}
#headmenu ul li.contact a {
}
@media (any-hover: hover) {
	#headmenu ul li a:hover {
	}
}


/*======================================================
   Footer:
  ====================================================== */
#ft_nav_top a {
}
#colophon {
	background-color: var(--rdm-light-gray-color);
}
#colophon .wall {
	width: var(--rdm-footer-wall-width);
	max-width: var(--rdm-max-wall-width);
	margin: 0 auto;
}
#footlogo {
}
#footmenu {
}
#footmenu ul {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
#footmenu ul li {
}
#footmenu ul li:not(.contact) {
	border-bottom: rgba(47,94,59,0.15) 1px solid;
}
#footmenu ul li.contact {
	position: absolute;
	bottom: 0;
	left: 0;
}
#footmenu ul li a {
	display: block;
	position: relative;
	width: 100%;
	color: inherit;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
}
#footmenu ul li.contact a {
	color: white;
}
#footmenu ul li a::after {
	content: '';
	background: url(/institution/suirlo/rdm/assets/img/arrow_linkbtn_footer.svg) no-repeat center / 100% auto;
	display: block;
	position: absolute;
	width: 15px;
	height: 9px;
	top: calc(50% - 4px);
	right: 0;
}
#footmenu ul li.contact a::after {
	background-image: url(/institution/suirlo/rdm/assets/img/arrow_linkbtn_white.svg);
	width: 25px;
	height: 14px;
	top: calc(50% - 7px);
}
#colophon .copyright {
	font-size: 0.875rem;	/* 14px */
	font-weight: 100;	/* Thin */
	letter-spacing: 0.05em;
	line-height: 1;
}
@media (any-hover: hover) {
	#footmenu ul li.contact a:hover {
		color: var(--rdm-green-color);
	}
	#footmenu ul li.contact a:hover::after {
		background-image: url(/institution/suirlo/rdm/assets/img/arrow_linkbtn_green.svg);
	}
}

/* PC ------------------------------------------------- */
@media print, screen and (min-width: 1256px) {	/* Special breadpoint for header/footer */
	.spheadonly {
		display: none !important;
	}
	#masthead {
		border-radius: 10px;
		width: 94.125%;	/* 1506 / 1600 */
		top: 32px;
		left: 2.9375%;
		padding: 8px 8px 8px 28px;
	}
	#headlogo {
		width: 363px;
		height: 80px;
	}
	#headlogo a {
		height: 80px;
	}
	#headlogo a.su_logo {
		padding-top: 6px;
		padding-bottom: 17px;
	}
	#headlogo a.program_logo {
		padding-top: 21px;
		padding-bottom: 19px;
	}
	#headlogo::after {
		top: 21px;
	}
	#headmenu {
		display: block !important;
		flex-grow: 1;
	}
	#headmenu ul {
		display: flex;
		justify-content: flex-end;
		width: 100%;
		min-width: min(689px + 17.5vw, 965px);
		gap: 0 min(2.5vw, 40px - 0.05em);	/* counter letter-spacing */
	}
	#headmenu ul li a {
		height: 80px;
		font-size: 1.125rem;	/* 18px */
		line-height: 80px;
	}
	#headmenu ul li.contact a {
		background: var(--rdm-linkbtn-gradient);
		border-radius: 6px;
		width: 180px;
		color: white;
		text-align: center;
	}
	#headmenu ul li.is-current:not(.contact) a {
		color: var(--rdm-green-color);
	}
	@media (any-hover: hover) {
		#headmenu ul li a:hover {
			color: var(--rdm-green-color);
		}
		#headmenu ul li.contact a:hover {
			background: white;
			border: var(--rdm-green-color) 1px solid;
			padding-inline: 32px;
			line-height: 78px;
		}
	}

	#colophon {
	}
	#colophon .wall {
		display: flex;
		justify-content: space-between;
		position: relative;
		padding-top: 134px;
		padding-bottom: 123px;
	}
	#footlogo {
		width: 468px;
		max-width: 50%;
	}
	#footlogo a {
		height: 73px;
	}
	#footlogo a.su_logo {
	}
	#footlogo a.program_logo {
		padding-top: 19px;
		padding-bottom: 3px;
	}
	#footlogo a img {
		width: auto;
		height: 100%;
	}
	#footlogo::after {
		height: 51px;
		top: 19px;
	}
	#footmenu {
		width: 50%;
	}
	#footmenu ul {
		gap: 0 7.5%;	/* 45 / 600 */
		padding-bottom: 184px;
	}
	#footmenu ul li:not(.contact) {
		width: 28.3333%;	/* 170 / 600 */
	}
	#footmenu ul li.contact {
		width: 480px;
		max-width: 100%;
	}
	#footmenu ul li a {
	}
	#footmenu ul li:not(.contact) a {
		line-height: 70px;
	}
	#footmenu ul li.contact a {
		height: 110px;
		padding-inline: 42px;
		font-size: 1.25rem;	/* 20px */
		line-height: 110px;
	}
	#footmenu ul li.contact a::after {
		right: 42px;
	}
	#colophon .copyright {
		position: absolute;
		bottom: 123px;
		left: 0;
	}
	@media (any-hover: hover) {
		#footmenu ul li.contact a {
		}
	}

}

/* SP ------------------------------------------------- */
@media screen and (max-width: 1255.9px) {	/* Special breadpoint for header/footer */
	.pcheadonly {
		display: none !important;
	}
	#masthead {
		border-radius: 5px;
		width: 93.3333%;	/* 350 / 375 */
		top: 15px;
		left: 3.3333%;
		padding: 6px 6px 6px 8px;
	}
	#headlogo {
		width: 205px;
		height: 42px;
	}
	#headlogo h1,
	#headlogo a {
		height: 100%;	/* 2026.3 KAZ: for top page */
	}
	#headlogo a.su_logo {
		padding-top: 1px;
		padding-bottom: 9px;
	}
	#headlogo a.program_logo {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	#headlogo::after {
		top: 10px;
	}
	#menu_overlay,
	#headmenu {
		display: none;
	}
	#menu_overlay {
		background-color: rgba(0,0,0,0.3);
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		z-index: 1;
	}
	#menu_open_btn {
		width: 58px;
		height: 42px;
	}
	#menu_open_btn a {
		display: block;
	}
	#menu_open_btn img {
		width: 100%;
		height: auto;
	}
	#headmenu {
		background: linear-gradient(45deg, #3ac8a7 0%, #3fd96a 100%);
		border-radius: 0 0 10px 10px;
		position: fixed;
		width: 100%;
		max-width: 640px;
		top: 0;
		right: 0;
		z-index: 2;
		padding: 0;
		color: white;
	}
	#menu_close_btn {
		position: absolute;
		width: 57px;	/* 37 + 10 * 2 */
		height: 41px;	/* 17 + 12 * 2 */
		top: 24px;
		right: calc(3.3333vw + 6px);
	}
	#menu_close_btn a {
		display: block;
		padding: 12px 10px;
	}
	#menu_close_btn img {
		width: 100%;
		height: auto;
	}
	#headmenu ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0 8%;	/* 30 / 375 */
		margin-top: 0;
		padding: 80px 5.3333% 210px;	/* 20 / 375 */
	}
	#headmenu ul li:not(.contact) {
		border-bottom: white 1px solid;
		width: 40.2985%;	/* 135 / 335 */
	}
	#headmenu ul li.contact {
		position: absolute;
		width: 89.3333%;
		bottom: 60px;
		left: 5.3333%;
	}
	#headmenu ul li a {
		position: relative;
		font-size: 0.875rem;	/* 14px */
		line-height: 74px;
	}
	#headmenu ul li.contact a {
		background-color: white;
		border-radius: 10px;
		padding-inline: 32px;
		color: var(--rdm-green-color);
		font-size: 1rem;	/* 16px */
		line-height: 90px;
	}
	#headmenu ul li a::after {
		content: '';
		background: url(/institution/suirlo/rdm/assets/img/arrow_linkbtn_white.svg) no-repeat center / 100% auto;
		display: block;
		position: absolute;
		width: 12px;
		height: 7px;
		top: calc(50% - 3px);
		right: 0;
	}
	#headmenu ul li.contact a::after {
		background-image: url(/institution/suirlo/rdm/assets/img/arrow_linkbtn_green.svg);
		width: 25px;
		height: 14px;
		top: calc(50% - 7px);
		right: 32px;
	}
	@media (any-hover: hover) {
		#headmenu ul li.contact a:hover {
			background-color: transparent;
			border: white 1px solid;
			padding-inline: 31px;
			color: white;
			line-height: 88px;
		}
		#headmenu ul li.contact a:hover::after {
			background-image: url(/institution/suirlo/rdm/assets/img/arrow_linkbtn_white.svg);
		}
	}

	#colophon {
	}
	#colophon .wall {
		padding-top: 87px;
		padding-bottom: 100px;
	}
	#footlogo {
		width: 100%;
		max-width: 468px;	/* 2026.3 KAZ */
		margin-bottom: 30px;
		margin-inline: auto;	/* 2026.3 KAZ */
		gap: 0 11.3333%;
	}
	#footlogo a {
		width: 44.3333%;	/* 133 / 300 */
	}
	#footlogo a.su_logo {
	}
	#footlogo a.program_logo {
		padding-top: 4.0598%;	/* 19 / 468; PCと同じ比率 */
	}
	#footlogo a img {
		width: 100%;
		height: auto;
	}
	#footlogo::after {
		height: 69.863%;	/* 51 / 73; PCと同じ比率 */
		top: min(19px, 3.2479vw);	/* 19 / 468 * 0.8; PCと同じ比率; 2026.3 KAZ: added min(19px, ) */
	}
	#footmenu {
	}
	#footmenu ul {
		gap: 0 10%;	/* 30 / 300 */
		margin-bottom: 60px;
		padding-bottom: 150px;
	}
	#footmenu ul li:not(.contact) {
		width: 45%;	/* 135 / 300 */
	}
	#footmenu ul li.contact {
		width: 100%;
	}
	#footmenu ul li a {
	}
	#footmenu ul li:not(.contact) a {
		font-size: 0.875rem;	/* 14px */
		line-height: 74px;
	}
	#footmenu ul li.contact a {
		height: 90px;
		padding-inline: 8.6667%;	/* 26 / 300 */
		font-size: 1.125rem;	/* 18px */
		line-height: 90px;
	}
	#footmenu ul li.contact a::after {
		right: 8.6667%;	/* 26 / 300 */
	}
	#colophon .copyright {
		text-align: center;
	}

}


/* ======================================================
   Main
   ====================================================== */
#wrapper {
	overflow: hidden;
}
#main {
}


/* PC ------------------------------------------------- */
@media print, screen and (min-width: 768px) {
}


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


/* ======================================================
   Contents (common among all pages)
   ====================================================== */
@media (any-hover: hover) {
}


/* ======================================================
   Contents (top page only)
   ====================================================== */
#my-top {
}
#my-top #main {
	background: linear-gradient(to right, rgba(56,194,188,0.1) 0%, rgba(48,166,199,0.05) 50%, rgba(56,194,188,0.1) 100%);
}
#top_mainvisual {
	position: relative;
}
#top_mainvisual .slider_wrapper .item_slider {
}
#top_mainvisual .slider_wrapper .item_slider .slide {
	width: 100%;
}
#top_mainvisual .slider_wrapper .item_slider .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#top_mainvisual .content,
#top_mainvisual .motivator {
	position: absolute;
}
#top_mainvisual .content {
	color: white;
}
#top_mainvisual .content .ja {
	font-weight: 500;
	letter-spacing: 0.05em;
}
#top_mainvisual .content .en {
	letter-spacing: 0.025em;
}
#top_mainvisual .motivator {
	left: 50%;
	transform: translateX(-50%);
}
#top_main_menu {
	position: relative;
}
#top_main_menu .marquee {
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	z-index: -1;
}
#top_main_menu .marquee .inner {
	position: absolute;
	top: 0;
	left: 0;
}
#top_main_menu .marquee .inner img {
	max-width: none;
}
#top_main_menu .wall {
}
#top_main_menu ul.menu {
	display: flex;
}
#top_main_menu ul.menu li {
	list-style-type: none;
}
#top_main_menu ul.menu li a {
	background-color: white;
	border-radius: 10px;
	display: block;
	position: relative;
	height: 100%;
	color: inherit;
	text-decoration: none;
}
#top_main_menu ul.menu li a .icon,
#top_main_menu ul.menu li a .title {
	text-align: center;
}
#top_main_menu ul.menu li a .icon {
}
#top_main_menu ul.menu li a .title {
}
#top_main_menu ul.menu li a .title .ja {
	color: var(--rdm-green-color);
	font-weight: 500;
}
#top_main_menu ul.menu li a .title .en {
	color: rgba(47,94,59,0.5);
}
#top_main_menu ul.menu li a .descr {
	font-weight: 300;	/* Light */
}
#top_main_menu ul.menu li a .descr .bulleted {
	padding-left: 1em;
}
#top_main_menu ul.menu li a .descr .bulleted::before {
	content: '?';
	width: 1em;
	margin-left: -1em;
}
#top_main_menu ul.menu li a::after {
	content: '';
	background: url(/institution/suirlo/rdm/assets/img/arrow_top_main_menu.svg) no-repeat center / 100% auto;
	position: absolute;
	width: 20px;
	height: 9px;
	left: calc(50% - 10px);
}
@media (any-hover: hover) {
	#top_main_menu ul.menu li a:hover {
		background-color: var(--rdm-greenish-white-color);
	}
}
#top_news {
}
#top_news .wall {
}
#top_news h2 {
	margin-block: 0;
	color: var(--rdm-green-color);
}
#top_news h2 span {
	display: block;
}
#top_news h2 span.en {
	font-weight: 500;
	line-height: 1;
}
#top_news h2 span.ja {
	font-weight: 600;
}
#top_news .news_list {
}
#top_news .news_list .c-news-item {
	border-bottom: rgba(48,166,81,0.15) 1px solid;
}
#top_news .news_list .c-news-item a {
	display: block;
	color: inherit;
	text-decoration: none;
}
#top_news .news_list .c-news-item a .category {
}
#top_news .news_list .c-news-item a .date {
	color: rgba(47,94,59,0.6);
}
#top_news .link {
}
#top_mid_sections {
	background: url(/institution/suirlo/rdm/images/top_mid_sections_bg.jpg) no-repeat center / 100% 100%;
}
#top_mid_sections section {
}
#top_mid_sections section h2 :is(.en, .ja) {
	display: block;
}
#top_mid_sections #top_about {
	color: white;
}
#top_mid_sections #top_about h2 .en {
	font-size: 3.75rem;	/* 60px */
	font-weight: 500;
}
#top_mid_sections #top_about h2 .ja {
	font-size: 1.25rem;	/* 20px */
	line-height: 1;
}
#top_mid_sections #top_about .content {
}
#top_mid_sections #top_about h3 {
	letter-spacing: 0.05em;
}
#top_mid_sections #top_about .content p {
	line-height: 2;	/* 22/44 */
	letter-spacing: 0.05em;
	text-align: justify;
}
#top_mid_sections #top_about .slider_wrapper {
}
#top_mid_sections #top_about .slider_wrapper .item_slider {
	margin-inline: auto;
}
#top_mid_sections #top_about .slider_wrapper .item_slider .slide {
}

#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) {
	background: white;
	border-radius: 10px;
}
#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) h2 {
	color: var(--rdm-green-color);
}
#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) h2 .ja {
	letter-spacing: 0.05em;
}
#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) h2 .en {
	font-weight: 400;
	letter-spacing: 0.025em;
}
#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) .wall {
	max-width: var(--rdm-semi-wall-width);
}
#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) :is(li, ol) {
	font-weight: 400;
/*	letter-spacing: 0.025em; ai設定されているが、入っているとdesign通りにならない */
	line-height: 2;	/* 16/32 */
}
#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) .content {
	clear: both;
}

#top_mid_sections #top_logic {
}
#top_mid_sections #top_logic .content ol {
	list-style: none;
	margin: 0;
}
#top_mid_sections #top_logic .content ol > li {
}
#top_mid_sections #top_logic .content ol > li .num {
	/* display: block; */
	display: flex;
  align-items: center;
	color: var(--rdm-green-color);
	font-weight: 600;
	line-height: 1;
	
}
#top_mid_sections #top_logic .content ol > li .num span {
	color: #2f5e3b;
  font-size: 66%;
  margin-left: 1em;
}
#top_mid_sections #top_logic .img_wrapper {
	display: flex;
	overflow: hidden;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
#top_mid_sections #top_logic .img_wrapper picture {
	display: block;
	width: 50%;
}
#top_mid_sections #top_logic .img_wrapper img {
	vertical-align: bottom;
}

#top_mid_sections #top_training_course .chart {
	clear: both;
	overflow-x: auto;
}
#top_mid_sections #top_training_course .chart::-webkit-scrollbar {	/* Chromium */
	background-color: #bfd5c5;
	width: 5px;
	height: 5px;
}
#top_mid_sections #top_training_course .chart::-webkit-scrollbar-thumb {	/* Chromium */
	background-color: var(--rdm-green-color);
}
_::-webkit-full-page-media, _:future, :root #top_mid_sections #top_training_course .chart {	/* Safari */
	scrollbar-color: var(--rdm-green-color) #bfd5c5;
	scrollbar-width: thin;
	padding-bottom: 10px;
}
@-moz-document url-prefix() {	/* Firefox */
	#top_mid_sections #top_training_course .chart {
		scrollbar-color: var(--rdm-green-color) #bfd5c5;
		scrollbar-width: thin;
		padding-bottom: 10px;
	}
}
#top_mid_sections #top_training_course .chart img {
	min-width: 716px;
}

#top_mid_sections #top_curriculum {
}
#top_mid_sections #top_curriculum .content {
}
#top_mid_sections #top_curriculum .content .wrap {
	border-top: solid 1px var(--rdm-gray-color);
}
#top_mid_sections #top_curriculum .content .wrap .text {
}
#top_mid_sections #top_curriculum .content .wrap .text h3 {
	display: flex;
	gap: 0 35px;
	margin-top: -5px;
}
#top_mid_sections #top_curriculum .content .wrap .text h3 .num {
	color: var(--rdm-green-color);
	font-weight: 600;
	line-height: 1;
}
#top_mid_sections #top_curriculum .content .wrap .text h3 .ja {
	line-height: 1.8181;	/* 22/40 */
}
#top_mid_sections #top_curriculum .content .wrap .text table {
	border-collapse: separate;
}
#top_mid_sections #top_curriculum .content .wrap .text :is(th, td) {
	border: 0;
	padding: 0;
}
#top_mid_sections #top_curriculum .content .wrap .text th {
	font-weight: 500;
	text-align: center;
	border: solid 1px;
	border-radius: 5px;
}
#top_mid_sections #top_curriculum .content .wrap .text td {
}
#top_mid_sections #top_curriculum .content .wrap .text td ul {
	margin-top: -5px;
	margin-bottom: 0;
}
#top_mid_sections #top_curriculum .content .wrap picture {
	display: block;
	flex-shrink: 0;
}

#top_mid_sections #top_jsps {
	background: var(--rdm-pale-green-color);
	border-radius: 10px;
}
#top_mid_sections #top_jsps .wall {
}
#top_mid_sections #top_jsps h2 {
	text-align: center;
}
#top_mid_sections #top_jsps p {
	line-height: 2;	/* 16/32 */
}
#top_mid_sections #top_jsps .link {
	text-align: center;
}

#top_banners {
}
#top_banners .wall {
}
#top_banners ul {
	display: flex;
	align-items: center;
	margin: 0;
}
#top_banners ul li {
	list-style-type: none;
}
#top_banners ul li a {
	display: block;
}
#top_banners ul li a img {
	width: 100%;
	height: auto;
}



/* PC ------------------------------------------------- */
@media print, screen and (min-width: 768px) {

	#my-top {
	}
	#top_mainvisual {
	}
	#top_mainvisual .slider_wrapper .item_slider {
	}
	#top_mainvisual .slider_wrapper .item_slider .slide {
		height: calc(100vh + 60px);
		min-height: 680px;
	}
	#top_mainvisual .content {
		top: calc(50% - 210px);
		left: 6.125%;	/* 98 / 1600 */
	}
	#top_mainvisual .content .ja {
		margin-bottom: 13px;
		font-size: 2.625rem;	/* 42px */
		line-height: 1.6667;	/* 70 / 42 */
	}
	#top_mainvisual .content .en {
		margin-bottom: 87px;
		font-size: 1.3125rem;	/* 21px */
		line-height: 1.5714;	/* 33 / 21 */
	}
	#top_mainvisual .motivator {
		bottom: 24px;
	}
	#top_mainvisual .image {
	}
	#top_main_menu {
	}
	#top_main_menu .marquee,
	#top_main_menu .marquee .inner {
		height: 140px;
	}
	#top_main_menu .marquee {
		top: 112px;
	}
	#top_main_menu .marquee .inner {
		width: 11114px;
	}
	#top_main_menu .marquee .inner img {
/*		width: 5557px; */
		padding-inline: 100px;
	}
	#top_main_menu .wall {
		padding-top: 191px;
	}
	#top_main_menu ul.menu {
		gap: 0 0.4444%;	/* 5.3333 / 1200 */
	}
	#top_main_menu ul.menu li {
		width: 24.6667%;	/* 296 / 1200 */
	}
	#top_main_menu ul.menu li a {
		padding: 33px 19px 67px;
	}
	#top_main_menu ul.menu li a .icon {
		margin-bottom: 16px;
	}
	#top_main_menu ul.menu li a .title {
	}
	#top_main_menu ul.menu li a .title .ja {
		margin-bottom: 7px;
		font-size: 1.5625rem;	/* 25px */
	}
	#top_main_menu ul.menu li a .title .en {
		margin-bottom: 11px;
		font-size: 0.9375rem;	/* 15px */
	}
	#top_main_menu ul.menu li a .descr {
		min-height: 6em;
/*		font-size: 1rem; */	/* 16px */
		line-height: 2;
	}
	#top_main_menu ul.menu li a::after {
		bottom: 24px;
	}
	#top_news {
	}
	#top_news .wall {
		overflow: hidden;
		padding-block: 150px;
	}
	#top_news h2 {
		float: left;
	}
	#top_news h2 span.en {
		margin-bottom: 12px;
		font-size: 3.75rem;	/* 60px */
	}
	#top_news h2 span.ja {
		margin-bottom: 46px;
		font-size: 1.25rem;	/* 20px */
	}
	#top_news .news_list {
		float: right;
		width: 70.8333%;	/* 850 / 1200 */
		padding-top: 5px;	/* Aki */
/*		margin-top: -40px; Aki c/o */
	}
	#top_news .news_list .c-news-item {
	}
	#top_news .news_list .c-news-item a {
		padding-block: 40px;
	}
	#top_news .news_list .c-news-item a .category {
	}
	#top_news .news_list .c-news-item a .date {
	}
	#top_news .link {
		clear: left;
	}

	#top_mid_sections {
		padding-bottom: 150px;
	}
	#top_mid_sections .linkbtn {
		width: 250px;
	}
	#top_mid_sections #top_about {
		padding-top: 105px;
	}
	#top_mid_sections #top_about h2 {
		display: inline-block;
		float: left;
		margin-right: 170px;
	}
	#top_mid_sections #top_about h2 .en {
		font-size: 3.75rem;	/* 60px */
	}
	#top_mid_sections #top_about h2 .ja {
		font-size: 1.25rem;	/* 20px */
	}
	#top_mid_sections #top_about .content {
		overflow: hidden;
		max-width: 763px;	/* KAZ: was 746px as in design */
	}
	#top_mid_sections #top_about h3 {
		font-size: 2.25rem;	/* 36px */
		margin-bottom: 40px;
	}
	#top_mid_sections #top_about .content p {
		font-size: 1.375rem;	/* 22px */
		margin-bottom: 47px;
	}
	#top_mid_sections #top_about .slider_wrapper {
		margin-top: 118px;
		margin-bottom: 111px;
	}
	#top_mid_sections #top_about .slider_wrapper .item_slider,
	#top_mid_sections #top_about .slider_wrapper .item_slider .slide {
		width: 704px;
	}
	#top_mid_sections #top_about .slider_wrapper .item_slider {
	}
	#top_mid_sections #top_about .slider_wrapper .item_slider .slide {
		padding-inline: 4px;
	}

	#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) {
		padding-top: 45px;
	}
	#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) .wall {
	}
	#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) h2 {
		display: inline-block;
		float: left;
	}
	#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) h2 .ja {
		font-size: 2.25rem;	/* 36px */
	}
	#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) h2 .en {
		font-size: 0.9375rem;
	}
	#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) .link {
		float: right;
		padding-top: 35px;
	}

	#top_mid_sections #top_logic {
	}
	#top_mid_sections #top_logic .content {
		display: flex;
		gap: 0 60px;
		align-items: flex-start;
		padding-top: 65px;
	}
	#top_mid_sections #top_logic .content ol {
		order: 1;
	}
	#top_mid_sections #top_logic .content ol > li {
		margin-bottom: 40px;
	}
	#top_mid_sections #top_logic .content ol > li .num {
		font-size: 2.1875rem;	/* 35px */
		margin-bottom: 12px;
	}
	#top_mid_sections #top_logic .content picture {
		display: block;
		order: 2;
		width: 49.8%;
		min-width: 498px;
	}
	#top_mid_sections #top_logic .img_wrapper {
		margin-top: 45px;
	}
	#top_mid_sections #top_logic .img_wrapper img {
	}

	#top_mid_sections #top_training_course {
		margin-top: 100px;
		padding-bottom: 100px;
	}
		#top_mid_sections #top_training_course .chart {
		padding-top: 60px;
	}

	#top_mid_sections #top_curriculum {
		margin-top: 100px;
	}
	#top_mid_sections #top_curriculum .content {
		padding-top: 50px;
	}
	#top_mid_sections #top_curriculum .content .wrap {
		display: flex;
		gap: 0 70px;
		padding-top: 80px;
		padding-bottom: 55px;
	}
	#top_mid_sections #top_curriculum .content .wrap .text {
		order: 2;
	}
	#top_mid_sections #top_curriculum .content .wrap .text h3 {
	}
	#top_mid_sections #top_curriculum .content .wrap .text h3 .num {
		font-size: 2.5rem;	/* 40px */
	}
	#top_mid_sections #top_curriculum .content .wrap .text h3 .ja {
		font-size: 1.375rem;
		margin-top: -5px;
	}
	#top_mid_sections #top_curriculum .content .wrap .text table {
		border-spacing: 0 31px;	/* design is 0 40px */
	}
	#top_mid_sections #top_curriculum .content .wrap .text th {
		font-size: 1.25rem;	/* 20px */
		width: 21.3114%;	/* 130/610 */
		max-width: 130px;
	}
	#top_mid_sections #top_curriculum .content .wrap .text td {
		padding-left: 60px;
	}
	#top_mid_sections #top_curriculum .content .wrap .text td ul > li {
	}
	#top_mid_sections #top_curriculum .content .wrap picture {
		width: 31.4%;
		max-width: 314px;
		order: 1;
	}

	#top_mid_sections #top_jsps {
		padding-top: 50px;
		padding-bottom: 80px;
		margin-top: 100px;
	}
	#top_mid_sections #top_jsps .wall {
		max-width: 675px;
	}
	#top_mid_sections #top_jsps h2 {
		margin-bottom: 35px;
	}
	#top_mid_sections #top_jsps .link {
		margin-top: 52px;
	}

	#top_banners {
	}
	#top_banners .wall {
		padding-block: 150px;
	}
	#top_banners ul {
		flex-wrap: wrap;
		gap: min(75px, 5.8777vw) 6.25%;	/* 75 / 1276; 75 / 1200 */
	}
	#top_banners ul li {
		width: 29.1667%;	/* 350 / 1200 */
	}

}


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

	#my-top {
	}
	#top_mainvisual {
	}
	#top_mainvisual .slider_wrapper .item_slider {
	}
	#top_mainvisual .slider_wrapper .item_slider .slide {
		height: calc(100vh - 78px);
		min-height: 375px;	/* for landscape orientation */
	}
	#top_mainvisual .content {
		top: calc(50% - 100px);
		left: 5.3333%;
	}
	#top_mainvisual .content .ja {
		margin-bottom: 6px;
		font-size: 1.1875rem;	/* 19px */
		line-height: 1.7368;	/* 33 / 19 */
	}
	#top_mainvisual .content .en {
		margin-bottom: 30px;
		font-size: 0.875rem;	/* 14px */
		line-height: 1.6429;	/* 23 / 14 */
	}
	#top_mainvisual .motivator {
		bottom: 9px;
	}
	#top_main_menu {
	}
	#top_main_menu .marquee,
	#top_main_menu .marquee .inner {
		height: 55px;
	}
	#top_main_menu .marquee {
		top: 11px;
	}
	#top_main_menu .marquee .inner {
		width: 4414px;
	}
	#top_main_menu .marquee .inner img {
		width: 2207px;
		padding-inline: 50px;
	}
	#top_main_menu .wall {
		padding-top: 45px;
	}
	#top_main_menu ul.menu {
		flex-wrap: wrap;
		gap: 15px 4.4776%;	/* 15 / 335 */
	}
	#top_main_menu ul.menu li {
		width: 47.7612%;	/* 160 / 335 */
	}
	#top_main_menu ul.menu li a {
		padding: 13px 15px 37px;
	}
	#top_main_menu ul.menu li a .icon {
		margin-bottom: 8px;
	}
	#top_main_menu ul.menu li a .icon img {
		height: 25px;
	}
	#top_main_menu ul.menu li a .title {
	}
	#top_main_menu ul.menu li a .title .ja {
		margin-bottom: -2px;
		font-size: 0.9375rem;	/* 15px */
	}
	#top_main_menu ul.menu li a .title .en {
		margin-bottom: 10px;
		font-size: 0.625rem;	/* 10px */
	}
	#top_main_menu ul.menu li a .descr {
		font-size: 0.875rem;	/* 14px */
		line-height: 1.7143;	/* 24 / 14 */
	}
	#top_main_menu ul.menu li a::after {
		bottom: 20px;
	}
	#top_news {
	}
	#top_news .wall {
		padding-block: 100px;
	}
	#top_news h2 {
	}
	#top_news h2 span.en {
		margin-bottom: 7px;
		font-size: 2.9375rem;	/* 47px */
	}
	#top_news h2 span.ja {
		margin-bottom: 28px;
		font-size: 1rem;	/* 16px */
	}
	#top_news .news_list {
		margin-bottom: 30px;	/* Aki was 40px */
	}
	#top_news .news_list .c-news-item {
	}
	#top_news .news_list .c-news-item a {
		padding-block: 20px;
	}
	#top_news .news_list .c-news-item a .category {
	}
	#top_news .news_list .c-news-item a .date {
	}
	#top_news .link {
	}

	#top_mid_sections {
		padding-bottom: 100px;
	}
	#top_mid_sections #top_about {
		padding-top: 80px;
	}
	#top_mid_sections #top_about h2 {
		margin-top: 0;
		margin-bottom: 40px;
	}
	#top_mid_sections #top_about h2 .en {
		font-size: 2.9375rem;	/* 47px */
	}
	#top_mid_sections #top_about h2 .ja {
		font-size: 1rem;	/* 16px */
	}
	#top_mid_sections #top_about h3 {
		font-size: 1.25rem;	/* 20px */
		line-height: 2.15;	/* 20/43 */
	}
	#top_mid_sections #top_about .slider_wrapper {
		margin-top: 52px;
		margin-bottom: 55px;	/* Aki was 60px */
	}
	#top_mid_sections #top_about .slider_wrapper .item_slider,
	#top_mid_sections #top_about .slider_wrapper .item_slider .slide {
		width: 89.3333vw;
	}
	#top_mid_sections #top_about .slider_wrapper .item_slider {
	}
	#top_mid_sections #top_about .slider_wrapper .item_slider .slide {
		padding-inline: 3px;
	}

	#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) {
		padding-top: 10px;
	}
	#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) h2 {
		margin-bottom: 35px;
	}
	#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) h2 .ja {
		font-size: 1.6875rem;	/* 27px */
	}
	#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) h2 .en {
		font-size: 0.75rem;	/* 12px */
	}

	#top_mid_sections #top_logic {
	}
	#top_mid_sections #top_logic .content ol {
		margin-top: 30px;
	}
	#top_mid_sections #top_logic .content ol > li {
		font-size: 0.875rem;	/* 14px */
		margin-bottom: 30px;
	}
	#top_mid_sections #top_logic .content ol > li .num {
		font-size: 1.6875rem;	/* 27px */
		margin-bottom: 16px;
	}
	#top_mid_sections #top_logic .img_wrapper {
	}
	#top_mid_sections #top_logic .img_wrapper img {
	}
	#top_mid_sections :is(#top_logic, #top_training_course, #top_curriculum) .link {
		text-align: center;
		margin-top: 40px;
		margin-bottom: 40px;
	}

	#top_mid_sections #top_training_course {
		margin-top: 60px;
		padding-bottom: 5px;
	}

	#top_mid_sections #top_curriculum {
		padding-bottom: 1px;
		margin-top: 60px;
	}
	#top_mid_sections #top_curriculum .content {
	}
	#top_mid_sections #top_curriculum .content .wrap {
		padding-top: 43px;
		padding-bottom: 35px;
	}
	#top_mid_sections #top_curriculum .content .wrap:last-of-type {
		border-bottom: solid 1px var(--rdm-gray-color);
	}
	#top_mid_sections #top_curriculum .content .wrap .text {
	}
	#top_mid_sections #top_curriculum .content .wrap .text h3 {
		flex-direction: column;
		font-size: 1.125rem;	/* 18px */
		gap: 15px 0;
		margin-bottom: 0px;
	}
	#top_mid_sections #top_curriculum .content .wrap .text h3 .num {
		font-size: 1.6875rem;	/* 27px */
	}
	#top_mid_sections #top_curriculum .content .wrap .text h3 .ja {
	}
	#top_mid_sections #top_curriculum .content .wrap .text table {
		border-spacing: 0 40px;
	}
	#top_mid_sections #top_curriculum .content .wrap .text th {
		width: 23.3333%;	/* 70/300 */
	}
	#top_mid_sections #top_curriculum .content .wrap .text td {
		padding-left: 30px;
	}
	#top_mid_sections #top_curriculum .content .wrap .text td ul > li {
		font-size: 0.875rem;	/* 14px */
	}
	#top_mid_sections #top_curriculum .content .wrap .text td ul > li::marker {
	}
	#top_mid_sections #top_curriculum .content .wrap picture {
	}

	#top_mid_sections #top_jsps {
		padding-top: 33px;
		padding-bottom: 60px;
		margin-top: 60px;
	}
	#top_mid_sections #top_jsps .wall {
	}
	#top_mid_sections #top_jsps h2 {
		font-size: 1.25rem;	/* 20px */
		margin-bottom: 25px;
	}
	#top_mid_sections #top_jsps p {
		font-size: 0.875rem;	/* 14px */
	}
	#top_mid_sections #top_jsps .link {
		margin-top: 38px;
	}

	#top_banners {
	}
	#top_banners .wall {
		padding-block: 100px;
	}
	#top_banners ul {
		flex-direction: column;
		gap: 40px 0;
	}
	#top_banners ul li {
		width: 100%;
	}

}


/* ======================================================
   Contents (other page)
  ====================================================== */
/* 188bet体育_188bet备用网址/下位ページ共通 */
body.my-child {
	background-color: var(--rdm-child-bg-color);
}
.child_header .page-title {
	color: var(--rdm-green-color);	/* 2026.3 KAZ */
}
.child_header .page-title .en {
	display: block;
	font-weight: 500;
}
.child_header .page-title :is(.en, .ja) {
	line-height: 1;
}
.child_header .page-title a {
	text-decoration: none;
}
.breadcrumbs_wrapper {
	font-size: 0.875rem;	/* 14px */
	text-align: right;
	opacity: 0.5;
}
.breadcrumbs_wrapper a {
	color: var(--rdm-dark-green-color);
}
.lower-page #content,	/* KAZ: ウェブページ */
.lower-page section .inner,
.child_header, .category_menu {
	width: var(--rdm-wall-width);
	max-width: var(--rdm-max-wall-width);
	margin: 0 auto;
}

/* 記事共通 pagenation etc.  */
.pagenation {
	display: flex;
	justify-content: center;
	gap: 0 10px;
}
.pagenation :is(.pager, a) {
	display: block;
	width: 40px;
	height: 40px;
	color: var(--rdm-dark-green-color);
	font-size: 1.25rem;	/* 20px */
	text-align: center;
	border: solid 1px transparent;
}
.pagenation a {
	text-decoration: none;
}
.pagenation .pager.current {
	color: var(--rdm-green-color);
	border-color: var(--rdm-green-color);
}
.article.single .breadcrumbs_wrapper {
	text-align: left;
}
.entry-nav {
}
.entry-nav .inner {
	width: var(--rdm-wall-width);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 calc((100% - 336px) / 2);	/* (width - 3つnavの合計) / 2 */
	margin: 0 auto;
}
.entry-nav .nav_top {
	text-align: center;
	height: 52px;
	line-height: 52px;
}
.entry-nav .nav_top::after {
	content: none;
}
.entry-nav :is(.nav_prev, .nav_next) {
	position: relative;
	color: var(--rdm-dark-green-color);
	text-decoration: none;
	padding-left: 32px;
}
.entry-nav :is(.nav_prev, .nav_next)::after {
	content: "";
	display: inline-block;
	background: url(/institution/suirlo/rdm/images/ic_nav_prev.svg)no-repeat center /cover;
	width: 12px;
	height: 19px;
	position: absolute;
	left: 0;
	top: 7px;
}
.entry-nav .nav_next {
	padding-left: 0;
	padding-right: 32px;
}
.entry-nav .nav_next::after {
	background-image: url(/institution/suirlo/rdm/images/ic_nav_next.svg);
	left: auto;
	right: 0;
}


/* News Archive */
.category_menu {
	font-weight: 600;	/* SemiBold */
}
.category_menu h3 {
	margin: 0;
}
.category_menu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 20px;
	margin: 0;
}
.category_menu ul li {
	list-style-type: none;
	position: relative;
}
.category_menu ul li a,
.category_menu ul li span.nolink {
	background-color: rgba(132,132,132,0.5);	/* default */
	display: block;
	width: 180px;
	padding: 0 20px 0 50px;
	color: white;
	line-height: 48px;
	text-decoration: none;
}
.category_menu ul li a.all,
.category_menu ul li span.nolink.all {
	/* use default background-color */
}
.category_menu ul li a.information,
.category_menu ul li span.nolink.information {
	background-color: rgba(73,109,82,0.5);
}
.category_menu ul li a.event,
.category_menu ul li span.nolink.event {
	background-color: rgba(48,166,81,0.5);
}
.category_menu ul li a.program,
.category_menu ul li span.nolink.program {
	background-color: rgba(50,143,163,0.5);
}
.category_menu ul li input {
	position: absolute;
	pointer-events: none;	/* これにより <a> タグがクリックされる */
	width: 18px;
	height: 18px;
	top: 16px;
	left: 22px;
}

.news_list {
}
.news_item {
	border-bottom: solid 1px rgba(48, 166, 81, 0.15);
}
.news_info {
}
.news_info a.category {
	display: inline-block;
	color: white;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	background-color: var(--rdm-dark-green-color);
	border-radius: 3px;
	margin-right: 5px;
}
.news_info a.category.event {
	background-color: var(--rdm-green-color);
}
.news_info a.category.program {
	background-color: var(--rdm-teal-color);
}
.news_info .date, .news_ttl a {
	color: var(--rdm-text-color);
	font-weight: 300;
}
.news_info .date {
	display: inline-block;
	vertical-align: -1px;
	margin-left: 10px;
}
.news_ttl a {
	display: block;
	text-decoration: none;
	background: url(/institution/suirlo/rdm/images/arrow_news.svg)no-repeat top 0.8rem right / 24px auto;
}

#my-news .article .inner{
	border-top: solid 1px rgba(48, 166, 81, 0.15);
}
#my-news .article .news_item .news_ttl {
	width: 100%;
}

/* News Single (Single Page共通含)*/
.article.single {
	margin-bottom: 0;
}
#my-news .article.single .inner {
	border-top: 0;
}
.article.single .entry-contents, .entry-nav {
	background-color: white;
}
.article.single .entry-contents h2 {
	font-size: 1.375rem;	/* 22px */
	border-bottom: solid 1px rgba(47, 94, 59, 0.2);
	padding-bottom: 24px;
	margin: 40px 0 28px;
}
.article.single .entry-contents h3 {
	font-size: 1.125rem;	/* 18px */
	line-height: 1.5;
	margin-top: 30px;
	margin-bottom: 0;
}
.article.single .entry-contents ul {
	margin-left: 1.5em;
	margin-bottom: 80px;
}
.article.single .entry-contents ul > li {
	line-height: 2;
}
.article.single .entry-contents p {
	line-height: 2;	/* 16/32 */
	padding-bottom: 10px;
	margin-bottom: 0;
}
.article.single .entry-contents p strong{
	font-weight: 500;
}
.article.single .entry-contents p.example3 {
	position: relative;
	font-weight: 300;
	padding-left: 1rem;
	padding-bottom: 0;
	margin-top: 0;
}
.article.single .entry-contents p:not(.example3) + p.example3,
.article.single .entry-contents :is(table, ul ,ol) + p.example3 {
	border-top: solid 1px rgba(47, 94, 59, 0.2);
	padding-top: 25px;
	margin-top: 16px;
}
.article.single .entry-contents p.example3::before {
	content:"※";
	display: inline-block;
	position: absolute;
	left: 0;
}
.article.single .entry-contents img {
	height: auto !important;
}
.article.single .entry-contents figure {
	margin: 0;
}
.article.single .entry-contents figcaption {
	font-weight: 300;
}
.article.single table {
	width: 100% !important;
	height: auto !important;
}
.article.single table :is(th,td) {
	vertical-align: top;
	padding-bottom: 5px;
}
.article.single table th,
.article.single table td:first-of-type {
	min-width: 60px;
}



/* Voices */
.voices_item {
	background-color: white;
	border-radius: 10px;
}
.voices_detail {
	position: relative;
	padding-left: 33px;
}
.voices_detail::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: calc(100% - 13px);
	background-color: var(--rdm-green-color);
	position: absolute;
	top: 13px;
	bottom: 0;
	left: 0;
}
.voices_detail .voices_ttl {
	font-weight: 500;
	line-height: 1.9230;	/* 26/50 */
}
.voices_detail .name {
	line-height: 1;
	margin: 25px 0 0;
}
.voices_contens {
	font-weight: 300;
	line-height: 2;	/* 18/36 */
}


/* Guidelines */
/*  Archive */
.guidelines_item {
	background-color: white;
	border-radius: 10px;
}
.guidelines_item a {
	display: block;
	color: var(--rdm-dark-green-color);
	text-decoration: none;
	line-height: 1.6;	/* 20/32 */
	background: url(/institution/suirlo/rdm/images/arrow_guidelines.svg)no-repeat center right 32px;
}

/* Single */
.ttl_guidelines {
	font-size: 1.25rem;	/* 20px */
	font-weight: 500;
}
#my-guidelines .article_title {
	margin-top: 10px;
}
#my-guidelines .article.single .entry-contents p {
	line-height: 2;
	margin-bottom: 65px;
}
#my-guidelines .article.single .entry-contents p:last-of-type {
	margin-bottom: 0;
}
.entry_form {
}
.entry_form .linkbtn {
	width: 100%;
	height: 80px;
	line-height: 80px;
	text-align: center;
	background-color: var(--rdm-pale-green-color);
}
.entry_form .linkbtn::after {
	position: relative;
	display: inline-block;
	right: auto;
	top: auto;
	margin-left: 10px;
}

/* Courses */
/* Archive */
#my-courses .guidelines_item a {
	color: var(--rdm-green-color);
	font-weight: 600;
}
#my-courses .guidelines_item .en {
	margin-left: 5px;
}
#my-courses .guidelines_item .courses_title {
	color: var(--rdm-dark-green-color);
	font-weight: 500;
}

/* Single */
#my-courses .article.single {
	width: var(--rdm-wall-width);
	margin: 0 auto;
}
#my-courses .article.single .entry-contents,
#my-courses .entry-nav {
	background-color: transparent;
}
#my-courses .article.single .entry-contents {
	padding-top: 0;
}
#my-courses .article_title {
	color: var(--rdm-green-color);
	font-weight: 600;
}
#my-courses .article_title .courses_title {
	color: var(--rdm-dark-green-color);
	font-weight: 500;
}
#my-courses .article.single .entry-contents .inner {
	display: flex;
}
#my-courses .article.single .entry-contents .sidebar .photo {
	overflow: hidden;
}
#my-courses .article.single .entry-contents .sidebar .photo img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 10px;
}
#my-courses .article.single .entry-contents .sidebar p {
	line-height: 1;
}
#my-courses .article.single .entry-contents .sidebar .incharge {
	font-weight: 600;
}
#my-courses .article.single .entry-contents .sidebar p:not(.incharge) {
	font-weight: 500;
	margin-top: 5px;
}
#my-courses .article.single .entry-contents .sidebar .linkbtn {
	font-size: 1rem;	/* 16px */
}
#my-courses .article.single .entry-contents .sidebar .linkbtn::after {
	position:relative;
	display: inline-block;
	background: url(/institution/suirlo/rdm/images/ic_ex_white.svg) no-repeat center / 100% auto;
	width: 9px;
	height: 9px;
	top: 0;
	right: auto;
	margin-left: 10px;
}
#my-courses .article.single .entry-contents .contents {
	background-color: white;
	border-radius: 10px;
}
#my-courses .article.single .entry-contents h2 {
	font-size: 1.625rem;	/* 26px */
	font-weight: 500;
}
#my-courses .article.single .entry-contents h2:not(:first-of-type) {
	margin-top: 77px;
}
#my-courses .article.single .entry-contents p strong {
	display: inline-block;
	min-width: 75px;
}


/* PC ------------------------------------------------- */
@media print, screen and (min-width: 768px) {

	/* Contents Page Common */
	body.my-child {
		
	}
	.lower-page {
		padding-top: 130px;
	}
	.lower-page .child_header {
		padding-top: 105px;
		margin-bottom: 50px;
	}
	.child_header .page-title {
	}
	.child_header .page-title .en {
		font-size: 4.375rem;	/* 70px */
		margin-bottom: 25px;
	}
	.child_header .page-title .ja {
		font-size: 1.875rem;	/* 30px */
	}
	.breadcrumbs_wrapper {
		margin-top: 65px;
	}

	@media screen and (max-width: 1255.9px) {
		.lower-page {
			padding-top: 63px;
		}
	}

	/* 記事共通 pagenation etc. */
	.article {
		margin-bottom: 80px;
	}
	.article.single .entry-header {
		padding-top: 105px;
		padding-bottom: 40px;
	}
	.article.single .inner {
		max-width: var(--rdm-news-wall-width);
	}
	.pagenation {
		margin-bottom: 150px;
	}
	.entry-nav {
		padding-top: 90px;
		padding-bottom: 150px;
	}
	.entry-nav .inner {
		max-width: var(--rdm-news-wall-width);
	}
	.entry-nav .nav_top {
	}
	.entry-nav :is(.nav_prev, .nav_next) {
		font-size: 1.125rem;	/* 18px */
	}

	/* News Archive */
	.category_menu {
		margin-bottom: 80px;
	}
	.category_menu h3 {
		float: left;
		font-size: 1.375rem;	/* 22px */
		line-height: 48px;
	}
	.category_menu ul {
		margin-left: 150px;
	}
	.category_menu ul li {
	}
	.category_menu ul li a,
	.category_menu ul li span.nolink {
	}

	.news_item {
		padding-top: 35px;
	}
	.news_item:first-of-type {
/*		padding-top: 7px; Aki c/o from chkHTML */
	}
	.news_info {
		margin-bottom: 17px;
	}
	.news_info a.category {
		min-width: 100px;
		font-size: 0.875rem;	/* 14px */
		padding: 5px;
	}
	.news_info .date, .news_ttl a {
		font-size: 1.125rem;	/* 18px */
	}
	.news_ttl a {
		padding-right: 50px;
		padding-bottom: 25px;
	}

	#my-news .article .news_item {
		display: flex;
		gap: 0 30px;
	}
	#my-news .article .news_item .news_info {
		flex-shrink: 0;
	}
	#my-news .article :is(.date, .news_ttl a) {
		font-size: 1.25rem;
	}
	#my-news .article .news_item .news_ttl {
		margin-top: 0;
	}

	/* News Single */
	#my-news .article.single .entry-header .news_info a {
		font-size: 0.75rem;	/* 12px */
	}
	#my-news .article.single .entry-header .news_info .date {
		font-size: 1.25rem;	/* 20px */
	}
	.article_title {
		font-size: 2.375rem;	/* 38px */
	}
	.article.single .entry-contents {
		padding-top: 65px;
	}
	#my-news .article.single .entry-contents p{
		margin-top: 30px;
	}
	.article.single .entry-contents figure {
		margin: 45px 0;
	}


	/* Voices */
	.voices_item {
		margin-bottom: 100px;
	}
	.voices_item .inner {
		max-width: var(--rdm-semi-wall-width) !important;
		display: flex;
		align-items: flex-start;
		padding: 90px 0;
	}
	.voices_detail {
		flex-shrink: 0;
		width: 44%;
		padding-right: 90px;
	}
	.voices_detail .voices_ttl {
		font-size: 1.625rem;	/* 26px */
	}
	.voices_detail .name {
	}
	.voices_contens {
		font-size: 1.125rem;	/* 18px */
	}


	/* Guidelines */
	/*  Archive */
	.guidelines_item {
		margin-bottom: 40px;
	}
	.guidelines_item a {
		font-size: 1.25rem;	/* 20px */
		padding: 41px 80px 41px;
	}

	/* Single */
	.ttl_guidelines {
		margin-top: 20px;
	}
	.entry_form {
		margin-top: 86px;
	}
	.entry_form + .entry_form {
		margin-top: 40px;
	}
	.entry_form .linkbtn {
	}


	/* Courses */
	/* Archive */
	#my-courses .guidelines_item a {
		font-size: 1.4375rem;	/* 23px */
		padding: 20px 80px 15px 41px;
	}
	#my-courses .guidelines_item a .en {
		font-size: 1.625rem;	/* 26px */
	}
	#my-courses .guidelines_item a .courses_title {
		font-size: 1.25rem;	/* 20px */
		margin-left: 49px;
	}

	/* Single */
	#my-courses .article.single .inner,
	#my-courses .entry-nav .inner {
		max-width: var(--rdm-max-wall-width);
	}
	#my-courses .article.single {
		position:relative;
		max-width: var(--rdm-max-wall-width);
	}
	#my-courses .article_title {
		max-width: calc(100% - 350px);
	}
	#my-courses .article_title .en {
	}
	#my-courses .article_title .courses_title {
		margin-left: 50px;
	}
	#my-courses .article.single .entry-contents {
	}
	#my-courses .article.single .entry-contents .inner {
	}
	#my-courses .article.single .entry-contents .contents {
		width: calc(100% - 350px);
		padding: 0 50px 49px;
		margin-top: 15px;
	}
	#my-courses .article.single .entry-contents .sidebar {
		min-width: 255px;
		position: absolute;
		top: 145px;
		right: 0;
	}
	#my-courses .article.single .entry-contents .sidebar .photo {
		width: 255px;
		height: 255px;
	}
	#my-courses .article.single .entry-contents .sidebar .incharge {
		margin-top: 40px;
	}
	#my-courses .article.single .entry-contents .sidebar p:not(.incharge) {
		font-size: 1.5rem;	/* 24px */
	}
	#my-courses .article.single .entry-contents .sidebar .courses_link {
		margin-top: 27px;
	}
	#my-courses .article.single .entry-contents .sidebar .linkbtn {
	}


	@media (any-hover: hover) {
		.pagenation a:hover {
			color: var(--rdm-green-color);
			border: solid 1px var(--rdm-green-color);
		}
		.news_info a.category:hover {
			opacity: 0.8;
		}
		.news_ttl a:hover {
			text-decoration: underline;
		}
		.entry-nav .nav_top:hover::after {
			content: none;
		}
		#my-courses .article.single .entry-contents .sidebar .linkbtn:hover::after {
			background-image: url(/institution/suirlo/rdm/images/ic_ex.svg);
		}
	}


}

@media print, screen and (max-width: 1100px) {	/* special breakpoint for Courses Single Page */
	#my-courses .article_title {
		max-width: 100%;
	}
	#my-courses .article.single .entry-contents .inner {
		flex-direction: column;
	}
	#my-courses .article.single .entry-contents .contents {
		width: 100%;
		order: 2;
	}
	#my-courses .article.single .entry-contents .sidebar {
		position: relative;
		order: 1;
		top: 0;
		right: auto;
	}
	#my-courses .article.single .entry-contents .sidebar .photo {
		float: right;
	}
	#my-courses .article.single .entry-contents .sidebar .text {
	}
}


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

	.lower-page #content, .lower-page section .inner, .child_header, .category_menu {
	}
	.lower-page {
		padding-top: 70px;
	}
	.lower-page .child_header {
		padding-top: 53px;	/* KAZ: was 30px */
		margin-bottom: 50px;
	}
	.child_header .page-title {
		margin: 0 0 50px;	/* KAZ */
		line-height: 1.2;	/* KAZ */
	}
	.child_header .page-title .en {
		font-size: 3.125rem;	/* 50px; KAZ */
		line-height: 1.2;	/* 60px; KAZ */
	}
	.child_header .page-title .ja {
		font-size: 1.25rem;	/* 20px; KAZ */
	}
	.breadcrumbs_wrapper {
		font-size: 0.75rem;	/* 12px */
	}


	/* 記事共通 pagenation etc. */
	.article {
		margin-bottom: 50px;
	}
	.article.single .entry-header {
		padding-top: 40px;
		padding-bottom: 20px;
	}
	.article.single .entry-contents p.example3 {
		font-size: 0.875rem;	/* 14px */
	}
	.pagenation {
		margin-bottom: 50px;
	}
	.entry-nav {
		padding: 50px 0;
	}
	.entry-nav .inner {
		gap: 0 calc((100% - 224px) / 2);
	}
	.entry-nav .nav_top {
		width: 120px;
		padding-inline: 10px;
	}
	.entry-nav .nav_prev {
		padding-left: 20px;
	}
	.entry-nav .nav_next {
		padding-right: 20px;
	}

	/* News Archive */
	.category_menu {
		margin-bottom: 40px;
	}
	.category_menu h3 {
		margin-bottom: 12px;
		font-size: 1.125rem;	/* 18px */
	}
	.category_menu ul {
	}
	.category_menu ul li {
		max-width: calc(50% - 10px);
	}
	.category_menu ul li a,
	.category_menu ul li span.nolink {
		max-width: 100%;
	}

	.news_item {
		padding: 20px 0 7px;
	}
	.news_item:first-of-type {
	}
	.news_info  {
		margin-bottom: 10px;
	}
	.news_info a.category {
		min-width: 81px;
		font-size: 0.75rem;	/* 12px */
		padding: 2px 5px;
	}
	.news_info .date, .news_ttl a {
		font-size: 0.875rem;	/* 14px */
	}
	.news_ttl a {
		background-position: center right;
		background-size: 17px auto;
		padding-right: 30px;
	}

	/* News Single */
	.article_title {
		font-size: 1.25rem;
	}
	.article.single .entry-contents {
		padding-top: 10px;
	}
	.article.single .entry-contents img {
		margin-bottom: 10px !important;
	}
	.article.single .entry-contents figcaption {
		font-size: 0.75rem;	/* 12px */
	}


	/* Voices */
	.voices_item {
		margin-bottom: 50px;
	}
	.voices_item .inner {
		padding: 20px 0;
	}
	.voices_detail {
		margin-bottom: 20px;
	}
	.voices_detail .voices_ttl {
		font-size: 1.125rem;	/* 18px */
	}
	.voices_detail .name {
		margin-top: 10px;
	}
	.voices_detail::before {
		height: calc(100% - 9px);
		top: 9px;
	}
	.voices_contens {
	}


	/* Guidelines */
	/*  Archive */
	.guidelines_item {
		margin-bottom: 20px;
	}
	.guidelines_item a {
		font-size: 1.125rem;	/* 18px */
		background-position: center right 15px;
		background-size: 20px auto;
		padding: 20px 50px 20px 20px;
	}

	/* Single */
	.ttl_guidelines {
	}
	.entry-contents h2 {
	}
	.entry-contents p {
	}
	.entry-contents ul {
	}
	.entry-contents ul > li {
	}
	.entry_form + .entry_form {
		margin-top: 20px;
	}
	.entry_form {
	}
	.entry_form .linkbtn {
	}
	:is(#my-guidelines, #my-courses) .entry-nav .inner {	/* 2026.3 Aki added from chkHTML */
		justify-content: center;
	}
	:is(#my-guidelines, #my-courses) .entry-nav .nav_top {
		width: 210px;
	}


	/* Courses */
	/* Archive */
	#my-courses .guidelines_item a {
	}
	#my-courses .guidelines_item a .courses_title {
		display: block;
	}

	/* Single */
	#my-courses .article.single {
		width: 100%;
	}
	#my-courses .article.single .entry-header {
		padding-top: 28px;
	}
	#my-courses .article_title {
		font-size: 1.6875rem;	/* 27px */
		margin-bottom: 37px;
	}
	#my-courses .article_title .en {
		font-size: 1.8125rem;	/* 29px */
	}
	#my-courses .article_title .courses_title {
		display: block;
		font-size: 1.75rem;	/* 28px */
		line-height: 1;
	}
	#my-courses .article.single .entry-contents {
		padding-top: 28px;
	}
	#my-courses .article.single .entry-contents .inner {
	}
	#my-courses .article.single .entry-contents .contents {
		padding: 0 18px 40px;
		margin-top: 51px;
	}
	#my-courses .article.single .entry-contents h2:not(:first-of-type) {
		margin-top: 50px;
	}
	#my-courses .article.single .entry-contents .sidebar {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	#my-courses .article.single .entry-contents .sidebar .photo {
		float: none;
		width: 35.2238%;	/* 118/335 */
		order: 2;
	}
	#my-courses .article.single .entry-contents .sidebar .text {
		order: 1;
	}
	#my-courses .article.single .entry-contents .sidebar .incharge {
		font-size: 0.875rem;	/* 14px */
	}
	#my-courses .article.single .entry-contents .sidebar p:not(.incharge) {
		font-size: 1.125rem;	/* 18px */
	}
	#my-courses .article.single .entry-contents .sidebar .courses_link {
		clear: both;
		flex-basis: 100%;
		order: 3;
		margin-top: 5px;
	}
	#my-courses .article.single .entry-contents .sidebar .linkbtn {
		width: 100%;
		text-align: center;
	}



}


/* プログラム概要 */
#my-program #content {
}
ul#program_menu {
	display: flex;
}
ul#program_menu li {
	list-style-type: none;
}
ul#program_menu li a {
	border-bottom: rgb(48,166,81,0.5) 1px solid;
	display: block;
	position: relative;
	line-height: 1.5;
	text-decoration: none;
}
ul#program_menu li a::after {
	content: '';
	background: url(/institution/suirlo/rdm/images/arrowhead_down_green.svg) no-repeat center;
	position: absolute;
	width: 14px;
	height: 9px;
	top: calc(50% - 4px);
	right: 0;
}
#my-program #content > section {
	background-color: white;
	border-radius: 10px;
}
#my-program section h2 {
	color: var(--rdm-green-color);
	font-weight: 600;	/* SemiBold */
	line-height: 1.5;
}
#my-program section h2 span {
	display: block;
}
#my-program section h2 span.en {
}
#my-program section h2 span.ja {
}
#my-program section p,
#my-program section ul,
#my-program section ol {
	margin-top: 0;
}
#program_process {
}
#program_process .subsection:not(:last-child) {
	position: relative;
}
#program_process .subsection:not(:last-child)::after {
	content: '';
	background: url(/institution/suirlo/rdm/images/triangle_down_light_green.svg) no-repeat center / contain;
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
}
#program_process h3 {
	border-bottom: 1px solid;
	font-weight: 600;	/* SemiBold */
	line-height: 1.25;
}
#program_process h3 span {
	vertical-align: middle;
}
#program_process h3 span.number {
	display: inline-block;
}
#program_process .pcleft {
}
#program_process .pcleft p,
#program_process .pcleft ul,
#program_process .pcleft ol {
	line-height: 2;
}
#program_process .pcleft p:last-child,
#program_process .pcleft ul:last-child,
#program_process .pcleft ol:last-child {
	margin-bottom: 0;
}
#program_process .pcleft p.descr {
	font-weight: 500;	/* Medium */
}
#program_process .pcleft p.descr.nomargin {
	margin: 0;
}
#program_process .pcleft p.note,
#program_related .sub1 .pcright .promotion p.note {
	padding-left: 1em;
	font-weight: 300;	/* Light */
}
#program_process .pcleft p.note::before,
#program_related .sub1 .pcright .promotion p.note::before {
	content: '※';
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}
#program_process .pcleft h4,
#program_process .pcleft h5 {
	color: var(--rdm-green-color);
}
#program_process .pcleft h4.lined span.text,
#program_process .pcleft h5.lined span.text {
	border-bottom: 1px solid;
	display: inline-block;
	padding-bottom: 3px;
}
#program_process .sub1 .pcleft h5 {
	font-size: 1rem;	/* 16px */
}
#program_process .pcleft ul.maru {
}
#program_process .pcleft ul.maru li,
#program_related ul.maru li {
	list-style-type: none;
}
#program_process .pcleft ul.maru li::before,
#program_related ul.maru li::before {
	display: inline-block;
}
#program_process .pcleft ul.maru li::before {
	content: '●';
}
@counter-style decimal-only {
	system: extends decimal;
	suffix: "";
}
#program_process .pcleft ol {
	margin-left: 9px;
}
#program_process .pcleft ol li {
	list-style-type: decimal-only;
	padding-left: 10px;
}
#program_process .pcleft ol li:not(:last-child) {
	margin-bottom: 2em;
}
#program_process .pcleft ol li::marker {
	font-weight: 500;	/* Medium */
}
#program_process .pcright {
}
#program_process .pcright figure {
	margin: 0;
}
#program_process .pcright figure img {
	vertical-align: top;
}
#program_process .pcright figure figcaption {
	line-height: 1.7143;	/* 24 / 14 */
	text-align: center;
}
#program_capacity {
}
#program_capacity .lvpair {
	border-top: rgba(47,94,59,0.2) 1px solid;
}
#program_capacity .lvpair:last-child {
	border-bottom: rgba(47,94,59,0.2) 1px solid;
}
#program_capacity .lvpair .label {
	font-weight: 500;	/* Medium */
}
#program_capacity .lvpair .value {
}
#program_capacity .lvpair .value span.note {
	font-weight: 300;	/* Light */
}
#program_operation {
}
#program_curriculum {
}
#program_curriculum .chart,
#program_related .chart {
	overflow-x: auto;
}
#program_curriculum .chart::-webkit-scrollbar,
#program_related .chart::-webkit-scrollbar {	/* Chromium */
	background-color: #bfd5c5;
	width: 5px;
	height: 5px;
}
#program_curriculum .chart::-webkit-scrollbar-thumb,
#program_related .chart::-webkit-scrollbar-thumb {	/* Chromium */
	background-color: var(--rdm-green-color);
}
_::-webkit-full-page-media, _:future, :root #program_curriculum .chart, :root #program_related .chart {	/* Safari */
	scrollbar-color: var(--rdm-green-color) #bfd5c5;
	scrollbar-width: thin;
	padding-bottom: 10px;
}
@-moz-document url-prefix() {	/* Firefox */
	#program_curriculum .chart,
	#program_related .chart {
		scrollbar-color: var(--rdm-green-color) #bfd5c5;
		scrollbar-width: thin;
		padding-bottom: 10px;
	}
}
#program_curriculum .chart img {
	min-width: 716px;
}
#program_curriculum .btn_line {
}
#program_related {
}
#program_related h3 {
	margin-top: 0;
	font-weight: 600;	/* SemiBold */
}
#program_related ul.maru li::before {
	content: '○';
}
#program_related .sub1 ul.maru li,
#program_related .sub2 .descr {
	font-weight: 500;	/* Medium */
}
#program_related .sub1 .pcright .incentive {
	background-color: #e1ebf2;
	border-radius: 5px;
	padding: 14px 0.5em;
	color: #038be0;
	font-weight: 500;	/* Medium */
	line-height: 1.5;
	text-align: center;
}
#program_related .sub1 .pcright .promotion {
	border-radius: 5px;
}
#program_related .sub1 .pcright .promotion .heading {
	margin-bottom: 9px;
	font-size: 1.375rem;	/* 22px */
	font-weight: 600;	/* SemiBold */
}
#program_related .sub1 .pcright .promotion p,
#program_related .sub1 .pcright .promotion ul.bullet li {
	line-height: 1.75;	/* 28px */
}
#program_related .sub1 .pcright .promotion p {
	margin-bottom: 0;
}
#program_related .sub1 .pcright .promotion ul.bullet {
	margin-top: 8px;
	margin-bottom: 10px;
}
#program_related .sub1 .pcright .promotion ul.bullet li {
	list-style-type: none;
	padding-left: 1em;
	font-weight: 500;	/* Medium */
}
#program_related .sub1 .pcright .promotion ul.bullet li::before {
	content: '?';
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}
#program_related .sub1 .pcright .promotion ul.bullet li span.normal {
	font-weight: normal;
}
#program_related .sub1 .pcright .promotion p.note {
}
#program_related .sub1 .pcright .promotion p.note.small {
	margin-top: 4px;
	margin-bottom: 27px;
	font-size: 0.875rem;	/* 14px */
	line-height: 1.7143;	/* 24px */
}
#program_related .sub2 .descr {
}
#program_related .sub2 .point {
	color: var(--rdm-green-color);
}
#program_related .sub2 .point .heading {
	font-size: 1.125rem;	/* 18px */
	font-weight: 600;	/* SemiBold */
}
#program_related .sub2 .point ul.maru li {
	font-weight: 500;	/* Medium */
}
#program_faq {
}
#program_faq .faq {
	border-top: rgba(47,94,59,0.2) 1px solid;
	line-height: 2;
}
#program_faq .faq details {
	border-bottom: rgba(47,94,59,0.2) 1px solid;
}
#program_faq .faq details summary {
	position: relative;
}
#program_faq .faq details summary::marker {	/* Chromium */
	content: '';
}
#program_faq .faq details summary::-webkit-details-marker {	/* Safari */
	display: none;
}
#program_faq .faq details summary span,
#program_faq .faq details .answer span {
	display: block;
}
#program_faq .faq details summary span.letter,
#program_faq .faq details .answer span.letter {
	font-size: 1.875rem;	/* 30px */
	font-weight: 600;	/* SemiBold */
}
#program_faq .faq details summary span.letter {
	color: var(--rdm-green-color);
}
#program_faq .faq details summary span.text {
	font-weight: 600;	/* SemiBold */
}
#program_faq .faq details summary::after {
	content: '';
	background: url(/institution/suirlo/rdm/images/ic_plus.svg) no-repeat center;
	position: absolute;
	width: 25px;
	height: 25px;
	right: 0;
}
#program_faq .faq details[open] summary::after {
	background-image: url(/institution/suirlo/rdm/images/ic_minus.svg);
}
#program_faq .faq details .answer {
	opacity: 0.8;
}
#program_faq .faq details .answer span.letter {
	opacity: 0.625;	/* 0.5 / 0.8 */
}
#program_faq .faq details .answer span.text {
}


/* PC ------------------------------------------------- */
@media print, screen and (min-width: 768px) {

	#my-program #content {
		padding-top: 25px;
		padding-bottom: 150px;
	}
	ul#program_menu {
		flex-wrap: wrap;
		gap: 18px 6.25%;	/* 75 / 1200 */
		margin-bottom: 150px;
	}
	ul#program_menu li {
		width: 29.1667%;	/* 350 / 1200 */
	}
	ul#program_menu li a {
		padding-block: 18px;
		font-size: 1.25rem;	/* 20px */
	}
	#my-program #content > section {
		margin-top: 100px;
		padding: 100px 8.3333%;	/* 100 / 1200 */
	}
	#my-program section h2 {
		margin-bottom: 80px;
	}
	#my-program section h2 span {
	}
	#my-program section h2 span.en {
		margin-bottom: 5px;
		font-size: 1.125rem;	/* 18px */
	}
	#my-program section h2 span.ja {
		font-size: 2.5rem;	/* 40px */
	}
	#program_process {
	}
	#program_process .subsection {
		overflow: hidden;
	}
	#program_process .subsection:not(:last-child) {
		padding-bottom: 75px;
	}
	#program_process .subsection:not(:last-child)::after {
		height: 25px;
	}
	#program_process h3 {
		margin-top: 50px;
		margin-bottom: 49px;
		padding-bottom: 46px;
		font-size: 1.75rem;	/* 28px */
	}
	#program_process h3 span.number {
		width: 80px;
		font-size: 2.1875rem;	/* 35px */
	}
	#program_process .pcleft {
		clear: left;
		float: left;
		width: 43.8%;	/* 438 / 1000 */
	}
	#program_process .pcright + .pcleft {
		margin-top: 36px;
	}
	#program_process .pcleft p,
	#program_process .pcleft ul,
	#program_process .pcleft ol {
	}
	#program_process .pcleft p.descr {
	}
	#program_process .pcleft p.descr.large {
		margin-bottom: -5px;
		font-size: 1.125rem;	/* 18px */
	}
	#program_process .pcleft p.note {
	}
	#program_process .pcleft h4.lined,
	#program_process .pcleft h5.lined {
		margin-top: 20px;
		margin-bottom: 14px;
	}
	#program_process .pcleft ul.maru {
	}
	#program_process .sub1 .pcleft h4 {
		margin-top: 0;
		margin-bottom: 16px;
		font-size: 1.25rem;	/* 20px */
	}
	#program_process .sub1 .pcleft ul.maru {
		margin-top: 18px;
		margin-bottom: 0;	/* KAZ: was 2em */
	}
	#program_process .pcleft ul.maru li,
	#program_related ul.maru li {
		padding-left: 1.25em;
	}
	#program_process .pcleft ul.maru li::before,
	#program_related ul.maru li::before {
		width: 1.25em;
		margin-left: -1.25em;
	}
	#program_process .pcleft ol {
	}
	#program_process .pcleft ol li {
	}
	#program_process .pcright {
		margin-left: 50%;
	}
	#program_process .pcright figure figcaption {
		margin-top: 13px;
	}
	#program_capacity {
	}
	#program_capacity .lvpair {
		display: flex;
		align-items: center;
	}
	#program_capacity .lvpair .label,
	#program_capacity .lvpair .value {
		padding-block: 39px;
	}
	#program_capacity .lvpair .label {
		width: 28%;	/* 280 / 1000 */
	}
	#program_capacity .lvpair .value {
		position: relative;
		width: 72%;	/* 720 / 1000 */
		padding-left: 4.7%;	/* 47 / 1000 */
	}
	#program_capacity .lvpair .value::before {
		content: '';
		background-color: var(--rdm-text-color);
		position: absolute;
		width: 1px;
		height: calc(100% - 88px);
		top: 44px;
		left: 0;
	}
	#program_operation {
	}
	#program_curriculum {
	}
	#program_curriculum .chart {
/*		margin-inline: -10%; */	/* 100 / 1000 */
/*		padding-inline: 10%; */
/*		scroll-padding-inline: 10%; */
	}
	#program_curriculum .btn_line,
	#program_related .btn_line {
		margin-top: 50px;
	}
	#program_curriculum .btn_line .linkbtn,
	#program_related .btn_line .linkbtn {
		width: 255px;
	}
	#program_related {
	}
	#program_related .sub1 {
		margin-bottom: 74px;
	}
	#program_related h3 {
		margin-bottom: 10px;
		font-size: 1.6875rem;	/* 27px */
		line-height: 1.9259;	/* 52px */
	}
	#program_related .sub1 ul.maru {
		margin-bottom: 27px;
	}
	#program_related .sub1 ul.maru li,
	#program_related .sub2 .descr {
		font-size: 1.125rem;	/* 18px */
		line-height: 1.7778;	/* 32px */
	}
	#program_related .sub1 .float_wrapper {
		background-color: #eff7f2;
		overflow: hidden;
	}
	#program_related .sub1 .pcleft {
		float: left;
		width: 70%;	/* 700 / 1000 */
	}
	#program_related .sub1 .pcright {
		margin-left: 70%;
		padding-block: 25px;
		padding-right: 2.5%;	/* 25 / 1000 */
	}
	#program_related .sub1 .pcright .incentive {
		margin-bottom: 12px;
	}
	#program_related .sub1 .pcright .promotion {
		background-color: white;
		padding: 32px 12.6667%;	/* 38 / 300 */
	}
	#program_related .sub1 .btn_line {
	}
	#program_related .sub2 .descr {
		margin-bottom: 14px;
	}
	#program_related .sub2 .point {
		display: flex;
		align-items: center;
		margin-bottom: 28px;
	}
	#program_related .sub2 .point .heading {
		width: 72px;
		padding-bottom: 10px;
	}
	#program_related .sub2 .point ul.maru {
		flex-grow: 1;
	}
	#program_related .sub2 .point ul.maru li {
/*		font-size: 1rem; */	/* 16px */
		line-height: 1.75;	/* 28px */
	}
	#program_faq {
	}
	#program_faq .faq {
	}
	#program_faq .faq details {
	}
	#program_faq .faq details summary,
	#program_faq .faq details .answer {
		display: flex;
	}
	#program_faq .faq details summary {
		padding-block: 38px;
	}
	#program_faq .faq details summary span.letter,
	#program_faq .faq details .answer span.letter {
		flex-shrink: 0;
		width: 50px;
	}
	#program_faq .faq details summary span.letter {
		line-height: 40px;
	}
	#program_faq .faq details summary span.text,
	#program_faq .faq details .answer span.text {
		flex-grow: 1;
		padding-right: 45px;
	}
	#program_faq .faq details summary span.text {
		font-size: 1.25rem;	/* 20px */
	}
	#program_faq .faq details summary::after {
		top: 46px;
	}
	#program_faq .faq details .answer {
		margin-top: -5px;
		padding-bottom: 38px;
	}
	#program_faq .faq details .answer span.letter {
		line-height: 36px;
	}
	#program_faq .faq details .answer span.text {
		font-size: 1.125rem;	/* 18px */
	}

}
@media print, screen and (max-width: 1199px) {	/* special breakpoint for ul#program_menu */
	ul#program_menu {
		gap: 18px 8%;	/* 80 / 1000 */
	}
	ul#program_menu li {
		width: 46%;	/* 460 / 1000 */
	}
}

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

	#my-program #content {
		margin-top: -21px;
		padding-bottom: 100px;
	}
	ul#program_menu {
		flex-direction: column;
		gap: 0;
	}
	ul#program_menu li {
		width: 100%;
	}
	ul#program_menu li a {
		padding-block: 21px;
/*		font-size: 1rem; */
	}
	#my-program #content > section {
		margin-top: 50px;
		padding: 40px 5.2239%;	/* 17.5 / 335 */
	}
	#my-program section h2 {
		margin-bottom: 40px;
	}
	#my-program section h2 span {
	}
	#my-program section h2 span.en {
		margin-bottom: 3px;
		font-size: 0.875rem;	/* 14px */
	}
	#my-program section h2 span.ja {
		font-size: 1.6875rem;	/* 27px */
	}
	#program_process {
	}
	#program_process .subsection:not(:last-child) {
		padding-bottom: 60px;
	}
	#program_process .subsection:not(:last-child)::after {
		height: 20px;
	}
	#program_process h3 {
		margin-top: 40px;
		margin-bottom: 19px;
		padding-bottom: 19px;
		font-size: 1.25rem;	/* 20px */
	}
	#program_process h3 span.number {
		width: 50px;
		font-size: 1.5625rem;	/* 25px */
	}
	#program_process .pcleft {
		margin-bottom: 36px;
	}
	#program_process .pcright + .pcleft {
		margin-top: 40px;
	}
	#program_process .pcleft p,
	#program_process .pcleft ul,
	#program_process .pcleft ol,
	#program_process .pcright figure figcaption {
		font-size: 0.875rem;	/* 14px */
	}
	#program_process .pcleft p,
	#program_process .pcleft ul,
	#program_process .pcleft ol {
/*		margin-bottom: ; */
	}
	#program_process .pcleft p.descr {
		font-size: 1rem;	/* 16px */
	}
	#program_process .pcleft p.note {
	}
	#program_process .pcleft p.note.large {
		font-size: 1rem;	/* 16px */
	}
	#program_process .pcleft h4.lined,
	#program_process .pcleft h5.lined {
	}
	#program_process .pcleft ul.maru {
	}
	#program_process .sub1 .pcleft h4 {
		margin-top: 0;
		margin-bottom: 18px;
		font-size: 1.125rem;	/* 18px */
		line-height: 1.6667;	/* 30px */
	}
	#program_process .sub1 .pcleft ul.maru {
/*		margin-top: 18px; */
		margin-bottom: 12px;
	}
	#program_process .pcleft ul.maru li,
	#program_related ul.maru li {
		padding-left: 23px;
	}
	#program_process .pcleft ul.maru li::before,
	#program_related ul.maru li::before {
		width: 23px;
		margin-left: -23px;
	}
	#program_process .pcleft ol {
	}
	#program_process .pcleft ol li {
	}
	#program_process .pcright {
	}
	#program_process .pcright figure figcaption {
		max-width: 230px;
		margin-top: 7px;
		margin-inline: auto;
	}
	#program_capacity {
	}
	#program_capacity .lvpair {
	}
	#program_capacity .lvpair .label {
		margin-bottom: 5px;
		padding-top: 24px;
	}
	#program_capacity .lvpair .value {
		padding-bottom: 24px;
	}
	#program_capacity .lvpair .value span.note {
		display: block;
	}
	#program_operation {
	}
	#program_curriculum {
	}
	#program_curriculum .chart {
/*		margin-inline: -5.8333%; */	/* 17.5 / 300 */
/*		padding-inline: 5.8333%; */
/*		scroll-padding-inline: 5.8333%; */
	}
	#program_curriculum .btn_line,
	#program_related .btn_line {
		margin-top: 23px;
	}
	#program_curriculum .btn_line .linkbtn {
		width: 216px;
	}
	#program_related {
	}
	#program_related .sub1 {
		margin-bottom: 40px;
	}
	#program_related h3 {
		margin-bottom: 18px;
		font-size: 1.25rem;	/* 20px */
		line-height: 1.5;	/* 30px */
	}
	#program_related .sub1 ul.maru {
		margin-bottom: 19px;
	}
	#program_related .sub1 ul.maru li,
	#program_related .sub2 .descr {
/*		font-size: 1rem; */	/* 16px */
		line-height: 1.75;	/* 28px */
	}
	#program_related .sub1 .pcleft {
		margin-bottom: 21px;
	}
	#program_related .sub1 .pcleft .chart1 img {
		min-width: 470px;
	}
	#program_related .sub1 .pcright .incentive {
		display: none;
	}
	#program_related .sub1 .pcright .promotion {
		background-color: #eff7f2;
		padding: 24px 8% 28px;	/* 24 / 300 */
	}
	#program_related .sub1 .btn_line .linkbtn {
		width: 220px;
	}
	#program_related .sub2 .descr {
		margin-bottom: 20px;
	}
	#program_related .sub2 .point {
		margin-bottom: 39px;
	}
	#program_related .sub2 .point .heading {
		margin-bottom: 10px;
	}
	#program_related .sub2 .point ul.maru li {
		font-size: 0.875rem;	/* 14px */
		line-height: 1.8571;	/* 26px */
	}
	#program_related .sub2 .chart2 img {
		min-width: 633px;
	}
	#program_faq {
	}
	#program_faq .faq {
	}
	#program_faq .faq details {
	}
	#program_faq .faq details summary {
		display: block;
		padding-top: 30px;
		padding-bottom: 35px;
	}
	#program_faq .faq details summary span.text {
/*		font-size: 1rem; */	/* 16px */
	}
	#program_faq .faq details summary::after {
		top: 48px;
	}
	#program_faq .faq details .answer {
		margin-top: -30px;
		padding-bottom: 35px;
	}
	#program_faq .faq details .answer span.text {
		font-size: 0.875rem;	/* 14px */
	}

}



/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */ 
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

/* =============================================================================
   Print styles.
   Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
   ============================================================================= */

@media print {
/*	a, a:visited { color: #444 !important; text-decoration: underline; } */	/* JAN-2019 KAZ: c/o */
	thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
	tr, img { page-break-inside: avoid; }
	img { max-width: 100% !important; }
	@page { margin: 0.5cm; }
	h2, h3 { page-break-after: avoid; }

	body { min-width: 1280px; }
	#masthead { position: absolute; }
}
