@charset "utf-8";

:root {
	--common-width: 960px;
	--header-height: 76px;
	--color-light: #fff;
	--color-main: #292929;
	--color-primary: #45C6B9;
	--color-primary-hover: #31b4a7;
	--color-secondary: #636363;
	--color-gray: #F6F6F6;
	--color-ip: #D6C41D;
	--color-fe: #1DD655;
	--color-ap: #60BEE6;
	--color-red: #ff6565;
	--font-size: 16px;
	--font-size-h1: 1.5em;
	--font-size-h2: 1.3em;
	--font-size-h3: 1.1em;
	--sec-padding: 5em 0;
	--sec-padding-top: 5em;
	--sec-padding-left-right: 0;
	--sec-item-padding-1: 1em;
}

body {
	color: var(--color-main);
	line-height: 2em;
	margin: 0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 500;
}

header {
	box-shadow: 0px 0px 5px rgb(0 0 0 / 40%);
}

div {
	box-sizing: border-box;
}

img {
	max-width: 100%;
}

.table {
	display: table;
	width: 100%;
}
.table-cell {
	display: table-cell;
}

@media screen and (orientation: portrait) {
	.table {
		display: block;
	}
	.table-cell {
		display: block;
		width: 100%!important;
	}
}

button {
	border: none;
}

.btn {
	display: inline-block;
	margin: 1rem auto;
	padding: 1rem 2rem;
	transition: all .3s;
	text-decoration: none;
	font-weight: bold;
}

.btn-float {
	background: var(--color-light);
	filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.3));
}

.btn-float:hover {
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.2));
}

.btn-primary {
	color: var(--color-light);
	background: var(--color-primary);
}
.btn-primary:hover {
	background: var(--color-primary-hover);
}

h1 {
	border-bottom: 2px solid var(--color-primary);
	border-left: 10px solid var(--color-primary);
	font-size: var(--font-size-h1);
	padding-left: 1rem;
}

h2 {
	font-size: var(--font-size-h2);
}

.center {
	text-align: center;
	vertical-align: middle;
}

.balloon {
	position: relative;
	display: inline-block;
	margin: 0 0 3em;
	padding: 10px;
	min-width: 60%;
	max-width: 100%;
	color: var(--color-light);
	font-size: 16px;
	background: var(--color-primary);
	text-align: center;
}
.balloon:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid var(--color-primary);
} 
.balloon p {
	margin: 0;
	padding: 0;
}
.balloon.white {
	color: var(--color-main);
	background: var(--color-light);
}
.balloon.white:before {
	border-top: 15px solid var(--color-light);
} 

.red {
	color: #F54141;
}

.bold {
	font-weight: bold;
}

header {
	background-color: #fff;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
}

.inner-header {
	align-items: center;
	display: flex;
	height: var(--header-height);
	justify-content: center;
	margin: auto;
	padding-bottom: .5em;
	padding-top: .5em;
	max-width: var(--common-width);
}

header .nav-logo {
	text-align: left;
}

header .logo {
	max-width: 190px;
}

header .nav-copy {
	font-weight: bold;
	text-align: center;
	width: 100%;
}

header .nav-offer {
	text-align: right;
}

@media (orientation: portrait) {
	header .nav-offer {
		padding-right: .5em;
		text-align: left;
	}
}

.navbar-fixed {
    width: 100%;
	overflow: hidden;
}
.nav-icon img {
    height: 50px;
	width: auto;
    vertical-align: middle;
}
.navbar-fixed .header-list {
	list-style: none;
    display:flex;
    align-items: center;
}  
.navbar-fixed .header-list li {
	text-align: center;
	padding: 0 1rem;
}
.navbar-fixed .header-list li a {
	text-decoration: none;
	color: var(--color-main);
}

.menu-btn {
	display: none;
    position: fixed;
    top: 0px;
    right: 0px;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #45C6B9;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
    transition: all 0.3s;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}

