@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&display=swap&subset=japanese");

/*-- R4 Hojyo exhibition - Base --
----------------------------------
サイト全体の基礎設定とヘッダー、ナビゲーション、
本文エリア、フッターの設定が記述されています。

Preload
Base
Main header
Main area
Main footer

Media Queries 1500 1300 1000 800 500 (print 1280)

----------------------------------
----------------------------------*/

/*-----
Disable transition on page load
-----*/
.preload *{
	transition:none !important;
}
/*-----
Hide the entire page in white until the page is loaded
-----*/
.preload::before{
	content:"";
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	display:block;
	background-color:rgb(255,255,255);
	background-image:url("../img/icon_loader.gif");
	background-position:center center;
	background-repeat:no-repeat;
	animation-name:preloadcover;
	animation-duration:.3s;
	animation-delay:2s;
	animation-fill-mode:both;
	z-index:1999;
	pointer-events:none;
}
@keyframes preloadcover{
	0%{opacity:1;}
	100%{opacity:0;}
}

/*-----------------------------
	Base
-----------------------------*/
*,
*::before,
*::after{
	box-sizing:border-box;
}
html{
	font-size:100%;
}
body{
	margin:0;
	font-family:
		"Noto Sans JP",
		"ヒラギノ角ゴ ProN W3",
		Hiragino Kaku Gothic ProN,
		Arial,
		Meiryo,
		sans-serif;
	font-size:1em;
	font-weight:400;
	color:rgb(60,60,60);
	font-feature-settings:"palt";
	line-height:1.85;
	letter-spacing:.02em;
	-webkit-text-size-adjust:100%;
}
main{
	display:block;
}
p{
	margin:.75em 0;
}
.wrapper{
	font-size:.937rem;
}
.clearfix::after{
	content:"";
	display:table;
	clear:both;
}
.box{
	border: #00b9ef solid 3px;
	background: #00b9ef;
	color: #fff;
	font-weight: bold;
	font-size: 140%;
	border-radius: 15px;
}
.box span{
	font-size: 80%;
}
.box2{
	border: #02418E solid 3px;
	background: #02418E;
	color: #fff;
	font-weight: bold;
	font-size: 140%;
	border-radius: 15px;
}
.box2 span{
	font-size: 80%;
}
.box3{
	border: #EC0003 solid 3px;
	background: #EC0003;
	color: #fff;
	font-weight: bold;
	font-size: 140%;
	border-radius: 15px;
}
.box3 span{
	font-size: 80%;
}
.box4{
	border: #F9C200 solid 3px;
	background: #F9C200;
	color: #fff;
	font-weight: bold;
	font-size: 140%;
	border-radius: 15px;
}
.box4 span{
	font-size: 80%;
}
.box5{
	border: #00618A solid 3px;
	background: #00618A;
	color: #fff;
	font-weight: bold;
	font-size: 140%;
	border-radius: 15px;
}
.box5 span{
	font-size: 80%;
}
.box6{
	border: #02418E solid 3px;
	background: #fff;
	color: red;
	font-weight: bold;
	font-size: 140%;
	border-radius: 15px;
}
.box6 span{
	font-size: 80%;
}
.box7{
	border: #F9C200 solid 3px;
	background: #fff;
	color: red;
	font-weight: bold;
	font-size: 140%;
	border-radius: 15px;
}
.box7 span{
	font-size: 80%;
}
.box8{
    padding: 1rem;
	border: red solid 3px;
	background: #fff;
	color: #000;
	font-size: 105%;
	border-radius: 15px;
    text-align: left;
}
.box9{
	border: red solid 3px;
	background: #fff;
	border-radius: 15px;
}
.t_border{
padding: 0.5em 10px;
	font-size:150%;
font-weight: 900;
color:#fff;
	text-shadow:0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00;
background: none!important;
}
.t_shadow_01{
padding: 0.5em 10px;
font-size: 150%;
font-weight: 900;
color: #ff4500;
text-shadow: 1px 1px 3px #f5ff00;
background: none!important;
}
.box9 span{
	font-size: 200%;
	font-weight: bold;
}
.sub_box{
	background: #00b9ef;
	color: #fff;
	width: 100px;
	text-align: center;
	padding: 3px;
	font-weight: bold;
}
.mT40{
	margin-top: 40px;
}
.mT20{
	margin-top: 20px;
}
.mB20{
	margin-bottom: 20px;
}
.end2{
	background: red;
	color: #fff;
	font-weight: bold;
	padding: 3px;
}
dl.info_schedule > dt{
	clear: both;
	float: left;
	width: 5em;
}
dl.info_schedule > dt::after{
	content: "：";	
}
dl.info_schedule > dd{
	margin-left: 5em;
	margin-bottom: 15px;
}
del.c_del_3 {
  background-image: linear-gradient(#e70000, #e70000);
  background-position: 0 50%;
  background-size: 100% 6px;
  background-repeat: repeat-x;
  text-decoration: none;
  padding: 0 2px;
}
/*-----------------------------
	Main header
-----------------------------*/
.main_header{
	position:fixed;
	display:flex;
	justify-content:space-between;
	align-content:center;
	align-items:center;
	margin:0 auto;
	padding:15px var(--main-pad);
	width:100%;
	z-index:2000;
	background-color:rgb(255,255,255);
	box-shadow:0 1px 4px rgba(0,0,0,.3);
}
.main_header h1{
	display:flex;
	justify-content:space-between;
	align-content:center;
	align-items:center;
	margin:0;
	width:100%;
	max-width:428px;
	transition:.15s ease-out;
	transition-property:width,height;
	z-index:500;
	pointer-events:none;
}
.main_header h1 .keisansho{
	position:relative;
    left: 4%;
	display:block;
	padding-right:4.65%;
	width:23%;
	border-right:1px solid rgb(134,176,183);
}
.main_header h1 .hojyo-exhi{
	display:block;
	width:67.10%;
}
.main_header h1 a{
	display:block;
	color:rgb(255,255,255);
	line-height:.5;
	text-decoration:none;
	transition:opacity .2s ease-out;
	pointer-events:auto;
}
.main_header h1 a:hover{
	opacity:.5;
}
.main_header h1 a img{
	vertical-align:bottom;
	line-height:1;
	width:100%;
}
.start{
	background: red;
	padding: 3px;
	color: #fff;
}
.end{
	background: #122680;
	padding: 3px;
	color: #fff;
}
.schedule_box{
	text-align: center;
}
/* 表示非表示
--------------------*/
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	width: auto;
	margin: 2em auto;
}
.cp_box label {
	font-weight: bold;
	position: relative;
	display: block;
	width: 100%;
	margin: 3px auto;
	padding: 0.3em 1em;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
	color: #da3c41;
	border: 2px solid #da3c41;
	border-radius: 3px;
	background: #fff;
}
.cp_box label:hover {
	transition: all 0.3s;
	color: #ffffff;
	background: #da3c41;
}
.cp_box label:hover::after {
	color: #ffffff;
}
.cp_box input:checked ~ label::after {
	color: #da3c41;
}
.cp_box input:checked ~ label:hover::after {
	color: #ffffff;
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	position: relative;
	z-index: 10;
	overflow: hidden;
	height: 0;
	margin-top: -1px;
	transition: height 0.3s ease-in-out,box-shadow 0.6s linear;
	background: rgba(255, 255, 255, 0.5);
}
.cp_box input:checked ~ div {
	transition: height 0.5s ease-in-out,box-shadow 0.1s linear;
}
/* 続きを読むを押すと表示されるテキストの高さ */
.cp_box input:checked ~ div.cp_container {
	height: auto;
}

