@charset "utf-8";
/*
Theme Name: jsve
Theme URI: non
Description: jsve-theme
Author: jsve
Author URI: non
Version: バージョン 1.0
*/

html { font-size: 62.5%; scroll-behavior: smooth; }
body { font-family: "Noto Sans JP", sans-serif; font-optical-sizing: auto; font-weight: <weight>; font-style: normal; font-size: 1.6rem; line-height: 1.75; word-break: break-all; color: #444; background-color: #FFF;position: relative;}
html,body { display: flex; height: 100%; flex-direction: column; }


p { text-align: justify; margin-bottom: 10px;}
i { margin: 0 0.5rem; font-size: 110%; }
a { opacity: 1; transition: .3s; }
a:hover { opacity: 0.5;	transition: .3s;}
img { max-width: 100%; height: auto; }
ul, li { list-style: none; }
.PC { display: block; }
.SP { display: none; }

h1,h2,h3 {
	font-weight: 800;
	margin: 0 0 10px 0;
}

section {
	margin: 15px 0;
}

section + section {
	padding: 5rem 0 0 0;
}


.inner1180 {
	max-width: 1180px;
	margin: 0 auto;
}

.inner900 {
	max-width: 900px;
	margin: 0 auto;
}


@media (max-width: 1180px) {
	.inner1180 {
		padding: 2rem;
	}
}

  @media (max-width: 768px) {
	.inner1180 {
		padding: 1rem;
	}
}

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


.contents {
	flex: 1;
}


.BTN-LOGIN { background-color: #c8000b; }
.BTN-ENTRY { background-color: #004098; }
.BTN-CONTACT { background-color: #CCCCCC; }


/***** header.css *********************/

header {
	position: fixed;
	width: 100%;
	z-index: 999999;
}
header .TOP_header {
	height: 80px;
	background-color: #FFF;
	transition: all 0.3s ease;
}
header .TOP_header .header_logo {
	display: flex;
	justify-content: left;
	min-width: 520px;
	padding: 15px 0 0 20px;
}
header .TOP_header .header_logo h1 {
	display: inline-block;
	width: 260px;
}
header .TOP_header .header_logo h2 {
	display: inline;
	font-size: 1.0rem;
	font-weight: 400;
	margin: 24px 0 0 0.2rem;
}
header .TOP_header .header_logo h2 b {
	color: #004098;
} 
header .TOP_header .header_btn {
	display: block;
	margin: 0 0 0 auto;
	padding: 0;
	text-align: center;
}
header .TOP_header .header_btn > p {
	display: inline;
	margin-right: 1rem;
	font-size: 1.2rem;
	color: #666;
}
header .TOP_header .header_btn > p a {
	text-decoration: underline;
}
header .TOP_header .header_btn > a {
	display: inline-block;
	width: 120px;
	height: 80px;
	margin: 0;
	padding-top: 25px;
	font-size: 1.4rem;
	color: #FFF;
}
header .TOP_header .header_btn > a i {
	display: block;
	font-size: 1.4rem;
}
header .TOP_nav {
	margin: 0 0 0 auto;
	text-align: right;
}
header .TOP_nav > ul {
	max-width: 980px;
	display: flex;
	padding: 0 5rem;
	justify-content:right;
	margin: 0 0 0 auto;
	background-color: #FFF;
}
header .TOP_nav > ul > li {
	display: inline-block;
	margin: 0 0 0 5rem;
	font-weight: 700;
	position: relative;
}
header .TOP_nav > ul > li > a {
	display: block;
	padding: 2.2rem 0;
	transition: all 0.3s ease;
}

header .TOP_nav.js-header > ul > li > a {
	padding: 1.2rem 0;
}

header .TOP_nav .sub_nav_area {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 200px;
	background-color: #ffc3c6;
	text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
	font-size: 1.4rem;
	font-weight: 400;
	transition: all 0.3s ease;
}
header .TOP_nav.js-header .sub_nav_area {
    top: 45px;
}
header .TOP_nav ul li:hover .sub_nav_area {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.sub_list{
	line-height: 4;
    transition: all .3s;
    position: relative;
}
.sub_list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
}
.sub_list:hover {
    background-color:#004098;
}
.sub_list a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
}
.sub_list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}
.sub_list:hover a {
	color: #FFF;
}
header .TOP_nav ul li:nth-child(1) {
	margin: 0 0 0 0;
}
header .SPmenu {
	display: none;
}
.SPmenu {
	position: fixed;
	top: 0;
	right: -100%; /* 初期状態では画面の外に隠れている */
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 1);
	color: #333;
	transition: right 0.3s ease; /* スライドインのアニメーション */
	padding: 20px;
	box-sizing: border-box;
	z-index: 10;
	overflow: scroll;
}  
/* メニューOPEN時 */
.SPmenu.open {
	right: 0;
}
.SPmenu h1 span {
	font-size: 1.2rem;
	margin-right: 0.5rem;
}
/* ハンバーガーボタン */
.hamburger {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 30px;
	cursor: pointer;
	z-index: 99999;
}
.hamburger span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: #004098;
	border-radius: 10px;
	margin: 5px 0;
	transition: 0.4s;
}
/* ×閉じるボタン */
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}
.SPmenu_btn {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 2rem 0;
}
.SPmenu_btn > a {
	display: block;
	width: 33.33333%;
	padding: 1.5rem 0 1rem 0;
	margin: 0;
	text-align: center;
	color: #FFF;
	font-size: 1.4rem;
}
.SPmenu_btn > a i {
	display: block;
}
/* SPmenu_LIST */
.SPmenu ul {
	list-style-type: none;
	padding: 1rem 2rem;
} 
.SPmenu > ul > li {
	border-bottom: 1px solid #CCC;
	line-height: 1.5;
}
.SPmenu > ul > li a {
	display: block;
	padding: 1rem 0;
}
.SPmenu > ul > li:last-child {
	border: 0;
	margin-bottom: 1rem;
}
.SPmenu > ul > li > ul {
	margin: -1rem 0 1rem 1rem;
}
.SPmenu p {
	font-size: 1.2rem;
	text-align: center;
}
.SPmenu p a {
	text-decoration: underline;
	margin: 0.5rem;
}

