﻿@charset "utf-8";

/* CSS Document */

#main_cont.sessionCont {
    max-width: 100%;
}
.sessionCont__inner {
    max-width: 1200px;
    margin: 40px auto 0 auto;
}
#main_cont h4 {
    margin-bottom: 22px;
}
table {
    width: 100%;
}
table,th,td {
    border-collapse:  collapse; 
}
#main_cont .note {
    font-size: 14px;
    list-style-position: outside;
    position: relative;
    padding-left: 1.25em;
    color: #656565;
    z-index: 0;
    font-weight: normal;
    margin-top: 4px;
}
#main_cont .note span {
    margin-right: 4px;
    position: absolute;
    left: 0;
}
@media screen and (max-width:660px) {
    #main_cont.sessionCont {
        margin-top: 20px;
    }
    .sessionCont__inner {
        margin-top: 0;
    }
    #main_cont .note{
        font-size: 12px;
        line-height: 1.4;
    }
}

/*------------------------------------------
コンテンツ共通
------------------------------------------*/
.sessionunder {
    display: flex;
    column-gap: 50px;
    justify-content: space-between;
}
@media screen and (max-width:660px){
    .sessionunder {
        flex-direction: column-reverse;
    }
    .order01 {
        order: 1;
    }
    .order02 {
        order: 2;
    }
}
/*------------------------------------------
サイドメニュー
------------------------------------------*/
.leftMenu {
    /*width: 330px;*/
    top: 240px;
    position: sticky;
    position: -webkit-sticky;
    height: 100%;
    z-index: 2;
}
/*画面の高さが狭く、左のメニューが画面に入りきらない場合、スクロール時の追従を止める*/
@media (max-height: 800px){
	.leftMenu{position: static;}
}

/* ボタン共通 */
.leftMenu__list-btn {
    font-size: 18px;
}
.leftMenu__request,.leftMenu__list-item {
    margin-bottom: 6px;
}
/* 上部ボタン */
.leftMenu__request a {
    background: #F73386;
    border-bottom: 6px solid #AD1556;
    font-size: 24px;
    color: #fff;
    padding: 20px 20px 20px 16px
}
.leftMenu__request a::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}
.leftMenu__past {
    /*margin-bottom: 26px;*/
	margin-bottom: 6px;
}
.leftMenu__past a {
    background: #fff;
    border: solid 1px #F73386;
    border-bottom: 6px solid #AD1556;
    color: #F73386;
}
.leftMenu__past a::after {
    border-top: solid 2px #F73386;
    border-right: solid 2px #F73386;
}
.leftMenu__past-2nd {
    /*margin-bottom: 26px;*/
	margin-bottom: 6px;
}
.leftMenu__past-2nd a {
    background: #fff;
    border: solid 1px #CDD900;
    border-bottom: 6px solid #BABF09;
    color: #899200;
}
.leftMenu__past-2nd a::after {
    border-top: solid 2px #CDD900;
    border-right: solid 2px #CDD900;
}
/*　下部ボタン　*/
#main_cont .leftMenu__index {
    font-size:24px;
    text-align: center;
}
/* ドロップダウン　*/
.leftMenu__list-item {
    position: relative;
}
.leftMenu__list-dropdown {
    display: none;
    width: 300px;
    position: absolute;
    top: 50%;
    right: -320px;
    transform: translate(0, -50%);
}
.leftMenu__list-item:hover .leftMenu__list-dropdown {
    display: block;
}
.leftMenu__list-item:last-child .leftMenu__list-dropdown {
    top: -90px;
}
.leftMenu__list-dropdown-inner {
    position: relative;
    display: inline-block;
    padding: 6px 10px 6px 30px;
    width: 100%;
    color: #555;
    font-size: 16px;
    background: #FFF;
    border: solid 2px #555;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    list-style: disc;
}
.leftMenu__list-dropdown-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    margin-top: -12px;
    border: 10px solid transparent;
    border-right: 10px solid #FFF;
    z-index: 2;
}
.leftMenu__list-dropdown-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -26px;
    margin-top: -14px;
    border: 12px solid transparent;
    border-right: 12px solid #555;
    z-index: 1;
}
.leftMenu__list-item:last-child .leftMenu__list-dropdown-inner::before,.leftMenu__list-item:last-child .leftMenu__list-dropdown-inner::after {
    top: 280px;
}
.leftMenu__list-dropdown-inner li:not(:last-child){
    margin-bottom: 6px;
}
.leftMenu__list-dropdown-inner li a {
    font-size: 16px;
    font-weight: normal;
    text-decoration: underline;
    color: #333;
    display: block;
}