/* nav
--------------------*/
.main_header #gnav_button{
	display:none;
}
.main_header nav{
	line-height:1.4;
}
.main_header nav .main_nav{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	width:100%;
}
/* main */
.main_header nav .main_01{
	display:flex;
	margin:0;
	padding:0;
	list-style:none;
	line-height:1.4;
}
.main_header nav .main_01 > li{
	position:relative;
	display:flex;
	flex-wrap:wrap;
}
.main_header nav .main_01 > li + li{
	margin-left:1px;
}
.main_header nav .main_01 > li > a{
	position:relative;
	display:block;
	padding:.7rem .8rem;
	font-size:.937rem;
	color:inherit;
	line-height:1.2;
	text-align:center;
	text-decoration:none;
	transition:.15s ease-out;
	transition-property:width,height,background-color;
}
.wrapper:not(.touch_device) .main_header nav .main_01 > li:hover > a{
	background:rgb(0,184,238);
	color:rgb(255,255,255);
}
.main_header nav .main_01 > li .icon{
	height:1.1em;
	margin:0 .2em;
	vertical-align:-15%;
}
.main_header nav .main_01 > li .touch_arrow{
	position:relative;
	display:none;
	align-items:center;
	align-content:center;
	margin-left:-6px;
	padding:5px 8px;
	background:rgb(0,184,238);
	box-shadow:-1px -1px 1px rgba(0,0,0,.7) inset, 1px 1px 1px rgba(0,0,0,.4) inset;
	border-width:1px;
	border-radius:.7rem;
	transition:.2s ease-out;
	transition-property:color;
}
.main_header nav .main_01 > li .touch_arrow::before{
	content:"";
	display:block;
	border-width:0 2px 2px 0;
	border-style:solid;
	border-color:rgb(255,255,255);
	width:.5rem;
	height:.5rem;
	transition:.2s ease-out;
	transition-property:transform;
	transform:rotate(45deg);
}
.touch_device .main_header nav .main_01 > li .touch_arrow{
	display:flex;
}
.touch_device .main_header nav .main_01 > li .touch_arrow.active{
	background:rgb(66,150,180);
}
.touch_device .main_header nav .main_01 > li .touch_arrow.active::before{
	border-color:rgb(255,255,255);
	transform:translateY(3px) rotate(225deg);
}
.main_header nav .layer2{
	position:absolute;
	top:100%;
	right:0;
	display:flex;
	flex-wrap:wrap;
	margin:0 auto;
	padding:0;
	width:13.5rem;
	height:0;
	background:rgb(255,255,255);
	box-shadow:0 1px 4px rgba(0,0,0,.4);
	transition:.15s ease-out .1s;
	transition-property:opacity;
	overflow:hidden;
	opacity:0;
	list-style:none;
}
.wrapper:not(.touch_device) .main_header nav li:hover .layer2,
.touch_device .main_header nav li .touch_arrow.active + .layer2{
	padding:.5rem;
	height:auto;
	opacity:1;
	z-index:1;
}
.main_header nav .layer2 li{
	width:100%;
}
.main_header nav .layer2 a{
	position:relative;
	display:block;
	padding:.4em 1rem;
	font-size:.875rem;
	font-weight:500;
	color:inherit;
	line-height:1.2;
	letter-spacing:0.05em;
	text-decoration:none;
	text-shadow:1px 1px 2px rgba(0,0,0,.2);
	transition:.2s ease-out;
	transition-property:background-color,color;
}
.main_header nav .layer2 a::before{
	position:absolute;
	left:0;
	top:50%;
	content:"";
	display:inline-block;
	margin-right:3px;
	border-width:2px 2px 0 0;
	border-style:solid;
	border-color:rgb(0,184,238);
	width:.5rem;
	height:.5rem;
	transform:rotate(45deg) translateY(-50%);
	transition:border .15s ease-out;
}
.main_header nav .layer2 a:hover{
	background:rgb(0,184,238);
	color:rgb(255,255,255);
}
.main_header nav .layer2 a:hover::before{
	border-color:rgb(255,255,255);
}
/* emphasis */
.main_header nav .emphasis{
	display:flex;
	margin:0;
	padding:0 0 0 1rem;
	list-style:none;
	transition:.15s ease-out;
	transition-property:width,height;
}
.main_header nav .emphasis li{
	display:flex;
}
.main_header nav .emphasis li + li{
	margin-left:1rem;
}
.main_header nav .emphasis a{
	position:relative;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	align-content:center;
	justify-content:center;
	padding:.8rem 1rem;
	background:rgb(0,184,238);
	border:none;
	border-radius:2rem;
	font-size:1rem;
	color:rgb(255,255,255);
	text-decoration:none;
	transition:.15s ease-out;
	transition-property:opacity;
}
.main_header nav .emphasis a:hover{
	opacity:.5;
}
.main_header nav .emphasis li:nth-child(1) a{
	background:rgb(0,184,238);
}
.main_header nav .emphasis li:nth-child(2) a{
	background:rgb(0,184,238);
}