@media (max-width: 1000px){
	header .TOP_header .header_btn {
		display: none;
	}
	header .TOP_nav ul {
		display: none;
	}
	header .SPmenu {
		display: block;
	}
}

@media (max-width: 768px){
	header .TOP_header .header_logo {
		min-width: 100%;
		padding: 15px 0 0 10px;
	}
	header .TOP_header .header_logo {
		display: block;
	}
	header .TOP_header .header_logo h1 {
		display: block;
		width: 240px;
		margin: 0;
		padding: auto;
	}
	header .TOP_header .header_logo h2 {
		display: block;
		font-size:0.9rem;
		margin: -10px 0 0 60px;
	}
}



/***** contents.css *********************/

.contents {
	margin-top: 80px;
}

.contents p.wait {
	display: block;
	font-size: 1.6rem;
	text-align: center;
	color: #888;
	margin: 70px 0 0 0;
	border: 1px solid #999;
	padding: 1rem 1.5rem;
	
}



/***** TOP_Area.css *********************/

.Top_Area {

}
.top_news {
	display: flex;
}
.top_news h2 {
	font-size: 2.5rem;
	width: 200px;
	margin: 0 2rem 0 0;
}
.top_news h2 span {
	display: inline-block;
	vertical-align: top;
	font-size: 1.2rem;
	color: #c8000b;
	font-weight: 800;
	margin: 0 3rem 0 0;
	position: relative;
}
.top_news h2 span::after {
	display: block;
	content: "";
	width: 30px;
	height: 2px;
	background-color: #c8000b;
	position: absolute;
	right: -2.5rem;
	top: 1.6rem;
	rotate: -45deg;
}
.top_news ul.top_news_list {
	width:80%;
	margin-top: 1rem;
}
.top_news ul.top_news_list li {
	border-top:  1px solid #CCC;
	border-bottom:  1px solid #CCC;
	margin: -1px 0 0 0;
	transition: .3s all;
}

.top_news ul.top_news_list li a {
	display: block;
	width: 100%;
	padding: 3rem 0;
}

.top_news ul.top_news_list li a:hover {
	background-color: #fafafa;
	transition: .3s all;
}

.top_news ul.top_news_list li a dl {
	display: flex;
}
.top_news ul.top_news_list li a dl dt {
	width: 200px;
}
.top_news ul.top_news_list li a dl dd {
	display:block;
	width: 100%;
	color: #333;
}
.top_news ul.top_news_list li a:hover dl dd {
	color: #004098;
	text-decoration: underline;
}