#leftIndex_box {margin-top: 20pt;}

#leftIndex_box .leftIndex_btn {position: relative; margin-bottom: 6px; min-height: 50px;}
#leftIndex_box .leftIndex_btn input, #leftIndex_box .leftIndex_btn label {display: none}

#leftIndex_box .leftMenu_link_btn {
	display: inline-block;
	position: relative;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	text-align: left;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	padding: 10px 20px 10px 16px;
	border-radius: 6px;
	width: 100%;
	line-height: 1.2;
	transition: all 0.3s;
}
#leftIndex_box .leftMenu_link_btn::after {
	content: "";
	width: 10px;
	height: 10px;
	border: 0px;
	border-top: solid 2px #333;
	border-right: solid 2px #333;
	-ms-transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	display: inline-block;
	top: 50%;
	right: 12px;
}

#leftIndex_box .leftMenu_link_btn:hover {
	border-bottom-width:0px;
	margin-top: 6px;
}
#leftIndex_box .leftIndex_btn div {
	display: none;
	position: absolute;
	width: 300px;
	top: 50%;
	right: -320px;
	transform: translate(0, -50%);
}
#leftIndex_box .leftIndex_btn:hover div {display: block;}

#leftIndex_box .leftMenu_link_btn + div ul {
	position: relative;
	display: inline-block;
	padding: 6px 10px 6px 30px;
	width: 100%;
	color: #555;
	font-size: 16px;
	background: #FFF;
	border: solid 2px #555;
	box-sizing: border-box;
	border-radius: 6px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	list-style: disc;
}
#leftIndex_box .leftMenu_link_btn + div ul::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    margin-top: -12px;
    border: 10px solid transparent;
    border-right: 10px solid #FFF;
    z-index: 2;
}
#leftIndex_box .leftMenu_link_btn + div ul::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -26px;
    margin-top: -14px;
    border: 12px solid transparent;
    border-right: 12px solid #555;
    z-index: 1;
}
#leftIndex_box .last_box .leftMenu_link_btn + div ul {top:-90px;}
#leftIndex_box .last_box .leftMenu_link_btn + div ul::before {top: 240px;}
#leftIndex_box .last_box .leftMenu_link_btn + div ul::after {top: 240px;}

#leftIndex_box .leftMenu_link_btn + div ul li a {
	display: block;
	font-size: 16px;
	font-weight: normal;
	text-decoration: underline;
	color: #333;
}


@media (hover: hover) {
    .leftMenu__past a:hover {
        border-bottom-width:0px;
        border: solid 1px #F73386;
    }
    .leftMenu__past-2nd a:hover {
        border-bottom-width:0px;
        border: solid 1px #CDD900;
    }
}
@media screen and (max-width:660px){
    .leftMenu{
        position:static;
        height:auto;
        width: 100%;
        margin-top: 40px;
	}
	
	#leftIndex_box {margin-bottom: 30px;}
	#leftIndex_box .leftIndex_btn label {
		display: inline-block;
		position: relative;
		font-size: 18px;
		font-weight: bold;
		color: #333;
		text-align: left;
		box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
		padding: 10px 20px 10px 16px;
		border-radius: 6px;
		width: 100%;
		line-height: 1.2;
		transition: all 0.3s;
	}
	#leftIndex_box .leftIndex_btn {margin-bottom: 6px; min-height: 50px;}
	#leftIndex_box .leftMenu_link_btn {display: none;}
	#leftIndex_box .leftIndex_btn label::after {
		content: "";
		width: 8px;
		height: 8px;
		border: 0px;
		transform: translateY(-50%) rotate(135deg);
		top: 45%;
		right: 15px;
	}
	#leftIndex_box .leftIndex_btn label:hover {border-bottom-width:0px; margin-top: 6px;}
	#leftIndex_box .leftIndex_btn:hover div {display:none;}
	#leftIndex_box .leftIndex_btn input:checked + label + a + div {display: block;}
	#leftIndex_box .leftIndex_btn input:checked + label {border-bottom-width:0px; margin-top: 6px;;}
	
	#leftIndex_box .leftIndex_btn input + label + a + div {
		display: none;
		position:relative;
		top: 0%;
		width: 100%;
		right: 0%;
		top: -10%;
		transform: translate(0, 0%);
		padding: 10px 0;
	}
	
	#leftIndex_box .leftMenu_link_btn + div ul {}
	#leftIndex_box .leftMenu_link_btn + div ul::before {
		top: -8px;
		left: calc(50% - 6px);
		margin-top: -12px;
		border: 10px solid transparent;
		border-bottom: 10px solid #fff;
	}
	#leftIndex_box .leftMenu_link_btn + div ul::after {
		top: -10px;
		left: calc(50% - 8px);
		margin-top: -14px;
		border: 12px solid transparent;
		border-bottom: 12px solid #333;
	}
	#leftIndex_box .last_box .leftMenu_link_btn + div ul {top:0px;}
	#leftIndex_box .last_box .leftMenu_link_btn + div ul::before {top: -8px;}
	#leftIndex_box .last_box .leftMenu_link_btn + div ul::after {top: -10px;}
	
	#leftIndex_box .leftMenu_link_btn + div ul li a {
		display: block;
		font-size: 16px;
		font-weight: normal;
		text-decoration: underline;
		color: #333;
	}
}