/*-----------------------------
	Main area
-----------------------------*/
.main_area{
	margin:0;
	padding-top:var(--header-height);
	min-height:82vh;
	background-size:100% auto;
}

/*-----------------------------
	Main footer
-----------------------------*/
.main_footer{
	position:relative;
	margin:0 auto;
/*	background:rgb(255,255,255);*/
	box-shadow:0 -2px 6px rgba(0,0,0,.2);
	z-index:1;
    background: #02418E;
}
.main_footer > .inner{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:space-between;
	margin:0 auto;
	padding:35px var(--main-pad);
}
.main_footer .site_title{
	margin:0;
	width:100%;
	max-width:318px;
}
.main_footer .site_title .keisansho{
	display:block;
	width:70%;
	max-width:178px;
}
.main_footer .site_title .hojyo-exhi{
	display:block;
	margin-top:.5rem;
	padding-top:.5rem;
	width:100%;
	border-top:1px solid rgb(134,176,183);
}
.main_footer .site_title a{
	display:block;
	font-size:1rem;
	color:rgb(255,255,255);
	line-height:1;
	text-decoration:none;
	transition:opacity .2s ease-out;
	pointer-events:auto;
}
.main_footer .site_title a:hover{
	opacity:.5;
}
.main_footer .site_title a img{
	vertical-align:bottom;
	line-height:1;
	width:100%;
}
.main_footer .copyright{
	margin:0 auto;
	padding:.7rem var(--main-pad);
	background-color:#02418E;
	font-size:.75rem;
	color:rgb(255,255,255);
	font-weight:700;
	line-height:1.3;
}
.small{
	font-size: 60%!important;
}
.fs80{
	font-size: 80%;
}
.fs120{
	font-size: 120%;
}
.fs140{
	font-size: 140%;
}
iframe{
	width: 560px;
	height: 315px;
	text-align: center;
}
/*---------------------------------
---------------------------------
	Media Queries
---------------------------------
---------------------------------*/
@media screen and (max-width:1500px){
	/*-----------------------------
		Main header
	-----------------------------*/
	.main_header h1{
		width:400px;
	}
	/* nav
	--------------------*/
	/* main */
	.main_header nav .main_01 > li > a{
		padding:.6rem .7rem;
		font-size:.875rem;
	}
}

