﻿@charset "UTF-8";

/*********************************
preset variables
*********************************/
:root {
	/* color preset */
	--color1: #FB5607;
	--color2: #3A86FF;
	--color3: #3DCC00;
	--color4: #fee440;
	--color5: #ffa500;
	--bgColor: #e9f8fd;
	--linkColor: #00429a;
	--useColor: var(--color1);
	/* width preset */
	--gutter: 1.3rem;
	--gap: 3rem;
	--headerHeight: ;
	--contentWidth: 1200px;
}

/* OVERWRITE RADIX */
body {
	min-width: var(--contentWidth);
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.centering {
	width: var(--contentWidth);
	max-width: var(--contentWidth);
}

.btn {
	background: var(--color4);
	color: #333;
}

a {
	color: var(--linkColor);
}

/* OVERWRITE end */
/*************************************
* START head
*************************************/
.head {
	margin: 0 0 50px;
}

.head h2 {
	text-align: center;
	color: #fd7e09;
	font-size: 1.7rem;
	font-weight: 900;
}

/*************************************
* START header
*************************************/
header.centering {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
}

header h1 {
	flex-grow: 1;
	height: 50px;
	background: url(../img/theme/scienceweb_logo.png) no-repeat left center;
}

nav.centering {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background-color: #f5ad93;
}

nav .gnav {
	display: flex;
	justify-content: space-between;
	width: 60%;
	margin-left: 1rem;
}

nav .gnav li a {
	padding: 0 0.5rem;
	color: #000;
	font-size: 1.2rem;
	font-weight: 700;
}

.right {
	text-align: right;
	padding: 0 1rem 0 0;
}

nav {
	margin-bottom: 3px;
	background: var(--color4);
	position: sticky;
	top: 0;
	z-index: 100;
}

nav ul.centering {
	display: flex;
	justify-content: center;
}

nav ul.centering li {
	/*width: 100%;*/
	flex-grow: 1;
}

nav ul.centering li a {
	display: block;
	padding: .7rem .5rem;
	color: #333;
	font-weight: bold;
	text-align: center;
}

nav ul.centering li a:hover {
	background: var(--color5);
	text-decoration: none;
}

/*************************************
* END header START main
*************************************/
img.eyecatch {
	width: 1200px;
	margin: 0 auto 30px;
}

article {
	padding: 1rem 0;
}

article section {
	padding: 0 0 50px 0;
}

/* style for block element and else */
.block-center2 {
	display: block;
	width: max-content;
	margin-left: auto;
	margin-right: auto;
}

ul.block-center {
	display: block;
	width: max-content;
	margin-left: auto;
	margin-right: auto;
}

ol.block-center {
	display: block;
	width: max-content;
	margin-left: auto;
}

.flex-sa {
	display: flex;
	justify-content: space-around;
}

.flex-sb {
	display: flex;
	justify-content: space-between;
}

.flex-se {
	display: flex;
	justify-content: space-evenly;
}

.bg-dot {
	background: url(../img/theme/bg_dot.png) repeat;
}

.bg-color {
	background: var(--bgColor);
}

.border-tb {
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
}

.check-list>li {
	position: relative;
	padding-left: 1.3em;
	margin-bottom: .5rem;
}

.check-list>li::before {
	content: "\f058";
	position: absolute;
	left: 0;
	color: var(--color1);
	font-family: "Font awesome 5 free";
	font-weight: 700;
}

dl.triangle {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

.triangle>dt {
	position: relative;
	padding-left: 1em;
	width: 30%;
}

.triangle>dt::before {
	content: "";
	position: absolute;
	top: .6em;
	left: 0;
	width: 0;
	height: 0;
	border-width: .3em;
	border-style: solid;
}

.columns-a .triangle>dt {
	color: var(--color1);
}

.columns-b .triangle>dt {
	color: var(--color3);
}

.columns-a .triangle>dt::before {
	border-color: transparent transparent transparent var(--color1);
}

.columns-b .triangle>dt::before {
	border-color: transparent transparent transparent var(--color3);
}

.triangle>dd {
	width: 100%;
}

ul.triangle {
	width: 100%;
	flex-wrap: wrap;
}

ol.closing_bracket {
	list-style-type: none;
}

ol.closing_bracket>li {
	counter-increment: cnt;
}

ol.closing_bracket>li:before {
	content: counter(cnt) " )　";
}

ol.closing_bracket>li:first-child {
	margin-bottom: 1.8rem;
}

ul.triangle>li {
	position: relative;
	margin-left: 1em;
	list-style-type: disc;
}

ol.triangle>li {
	position: relative;
	margin-left: 1em;
	list-style-type: none;
}

.flowchart>li {
	position: relative;
	padding: .5rem 2rem .5rem 4rem;
	color: var(--useColor);
	border-radius: .5rem;
	font-size: 1rem;
}

.flowchart>li::before {
	content: attr(data-num);
	display: block;
	width: 2rem;
	position: absolute;
	left: 1rem;
	background: var(--useColor);
	border-radius: 50%;
	color: #fff;
	font-size: 1.3rem;
	line-height: 2rem;
	text-align: center;
}

main article.siyou h1 {
	margin-bottom: 2rem;
	font-size: 4rem;
	font-weight: 700;
	text-align: center;
}

main article.siyou h2 {
	margin-bottom: 3rem;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

main article.siyou h2::after {
	content: "";
	display: block;
	width: 1em;
	height: .1em;
	margin: auto;
	background: currentColor;
}

main article.siyou h3 {
	margin-bottom: 1.5rem;
	border-radius: .4rem;
	background: var(--color4);
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
}

main article.siyou h4 {
	margin-bottom: .5rem;
	font-size: 1.3rem;
	font-weight: 700;
}

main article.kento h2 {
	margin-bottom: .5rem;
	font-size: 2.3rem;
	font-weight: 700;
	text-align: left;
	text-indent: 10rem;
}

main article.kento h3 {
	margin-bottom: 1.5rem;
	border-radius: 0.4rem;
	color: var(--color4);
	font-size: 1.5rem;
	font-weight: 700;
}

main article.kento h4 {
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
	font-weight: 700;
}

table {
	width: 90%;
	margin: auto;
}

table th {
	vertical-align: middle;
	background: #f5f5f5;
}

table th.day1 {
	background: #419DAC;
}

table th.day2 {
	background: #0066cc;
}

table th.day3 {
	background: #f58962;
}

table th.all {
	background: #666666;
}

table th,
table td {
	padding: 0.7rem 1rem;
	border: 1px solid #999;
}

table.cost tr:nth-child(even) {
	background: #f5f5f5;
}

table.uniq-tbl1 {
	width: 80%;
}

table.uniq-tbl1 td {
	padding: 0.2rem 0.5rem;
	border: none;
}

table.tbl-wid td:last-child {
	width: 60%;
}

table.tbl-wid2 td:last-child {
	width: 30%;
}

table.tbl-wid2 tr {
	width: 100%;
}

table.tbl-wid3 td:first-child {
	width: 15%;
}

table.tbl-wid3 td:last-child,
table.tbl-wid3 td:nth-last-child(2) {
	width: 30%;
}

li span.color2 {
	font-size: .8rem;
}

.text-indent {
	padding: 0 0 0 5rem;
}

.marker {
	display: block
		/*inline-block*/
	;
	padding: 0.2rem 1rem;
	border-radius: 0.8rem;
	background: var(--useColor);
	color: #fff !important;
	font-size: 1rem;
	text-align: center;
	white-space: nowrap;
	padding: auto;
}

.color1 {
	--useColor: var(--color1);
	color: var(--color1);
}

.color2 {
	--useColor: var(--color2);
	color: var(--color2);
}

.color3 {
	--useColor: var(--color3);
	color: var(--color3);
}

.color4 {
	--useColor: var(--color4);
	color: var(--color4);
}

.color5 {
	--useColor: var(--color5);
	color: var(--color5);
}

.color6 {
	--useColor: var(--color6);
	color: var(--color6);
}

.QA dt {
	position: relative;
	padding: 0.5rem 0 0.5rem 3rem;
	margin-bottom: 0.3rem;
	font-size: 1.2rem;
}

.QA dt::before {
	content: "Q";
	position: absolute;
	left: 0;
	color: #2f61ad;
	line-height: 1.7rem;
	font-size: 2rem;
	font-weight: 900;
}

.QA dd {
	position: relative;
	padding: 0.5rem 0 1rem 3rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #999;
}

.QA dd::before {
	content: "A";
	position: absolute;
	left: 3px;
	color: #e23c34;
	line-height: 1.7rem;
	font-size: 2rem;
	font-weight: 900;
}

/* style for inline element */
.color1 {
	--useColor: var(--color1);
	color: var(--color1);
}

.color2 {
	--useColor: var(--color2);
	color: var(--color2);
}

.color3 {
	--useColor: var(--color3);
	color: var(--color3);
}

.text-large {
	font-size: 1.5rem;
}

.text-small {
	font-size: .85rem;
}

.btn:hover {
	text-decoration: none;
}

.btn.large {
	padding: 0.3rem 3rem;
	font-size: 1.5rem;
}

/* #home */
.em-1 {
	color: var(--color3);
	line-height: 1.2;
	font-size: 3rem;
	font-weight: 900;
	text-align: center;
}

.em-2 {
	font-size: 1.7rem;
	font-weight: 900;
	text-align: center;
}

.em-2 span {
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.5;
	display: block;
	text-align: left;
	width: 70%;
	margin: 0 auto;
}

.em-2 strong {
	font-size: 1.3rem;
	font-weight: bold;
	color: #fd7e09;
}

.em-3 {
	width: 40%;
	font-size: 1.7rem;
	font-weight: 900;
	text-align: left;
	margin: 0 auto .5rem;
}

.em-4 {
	font-weight: normal;
	text-align: center;
}

.em-4 img {
	width: 729px;
	margin: 0 auto 30px;
}

.mrg-lt {
	margin-left: 3rem;
}

p.pright {
	text-align: right;
	margin-right: 70px;
}

.pright span {
	text-align: right;
}

.cnt-dl dl {
	margin: auto;
	width: 50%;
	margin-bottom: 2rem;
}

.cnt-dl dt {
	float: left;
}

.cnt-dl dd {
	margin-left: 400px;
}

.cnt-dls dl {
	margin: auto;
	width: 50%;
	margin-bottom: 2rem;
}

.cnt-dls dt {
	float: left;
}

.cnt-dls dd {
	margin-left: 50px;
}

.cnt-ul ul {
	width: 55%;
	margin: auto;
}

.columns {
	display: flex;
	justify-content: space-around;
}

.columns>div {
	margin-right: 30px;
}

.columns ul {
	margin-left: 1rem !important;
}

.columns .title {
	text-align: center;
	font-weight: bold;
	height: 80px;
	line-height: 80px;
	width: 50%;
	border-radius: 8px;
	margin: auto auto 1rem;
}

.columns-a {
	flex-basis: 50%;
}

.columns-a .title {
	background-color: var(--color3);
	color: #ffffff;
	font-size: 1.7rem;
}

.columns-b {
	flex-basis: 50%;
}

.columns-b .title {
	background-color: var(--color4);
	color: #ffffff;
	font-size: 1.7rem;
}

.siyou-block {
	display: flex;
	flex-direction: column;
	padding: .5rem;
	background: var(--useColor);
	border-radius: .8rem;
}

.siyou-block .num {
	text-align: center;
	color: #fff;
	line-height: 1.4;
	font-size: 2rem;
}

.siyou-block .num span {
	font-size: 1rem;
	display: block;
}

.siyou-block .num-list {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.siyou-block .num-list li {
	display: block;
	width: .5rem;
	height: .5rem;
	margin: 0 .2rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
}

.siyou-block .bottom-block {
	flex-grow: 1;
	padding: .5rem 1.5rem .8rem;
	border-radius: 0 0 .5rem .5rem;
	background: #fff;
}

.siyou-block p {
	margin-bottom: 0;
	font-size: 1.5rem;
	font-weight: 700;
}

.siyou-block p span {
	font-size: 1rem;
	background-color: red;
	color: #ffffff;
}

.siyou-block .item-list {
	color: #333;
}

.overview_dl {
	width: 70%;
	display: flex;
	flex-wrap: wrap;
	margin: 0 atuo;
}

.overview_dl dt {
	width: 20%;
}

.overview_dl dd {
	width: 80%;
}

dt.dt_disc {
	position: relative;
}

dt.dt_disc::before {
	display: block;
	content: '';
	position: absolute;
	background: #000;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	top: 12.5px;
	right: 100px;
}

.attention {
	text-align: center;
	color: #fd7e09;
	font-size: 1.7rem;
	font-weight: 900;
}

#banner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#banner a {
	width: 380px;
	height: 100px;
	margin-bottom: 2rem;
}

#banner a:first-child {
	background-image: url("../img/bnr1.png");
}

#banner a:nth-child(2) {
	background-image: url("../img/bnr2.png");
}

#banner a:nth-child(3) {
	background-image: url("../img/bnr3.png");
}

