﻿@charset "UTF-8";

/*---------------------------------------

[reset]

[base]
	font
	anchor
	add class

.body_common set-up]
	h
	pagetop link

[lower.body_common]

[each page]

.body_common contents]
	container
	header
	main contents
	footer
	print

[clearfix]

[cms setting]

---------------------------------------*/

/* CSS Document */
/*===============================================
●style.css
===============================================*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.container {
	width: 100%;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: reset */
body,div,dl,dt,dd,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote {
	margin: 0;
	padding: 0;
}
ul,ol{
	margin: 0;
}

header,nav,section,aside,footer {
	display: block;
}

table {
	border-spacing: 0;
}

fieldset,img,a img,abbr,acronym {
	border: 0;
}

li img,dt img {
	vertical-align: top;
}

address,caption,cite,code,dfn,th,var {
	font-style: normal;
	font-weight: normal;
}

caption,th {
	text-align: left;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}

q:before,q:after {
	content: '';
}

a {
	outline: none;
}

button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: base */

/*--------------------------------------- font */
html {
	font-size: 62.5%;
}

body {
	font-family: 'Open Sans', Verdana,"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ",Meiryo, sans-serif;
	line-height: 1.8;
	color: #333333;
	-webkit-text-size-adjust: 100%;
	font-size: 1.6em;
}
@media screen and (max-width: 779px) {
	body {
		font-size:1.4em;
	}
}
.tech_search_btn,
.pref_link ul li a:after {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
nav#side li a:before {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.btn a:before,
.btn_left a:before,
.editor-style-btn1 a:before,
.editor-style-btn2 a:before {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}
@media screen and (max-width:779px) {
	html,body {
		-webkit-text-size-adjust: 100%;
		-webkit-overflow-scrolling: touch;
	}
	iframe{
		max-width:100%;
	}
}
/*----------------------- color */
/* red */
.red {
	color: #FF0000;
}

/* white */
.white {
	color: #FFFFFF;
}

/* aqua */
.aqua {
	color: #43b14b;
}

/* blue */
.blue {
	color: #334f99;
}

/* black */
.black {
	color: #0b0b0b;
}
/*----------------------- size */
/* size10px */
.size10 {
	font-size: 0.71em;
}

/* size12px */
.size12 {
	font-size: 0.85em;
}

/* size14px */
.size14 {
	font-size: 1.0em;
}

/* size16px */
.size14 {
	font-size: 1.14em;
}

/* size18px */
.size18 {
	font-size: 1.28em;
}

/* size22px */
.size22 {
	font-size: 1.57em;
}

/* size24px */
.size22 {
	font-size: 1.71em;
}


/*--------------------------------------- anchor */

a {
	color: #43b14b;
}

a:hover {
	color: #333333;
}

/* btn */
.btn {
	text-align: center;
	display: block;
	padding: 20px;
}
/* エディター：スタイル */
.editor-style-btn1,
.editor-style-btn2 {
	display: block;
	padding: 10px;
}
.btn a,
.btn_left a,
.editor-style-btn1 a,
.editor-style-btn2 a {
	text-decoration: none;
	display: inline-block;
	padding: 0.8em 3vw;
	line-height: 1.5;
	position: relative;
	display:inline-block;
	position:relative;
	text-align:center;
	border:1px solid #43b14b;
	font-size:1.1em;
	text-decoration:none;
	transition: color 0.2s, background-color 0.2s;
}
.btn a,
.btn_left a,
.editor-style-btn1 a {
	color:#43b14b;
	background-color:#fff;
}
.editor-style-btn2 a {
	color: #fff;
	background-color: #43b14b;
	box-shadow: 0 0 10px rgb(67 177 75 / 50%);
}
.btn a:hover,
.btn_left a:hover,
.editor-style-btn1 a:hover {
	color: #fff;
	background-color: #43b14b;
}
.editor-style-btn2 a:hover {
	color:#43b14b;
	background-color:#fff;
}
.editor-style-text1 {
	color: #ffffff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3),-1px -1px 5px rgba(0, 0, 0, 0.3);
}
/*--------------------------------------- add class */

.floatL {
	float: left;
}

.floatR {
	float: right;
}

.clearB {
	clear: both;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.bold {
	font-weight: bold;
}
.size_09 {
	font-size: 0.9em;
}
.youtube_box {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
 
.youtube_box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
/* ---------	可視範囲に入ったらフェードイン common.js */
/*左から右にフェードイン*/
.left-to-right {
	opacity: 0.1;
	transform: translateX(-30px);
	transition: transform 1s;
}
.left-to-right.scrollin {
	opacity: 1;
	transform: translate(0);
}
.right-to-left {
	opacity: 0.05;
	transform: translateX(30px);
	transition: transform 1s;
}
.right-to-left.scrollin {
	opacity: 1;
	transform: translate(0);
}
/*下から上にフェードイン*/
.down-to-top {
	opacity: 0.1;
	transform: translateY(30px);
	transition: transform 1s;
}
.down-to-top.scrollin {
	opacity: 1;
	transform: translateY(0);
}
.top-to-down {
	opacity: 0.1;
	transform: translateY(30px);
	transition: transform 1s;
}
.top-to-down.scrollin {
	opacity: 1;
	transform: translateY(0);
}
/*--------------------------------------- columnBox */
@media screen and (min-width: 780px), print {
	.columnBox {
		display: table;
		table-layout: fixed;
		width: 100%;
	}
	.columnBox .column {
		display: table-cell;
		vertical-align: top;
		padding: 10px 20px;
	}
	.columnBox .v_middle {
		vertical-align: middle;
	}
	.columnBox .v_bottom {
		vertical-align: bottom;
	}
	.w20 {
		width: 20%;
	}
	.w30 {
		width: 30%;
	}
	.w40 {
		width: 40%;
	}
	.w50 {
		width: 50%;
	}
	.w60 {
		width: 60%;
	}
	.w70 {
		width: 70%;
	}
	.w80 {
		width: 80%;
	}
	.padr3 {
		padding-right: 3%;
	}
	.padL3 {
		padding-left: 3%;
	}
	.padt3 {
		padding-top: 3%;
	}
	.padt6 {
		padding-top: 6%;
	}
}

@media screen and (min-width:780px), print {

}
@media screen and (max-width: 779px) {

}
/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::.body_common set-up */
h1, h2, h3, h4, h5, h6 {
	clear: both;
	position: relative;
}
.lower h1,
h2 {
	padding: 20px 0;
	max-width: 1170px;
	margin: 0 auto;
	font-weight: normal;
}

/* h:変更した場合はstyle_editor.cssにも反映すること */
h3 {
	margin: 1em 0;
	padding: 0.5em 0;
	color: #43b14b;
	border-bottom: 2px dotted #eaeaea;
}
h3:after {
	width: 10%;
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	margin-bottom: -3px;
	border: 2px solid;
}
h3 a {
	color: #43b14b;
}
h4{
	padding: 0 1em;
	margin: 1em 0;
	border-left: 7px solid #43b14b;
}

h5 {
	margin: 20px 0;
	padding: 0 10px 0 30px;
}
h5:before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	border: 6px solid #43b14b;
	position: absolute;
	left: 0;
	top: 4px;
}
h6 {
	color: #43b14b;
	font-weight: bold;
	margin: 1em 0;
}
.h_box h2,
.h_box .btn {
	display: inline-block;
	vertical-align: middle;
}
.h_box .btn {
	padding-left: 5%;
}

@media screen and (min-width: 780px), print {
	.lower h1,
	h2 {
		font-size: 1.71em;
	}
	h3 {
		font-size: 1.4em;
	}
	h4 {
		font-size: 1.3em;
	}
	h5 {
		font-size: 1.1em;
	}
	h6 {
		font-size: 1em;
	}
}
@media screen and (max-width: 779px) {
	.lower h1,
	h2 {
		font-size: 1.2em;
	}
	h3 {
		font-size: 1.1em;
	}
	h4 {
		font-size: 1.1em;
	}
	h5,h6 {
		font-size: 1em;
	}
}

/* table */
table {
	border-collapse: collapse;
}

table th,
table td {
	padding: 12px;
	border: 1px solid #eaeaea;
}

table th {
	background: #fafafa;
}

table[border="0"],
table[border="0"] th,
table[border="0"] td {
	border: none;
}
table[border="1"],
table[border="1"] th,
table[border="1"] td {
	border: 1px solid #eaeaea;
}
@media screen and (max-width:640px) {
	.scroll_table {
		border: 1px solid #eaeaea;
		box-shadow: inset -10px 0 10px #eaeaea;
		-webkit-overflow-scrolling: touch;
	}
	.scroll_table table {
		overflow-x: auto;
		white-space:nowrap;
		display: block;
		width:100%;

	}
}
@media screen and (max-width:479px) {
	table th {
		width: auto !important;
	}
	table.responsive tr,
	table.sp_table tr{
		display: block;
	}
	table.responsive th,
	table.responsive td,
	table.sp_table th,
	table.sp_table td{
		text-align:left;
		width:100% !important;
		display: list-item;
		list-style:none;
	}
	table.responsive tr table,
	table.sp_table tr table{
		display: table;
	}
	table.responsive th table th,
	table.responsive td table td,
	table.sp_table th table th,
	table.sp_table td table td{
		width:auto !important;
		display: table-cell;
	}
	table.noresponsive tr{
		display: table-row;
	}
	table.noresponsive th,
	table.noresponsive td{
		text-align:left;
		width:100% !important;
		display: table-cell;
		list-style:none;
	}
	table.noresponsive tr table{
		display: table;
	}
	table.noresponsive th table th,
	table.noresponsive td table td{
		width:auto !important;
		display: table-cell;
	}
	.scroll_table_box {
		font-size: 0.9em;
		overflow: auto;
		white-space: nowrap;
	}
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::.body_common contents */

/*--------------------------------------- container */

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
}
.breadCrumb ul,
.layout02,
.copy div,
article {
	width: 100%;
	margin: 0 auto;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: clear */
.entry:after,
article:after,
ul:after,
section:after,
header:after,
header div:after,
footer:after,
.clearFix:after {
	content: "";
	display: block;
	clear: both;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main */

.box {

}
.box img{
	max-width: 100%;
	vertical-align: middle;
}
.box_column .box_img{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.box .msg {
	position: relative;
}
.code {
	padding: 10px 0 20px;
}
/*--------------------------------------- map_area */
.map_area {
	text-align: center;
	background-color: #f6fbf7;
}
.map_area svg {
	max-width: 750px;
}

.map_area a path {
	transition: 0.2s fill;
}
.map_area .cls-1 {
	stroke: #b54686;
}

.map_area .cls-1, .map_area .cls-2, .map_area .cls-3, .map_area .cls-4, .map_area .cls-5, .map_area .cls-6, .map_area .cls-7, .map_area .cls-8, .map_area .cls-9 {
	fill: none;
}

.map_area .cls-10 {
	fill: #45c9d6;
}

.map_area .cls-10, .map_area .cls-11, .map_area .cls-12, .map_area .cls-13, .map_area .cls-14, .map_area .cls-15, .map_area .cls-16, .map_area .cls-17 {
	stroke: #fff;
	stroke-miterlimit: 10;
	stroke-width: .map_area .27px;
}

.map_area .cls-18 {
	fill: #fff;
}

.map_area .cls-2 {
	stroke: #79bc28;
}

.map_area .cls-11 {
	fill: #dd5757;
}

.map_area .cls-3 {
	stroke: #07a;
}

.map_area .cls-12 {
	fill: #f29600;
}

.map_area .cls-4 {
	stroke: #45c9d6;
}

.map_area .cls-5 {
	stroke: #dd5757;
}

.map_area .cls-13 {
	fill: #00a346;
}

.map_area .cls-6 {
	stroke: #00a346;
}

.map_area .cls-19 {
	fill: #07a;
}

.map_area .cls-14 {
	fill: #79bc28;
}

.map_area .cls-20 {
	fill: #333;
}

.map_area .cls-15 {
	fill: #6f43aa;
}

.map_area .cls-16 {
	fill: #b54686;
}

.map_area .cls-7 {
	stroke: #fccf00;
}

.map_area .cls-8 {
	stroke: #6f43aa;
}

.map_area .cls-9 {
	stroke: #f29600;
}

.map_area .cls-21 {
	fill: #999a9a;
}

.map_area .cls-17 {
	fill: #fccf00;
}
.map_area a:hover path{

}
.map_hokkaido:hover path {
	fill: #0a98d5;
}
.map_tohoku:hover path {
	fill: #6fdee9;
}
.map_kanto:hover path {
	fill: #20bd63;
}
.map_hokuriku:hover path {
	fill: #96d945;
}
.map_tokai:hover path {
	fill: #ffde49;
}
.map_kinki:hover path {
	fill: #fbb749;
}
.map_chugoku:hover path {
	fill: #f37e7e;
}
.map_shikoku:hover path {
	fill: #cf74a8;
}
.map_kyushu_okinawa:hover path {
	fill: #9e78d1;
}
/*--------------------------------------- list_area */
.list_area {

}
.list_area ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.list_area ul li {

}
.list_area ul li a {
	color: #333333;
	display: block;
	text-decoration: none;
	padding: 2px 10px;
	border: 1px solid #dadada;
	transition: 0.2s;
}
.list_area ul li a:hover {

}

@media screen and (max-width: 779px) {
	.list_area ul li {
		width:calc((100% - 10px) / 2);
	}
}
@media screen and (max-width: 479px) {
	.list_area ul li {
		font-size: 0.9em;
	}

}
/*--------------------------------------- list_archive */
.list_archive {
	margin-top: 50px;
	background-color: #F6FBF7;
	padding: 20px;
}
.list_archive h5 {
	padding-top: 0;
	margin-top: 0;
}
.list_archive ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.list_archive ul li {
	border-top: 1px solid #dadada;
}
.list_archive ul li:first-child {
	border-top: none;
}
.list_archive ul li a {
	color: #333333;
	display: block;
	text-decoration: none;
	padding: 10px;
	transition: 0.2s;
}
.list_archive ul li a:hover {
	background-color: rgb(255 255 255 / 70%);
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: work_course */

/*--------------------------------------- work_course/index.php */
.work_course_table {
	font-size: clamp(13px, 1vw, 16px);
}
.work_course_table thead {
	position: sticky;
	top: 2px;
	z-index: 2;
	background-color: #eaeaea;
	box-shadow: 0 0 0 2px #eaeaea;
}
.work_course_table tr {
	transition: 0.2s background-color;
}
.work_course_table tr:hover {
	background-color: #fafafa;
}
.work_course_table .td_days {
	text-align: center;
	width: 8em;
}
.work_course_table .td_pref {
	text-align: center;
	width: 7em;
}
.work_course_table .td_title {
	width: 30%;
}
.work_course_table .td_date {

}
.work_course_table .td_venue {
	font-size: 0.9em;
}
/* tablesorter */
.tablesorter-default .header, .tablesorter-default .tablesorter-header {
	background-image: url(img/icon_sort_img.png);
	background-position: center right 5px;
	background-repeat: no-repeat;
	background-size: 15px;
	cursor: pointer;
	padding-right: 25px;
}
.tablesorter-default thead .headerSortUp, .tablesorter-default thead .tablesorter-headerAsc, .tablesorter-default thead .tablesorter-headerSortUp {
	background-image: url(img/icon_sort_up.png);
	border-bottom: #43B14B 2px solid;
}
.tablesorter-default thead .headerSortDown, .tablesorter-default thead .tablesorter-headerDesc, .tablesorter-default thead .tablesorter-headerSortDown {
	background-image: url(img/icon_sort_down.png);
	border-bottom: #43B14B 2px solid;
}
/*--------------------------------------- list_text */
.list_text,
.list_text li {
	display: block;
	padding: 0;
	margin: 0;
}
.list_text {
	background-color: #fff;
	border-radius: 10px;
}
.list_text li {
	position: relative;
	border-top: 1px solid #eaeaea;
}
.list_text li:first-child {
	border-top: none;
}
.list_text li a {
	color: unset;
	text-decoration:none;
	display: block;
}
.list_text li .listBox {
	width: 100%;
}
.list_text li .date {
	color: #777777;
	font-size: 0.9em;
	width: 6em;
}
.list_text li .category {
	font-size: 0.9em;
	width: 10em;
}
.list_text li .category span {
	display: block;
	text-align: center;
	color: #ffffff;
	background-color: #777777;
	border-radius: 100em;
}
.list_text li .icon_color_1 span {
	background-color: #f38c2a;
}
.list_text li .icon_color_2 span {
	color: #333;
	background-color: #FAEE67;
}
.list_text li .icon_color_3 span {
	background-color: #d76e85;
}
.list_text li .listBox .date {
	margin-right:20px;
}
.list_text li .listBox .label {
	display:inline-block;
	min-width:6.5em;
	padding-right: 30px;
}
.list_text li .listBox .label span {
	border-radius: 1em;
	border: 1px solid #eaeaea;
	line-height: 1;
	padding: 5px 1em;
}
@media screen and (min-width: 780px), print {
	.list_text li {
		margin-right: 35px;
	}
	.list_text li .listBox {
		display: flex;
		align-items:center;
		padding:1em 0;
	}
	.list_text li .listBox .date,
	.list_text li .listBox .category,
	.list_text li .listBox .text {
		display:inline-block;
	}
	.list_text li .listBox .date,
	.list_text li .listBox .label {
		white-space:nowrap;
	}
}
@media screen and (max-width: 779px) {
	.list_text li .listBox {
		padding: 10px 30px 10px 0;
		display: block;
	}
	.list_text li .listBox .date,
	.list_text li .listBox .category {
		padding: 5px 0;
		display: inline-block;
		vertical-align: middle;
	}
	.list_text li .listBox .text {
		padding: 5px 0;
		display: block;
	}
	.list_text li .listBox .title {
		display:block;
		width:100%;
	}
}
/*--------------------------------------- list_text */
.list_text li::after {
	content:"";
	width:0.8em;
	height:0.8em;
	display:block;
	background-image: url(./img/arrow_g.png);
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	-webkit- transform: translateY(-50%);
	transform: translateY(-50%);
	right:0.5em;
	position:absolute;
}
.list_text .listBox .date {
	width: 6em;
}
.list_text .listBox .text {
	padding-right: 30px;
}
.list_text .listBox .label span {
	border-radius: 100em;
	border: 1px solid #eaeaea;
	line-height: 1;
	padding: 5px 1em;
	min-width: 7em;
	display: block;
	text-align: center;
}

/*--------------------------------------- pager */
.pager_box{
	clear:both;
	text-align:center;
	margin-top:15px;
}
.pager_box .pager{
	width:2.5em;
	display:inline-block;
	border:1px solid #BFBFBE;
	border-radius:3px;
}
.pager_box .pager a{
	display:block;
	width:100%;
	padding-top:0.5em;
	padding-bottom:0.5em;
}
.pager_box .pager a:link,
.pager_box .pager a:visited{
	color:#333333;
	text-decoration:none;
}
.pager_box .pager a:hover,
.pager_box .pager a:active{
	background:#F1F1F1;
	text-decoration:none;
}
.pager_box .pager_current{
	background:#F1F1F1;
	padding-top:0.5em;
	padding-bottom:0.5em;
}
.pager_box .pager_dot{
	width:1.5em;
	display:inline-block;
}
.pager_box .pager_space{
	width:1em;
	display:inline-block;
	padding-left:0.2em;
	padding-right:0.2em;
}
.pager_box .pager_first{
	display:inline-block;
}
.pager_box .pager_last{
	display:inline-block;
}