@media screen and (max-width:1300px){
	/*-----------------------------
		Main header
	-----------------------------*/
	.main_header > .inner{
		padding-top:14px;
		padding-bottom:14px;
	}
	/* Gnav button
	--------------------*/
	.main_header #gnav_button{
		position:absolute;
		top:14px;
		right:45px;
		display:block;
		padding:8px 7px;
		width:57px;
		background:none;
		border:none;
		z-index:1200;
		transition:.15s ease-out;
		transition-property:top,right;
	}
	.main_header #gnav_button > span{
		display:block;
		margin:0 auto 7px;
		width:100%;
		height:4px;
		background:var(--theme-color-01);
		transition:.15s ease-out;
		transition-property:transform,background-color,width;
	}
	.main_header #gnav_button > span:nth-child(3){
		margin-bottom:0;
	}
	.main_header #gnav_button[aria-expanded="true"] > span{
		background:rgb(0,184,238);
	}
	.main_header #gnav_button[aria-expanded="true"] > span:nth-child(1){
		transform:rotate(45deg) translate(8px,7.5px);
	}
	.main_header #gnav_button[aria-expanded="true"] > span:nth-child(2){
		width:0px;
	}
	.main_header #gnav_button[aria-expanded="true"] > span:nth-child(3){
		transform:rotate(-45deg) translate(8px,-7.5px);
	}
	/* nav
	--------------------*/
	.main_header nav{
		position:fixed;
		top:0;
		right:0;
		display:flex;
		align-content:flex-start;
		width:30%;
		min-width:250px;
		height:0;
		overflow-y:scroll;
		opacity:0;
		transition:.15s ease-out;
		transition-property:height,opacity;
	}
	.main_header nav .close_field{
		display:block;
		position:absolute;
		top:0;
		right:0;
		width:30%;
		min-width:250px;
		height:100%;
	}
	.main_header nav.is-drawerActive{
		height:100vh;
		background:rgba(255,255,255,.85);
		z-index:1000;
		opacity:1;
	}
	/* main */
	.main_header nav .main_nav{
		flex-wrap:wrap;
		align-content:flex-start;
		align-items:flex-start;
		margin:0 auto;
		padding-top:60px;
		width:calc(100% - 40px);
		max-width:600px;
		background-color:transparent;
	}
	.main_header nav .main_01{
		flex-wrap:wrap;
		width:100%;
	}
	.main_header nav .main_01 > li{
		width:100%;
	}
	.main_header nav .main_01 > li + li{
		margin-left:0;
		margin-top:6px;
	}
	.main_header nav .main_01 > li > a{
		width:100%;
		padding:.6rem .5rem;
		text-align:left;
	}
	.main_header nav .layer2{
		position:static;
		width:100%;
	}
	.main_header nav .main_01 > li .touch_arrow{
		position:relative;
		margin-left:-45px;
		padding:5px 12px;
	}
	.main_header nav .emphasis{
		justify-content:space-between;
		margin:15px auto 0;
		padding:0;
		width:calc(100% - 10px);
		height:auto;
	}
	.main_header nav .emphasis li{
		width:50%;
	}
	.main_header nav .emphasis li:first-child{
		border-left:0;
	}
	.main_header nav .emphasis a{
		padding:.8em .5em;
		width:100%;
		font-size:.937rem;
	}
}

