@charset "UTF-8";


/* ==================================================================

	Start Guide
	
================================================================== */

.startguide {
	width: 100%;
}

.startguide tr > th,
.startguide tr > td {
	padding-top: 60px;
	position: relative;
}

.startguide tr > th:after {
	content: '';
	width: 4px;
	height: 100%;
	margin-left: 2px;
	font-size: 0;
	background-color: #e5e5e5;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 0;
}

.startguide tbody > :first-child > th,
.startguide tbody > :first-child > td {
	padding-top: 0;
}

.startguide tr > td {
	padding-left: 40px;
	vertical-align: middle;
}

.startguide tr > :first-child {
	padding-left: 0;
}

.startguide tr > td > :first-child {
	margin-top: 0;
}

.startguide tr > td > :last-child {
	margin-top: 2rem;
	margin-bottom: 0;
}

.startguide [class^="title"] + * {
	margin-top: 1rem;
}

@media (max-width: 768px) {
	.startguide tr > th,
	.startguide tr > td {
		width: 100%;
		display: block;
	}
	.startguide tr > th:after {
		display: none;
	}
	.startguide tr > td,
	.startguide tbody > :first-child > td {
		padding-top: 20px;
		padding-left: 0;
	}
	.startguide tr > td > :last-child {
		margin-top: 1rem;
		text-align: center;
	}
}


/* ------------------------------------------------------------------
  step
------------------------------------------------------------------ */


.startguide .step {
	border: 10px solid #fff;
	border-radius:50%;
	display: inline-block;
	position: relative;
	z-index: 10;
}

.startguide .step > .label {
	width: 52px;
	height: 52px;
	text-align: center;
	color: #fff;
	font-size: 2rem;
	line-height: 52px;
	font-weight: normal;
	letter-spacing: 0;
	border: 4px solid #fff;
	border-radius: 50%;
	background-color: #2190ed;
	display: inline-block;
	box-sizing: content-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.startguide .step > .thumbnail {
	width: 240px;
	height: 240px;
	border: 10px solid #e5e5e5;
}

@media (max-width: 768px) {
	.startguide .step,
	.startguide .step > .thumbnail {
		border-radius: 0;
	}
	.startguide .step {
		display: block;
	}
	.startguide .step > .label {
		top: -20px;
		left: -20px;
	}
	.startguide .step > .thumbnail {
		width: 100%;
	}
	
}


/* ==================================================================
    NEW Start Guide　（2025.08）
================================================================== */

.startguide2508 .title {
	margin-top: 0;
}

.startguide2508 .contents {
	margin: 3rem 0 0;
}

.startguide2508 .step {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 5rem;
    align-items: center;
	margin: 3rem 0 8rem;
}

.startguide2508 .bindcamp {
	margin-top: 10rem;
}

.startguide2508 .bindcamp .item {
	display: grid;
    grid-template-columns: 30% 1fr;
	gap: 5rem;
	align-items: center;
	margin-top: 2rem;
}



/* ==================================================================

	Word List
	
================================================================== */

.list-webword {
	width: 100%;
	margin-top: 0;
}

.list-webword th, 
.list-webword td {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px dashed #ccc;
}

.list-webword th > :first-child, 
.list-webword td > :first-child {
	margin-top: 0;
}

.list-webword th > :last-child, 
.list-webword td > :last-child {
	margin-top: 0;
}

.list-webword th {
	width: 20rem;
	padding-right: 1rem;
}

.list-webword th .ruby {
	font-size: .85rem;
	color: #888;
}

@media (max-width: 768px) {
	.list-webword th, 
	.list-webword td {
		display: block;
	}
	.list-webword th {
		padding-bottom: .5rem;
		border-bottom: none;
	}
	.list-webword td {
		padding-top: 0;
	}
	
}



/* ------------------------------------------------------------------
  nav-webword
------------------------------------------------------------------ */

.nav-webword {
	text-align: center;
	-webkit-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	transition: 0.3s ease;
}

.nav-webword > ul {
	width: 100%;
	margin-top: -1rem !important;
	display: inline-block;
}

.nav-webword > ul > li {
	margin-top: 1rem;
	margin-left: -1px;
	font-size: 1.14rem;
	list-style: none;
	text-align: center;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	display: inline-block;
}

.nav-webword > ul > li > a {
	min-width: 5rem;
	padding-left: 1rem;
	padding-right: 1rem;
	display: inline-block;
}

.nav-webword.fixed {
	width: 100%;
	margin-top: 0;
	/*background-color: rgba(255,255,255,0.9);*/
	background-color: rgba(33, 144, 237, 0.9);
	box-shadow:0px 1px 2px 0px rgba(0,0,0,0.1);
	-moz-box-shadow:0px 1px 2px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow:0px 1px 2px 0px rgba(0,0,0,0.1);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

.nav-webword.fixed > ul {
	max-width: 1200px;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 80px;
	padding-right: 80px;
}

.nav-webword.fixed > ul > li {
	border-color: #fff;
}

.nav-webword.fixed > ul > li > a {
	color: #fff;
}

@media (max-width: 768px) {
	.nav-webword.fixed {
		padding-left: 20px;
		padding-right: 80px;
	}
	.nav-webword.fixed > ul {
		margin-top: -.25rem !important;
		padding-top: 1rem;
		padding-left: 0;
		padding-right: 0;
	}
	.nav-webword > ul > li {
		margin-top: .25em;
		margin-left: .25em;
		font-size: 1rem;
		border: none;
	}
	.nav-webword > ul > li > a {
		min-width: inherit;
		padding-left: .5rem;
		padding-right: .5rem;
		color: #2190ed !important;
		line-height: 1.6;
		border-radius: 4px;
		background-color: #fff;
		display: inline-block;
	}
}