/*------------------------------------------
コンテンツ
------------------------------------------*/
.rightCont {
    width: 65%;
}
.rightCont__item {
    margin-bottom: 200px;
}
.rightCont__item:last-child {
    margin-bottom: 0;
}
.rightCont__item-child {
    margin-bottom: 120px;
}
.rightCont__item-child:last-child {
    margin-bottom: 0;
}
#main_cont .recomendTxt {
    color: #f25700;
    font-size: 18px;
    margin-top: 16px;
}
#main_cont .recomendTxt span {
    color: #333;
}
@media screen and (max-width:660px){
    .rightCont{
        width: 100%;
    }
    #main_cont .recomendTxt{
        font-size: 16px;
    }
}
/*　タイトル h3 h4　*/
.rightCont__item h3 {
    font-size: 36px;
    padding: 16px 20px;
    margin-bottom: 40px;
}
.top_info h3{
    background: #D7ECF8;
}
.qualification h3{
    background: #E6BEBA;
}
.knowledge h3 {
    background: #D8D8D8;
}
.basic h3 {
    background: #FFF2CC;
}
.designSkill h3 {
    background: #F6CAAC;
}
.processingSkill h3 {
    background: #C4E2B2;
}
.webSeminar h3{
    background: #B4C5E7;
}
#main_cont .conditionsArea__txt h4 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
#main_cont .conditionsArea__txt h4::before {
    content:none;
}
.conditionsArea {
    position: relative;
    border-bottom: 4px solid #B4B4B4;
    padding-bottom: 12px;
    align-items: flex-end;
    flex-wrap: nowrap;
}
.conditionsArea::before {
    content: "";
    display: block;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 110px;
    border-bottom: 4px solid #30749c;
}
.conditionsArea__txt {
    padding-right: 10px;
}
@media screen and (max-width:660px){
    .rightCont__item h3{
        font-size: 26px;
    }
    #main_cont .conditionsArea__txt h4 {
        font-size: 20px;
        margin-bottom: 16px;
    }
}
/* アイコン */
.conditionsArea__icon {
    display: flex;
}
#main_cont .conditionsArea__icon p {
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
}
.icon__membersOnly {
    background: #E30034;
}
.icon__web {
    background: #0040ED;
    border-radius: 100px;
    margin-left: 20px;
}
.icon__offLine {
    background: #24B900;
    border-radius: 100px;
    margin-left: 5px;
}
.icon__business_trip {
	text-align: center;
    background: #FF1E1E;
    border-radius: 8px;
    margin-left: 5px;
}



@media screen and (max-width:660px){
    #main_cont .conditionsArea__icon {
        width: auto;
    }
    #main_cont .conditionsArea__icon p{
        font-size: 12px;
        width: auto;
        height: auto;
        padding: 4px 10px;
        border-radius: 50px;
    }
}
/* テキストエリア */
.rightCont__textArea li {
    font-weight: 500;
}
.rightCont__textArea {
    margin-top: 20px;
}
#main_cont .rightCont__textArea p {
    margin-bottom: 2em;
}
#main_cont .rightCont__textArea .mb0 {
    margin-bottom: 0;
}
.NumberOl li {
    text-indent: -1em;
    padding-left: 1em;
    font-size: 16px;
}
.textIndent__3letters li {
    text-indent: -3.5em;
    padding-left: 4.5em;
    font-size: 16px;
}