@media screen and (max-width:1000px){
	html{
		font-size:93.7%;
	}
}

@media screen and (max-width:800px){
	/*-----------------------------
		Main header
	-----------------------------*/
	.main_header{
		padding-top:12px;
		padding-bottom:12px;
	}
	.main_header h1{
		max-width:350px;
	}
	/* Gnav button
	--------------------*/
	.main_header #gnav_button{
		top:7px;
		right:30px;
	}
}

@media screen and (max-width:500px){
	/*-----------------------------
		Main header
	-----------------------------*/
	.main_header h1{
		width:100%;
		max-width:250px;
	}
	/* Gnav button
	--------------------*/
	.main_header #gnav_button{
		top:3px;
		right:12px;
	}
	.main_header nav .emphasis{
		display:block;
	}
	.main_header nav .emphasis li + li{
		margin-left:0;
	}
	.main_header nav .emphasis li{
		margin:0 0 13px;
		width:100%;
	}
	/*-----------------------------
		Main footer
	-----------------------------*/
	.main_footer .address{
		display:block;
		margin:0;
		width:100%;
		text-align:center;
	}
	.main_footer .address .site_title{
		margin:0 auto 2rem;
	}
}

@media screen and (max-width:350px){
	/*-----------------------------
		Main header
	-----------------------------*/
	.main_header{
		padding-top:15px;
		padding-bottom:15px;
	}
	.main_header h1{
		max-width:190px;
	}
	/* Gnav button
	--------------------*/
	.main_header #gnav_button{
		top:3px;
		right:5px;
	}
}

@media print{
	body{min-width:1280px;}
	.main_header{position:absolute;}
}

.schedule dt{float: left;
}