.top_bnr {
}
.top_bnr ul.top_bnr_list {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}
.top_bnr ul.top_bnr_list li {
	width: 30%;
	margin: 2% 1.6%;
	height: 320px;
	background: url(s_img/TOP_bnr_line.gif) bottom center / contain no-repeat;
	position: relative;
}
.top_bnr ul.top_bnr_list li::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 2.5rem;
	color: #004098;
	content: "\f067";
	position: absolute;
	right: 10px;
	bottom: 20px;
	transition: .3s all;
}
.top_bnr ul.top_bnr_list li:hover::after {
	transition: .3s all;
	rotate: 90deg;
	color: #c8000b;
}
.top_bnr ul.top_bnr_list li a {
	display: block;
	width: 100;
	height: 100%;
	opacity: 1;
}
.top_bnr ul.top_bnr_list li a dt.top_bnr_img {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	background-size: 140%;
	transition: .3s all;
	position: relative;
}
.top_bnr ul.top_bnr_list li a dt.top_bnr_img::after {
	content: "";
	width: 100%;
	height: 200px;
	border-radius: 10px;
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	left: 0;
}
.top_bnr ul.top_bnr_list li a:hover dt.top_bnr_img {
	background-size: 150%;
	transition: .3s all;
}
.top_bnr ul.top_bnr_list li a dt.top_bnr_ideology {
	background-image: url(s_img/TOP_ideology.jpg);
}
.top_bnr ul.top_bnr_list li a dt.top_bnr_seminar {
	background-image: url(s_img/TOP_seminar.jpg);
}
.top_bnr ul.top_bnr_list li a dt.top_bnr_entry {
	background-image: url(s_img/TOP_entry.jpg);
}

.top_bnr ul.top_bnr_list li a dd {
	margin: 2rem 0;
	font-size: 2.0rem;
	font-weight: 700;
}
.top_bnr ul.top_bnr_list li a:hover dd {
	color: #004098;
}
.top_bnr ul.top_bnr_list li a dd p {
	width: 70%;
	font-size: 1.2rem;
	font-weight: 400;
}
.top_bnr ul.top_bnr_list li a:hover {
	opacity: .8;
}

@media (max-width: 768px){
	.top_news {
		display: block;
	}
	.top_news h2,
	.top_news ul.top_news_list {
		width: 100%;
		margin: 2rem 0;
	}

	.top_bnr ul.top_bnr_list li {
		width: 47%;
		margin: 2% 1.5% 50px 1.5%;
		height: 320px;
	}
	.top_bnr ul.top_bnr_list li a dt.top_bnr_img {
		width: 100%;
		height: 200px;
		border-radius: 10px;
		background-position: center;
		background-size: 100%;
		background-repeat: no-repeat;
		background-size: 180%;
		transition: .3s all;
		position: relative;
	}
	.top_bnr ul.top_bnr_list li a:hover dt.top_bnr_img {
		background-size: 190%;
		transition: .3s all;
	}
}


/***** PAGE.css *********************/

.PAGE_Title {
	background: url(s_img/PAGE-Title.jpg) center center / cover no-repeat;
	padding: 9rem 0 2rem 0;
}

.PAGE_Title h1 {
	color: #FFF;
	font-size: 3.0rem;
	font-weight: 700;
}

.PAGE_Area {
	padding: 4rem 0 0 0;
}
.page_section.flex {
	justify-content:left;
}
.page_section.flex h2 {
	min-width: 360px;
	font-size: 2.2rem;
	padding: 0 2rem;
	margin: 0;
}
.page_section.flex h2::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	border-radius: 10px;
	margin: 0.5rem 0 0 -2rem;
	background: linear-gradient(to right, #004098 0%, #004098 70%, #c8000b 70%, #c8000b 100%);
}

.page_section .section_detail {
	margin: 3rem 0 0 0;
}
.page_section .section_detail h3 {
	font-size: 1.8rem;
}
.page_section .section_detail ol li {
	list-style:decimal;
	margin:  0 0 0 1.6rem;
	padding: 0 0 0 1rem;
	padding: 0 0 0.5rem 0;
}

.page_section .section_detail ul li ul {
	margin: 0 0 1.5rem 0;
}

.page_section .section_detail ul li ul li {
	list-style:circle;
	margin: 0 0 0 3.0rem;
	padding: 0 0 0 1rem;
	padding: 0 0 0.5rem 0;
}

.page_section .section_detail table {
	width: 100%;
}
.page_section .section_detail table tr {}
.page_section .section_detail table tr th {
	width: 150px;
	padding: 2rem 2rem 1rem 2rem;
	border: 1px solid #DDD;
}
.page_section .section_detail table tr td {
	display: block;
	padding: 2rem 2rem 1rem 2rem;
	border: 1px solid #DDD;
	margin: -1px 0 0 -1px;
}

.page_section .section_detail table tr td p {
	display: inline-block;
	width: 120px;
}
.page_section .section_detail table tr td small {
	margin: 0 0 0 2rem;
	font-size: 1.2rem;
}