#main_cont .skills-improvement-seminars h5 {
	font-size: 22px;
	margin: 33px 0 11px 22px;
	text-indent: -22px;
	line-height: 1.4;
	font-weight: bold;
}
#main_cont .skills-improvement-seminars p {}
#main_cont .skills-improvement-seminars li {
	margin: 0 0 0 1em;
}
#main_cont .skills-improvement-seminars li p {
	margin: 0 0 0 1em;
	font-weight: bold;
}

#main_cont .skills-improvement-seminars p.cost {
	width: 100%;
	margin: 0 .5em;
	box-sizing: border-box;
	border: 1px solid #333;
	line-height: 1.5;
	padding: .5em;
}
#main_cont .skills-improvement-seminars .contact-address {
	width: 100%;
	margin: 1em .5em 0;
	box-sizing: border-box;
	border: 1px solid #333;
	padding: .5em 1em;
}
#main_cont .skills-improvement-seminars .contact-address p {
	margin-left: 4em;
	margin-bottom: 0;
	text-indent: -4em;
	line-height: 1.6;
}




@media screen and (max-width:660px){
    .rightCont__textArea {
        margin-top: 26px;
    }
    .rightCont__textArea li {
        font-size: 14px;
    }
}

/* 補足 */
#main_cont .supplement {
    background: #EBEBEB;
    padding: 20px 30px;
    border-radius: 16px;
    margin-top: 56px;
}
.supplement__img {
    width: 24%;
}
.supplement__text {
    width: 72%;
}
#main_cont .supplement__text p {
    font-size: 14px;
    font-weight: normal;
}
#main_cont p.supplement__title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    border-bottom: solid 4px #9CCFEE;
}
.webSeminar__child03 .supplement__text {
    width: 100%;
}
.webSeminar__child03 .supplement__text li {
    list-style-position: outside;
    padding:  0 0 16px 1.25em;
    position: relative;
}
.webSeminar__child03 .supplement__text li span {
    margin-right: 4px;
    position: absolute;
    left: 0;
}
.webSeminar__child03 .supplement__text dl {
    display: flex;
    margin-top: 10px;
}
.webSeminar__child03 .supplement__text dt {
    padding-right: 1em;
}
.webSeminar__child03 .supplement__text dd a {
    text-decoration: underline;
    color: #333;
}
@media (hover: hover){
    .webSeminar__child03 .supplement__text dd a:hover{
        text-decoration:none;
    }
}
@media screen and (max-width:660px) {
    #main_cont .supplement {
        padding: 20px;
    }
    .supplement__img {
        width: 60%;
        margin: 0 auto;
    }
    .supplement__text {
        width: 100%;
        margin: 10px auto 0;
    }
    #main_cont .supplement__title {
        font-size: 18px;
    }
    .webSeminar__child03 .supplement__text li {
        font-size: 14px;
    }
    .webSeminar__child03 .supplement__text dl{
        display: block;
    }
}