.schedule dd{
	margin-left: 20em;
	margin-top: 0;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

/*table*/
table{
  width: 100%;
  margin-top: 10px;
  border-collapse:separate;
  border-spacing: 0;
}

table th:first-child{
  border-radius: 5px 0 0 0;
}

table th:last-child{
  border-radius: 0 5px 0 0;
  border-right: 1px solid #3c6690;
}

table th{
  text-align: center;
  color:white;
  background: linear-gradient(#829ebc,#225588);
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  width: 25%;
  padding: 10px 0;
}

table td{
  text-align: center;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  width: 25%;
  padding: 10px 0;
}

table td:last-child{
  border-right: 1px solid #a8b7c5;
}

table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

/*追記*/
.hojyo_area{
    display: flex;
    justify-content: center;
}
@media screen and (max-width:800px){
 .hojyo_area{
    display: block;
}   
}


dl.hojyo{
    margin: 1em;
    background: #D2F1FF;
}
dl.hojyo dt{
    font-weight: bold;
    text-align: center;
    background: #F5D021;
    padding:0.8em 1em;
}
dl.hojyo dd{
    margin: 0;
    padding: 2.5em;
}
/*-----------------------------
各種資料　start
---------
#kakushushiryo
.shinsei_mae 申請前 #f89d14(オレンジ)
.shinsei_ji 申請時 #439251（緑）
.kouhu_ji 交付時　#7e6752(茶色)
.shinsei_go 申請後 #13aaec（水色）
.kouhu_go 交付後 #f9ed69 （黄色） 
-----------------------------*/
#kakushushiryo table{
width: 1000px!important;
}
#kakushushiryo .shinsei_mae table th{
/*background: #f89d14!important;*/
border: 1px solid #565656;
color: #fff;
}
#kakushushiryo .kouhu_ji table th{
/*background: #7e6752;*/
border: 1px solid #565656;
color: #fff;
}
#kakushushiryo .kouhu_ji table th:nth-child(2),
#kakushushiryo .shinsei_go table th:nth-child(2),
#kakushushiryo .kouhu_go table th:nth-child(2){
width: 35%!important;
}
#kakushushiryo .shinsei_ji table th{
/*background: #439251;*/
border: 1px solid #565656;
color: #fff;
}
#kakushushiryo .shinsei_go table th{
/*background: #13aaec!important;*/
color: #fff;
}
#kakushushiryo .kouhu_go table th{
/*background: #f9ed69;*/
border: 1px solid #565656;
color: #fff;/*color: #000;*/
}
.table_outer{
width: 100%;
overflow-x: scroll;
}
.pdf_icon{
background: rgb(255,0,0);
background: linear-gradient(180deg, rgba(255,0,0,1) 62%, rgba(110,2,2,1) 100%);
padding: 2px 10px;
border-radius: 5px;
color: #fff;
}
.pdf_icon a{
color: #fff;
text-decoration: none;
width: 75px;
display: inline-block;
}
.manual_icon{
background: rgb(255,0,0);
background: linear-gradient(180deg, rgba(255,0,0,1) 62%, rgba(110,2,2,1) 100%);
padding: 2px 10px;
border-radius: 5px;
color: #fff;
}
.manual_icon a{
color: #fff;
text-decoration: none;
width: 130px;
display: inline-block;
}
.excel_icon{
background: rgb(0,128,0);
background: linear-gradient(180deg, rgba(0,128,0,1) 62%, rgba(0,13,0,1) 100%);
padding: 2px 10px;
border-radius: 5px;
color: #fff;
}
.excel_icon a{
color: #fff;
text-decoration: none;
width: 75px;
display: inline-block;
}
.word_icon{
background: rgb(28,60,124);
background: linear-gradient(180deg, rgba(28,60,124,1) 39%, rgba(0,0,0,1) 100%);
padding: 2px 10px;
border-radius: 5px;
color: #fff;
width: 100px!important;
}
.word_icon a{
color: #fff;
text-decoration: none;
width: 75px;
display: inline-block;
}
/*issue start*/
@media screen and (min-width:1001px){
.issue_item{
width: calc(100% / 3 - 30px);
height: 220px;
margin: 0 auto;
border: 1px solid #48c9f0;
border-radius: 5px;
text-align: center;
/*color: #fff;*/
background: #48c9f0;/*background: #a8dff0;*/
line-height: 0.5rem;
}
.issue_item h3{
color: #fff;/*color: #13aaec;*/
font-size: 1.5em;
}
.issue_flex{
display: flex;
justify-content: space-between;
width: 100%;
margin: 52px auto;
/*border: 1px solid #13aaec;*/
border-radius: 5px;
}
.issue_block{
display: inline-block;
justify-content: space-between;
width: 100%;
margin: 0 auto;
border: 1px solid #a8dff0;
border-radius: 5px;
}
.issue_l{
width: 100%;
height: auto;
box-sizing: border-box;
padding: 1rem;
font-size: 1.2rem!important;
font-weight: bold;
text-align: center;
background:#fff;
/*color: #13aaec;*/
}
.issue_r{
background: #fff;
color: #565656;
width: 100%;
height: 120px;
box-sizing: border-box;
padding: 10px;
text-align: left;
line-height: 1.5rem;
font-size: 13px;
}
.issue_c{
background: #fff;
color: #565656;
width: 100%;
box-sizing: border-box;
padding: 10px;
height: 150px;
text-align: left;
line-height: 1.5rem;
font-size: 13px;
}
.step_arrow{
width: 100%;
text-align: center;
margin: 10px 0;
}
/*issue end*/

.arrow{
position: relative;
}
.arrow:after{
position: absolute;
content: "▶";
color: #13aaec;
top: 73px;
left: 310px;
}

.under_1000{
display: none;
}
#comment{
position: relative;
}

}
@media screen and (max-width:1000px){
.issue_item{
width: 100%;
margin: 0 auto;
border: 1px solid #48c9f0;
border-radius: 5px;
text-align: center;
color: #fff;
background: #48c9f0;
line-height: 1.8rem;
}
.issue_block{
/*display: flex;
justify-content: space-between;*/
width: 100%;
margin: 0 auto;
border: 1px solid #13aaec;
border-radius: 5px;

}
.issue_l{
/*width: 150px;*/
border-style:none!important;
height: auto;
box-sizing: border-box;
padding: 1rem;
font-size: 1.5rem!important;
font-weight: bold;
text-align: center;
background:#fff;/*background:#E8F7FD;*/
color: #000;/*color: #13aaec;*/
}
.issue_r{
background: #fff;
color: #565656;
/*width: calc(100% - 150px);*/
box-sizing: border-box;
padding: 1rem;
text-align: left;
border-style:none!important;
}
.issue_c{
background: #fff;
color: #565656;
width: 100%;
box-sizing: border-box;
padding: 1rem;
min-height: 118px;
}
.step_arrow{
width: 100%;
text-align: center;
margin: 10px 0;
}
/*issue end*/
.above_1001{
display: none;
}
.scroll{
width: 100%;
overflow-x: scroll;
}
}
.red{
color: #ff0000;
}
.blue{
color: #13aaec;
}
.blue2{
color: #0084BD;
}
/*-----------------------------
    各種資料　end
-----------------------------*/
.td_flex{
display: flex;
width: 90%;
justify-content: space-between;
align-items:top;
margin: 0 auto;
}
.td_ttl{
font-size: 1.2rem;
font-weight: bold;
margin: 0;
padding: 0;
}
.pl_1_5,
.pl_1_5 a{
padding-left: 1.5rem;
}
@media screen and (min-width:501px){
.for_sp{
display: none;
}
.pcc_spl{
text-align: left;
}
}
@media screen and (max-width:500px){
.for_pc{
display: none;
}
.pcc_spl{
text-align: center;
}
}
@media screen and (max-width:561px){
iframe{
	width: 100%;
	height: 250px;
	text-align: center;
}
}
/*事例　start*/
.jirei_item{
/*width: calc(100% / 4 - 15px);*/
padding: 5px;
background: #eee;
border-radius: 10px;
margin-bottom: 5px;
position: relative;
padding-left: 190px;
line-height: 15px;
font-weight: bold;
/*height: 50px;*/
}
.jirei_item:before{
position: absolute;
content: "";
/*text-align: center;*/
width: 160px;
height: 35px;
background: #fff;
display: inline-block;
top: 12px;
left: 0;
padding-left: 10px;
margin-left: 10px;
border-radius: 5px;
line-height: 35px;
/*font-weight: bold!important;*/
}
.jirei_item:after{
position: absolute;
content: "活用例\02714";
text-align: center;
display: inline-block;
margin-left: 10px;
border-radius: 5px;
line-height: 35px;
font-weight: bold!important;
top: 12px;
left: 95px;
color: #7f7f7f;
}
.seisan:before{
content: "生産性向上";
color: #00b9ef;
}
.shinjigyo:before{
content: "新事業展開";
color: #ff0000;
}
.jinzai:before{
content: "人材育成";
color: #ff4500;
}