.menu-content {
    width: 300px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 80;
    background-color: #45C6B9;
    transition: all 0.3s;
}
#menu-btn-check:checked ~ .menu-content {
    right: 0;
}
.menu-content ul {
    padding: 3rem 1rem 1rem;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 1rem 2rem 1rem 1rem;
    position: relative;
}
@media screen and (orientation: portrait){
	header .nav-logo {
		padding-left: .5em;
		text-align: left;
	}
    .inner-header {
		height: 50px;
      	padding-left: 30px;
    }
    .nav-icon img {
		width: auto;
      	height: 46px;
    }
    .menu-btn {
		display: flex;
		height: 50px;
		width: 50px;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
		height: 5px;
		width: 34px;
		border-radius: 8px;
    }
    .menu-btn span:before {
      	bottom: 12px;
    }
    .menu-btn span:after {
      	top: 12px;
    }
    .menu-content {
      	width: 90%;
    }
    .navbar-fixed .header-list {
      	display: none;
    }
}

section {
	padding: var(--sec-padding);
}

header + section {
	padding-top: var(--header-height);
}

.container {
	width: 90%;
	max-width: var(--common-width);
	margin: auto;
}

#eyecatch .table .table-cell {
	vertical-align: middle;
}
#eyecatch .table .table-cell:first-child {
	width: 40%;
}
#eyecatch .table .table-cell:first-child p {
	font-size: var(--font-size-h2);
	margin-bottom: 2em;
}

.section_breadcrumb {
	font-size: .8rem;
	padding: 2rem 1rem;
	color: #9e9e9e!important;
}
.section_breadcrumb a, .section_breadcrumb a:hover, .section_breadcrumb a:active, .section_breadcrumb a:visited {
	color: #9e9e9e!important;
	text-decoration: none;
}
.section_breadcrumb.head {
	padding-top: 120px;
}
@media screen and (max-width: 1060px){
	.section_breadcrumb.head {
		padding-top: 20px;
	}
}

#section_dokushuzemi {
	background: #E7FBFF;
}

#section_exam h2 {
	text-align: center;
	margin: 2em auto 1em;
}
#section_exam .description {
	background: var(--color-gray);
	width: 70%;
	min-width: 600px;
	margin: 1em auto;
	padding: 1.5em;
}
#section_exam .description p {
	margin: 0;
}
#section_exam .description p:first-child {
	font-weight: bold;
	font-size: var(--font-size-h2);
	margin-bottom: .5em;
}
#section_exam .btn-float {
	margin: 2em auto;
	font-size: var(--font-size-h2);
	padding: 1rem 4rem;
}
#exam_list {
	display: none;
}
#section_exam table.exam_list {
	font-size: .8rem;
	line-height: 1.3rem;
}
#section_exam table.smp {
	display: none;
}
#section_exam table.exam_list tr td {
	padding: 5px;
}
#section_exam table.exam_list.pc tr td:nth-child(1) {
	width: 250px;
}
#section_exam table.exam_list.pc tr td:nth-child(3), #section_exam table.exam_list.pc tr td:nth-child(4), #section_exam table.exam_list.pc tr td:nth-child(5) {
	width: 40px;
	text-align: center;
}
#section_exam table.exam_list.pc tr td.gray {
	width: 200px;
}
#section_exam table.exam_list tr td.itss_1 {
	background: #FDF3D0;
	border: 2px solid #fff;
}
#section_exam table.exam_list tr td.itss_2 {
	background: #E5EFDB;
	border: 2px solid #fff;
}
#section_exam table.exam_list tr td.itss_3 {
	background: #E0EBF6;
	border: 2px solid #fff;
}
#section_exam table.exam_list tr td.itss_4 {
	background: #F7E5D8;
	border: 2px solid #fff;
}
#section_exam table.exam_list tr td.gray {
	background: #dadada;
	border: 5px solid #fff;
}
.triangle-right {
	display: inline-block;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 30px solid #dadada;
  }