/*-------- テーブルエリア --------*/
.detail__list {
    margin-top: 60px;
}
#main_cont .detail__ttl {
    font-size: 18px;
    margin-bottom: 6px;
}
#main_cont .redTxt {
    color: #FF0000;
}
.underLineDouble {
    border-bottom: 3px double;
}
.detail__list li {
    font-size: 16px;
    font-weight: normal;
}
.listPoint {
    list-style: disc;
    margin-left: 1em;
}
.linkDetail {
    margin-top: 16px;
}
.linkDetail a {
    color: #656565;
    text-decoration: underline;
}
.squeaList {
    list-style: square;
    margin-left: 2em;
    margin-bottom: 30px;
}
@media (hover: hover) {
    .linkDetail a:hover {
        text-decoration: none;
    }
}
@media screen and (max-width:660px){
    .detail__list{
        margin-top: 20px;
    }
    #main_cont .detail__ttl{
        font-size: 16px;
    }
    .detail__list li {
        font-size: 12px;
    }
}
/* テーブル共通 */
.detail table,.detail th,.detail td {
    border: solid 1px #707070;
    padding: 6px 10px;
    font-size: 16px;
    text-align: left;
}
.detail th {
    background: #E5F1FF;
}
.detail td {
    font-weight: normal;
}
@media screen and (max-width:660px){
    .detail table,.detail th,.detail td{
        font-size: 12px;
    }
}
/* 検査員の概要 */
.summary th {
    width: 30%;
}
/*　登録するための資格要件　*/
.requirements b {
    text-decoration: underline;
}
.requirements th {
    width: 30%;
}
.requirements tr:first-child th:nth-child(2) {
    width: 70%;
    text-align: center;
}
.requirements tr:not(:first-child) td {
    width: 35%;
}
@media screen and (max-width:660px){
    .requirements th {
        width: 20%;
    }
    .requirements tr:first-child th:nth-child(2){
        width: 80%;
    }
}
/* 開催月 */
.date th {
    text-align: center;
}
.date td:not(:first-child) {
    text-align: center;
}
.date tr:nth-child(3) td {
    text-align: center;
}
/* 受講料及び登録料 */
.price .priceBig {
    font-weight: 500;
    font-size: 18px;
}
.priceCaption {
    display: flex;
    justify-content: space-between;
}
.price .priceBig span,.priceCaption span {
    font-weight: 100;
    font-size: 14px;
}
.price th {
    width: 40%;
}
.price td {
    text-align: center;
}
.price02 th {
    width: 20%;
    text-align: center;
}
.price02 td {
    width: 30%;
}
@media screen and (max-width:660px){
    .price .priceBig{
        font-size: 16px;
    }
    .price .priceBig span,.priceCaption span{
        font-size: 11px;
    }
    .price th{
        width: 20%;
    }
}
/* 検査員別受講すべき登録講習と講習会時間割 */
.schedule th {
    text-align: center;
}
.schedule tr:first-child th:nth-child(2) ~ th{
    width: 12%;
    padding: 10px 6px;
}
.schedule td[colspan="6"]{
    background: #c2c2c2;
    text-align: center;
    font-weight: bold;
}
.schedule td:not(:nth-child(2)){
    text-align: center;
}
.schedule td:nth-child(2) ~ td {
    padding: 10px 6px;
}
@media screen and (max-width:660px){
    .schedule th{
        padding: 10px 0;
    }
    .schedule td:nth-child(2) ~ td{
        padding: 10px 0;
    }
}
/*　プログラム　*/
.program th {
    text-align: center;
}
/*　調整　*/
.designSkill__child01 .price th:first-child,.designSkill__child02 .price th:first-child,.designSkill__child03 .price th:first-child,.processingSkill__child01 .price th:first-child,.processingSkill__child01 .program th:first-child,.processingSkill__child02 .price th,.designSkill .program th:first-child,.basic__child02 .program th:first-child,.basic__child01 .program th,.webSeminar__child06 .price th:first-child {
    width: 10%;
}
.processingSkill__child02 .program th:first-child {
    width: 20%;
}
.processingSkill__child02 .program th:last-child{
    width: 80%;
}
.processingSkill__child02 .date td {
    text-align: center;
}
.webSeminar__child01 .program td:nth-of-type(odd),.webSeminar__child01 .program th:nth-of-type(odd){
    width: 6%;
}
.webSeminar__child01 .program td:nth-of-type(even),.webSeminar__child01 .program th:nth-of-type(even){
    width: 46%;
}
.webSeminar__child01 .program td:nth-of-type(odd){
    text-align: center;
}
.webSeminar__child02 .program th:first-child{
    width: 20%;
}
.webSeminar__child02 .program th:last-child {
    width: 80%;
}
.webSeminar__child03 .program th:first-child,.webSeminar__child04 .program th:first-child,.webSeminar__child05 .program th:first-child,.webSeminar__child06 .program th:first-child{
    width: 10%;
}
.webSeminar__child03 .program td:first-child,.webSeminar__child04 .program td:first-child,.webSeminar__child05 .program td:first-child,.webSeminar__child06 .program td:first-child {
    text-align: center;
}
.webSeminar__child03 .program th:last-child,.webSeminar__child04 .program th:last-child,.webSeminar__child05 .program th:last-child,.webSeminar__child06 .program th:last-child {
    width: 90%;
}
.webSeminar__child03 .listNumber li,.webSeminar__child04 .program li {
    margin-left: 0;
}
@media screen and (max-width:660px){
    .webSeminar__child02 .program tr:nth-child(2) ~ tr td:first-child,.webSeminar__child02 .program tr:nth-child(2) ~ tr td:nth-child(2){
        width: 14%;
        padding: 6px 4px;
    }
}