#banner a:nth-child(4) {
	background-image: url("../img/bnr4.png");
}

#banner a:nth-child(5) {
	background-image: url("../img/bnr5.png");
}

#banner a:nth-child(6) {
	background-image: url("../img/bnr6.png");
}

table.aligner {
	width: auto;
	margin: 0;
}

table.aligner th,
table.aligner td {
	border: none;
	padding: 0;
	text-align: left;
}

table.aligner th {
	padding-right: 2rem;
}

table.aligner td+td {
	padding-left: 1rem;
}

.nowrap {
	white-space: nowrap;
}

.indent {
	margin-left: 4rem !important;
}

.red {
	color: #ef233c;
}

.marked-red,
.marked-green {
	padding: 0.1rem 0.4rem;
	border-radius: 5px;

}

.marked-red {
	background-color: var(--color1);
	color: #FFFFFF;
}

.marked-green {
	background-color: var(--color3);
	color: #FFFFFF;
}

dl.qa {
	max-width: 1000px;
	margin: 0 auto;
}

dl.qa dt,
dl.qa dd {
	position: relative;
	margin-bottom: 0.5em;
	padding: 1rem 1rem;
	padding-left: 3rem;
	border-radius: 5px;
	overflow-wrap: break-word;
}

dl.qa dt::before,
dl.qa dd::before {
	position: absolute;
	display: inline;
	margin-left: -1.2em;
	font-size: 1.5rem;
	top: 0.5rem;
}