.item{
background:#00b9ef;
padding: 5px;
width: 450px;
text-align: center;
color: #fff;
font-weight: bold;
font-size: 18px;
border-radius: 5px;
margin-bottom: 5px;
}
@media screen and (min-width:501px){
.for_sp{
display: none;
}
.jirei_ps{
display: flex;
justify-content:center;
flex-wrap: wrap;
white-space: wrap;
gap:5px;
}
.kojirei_table table tr th:nth-child(1){
width: 20%!important;
}
.kojirei_table table tr th:nth-child(2){
width: 80%!important;
}
}
@media screen and (max-width:500px){
.for_pc{
display: none;
}
.jirei_ps{
display: block;
}
.item{
width: 320px;
}
.kojirei_table{
width: 100%;
overflow-x: scroll;
}
.kojirei_table table tr th:nth-child(2){
text-align: left!important;
}
.kojirei_table.cp_container{
width: 100%;
overflow-x: scroll;
}
.kojirei_table table tr th.cp_container:nth-child(2){
text-align: left!important;
}
.kojirei_table table tr th,
.kojirei_table table tr td{
display: block;
width: 100%;
}
.jirei_item{
height: 150px;
}
.jirei_item p{
position: absolute;
left: 1rem;
top: 65px;
height: 100px;
width: 94%;
margin: 0 auto;
}
}
.kojirei_table{
width: 100%;
/*overflow-x: scroll;*/
background:#eee;
border-radius: 5px;
padding: 15px;
margin: 25px auto 0;
}
.kojirei_table table.cp_container{
max-width: 967px;/*width: 967px;*/
margin: 0 auto;
background:#fff;
padding: 5px 10px;
border-radius: 5px;
}
.kojirei_table.cp_container{
width: 100%;
/*overflow-x: scroll;*/
background:#eee;
border-radius: 5px;
padding: 15px;
margin: 25px auto 0;
}
.kojirei_table table{
/*width: 967px;*/
margin: 0 auto;
background:#fff;
padding: 5px 10px;
border-radius: 5px;
}
.jirei_ttl_01{
font-size: 1.2rem!important;
adding: 0.5em 10px!important;
font-weight: 900!important;
color: #00b9ef!important;
background: none !important;
}
.jirei_ttl_02{
font-size: 1.2rem!important;
adding: 0.5em 10px!important;
font-weight: 900!important;
color: #ff0000!important;
background: none !important;
}
.jirei_ttl_03{
font-size: 1.2rem!important;
adding: 0.5em 10px!important;
font-weight: 900!important;
color: #ff4500!important;
background: none !important;
}