/******* entry_member **********/


.mem_type {
	background-color: #f7f7f7;
	padding: 20px;
}

.mem_type span {
	display: block;
	width: 80%;
	margin: 0 auto;
	text-align: center;
}

.mem_type > ul {
	display: flex;
	flex-direction: row;
	background-color: #f7f7f7;
}

.mem_type > ul > li {
	display: flex;
 	flex-direction: column;
	width: 25%;
	background-color: #FFF;
	text-align: center;
	margin: 10px;
}

.mem_type > ul > li > h1 {
	background-color: #ccc;
	padding: 20px 0;
	font-weight: 400;
	color: #FFF;
	font-size: 120%;
}

.mem_detail {
	flex-grow: 1;
	margin: 10px;
	box-sizing: border-box;
}

.entryBtn {
	padding: 10px;
}

.entryBtn a {
	display: block;
	width: 100%;
	text-align: center;
	padding: 20px 0;
	margin: 20px 0 0 0;
	color: #FFF;
}

.mem_type > ul > li .mem_detail {
	padding: 10px;
}

ul.entry_price {
	display: flex;
	padding: 10px;
}

ul.entry_price li {
	display: block;
	width: 50%;
	text-align: center;
	padding: 15px;
	border: 1px solid #CCC;
	margin-left: -1px;
}

.entryBtn a small {
	display: block;
	font-size: 80%;
}

.entryBtn a i {
	padding: 0 0 0 0;
	transition: .3s all;
}

.entryBtn a:hover i {
	padding: 0 0 0 20px;
	transition: .3s all;
}