dl.qa dt {
	background-color: var(--color2);
	border: 2px solid var(--color2);
	color: #FFFFFF;
}

dl.qa dt::before {
	content: "Q";
	color: #FFFFFF;
	font-weight: bold;
}

dl.qa dd {
	border: 2px solid var(--color1);
	color: var(--color1);
	font-weight: bold;
	margin-bottom: 40px;
}

dl.qa dd::before {
	content: "A";
}

/*************************************
* for banner
*************************************/
.fadein {
	opacity: 0.1;
	transform: translate(0, 50px);
	transition: all 500ms;
}

.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}


/*************************************
* END main START footer
*************************************/
.to-top {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--color4);
	color: #fff;
	line-height: 50px;
	font-size: 40px;
	text-align: center;
	position: fixed;
	right: 50px;
	bottom: 100px;
	z-index: 999;
}

footer {
	padding: 2rem 0;
	border-top: 2px solid #ccc;
}

.foot-list {
	position: relative;
	margin-left: 2rem;
	padding-left: 1rem;
}

.foot-list::before {
	content: "\f105";
	position: absolute;
	left: 0;
	color: #555;
	font-weight: 700;
	font-family: "Font awesome 5 Free";
}

.foot-list li:first-child {
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.foot-list li a {
	color: inherit;
	font-size: 0.9rem;
}

.copyright {
	margin-top: 2rem;
	color: #999;
	font-size: 0.9rem;
	text-align: right;
	margin-right: 10%;
}

.footh1 {
	width: 304px;
}

.footname {
	margin-left: 60%;
}


@media (min-width: 1200px) {
	.uniq-centering {
		width: 1200px !important;
		max-width: 1200px !important;
	}
}