@media screen and (orientation: portrait) {
	#section_exam .description {
		width: 100%;
		min-width: 0px;
	}
	#section_exam table.pc {
		display: none;
	}
	#section_exam table.smp {
		display: table;
	}
	#section_exam table.exam_list tr td {
		padding: 5px 10px;
	}
	#section_exam table.exam_list tr td.itss_1, #section_exam table.exam_list tr td.itss_2, #section_exam table.exam_list tr td.itss_3, #section_exam table.exam_list tr td.itss_4 {
		border: none;
	}
	#section_exam table.exam_list tr td.gray {
		border-right: none;
		border-left: none;
	}
	#section_exam table.exam_list tr td div.gray {
		background: #dadada;
		padding: 5px;
	}
}

#section_course .table.course .table-cell {
	padding: 1em;
	text-decoration: none;
	color: var(--color-main);
	vertical-align: top;
	text-align: center;
	width: 33%;
}
#section_course .table.course .table-cell > div {
	background: var(--color-gray);
	padding: 1em;
	transition: all .3s;
}
#section_course .table.course .table-cell:hover > div {
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.2));
}
#section_course .table.course .table-cell > div div:first-child p {
	height: 70px;
	font-weight: bold;
	margin-top: 0;
}
#section_course .table.course .table-cell:first-child > div div:first-child p, #section_course .table.course .table-cell:last-child > div div:first-child p {
	line-height: 70px;
}
#section_course .table.course .table-cell > div div:last-child img {
	width: 125px;
}
#section_course h2 {
	text-align: center;
	margin: 2em auto 1em;
}

#section_course .description p {
	margin: 0;
}
#section_course .description .table {
	background: var(--color-gray);
	width: 90%;
	margin: 1em auto;
	padding: 1.5em;
}
#section_course .description .table .table-cell:first-child {
	width: 250px;
	vertical-align: middle;
}
#section_course .description .table:nth-child(1) .table-cell:first-child {
	border-right: 5px solid var(--color-ip);
}
#section_course .description .table:nth-child(2) .table-cell:first-child {
	border-right: 5px solid var(--color-fe);
}
#section_course .description .table:nth-child(3) .table-cell:first-child {
	border-right: 5px solid var(--color-ap);
}
#section_course .description .table .table-cell:first-child p {
	font-weight: bold;
}
#section_course .description .table .table-cell:first-child p:first-child {
	font-size: var(--font-size-h2);
}
#section_course .description .table .table-cell:last-child {
	padding-left: 2em;
}

#section_course .table.stepup .table-cell, #section_course .table.stepup_course .table-cell {
	width: 50%;
	vertical-align: middle;
}
#section_course .table.stepup_course .table-cell {
	padding: 1em;
}
#section_course .table.stepup_course .table-cell div {
	border: 1px solid var(--color-main);
	padding: 2em;
	text-align: center;
}
#section_course .table.stepup_course .table-cell div p {
	margin: 0;
}
#section_course .table.stepup_course .table-cell div p:nth-child(1) {
	margin-bottom: 1em;
}
#section_course .table.stepup_course .table-cell div p:nth-child(2) {
	margin-bottom: 1em;
	font-size: 2em;
	font-weight: bold;
}
#section_course .table.stepup_course .table-cell div p:nth-child(3) span {
	font-size: 2em;
}
.IP {
	color: var(--color-ip);
}
.FE {
	color: var(--color-fe);
}
.AP {
	color: var(--color-ap);
}
#section_course .table.device {
	width: 75%;
	margin: auto;
}
#section_course .table.device .table-cell:first-child {
	width: 75%;
}

@media screen and (orientation: portrait) {
	#section_course .description .table {
		width: 100%;
		margin-bottom: 2em;
	}
	#section_course .table.course .table-cell {
		padding: 0;
		margin-bottom: 3em;
	}
	#section_course .description .table:nth-child(1) .table-cell:first-child {
		border-right: none;
		border-bottom: 5px solid var(--color-ip);
		padding-bottom: 1em;
	}
	#section_course .description .table:nth-child(2) .table-cell:first-child {
		border-right: none;
		border-bottom: 5px solid var(--color-fe);
		padding-bottom: 1em;
	}
	#section_course .description .table:nth-child(3) .table-cell:first-child {
		border-right: none;
		border-bottom: 5px solid var(--color-ap);
		padding-bottom: 1em;
	}
	#section_course .description .table .table-cell:last-child {
		padding-left: 0;
		padding-top: 1em;
	}
	#section_course .table.stepup_course .table-cell {
		padding: 0;
		margin-bottom: 2em;
	}
	#section_course .table.device .table-cell:last-child {
		text-align: center;
	}
	#section_course .table.device .table-cell:last-child img {
		width: 50%;
	}
}