.kojirei_table table tr th:nth-child(1){
vertical-align: middle!important;
text-align: center;
}
.kojirei_table table tr{
vertical-align: top!important;
}
.kojirei_table table  td:nth-child(3){
vertical-align: top;
font-weight: bold;
color: #ff0000;
}
.kojirei_table table tr th:nth-child(1){
font-size: 1.2rem;
background: #fff;
color: #565656;
border-style: none;
border-bottom: 5px double #565656;

}
.kojirei_table table tr th:nth-child(2){
/*width: 80%;*/
background: #fff;
color: #565656!important;
border-style: none;
text-align: center;
border-bottom: 5px double #565656;
padding: 15px;
font-size: 1.5rem;
}
.kojirei_table table tr th:nth-child(3){
/*width: 50%;*/
background: #fff;
color: #565656;
border-style: none;
padding: 15px;
font-size: 1.5rem;
}
.kojirei_table table tr td{
padding: 15px;
border-style: none;
box-shadow: none;
text-align: left;
}
.kojirei_table table tr{
margin-bottom: 5px;
}
.kojirei_table table tfoot tr th,
.kojirei_table table tfoot tr td{
border-top: 3px solid #ff0000!important;
border-bottom: 3px solid #ff0000!important;
padding-top: 5px;
}
.kojirei_table table tfoot tr th{
border-left: 3px solid #ff0000!important;
border-bottom-left-radius: 5px;
}
.kojirei_table table tfoot tr td{
border-right: 3px solid #ff0000!important;
border-top-right-radius: 5px!important;
}
/*.after_colon{
position: relative;
}
.after_colon:after{
content: ":";
position: absolute;
left: 200px;
}*/
/*事例　end*/

#flow {
    display: flex;
}

#flow dl{
    border: 1px solid #000;
}
#flow{
    dt{
        border-bottom: 1px solid #000;
    }
}

#flow dd{
    margin: 0;
    padding: 0;
}