.mem_type .mem_type1 h1, .mem_type .mem_type1 a { background-color: #004098; }
.mem_type .mem_type2 h1, .mem_type .mem_type2 a { background-color: #3b7ad2; }
.mem_type .mem_type3 h1, .mem_type .mem_type3 a { background-color: #75a7ec; }
.mem_type .mem_type4 h1, .mem_type .mem_type4 a { background-color: #666666; }



@media (max-width: 1000px){
	.PAGE_Title {
		background-color: #004098;
		padding: 3rem 0 0 0;
	}
	.PAGE_Title h1 {
		font-size: 2.0rem;
	}
	
	.page_section.flex {
		display: block;
		width: 100%;
	}
	.page_section.flex h2 {
		display: block;
		min-width: 100%;
		padding: 0 0rem;
		margin: 0 0 2rem 0;
	}
	.page_section.flex h2::after {
		width: 100%;
		height: 2px;
		margin: 0.5rem 0 0 0;
		background: linear-gradient(to right, #c8000b 0%, #c8000b 10%, #004098 10%, #004098 100%);
	}

	.page_section.flex h2 br {
		display: none;
	}

	.page_section .section_detail {
		padding: 0 1rem;
	}

	.page_section .section_detail ol li {
		list-style:decimal;
		margin-left: 1.6rem;
		padding-left: 1rem;
		padding: 0 0 0.5rem 0;
	}
	.page_section .section_detail table tr th {
		width: 100px;
		padding: 1rem 1rem 0rem 1rem;
	}
	.page_section .section_detail table tr td  {
		padding: 1rem 1rem 0rem 1rem;
	}
	.page_section .section_detail table tr td small {
		display: block;
		margin: -1rem 0 1rem 1rem;
	}
	.mem_type > ul {
		display: flex;
		flex-wrap: wrap;
	}
	.mem_type > ul > li {
		width: 45%;
		margin: 20px 10px;
	}
}

@media (max-width: 768px){
	.mem_type > ul {
		display: block;
	}
	.mem_type > ul > li {
		width: 100%;
		margin: 20px 10px;
	}
}


/***** greeting *********************/

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

ul.greetingWrap li:nth-child(1) {
	width: 60%;
	padding: 50px 0 0 0;
}

ul.greetingWrap li:nth-child(1) p {
	margin: 0 0 20px 0;
}

ul.greetingWrap li:nth-child(1) span {
	display: block;
	text-align: right;
}

ul.greetingWrap li:nth-child(1) small {
	display: block;
	margin: 20px 0 0 0;
	color: #666;
}

ul.greetingWrap li:nth-child(2) {
	width: 35%;
}

ul.greetingWrap li:nth-child(2) img {
	width: 100%;
}

@media (max-width: 768px){
	ul.greetingWrap {
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	
	ul.greetingWrap li:nth-child(1) {
		width: 100%;

	}
	ul.greetingWrap li:nth-child(2) {
		width: 100%;
		margin: 0 0 30px 0;
		text-align: center;
	}
	ul.greetingWrap li:nth-child(2) img {
		width: 280px;
		margin: 0 auto;
	}
	
}


/***** privacy-poricy -- tokusho -- teikan *********************/

.privacy h2,
.teikan h2 {
	margin: 3rem 0 1rem 0 ;
	font-size: 2.0rem;
}

.privacy hr,
.teikan hr {
	margin: 5rem 0;
}

.privacy p,
.teikan p {
	display: block;
	width: 100%;
	padding: 0 0 2rem 0;
	margin: 0 0 2rem 0;
	border-bottom: 1px dashed #CCC;
}
.privacy dl,
.teikan dl {
	display: block;
	width: 100%;
	padding: 0;
	margin: 1rem 0;
}
.privacy dl dt,
.teikan dl dt {
	display: inline-block;
	width: 100%;
	margin: 2rem 0 0 0;
}

.privacy dl dd,
.teikan dl dd {
	display: block;
	width: auto;
	text-align: justify;
	padding: 1rem 0 0 3rem;
}
.privacy dl dd > span,
.teikan dl dd > span {
	font-weight: 700;
	margin-right: 1rem;
}

.teikan dl dd > b {
	font-weight: 700;
	margin: 0 1rem;

}
.teikan dl dd > ol {
	margin-left: 4rem;
}
.teikan dl dd > ol li {
	list-style: decimal;
}



.privacy small,
.teikan small {
	display: block;
	text-align: right;
	color: #888;
	margin: 3rem 0 0 0;
}


.tokusho table {
	width: 100%;
}
.tokusho table tr th {
	min-width: 100px;
	padding: 3rem 2rem;
	border: 1px solid #CCC;
}
.tokusho table tr td {
	padding: 3rem 2rem;
	border: 1px solid #CCC;
	margin: -1px 0 0 0;
}


/***** footer.css *********************/

footer {
	padding: 4.5rem 0;
	margin-top: 6rem;
	background-color: #F7F7F7;
	font-size: 1.2rem;
}
footer .inner1180 > .flex {
	flex-wrap: wrap;
}
footer .footer_logo {
	width: 430px;
	margin: 0 0 1rem 0;
}
footer .footer_logo dl {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	margin: 0 0 1rem 0;
}
footer .footer_logo dt {
	display: block;
	width: 160px;
	margin: 0 1.5rem 0 0;
}
footer .footer_logo dd {
	display: block;
	width: auto;
	padding: 0.5rem 0 0 0;
	font-size: 1.6rem;
	line-height: 1.5;
}
footer .footer_logo dd span {
	display: block;
	font-size: 1.2rem;
}
footer .footer_logo dd small {
	display: block;
	font-size: 1.1rem;
	font-weight: 400;
	margin: -0.7rem 0 0 0;
}
footer .footer_logo dd p {
	margin-top: 1rem;
	font-size: 1.2rem;
}
footer .footer_link {
	max-width: 780px;
}
footer .footer_link ul {
	margin: 0 2rem 0 0;
}
footer .footer_link ul li ul {
	margin-left: 1rem;
}
footer .footer_btn {
	width: 140px;
	margin-left: 1rem;
}
footer .footer_btn a {
	display: block;
	margin: 0 0 0.5rem 0;
	padding: 0 1rem;
	width: 140px;
	height: 50px;
	color: #FFF;
	line-height: 50px;
	text-align: center;
}
footer .footer_btn a:hover {
	opacity: 1;
}
footer .footer_btn a:hover::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f054";
	margin-left: 1rem;
}
footer .copyright {
	margin: 0 auto;
	padding: 2rem 0 0 0;
	text-align: center;
	font-size: 1.0rem;
}


@media (max-width: 1000px){
	footer .footer_link .flex {
		display: block;
	}
	footer .footer_logo {
		width: 100%;
	}
	footer .footer_logo dl {
		justify-content:center;
	}
	footer .footer_btn {
		display: flex;
		width: 100%;
		margin: 2rem 0 0 0;
	 }
	 footer .footer_link {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 0rem;
	}
	footer .footer_link ul {
		display: inline;
		margin: 0 0rem 0 0;
	}
	footer .footer_link ul li {
		display: inline;
		padding: 0;
		margin: 0 1rem 0 0;
		white-space: nowrap;
		text-decoration: underline;
	}
	footer .footer_link ul li ul {
		display: inline;
		margin-left: 0;
	}
	 footer .footer_btn a {
		width: 33.33333%;
	 }
	 footer .footer_btn a:hover::after {
		display: none;
	}
}