#section_summarize {
	background: var(--color-gray);
}
#section_summarize h2 {
	margin-bottom: 2em;
}
#section_summarize .table .table-cell {
	text-align: center;
}
#section_summarize .balloon {
	margin-bottom: 1em;
}

@media screen and (orientation: portrait) {
	#section_summarize .table .table-cell {
		margin-bottom: 3em;
	}
}

.faq {
	padding: 1em 0;
	border-bottom: 1px dashed var(--color-main);
}
.faq p {
	margin: 0;
}
.faq p:first-child {
	color: var(--color-primary);
}
.faq p:first-child::before {
	content: 'Q.';
	margin-right: .5em;
}
.faq p:nth-child(2) {
	color: var(--color-red);
}
.faq p:nth-child(2)::before {
	content: 'A.';
	margin-right: .5em;
}

.faq table {
	color: var(--color-secondary);
	border: 1px solid var(--color-secondary);
	border-collapse: collapse;
}
.faq table tr th, .faq table tr td {
	padding: .5em;
	border: 1px solid var(--color-secondary);;
}
.faq table tr th {
	background: #c1f7f2;
}
.faq table tr td {
	background: #e3fffc;
}
.faq .device_title {
	font-weight: bold;
	font-size: var(--font-size-h3);
	margin: 1em auto .3em;
}

#section_corporate .bold {
	font-size: var(--font-size-h2);
	font-weight: bold;
}

#section_corporate .bold span {
	font-size: initial;
}

footer {
    background-color: #f0f0f0;
    margin-top: 50px;
    padding: 30px 0;
}
footer .cmn_width {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1024px;
    width: 100%;
}
footer .dokuzemi_logo_div {
    float: left;
    width: 70%;
}
footer .corp_logo_div {
    float: left;
    text-align: right;
    width: 30%;
}
footer .dokuzemi_logo_div .logo {
    float: left;
    margin-right: 15px;
    width: 53px;
}
footer .dokuzemi_logo_div .txt {
    float: left;
    padding-top: 5px;
}
footer .dokuzemi_logo_div .txt p {
    color: #999;
    font-size: 0.6rem;
    line-height: 120%;
    margin: 0 0 5px 0;
    padding: 0;
}
footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
footer .corp_logo_div li {
    float: right;
}
footer .corp_logo_div li:first-child {
    margin-left: 5px;
}
footer .clearfix:after, .clearfix::after {
    clear: both;
    content: "";
    display: block;
}
@media screen and (orientation: portrait){
	footer {
		background-color: #f0f0f0;
		margin-top: 50px;
		padding: 30px 0;
	}
	footer .cmn_width {
		padding-left: 0!important;
		padding-right: 0!important;
	}
	footer .dokuzemi_logo_div {
		float: none;
		text-align: center;
		margin-bottom: 30px;
		width: 100%;
	}
	footer .dokuzemi_logo_div .logo {
		float: none;
		margin: auto;
		margin-bottom: 5px;
	}
	footer .dokuzemi_logo_div .txt {
		float: none;
	}
	footer .dokuzemi_logo_div .txt p {
		color: #999;
		font-size: 0.6rem;
		line-height: 120%;
		margin: 0 0 5px 0;
		padding: 0;
	}
	footer .corp_logo_div {
		float: none;
		text-align: center;
		width: 100%;
	}
	footer .corp_logo_div li {
		display: contents;
		vertical-align: top;
		margin: auto;
	}
}