* {box-sizing: border-box;}
body{
	width: 100%;
	font-size: 16px;
}
p{
	margin: 0;
}
.whiteSpace{
	white-space: pre-wrap;
}
.green{
	color:#006837;
}
.orange{
	color:#ed9303;
}
a{color: unset;display: block;}
a:hover{
	cursor: pointer;
	text-decoration: none;
	color: unset;
	opacity: 0.5;
}
ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.pcOnly{
    display: block;
}
.mobileOnly{
    display: none;
}
ul.list-style li:before {
    content: "・";
    color: #0066cc;
    padding-right: 0.2em;
}
ul.list-style li {
    text-indent: -1rem;
    padding-left: 1rem;
}
.bold-txt{
	font-weight: 700;
}
.bg-white{
	background-color: #fff;
}
img.reverse-img{
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
#page_top{
	width: 100px;
	height: 60px;
	position: fixed;
	right: 0;
	bottom: 0;
	background: #ed9303;
	opacity: 0.6;
}
#page_top a{
	position: relative;
	display: block;
	width: 100px;
	height: 60px;
	text-decoration: none;
}
#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f102';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -25px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
#page_top a::after{
	content: 'ページトップへ';
	font-size: 13px;
	color: #fff;
	position: absolute;
	top: 30px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

header .top-header{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
header .top-l-header{
	padding: 0.8em 0;
}
header .top-l-header .head-txt{
	color:#006837;
}
header .top-l-header .head-logo{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
header .top-l-header .head-logo .each-logo{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
header .top-l-header .head-logo .each-logo img{
	height: 60px;
}
header .top-l-header .head-logo .each-logo p{
	color:#006837;
	font-weight: 500;
}
header .top-r-header{
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
header .top-r-header .top-btn{
	color: #fff;
	padding: 1em;
	margin-left: 0.8em;
	border-radius: 0 0 0.75em 0.75em;
}
header .top-r-header .top-btn.green{background-color:#006837;}
header .top-r-header .top-btn.orange{background-color:#ed9303;}

nav.main-menu ul{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	list-style: none;
}
nav.main-menu ul li{
	flex:0 0 20%;
	height: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	border-left: 1px solid #999;
}
nav.main-menu ul li:last-child{
	border-right: 1px solid #999;
}
nav.main-menu ul li a{
	display: block;
}
nav.main-menu ul li a:hover{
	text-decoration: none;
}
/*BURGER ICON*/
.burger-icon {
	color:#333333;
	cursor: pointer;
	position: relative;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	float: right;
	display: none;
	order:3;
	margin-left: 15px;
}

.burger-line {
	transition: 0.3s;
	width: 100%;
	height: 6px;
	background-color: #006837;
	/* border-radius: 3px; */
}

.burger-icon .burger-line:last-child {
	margin-bottom: 0;
}

.burger-line-1 {
	position: relative;
	top: 0;
}

.burger-line-3 {
	position: relative;
	bottom: 0;
}

.burger-icon.open .burger-line-1 {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.burger-icon.open .burger-line-2 {
	opacity: 0;
}

.burger-icon.open .burger-line-3 {
	position: absolute;
	bottom: 50%;
	transform: translateY(50%) rotate(45deg);
}

.burger-menu {
	position: fixed;
	width: 100%;
	left: auto;
	right: 0;
	padding: 15px;
	background-color: #fff;
	color:#fff;
	z-index: 9999;
	display: none;
}

.burger-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.burger-menu ul li {
	display: block;
}

.burger-menu ul li a {
	color:#111;
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}
.burger-menu ul li a.top-btn{
	color: #fff;
}
.burger-menu ul li a.green{
	background-color: #006837;
}
.burger-menu ul li a.orange{
	background-color: #ed9303;
}

.burger-menu ul li:last-child a {
	border:none;
}
/* END BURGER ICON*/

.top-slide{
	max-width:1680px;
	margin: 1em auto;
	height: 55vh;
	max-height: 600px;
	min-height: 450px;

}
.top-slide .swiper-container {
    width: 100%;
    height: 100%;
	overflow: hidden;
}
.top-slide .swiper-container .swiper-slide{
	background-size: cover;
	background-position: center;
	border-radius: 1em;
	font-size: 2rem;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.2em;
	display: flex;
	justify-content: center;
	align-items: center;
}
.top-slide .swiper-container .swiper-slide .slide-txt{
	text-shadow: 2px 2px rgba(50, 50, 50, 0.2);
	text-align: center;
}
.top-cover{
	margin-top: 1em;
	background-size: cover;
	background-position: center;
	height: 30vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.top-cover p{
	text-align: center;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.5em;
}
.smaller-txt{
	font-size: 0.75em;
}
.boxes-content{
	padding: 4em 0;
	background-position: center;
	background-size: cover;
}
.boxes-container{
	position: relative;
	background-color: #fff;
	padding: 2em 2em;
	border-radius: 1em;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    0px 1px 5px 0px rgba(50, 50, 50, 0.5);
	box-shadow:         0px 1px 5px 0px rgba(50, 50, 50, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.boxes-content .boxes-container .box-label{
	position: absolute;
	top: -1em;
	left: 1em;
	font-size: 2em;
	padding: 0.2em 1em;
	font-weight: 400;
	text-align: center;
	color: #fff;
	border-left: 5em solid #006837;
	border-top: 0.25em solid transparent;
	border-bottom: 0.25em solid transparent;
	height: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
}
.boxes-content .boxes-container .box-label .box-label-txt{
	margin-left: -7em;
}
.boxes-content .boxes-container .box-content .heading{
	font-size: 1.8em;
	line-height: 1.5;
}
.boxes-content .boxes-container .box-content{
	margin: 1rem auto;
	line-height: 1.5;
}
.box-btn{
	width: 40%;
	margin: 0 auto;
	display: inline-block;
	font-weight: 600;
	color: #fff;
	background-color: #006837;
	padding: 1rem 1rem;
	text-align: center;
	border-radius: 0.25em;
}
.box-btn-left{
	width: 40%;
	display: inline-block;
	font-weight: 600;
	color: #fff;
	background-color: #006837;
	padding: 1rem 1rem;
	text-align: left;
	border-radius: 0.25em;
}
.box-btn-brown {
	width: 30%;
	margin: 0 auto;
	display: inline-block;
	font-weight: 600;
	color: #fff;
	background-color: #c35c1ff5;
	padding: 1rem 1rem;
	text-align: center;
	border-radius: 0.25em;
}
.box-btn.bigger{
	width: 90%;
	font-size: 1.5em;
	border-radius: 0.25em;
	display: block;
}
.box-btn.full-btn{
	width: 100%;
}
.box-lists .roman-list{
	list-style: upper-roman;
	margin-left: 2em;
}
.box-lists .roman-list > li::marker{
	color: #006837;
}
.box-lists .roman-list > li{
	margin-bottom: 0.7rem;
}
.box-lists .numcircle-list{
	list-style: none;
	counter-reset: numList;
}
.box-lists .numcircle-list > li{
	position: relative;
	margin-left: 1em;
	line-height: 2;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.box-lists .numcircle-list li::before{
	font-size: 0.8rem;
    counter-increment: numList;
    content: counter(numList);
    border: 1px solid #000;
    border-radius: 50%;
    text-align: center;
    width: 1.5em;
    height: 1.5em;
    padding-top: 0.25em;
    line-height: 1em;
    position: absolute;
    top: 0.6em;
    left: -2em;
}
.history-section{
	background-color: #DAEAD3;
	padding: 2em 0;
}
.section-head{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 94%;
	margin: 0 auto;
	margin-bottom: 1.5em;
}
img.active-bottom-image {
    flex: 1;
    max-width: 35%;
}
.heading-section{
	font-size: 2.1em;
	font-weight: bold;
	line-height: 1;
}
.table-desc{
	display: block;
	text-align: right;
	padding-bottom: 0.5em;
	letter-spacing: 0.5em;
}
.history-lists{
	width: 100%;
}
.history-lists table tr td{
	line-height: 3;
	vertical-align: top;
	padding: 0 1em;
	font-size: 1rem;
}
.history-lists table tr td:first-child{
	color: #006837;
	background-color: #F2F2F2;
	width: 33%;
	text-align: right;
}
.history-lists table tr td:last-child{
	width: 67%;
}
.center-lists{
	padding: 3em 0;
}
.center-lists table{
	width: 100%;
	margin: 0 auto;
	border-top: 2px solid #006837;
	border-bottom: 2px solid #006837;
}
.center-lists table tr{
	border-bottom: 1px dashed #006837;
	vertical-align: top;
}
.center-lists table tr td{
	padding: 1em 0.5em;
}
.center-lists table tr td.list-id{
	width: 5%;
	text-align: center;
}
.center-lists table tr td.list-pos{
	width: 15%;
}
.center-lists table tr td.list-name{
	width: 15%;
}
.center-lists table tr td.list-desc{
	width: 65%;
}
.center-lists table {
  counter-reset: rowNumber;
}

.center-lists table tr::before {
  display: table-cell;
  counter-increment: rowNumber;
  content: counter(rowNumber) ".";
  padding-right: 0.3em;
  text-align: center;
  color: #006837;
  padding: 1em 0;
  /* vertical-align: middle; */
}

.pages-banner{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 2em auto;
}
.pages-banner .page-banner{
	flex: 0 0 24%;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(50, 50, 50, 0.2);
	-moz-box-shadow:    0px 0px 8px 0px rgba(50, 50, 50, 0.2);
	box-shadow:         0px 0px 8px 0px rgba(50, 50, 50, 0.2);
}
.pages-banner .page-banner:after{
	content: '';
	display: block;
	padding-bottom: 50%;
}
.pages-banner .page-banner .banner-txt{
	font-size: 2rem;
	font-weight: 700;
	-webkit-text-stroke:1px #fff;
}
.pages-banner .page-banner .banner-bottom{
	position: absolute;
	bottom: -2em;
	left: 0;
	width: 100%;
	background-color: #f2f2f2;
	text-align: center;
	padding: 0.5rem 0;
	font-size: 0.8rem;
}
.toppage-content .body-content{
	padding: 0;
}
.updates-content{
	margin-top: 2em;
	padding: 0 2em;
}
.updates-label{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #006837;
	margin-bottom: 0.5em;
}
.lf-border.updates-l-label-txt{
	padding: 0.25em 0.5em;
	color: #494949;
	background: transparent;
	border-left: solid 5px #006837;
	line-height: 1.2rem;
}
.lf-border.updates-l-label-txt p{
	line-height: 1.2;
}
.updates-l-label{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.updates-l-label img{
	height: 60px;
}
.updates-l-label .updates-l-label-txt{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	font-size: 0.9rem;
	letter-spacing: 0.3em;
	padding-bottom: 0.2em
}
.updates-l-label .updates-l-label-txt .green-label{
	color: #006837;
	font-weight: 600;
	font-size: 2rem;
}
.updates-l-label .updates-l-label-txt .bold-label{
	color: #006837;
	font-weight: 700;
	font-size: 1.3rem;
}
.updates-r-label{
	text-align: center;
}
.updates-r-label .label-btn{
	background-color: #006837;
	color: #fff;
	font-weight:600;
	font-size: 1.2rem;
	padding: 0.5em 1em;
	letter-spacing: 0.2rem;
}
.updates-content .update-lists ul{
	list-style: none;
	/* overflow-y: scroll; */
}
.updates-content .update-lists ul li{
	color: #000;
	padding: 1em;
	border-bottom: 1px dashed #006837;
	font-size: 0.9rem;
}
.updates-content .update-lists ul li .list-date{
	color: #006837;
	font-weight: bold;
	margin-right: 1em;
}
.calendar{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2em;
	margin-right: 1px;
	background-size: cover;
	background-position: center;
	background-image:url('../img/calendar-bg.png');
}
.calendar .calendar-wrapper{
		width: 90%;
		margin: 2em auto;
		background-color: #fff;
}
.calendar .calendar-wrapper .month {
	width: 60%;
	margin: 0 auto;
	margin-top: -0.5em;
	padding: 0.5em 1em;
	background: #006837;
	text-align: center;
	border-radius: 0 0 1em 1em;
}
.calendar .calendar-wrapper .month .prev:hover,.calendar .calendar-wrapper .month .next:hover{
	cursor: pointer;
}
.calendar .calendar-wrapper .month ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.calendar .calendar-wrapper .month ul li {
	color: white;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5em;

}
.calendar .calendar-wrapper .days-container{
	width: 90%;
	margin: 0 auto;
	margin-top: 1em;
}
.calendar .calendar-wrapper .days-container .weekdays {
	margin: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}

.days-container .weekdays > li,
.days-container .days-month-wrapper .days  > li{
	flex: 0 0 14.2857%;
	color: #000;
	text-align: center;
	padding-top: 1em;
}

.days-container .days-month-wrapper .days > li::after{
	content: '';
	display: block;
	margin-top: 0.5em;
	padding-bottom: 60%;
}
.days-container .days-month-wrapper .days > li{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}
.days-month-wrapper .weekdays > li:first-child,
.days-month-wrapper .weekdays > li:last-child,
.days-month-wrapper .days > li:first-child,
.days-month-wrapper .days > li:last-child {
	background-color: #FCEEDB;
	color: #ED9303;
}
.days-month-wrapper .days > li:first-child,
.days-month-wrapper .days > li:last-child {
	color: #000;
}
.holiday{
	background-color: #FCEEDB;
}
.days-month-wrapper .days {
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.days-month-wrapper .days > li.active{
	background: #006837;
	color: white;
}
.days-month-wrapper .days > li.hover{
	background: #006837;
	color: white;
}
.calendar-wrapper .calendar-icons{
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin: 1em auto;
}
.calendar-wrapper .calendar-icons .calendar-icon{
	flex: 0 0 16%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.calendar-wrapper .calendar-icons .calendar-icon span{
	display: block;
	width: 30px;
	height: 30px;
	background-color: #FCEEDB;
}
.calendar-wrapper .calendar-icons .calendar-icon img{
	height: 30px;
}
.calendar-wrapper .calendar-icons .calendar-icon p{
	margin-left: 1em;
	font-size: 0.9rem;
}
.days-month-wrapper .days li.status > a{
	position: absolute;
	top:0;
	width:100%;
	height: 100%;
	padding-top: 1em;
}
.days-month-wrapper .days li.status:after{
	background-size: contain;
	background-repeat: no-repeat;
	margin-top: 2em;
	width: 2em;
}
.days-month-wrapper .days li.status.status-0:after{
	background-image: url('../img/cal-icon0.png');
}
.days-month-wrapper .days li.status.status-1:after{
	background-image: url('../img/cal-icon1.png');
}
.days-month-wrapper .days li.status.status-2:after{
	background-image: url('../img/cal-icon2.png');
}
.days-month-wrapper .days li.status.status-3:after{
	background-image: url('../img/cal-icon3.png');
}
.days-month-wrapper .days li.status.status-4:after{
	background-image: url('../img/cal-icon4.png');
}
.days-month-wrapper .days li.status.status-5:after{
	background-image: url('../img/cal-icon5.png');
}
.days-month-wrapper .days li.status.status-6:after{
	background-image: url('../img/cal-icon6.png');
}
.days-month-wrapper{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	overflow: scroll;
}
.days-month{
	flex: 0 0 100%;
}
.status{
	position: relative;
}
.status-detail{
	visibility: hidden;
	position: absolute;
	z-index: 1;
	padding: 1em;
	top:5%;
	max-width: 355px;
	width: 25vw;
	background-color: #fff;
	border: 2px solid #006837;
	
}
.status-detail .close-popup{
	position: absolute;
    color: #000;
    top: 5px;
    right: 5px;
    font-size: 1.75em;
    font-weight: 300;
    width: 1em;
    height: 1em;
    line-height: 0.7;
    border: 2px solid #000;
	border-radius: 50%;
}
.status-detail.show {
	visibility: visible;
}
.status-detail.topLeft {
	left: 40%;
}
.status-detail.topRight {
	right: 40%;
}
ul.calendar-popup{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	color: #000;
	text-align: left;
}
ul.calendar-popup > li{
	flex: 0 0 100%;
	border-bottom: 2px solid #006837;
	font-size: 0.9em;
	padding: 0.5em 0;
	display: flex;
	align-items: center;
}
ul.calendar-popup > li.calendar-event:before{
	content: '';
	display: inline-flex;
	background-size: contain;
	background-repeat: no-repeat;
	width: 1.5em;
	height: 1.5em;
	margin-right: 5px;
}
ul.calendar-popup > li.calendar-event.status-0:before{
	background-image: url('../img/cal-icon0.png');
}
ul.calendar-popup > li.calendar-event.status-1:before{
	background-image: url('../img/cal-icon1.png');
}
ul.calendar-popup > li.calendar-event.status-2:before{
	background-image: url('../img/cal-icon2.png');
}
ul.calendar-popup > li.calendar-event.status-3:before{
	background-image: url('../img/cal-icon3.png');
}
ul.calendar-popup > li.calendar-event.status-4:before{
	background-image: url('../img/cal-icon4.png');
}
ul.calendar-popup > li.calendar-event.status-5:before{
	background-image: url('../img/cal-icon5.png');
}
ul.calendar-popup > li.calendar-event.status-6:before{
	background-image: url('../img/cal-icon6.png');
}
/* END CALENDAR */
/* END CALENDAR */
.sidebar-top-section {
    margin-top: 90px;
	margin-bottom: 20px;
}
.sidebar-top-section img {
    width: 100%;
}
.sidebar-content{
	background-color: #daead3;
	margin-top: 2rem;
	padding: 8px 7px 2em;
}
.sidebar-bottom {
    margin-top: 12px;
	margin-bottom: 12px;
}
.banner-request-form {
    background-color: #006837;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: underline;
}
.sidebar-content-label {
    text-align: center;
}
.sidebar-content-label img {
    width: 98px;
}
.sidebar-content .label-title {
    font-size: 1rem;
    margin-bottom: 10px;
}

.sidebar-content-label .label-image {
    margin-bottom: 7px;
}

.side-content{
	/* padding: 2em 1em; */
}
.side-content .banners-list .side-banner{
	background-size: cover;
	background-position: center;
	margin-bottom: 1em;
}
.side-content .banners-list .side-banner:after{
	content: '';
	display: block;
	padding-bottom: 40%;
}
.side-content .banner-big{
	width: 100%;
	background-size: cover;
	background-position: center;
}
.side-content .banner-big:after{
	content: '';
	display: block;
	padding-bottom: 60%;
}
.side-content .social-icons{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;

}
.side-content .social-icons .social-icon{
	flex: 0 0 31%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 1em;
}
.side-content .social-icons .social-icon img{
	width: 75%;
}
.side-content .social-icons .social-icon p{
	font-size: 0.75rem
}

.dimage .social-icon p{
	margin-left: 37px;
}
.bottom-banner-section {
    background-color: #006837;
    padding: 2rem 1rem;
	border-bottom: 1px solid white;
}
.bottom-banner-title {
    text-align: center;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bottom-banner-row {
    
	text-align: center;
}

.bottom-banner-row img{
	margin-bottom: 10px;
	width: 100%;
}

.banners-img{
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 2em auto;
}
.banner-img-label{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-bottom: 1em;
}
.banner-img-label img{
	height: 60px;
}

.banner-img-label p{
	color: #006837;
	font-weight: bold;
	font-size: 2rem;
	padding: 0 0.6em;
}
.banners-img .banners-row{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 0 2%;
}
.banners-img .banners-row .banner-img{
	flex: 0 0 24%;
	border-radius: 1em;
	background-size: cover;
	background-position: center;
}
.banner-img-wrap{
	padding: 0 10px;
}

.banner-img-wrap .banner-img img {
    width: 100%;
    max-width: 100%;
}
/* .banners-img .banners-row .banner-img:after{
	content: '';
	display: block;
	padding-bottom: 60%;
} */
.info-container{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
}
.info-container .info-list{
	flex: 0 0 48%;
	background-color: #fff;
	padding: 0.75em;
	margin: 1em auto;
	border-radius: 0.25em;
}
.info-container .info-list .info-img{
	padding: 1em;
	text-align: center;
	border-radius: 0.25em;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.5em;
	font-weight: 700;
	-webkit-text-stroke:2px #fff;
}
.info-container .info-list .info-img::after{
	content: '';
	display: block;
	padding-bottom: 30%;
}
.info-container .info-list ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.info-container .info-list > ul li{
	flex: 0 0 48%;
	padding: 0.5em 0;
	border-bottom: 2px solid #006837;
}
.info-container .info-list .line-box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.line-box .line-title{
	font-size: 1.5em;
}
.line-box .line-detail{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin: 1em 0;
}
.line-box .line-detail img{
	height: 90px;
	margin-right: 1em;
}
.line-box .box-btn{
	width: 100%;
}
.content-head{
	margin: 2em auto;
	text-align: center;
	line-height: 1.4;
}
.chart-content{
	padding: 2em 0;
}
.chart-content .chart-img img{
	width: 100%;
}
/* Learning Page */
.list-learning{
	padding: 2em 0;
	display: flex;
    flex-direction: column;
}
.learning-full{
	background-color: #F2F2F2;
	padding: 1em;
}
.learning-full .updates-label{
	border: 0;
}
.learning-full-box{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.learning-full-box .learning-full-content{
	flex: 0 0 48%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.learning-full-content .learning-label{
	background-color: #006837;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center
}
.learning-full-content .learning-label img{
	height: 60px;
	margin: 0.1em 0;
}
.learning-full-content .learning-label p{
	color: #fff;
	font-size: 2rem;
	padding: 0 0.5em;
}
.learning-half-box{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 2em;
	flex-wrap: wrap;
	margin-bottom: 1em;
}
.learning-half-box .learning-half-content{
	flex: 0 0 48%;
	padding: 1em;
	background-color: #f2f2f2;
}
.learning-half-box .updates-label{
	margin-bottom: 0;
}
.update-lists::-webkit-scrollbar,.learning-list::-webkit-scrollbar {
    width: 10px;
}
/*スクロールバーの軌道*/
.update-lists::-webkit-scrollbar-track,.learning-list::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
.update-lists::-webkit-scrollbar-thumb, .learning-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 104, 55, 0.3);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}

.update-lists{
	overflow-y: scroll;
	height: 300px;
}

.learning-list{
	font-size: 0.9rem;
	line-height: 2em;
	height: 430px;
	overflow-y: scroll;
}
.learning-list.learning-buttons{
	overflow-y: hidden;
}
.inner-list-wrap{
	height: 245px;
	overflow-y: scroll;
	overflow: scroll;
}
.learning-list > ul li, .events > ul li.innner-list{
	border-bottom: 1px dotted #006837;
	padding: 1em 0;
}
.learning-list .learning-date-time, .events .learning-date-time{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.learning-list .learning-date-time .learning-date, .events .learning-date-time .learning-date{
	background-color: #006837;
	color: #fff;
	padding: 0 1em;
}
.learning-list .learning-date-time .learning-time, .events .learning-date-time .learning-time{
	color: #006837;
	margin-left: 1em;
}
.learning-list .learning-date-time .learning-title,.events .learning-date-time .learning-title{
	padding-top: 0.5em;
}
.learning-list .learning-btn-list{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1em 0;
}
.learning-list .learning-btn-list .learning-btn{
	flex: 0 0 100%;
	border: 1px solid #006837;
	color: #006837;
	margin: 0.5em 0;
    padding: 1.3em 1rem;
	display: flex;
	flex-direction: row;
	align-items: center;

}
.learning-list .learning-btn-list .learning-btn::before{
	content: '';
    display: inline-block;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #006837;
    margin: 0 0.25em;
}
.list-event{
	padding: 2em 0;
}
.list-event img.list-cover-image{
	height: 190px;
    object-fit: cover;
}
.list-event .events > ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.list-event .events > ul li.event-element{
	flex: 0 0 48%;
	margin-bottom: 2em;
}
.list-event .events > ul li img{
	width: 100%;
}
.training-desc{
	background-color: #f2f2f2;
	padding: 2em 0;

}
.training-desc .training-box{
	background-color: #fff;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    0px 1px 5px 0px rgba(50, 50, 50, 0.5);
	box-shadow:         0px 1px 5px 0px rgba(50, 50, 50, 0.5);
	padding: 1em;
}
.training-desc .training-box .training-label{
	color: #006837;
	font-size: 2rem;
	letter-spacing: 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #006837;
}
.training-desc .training-box .training-detail{
	padding: 1em 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
}
.training-desc .training-box .training-detail .training-side{
	flex: 0 0 49%;
	line-height: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.training-desc .training-box .training-detail .training-side p{
	margin-bottom: 1em;
}
.training-desc .training-box .training-detail .training-side.training-img{
	background-position: center;
	background-size: cover;
}
.training-location{
	padding: 2em 0;
}
.training-location .location-list{
	margin-top: 3em;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
}
.training-location .location-list::after{
	content: "";
  	flex: 0 0 32%;
}
.training-location .location-list .location-card{
	padding: 0.25em;
	border: 1px solid #ccc;
	flex: 0 0 32%;
	margin-bottom: 2%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.training-location .location-list .location-card.empty-card{
	border: none;
}
.training-location .location-list .location-card .location-img{
	width: 100%;
	height: 230px;
	background-position: top center;
	background-size: cover;
}
.training-location .location-list .location-card .location-img::after{
	content: '';
	display: block;
	padding-bottom: 50%;
}
.training-location .location-list .location-card .location-desc{
	padding: 0.8em 1.05em;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.location-card .location-desc .title{
	font-size: 1rem;
	font-weight: 700;
	flex: 0 0 100%;
}
.location-card .location-desc > p{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 0.9rem;
	line-height: 1.5;
	padding: 0.2em 0;
}
.location-card .location-desc > p::before{
	background-size: contain;
	background-repeat: no-repeat;
    display: inline-block;
	content: '';
	margin-right: 0.5em;
}
.location-card .location-desc .title::before{
	display: none;
}
.location-card .location-desc .address::before{
	background-image: url('../img/address-ico.png');
	margin-top: 0.2em;
    width: 1.1em;
    height: 1.1em;
}
.location-card .location-desc .tel::before{
	background-image: url('../img/tel-ico.png');
	margin-top: 0.2em;
    width: 1em;
    height: 1em;
}
.location-card .location-desc .fax::before{
	background-image: url('../img/fax-ico.png');
	margin-top: 0.2em;
    width: 1em;
    height: 1em;
}
.location-card .location-desc .contact::before{
	background-image: url('../img/contact-ico.png');
	margin-top: 0.1em;
    width: 1.25em;
    height: 2em;
}
.location-card .location-desc .tel,.location-card .location-desc .fax{
	flex: 0 1 50%;
}
.conf-content{
	padding: 3em 0;
	background-color: #f2f2f2;
}
.cover-label{
	width: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 1em;
	font-size: 2rem;
	color: #fff;
}
.cover-label p{
	margin: 0.2em 0;
}
.cover-label .tag{
	font-size: 0.75em;
	padding: 0.1em 0.5em;
	color: #006837;
	background-color: #fff;
}
.cover-label .tag.long-tag{
	min-width: 40%;
	text-align: center;
}
.conf-content .conf-detail{
	padding: 1.5em 2em;
}
.conf-content .conf-detail .conf-person{
	margin-top: 1.5em;
}
.conf-person .conf-person-label{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	margin-bottom: 1em;
}
.conf-person .conf-person-label .person-img img{
	height: 100px;
	margin-right: 1.5em;
}
.conf-person .conf-person-label .person-title{
	display: flex;
    flex-direction: column;
    justify-content: center;
	border-bottom: 1px solid #006837;
	flex: 1;
}
.person-title .person-bold{
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}
.conf-person .conf-person-detail{
	line-height: 1.75;
	margin-bottom: 3rem;
}
.video-table{
	padding: 2em 0;

}
.section-head .heading-label{
	font-size: 2.5rem;
	margin-bottom: 0.5em;
}
.section-head > img{
	height: 80px;
}
.section-head .title-label{
	font-size: 2em;
	font-weight: 700;
	margin-bottom: 0.5em;
}
.section-head .desc-label{
	letter-spacing: 0.2em;
	line-height: 1.8;
	font-size: 1em;
	font-weight: 400;
	text-align: left;
}
.form-btn-link {
    padding: 1rem;
    background: orange;
    border-radius: 1rem;
    margin: 1rem auto;
    box-shadow: 1px 5px 8px #00000087;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
}
.section-head .announce-content{
	margin-bottom: 20px;
}
.medal-list img{
	width: 100%;
}

.video-list table {
	display: block;
	overflow-x: scroll;
	white-space: nowrap;
} 
.video-list table tr th,.video-list table tr td{
	padding: 1em;
	border-left: 2px solid #006837;
	border-right: 2px solid #006837;
}
.video-list table tr td{
	border-bottom: 2px dashed #006837;
}
.video-list table tr:last-child{
	border-bottom: 2px solid #006837;
}
.video-list table tr td{
	vertical-align: text-top
}
.video-list table .table-label{
	background-color: #006837;
	color: #fff;
	text-align: center;
}
.video-list table .table-title{
	background-color: #DAEAD3;
	color: #006837;
}
.video-list table .video-icon >  img{
	height: 30px;
}
.video-list table .video-icon >  p{
	font-size: 0.75em;
	margin-top: 0.5em;
	color: #006837;
}
.video-list table .table-num{width: 6%;text-align: center;vertical-align: middle;}
.video-list table .table-cate{width: 15%;vertical-align: middle;}
.video-list table .table-name{width: 32%}
.video-list table .table-sub{width: 32%;}
.video-list table .table-vdo{width: 15%;text-align: center;}
.announce{
	padding: 3em 0;
	background-color: #daead3;
}
.announce-boxes{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
.announce-boxes .announce-box{
	background-color: #fff;
	border-radius: 1em;
	margin: 2% 0;
	padding: 2em;
}
.announce-content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.announce-content iframe{
	width: 70%;
	min-height: 300px;
	max-height: 450px;
	height: 30vh;
}
.announce-content  p{
	margin: 0.25em 0;
}
.announce-content  a{
	margin-top: 1em;
	font-size: 1.5em;
}
.announce-content .announce-title{
	font-size: 1.75em;
	font-weight: 700;
}
.announce-content .announce-desc{
	font-size: 1.25em;
	font-weight: 700;
}
.announce-content > img{
	height: 60px;
}

.announce-boxes .announce-full{flex:0 0 100%}
.announce-boxes .announce-half{
	flex:0 0 48%;
	margin: auto;
}
.announce-col{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
.announce-col .announce-col-each{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 1em;
	flex: 0 0 32%;
}
.announce-col-each .announce-col-label{
	background-color: #daead3;
	color: #006837;
	font-weight: 500;
	padding: 0.5em 0;
}
.announce-col-each .announce-desc{
	flex: 7 0 1px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.announce-col-each .announce-detail{
	flex: 3 0 1px;
}
.nursing{
	padding: 3em 0;
}
.medal-each{
	margin: 1em 0;
}
.medal-each .medal-label{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.medal-each .medal-label > p{
	font-size: 2em;
}
.medal-each .medal-label > img{
	height: 60px;
	margin-right: 1em;
}
.medal-each .medal-cert{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
}
.medal-each .medal-cert .each-cert{
	flex: 0 0 auto;
	margin: 1em 0;
	position: relative;
	text-align: center;
}
.each-cert > img{
	height: 400px;
	position: relative;
}
.each-cert .cert-txt{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	padding: 1.5em;
	display:flex;
	flex-direction: column;
    justify-content: center;
    align-items: flex-start;
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	font-size: 1.5em;
}
.each-cert .cert-txt > p{
	padding: 0 0.5em;
}
.machida-active ul{	
	list-style-type: square;
	padding-left: 1rem;
	
}
.welfare{
	background-color: #F2F2F2;
	padding: 3em 0;
}
.welfare .container{
	background-color: #fff;
	padding-bottom: 2em;
}
.welfare .cover-label{
	padding-left: 20%;
	width: 100%;
}
.welfare .cover-label .label-txt{
	text-align: center;
}
.welfare .welfare-table{
	padding: 2em;
	position: relative;
	width: 100%;
}
.welfare .float-image {
    position: absolute;
    top: 4%;
    right: 4%;
    width: 200px;
}
.welfare .welfare-table table{
	border-collapse: separate;
	border-spacing: 0 1em;
}
.welfare .welfare-table table tr td{
	padding: 0.5em 1em;
	line-height: 1.6;
	vertical-align: text-top;
}
.welfare .welfare-table table tr td:first-child{
	color: #006837;
	font-weight: 700;
	border-right: 1px solid #006837;
	text-align: right;
	width: 15%;
}
.welfare .welfare-table table tr td:last-child{
	width: 85%;
	text-align: left;
}
.welfare > a{
	margin: 2em 0;
}
.welfare .welfare-table .th-bgcolor {
	background-color: #C0C0C0;
}
.welfare .box-btn{
	width: 30%;

}
.welfare a.box-btn:hover {
	opacity: 0.6;
	transition: 0.5s;
	color: white;
}
.welfare a.box-btn {
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 1.1rem;
    margin-bottom: 1rem;
	height: 120px;
	width: 200px;
}
.welfare a.box-btn.btn-orange{
	background: orange;
	border: 6px ridge orange;
	border-radius: 1rem;
}
.welfare a.box-btn.btn-green{
	background: #006837;
	border: 6px ridge #006837;
	border-radius: 1rem;
}
.welfare a.box-btn.btn-blue{
	background: #4444cc;
	border: 6px ridge #4444cc;
	border-radius: 1rem;
}
.welfare a.box-btn.btn-lblue{
	background: #00c7ff;
	border: 6px ridge #00c7ff;
	border-radius: 1rem;
}

.welfare a.box-btn.btn-dblue{
	background: #293cdc;
	border: 6px ridge #293cdc;
	border-radius: 1rem;
}


.event-detail .event-desc{
	margin: 3em 0;
	background-color: #f2f2f2;
	padding: 1em;
}
.event-detail .event-desc p{
	line-height: 3;
}
.detail-btn{
	margin: 2em 0;
}
.detail-btn a.box-btn{
	margin: 0;
	padding: 1em 1.5em;
	width: unset;
}
.detail-btn a:first-child{
	margin-right: 1em;
}
.detail-btn a:last-child{
	width: 40%;
}
.form{
	padding: 3em 0;
}
.form .form-desc{
	line-height: 3;
	margin-bottom: 3em;
}
.form .form-box{
	width: 80%;
	margin: 0 auto;
	background-color: #f2f2f2;
	padding: 2em;
}
.form .form-box .fld-group{
	margin-bottom: 2em;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.form .form-box .fld-group.link-group{
	flex-direction: column;
	align-items: flex-start;
}
.form .form-box .fld-group a{
	color: #006837;
	text-decoration: underline;
}
.form .form-box .fld-group a.active{
	color: #000;
	text-decoration: none
}
.form .form-box .fld-group > label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}
.form .form-box .fld-group label .fld-req{
	font-size: 0.8em;
	color: #fff;
	background-color: #006837;
	padding: 0.1em 0.5em;
	margin-left: 1em;
}
.form .form-box .fld-group input,.form .form-box .fld-group textarea{
	border: 1px solid #808080;
	border-radius: 0.2em;
}
.form .form-box .fld-group input[type='text']{
	width: 100%;
	line-height: 2;
}
.form .form-box .fld-group textarea{
	width: 100%;
}
.form .form-box .fld-group .input-group{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.form .form-box .fld-group .input-group label{
	margin-right: 1.5em;
	margin-bottom: 0;
}
.form .form-box .fld-group input[type='checkbox'],.form .form-box .fld-group input[type='radio']{
	width:1.2em;
	height:1.2em;
	margin-right: 0.75em;
}
.form .form-box .fld-group select{
	padding: 0.5em 1em;
}
.form .form-box .fld-group label.agreement{
	width: auto;
	margin-bottom: 0;
	display: contents;
}
.form .form-box .fld-group.btn-group{
	justify-content: space-between;
	align-items: center;
}
.form .form-box .fld-group button{
	width: 40%;
	padding: 1em 0;
	color: #006837;
	background-color: transparent;
	border: 1px solid #006837;
	margin-right: 1em;
}
.form .form-box .fld-group button[type='submit']{
	color: #fff;
	background-color: #006837;
	width: 55%;
	margin: 0;
}
.form .form-box .fld-group button[type='submit']:disabled{
	color: #fff;
	background-color: gray;
	width: 55%;
	margin: 0;
	border: 1px solid gray;
}
.form.confirm .form-desc{
	text-align: center;
}
.form.confirm .form-box .fld-group > label{
	font-weight: 700;
}
.form.confirm .form-box .fld-group button{
	font-weight: 700;
	padding: 1em 0;
	font-size: 1em;
}
.learning-detail{
	padding: 3em 0;
}
.learning-box{
	background-color: #F2F2F2;
	padding: 2em;
}
.learning-box table{
	margin: 2em 0;
	border-collapse: separate;
	border-spacing: 0 0.5em;
}
.learning-box table tr td{
	padding: 1em;
	line-height: 2;
}
.learning-box table tr td:first-child{
	background-color: #DAEAD3;
	color: #006837;
	vertical-align: text-top;
	text-align: right;
	width: 20%;
}
ul.number-list{
	margin-left: 2em;
}

ul.star-list li,ul.ref-list li{
	display: flex;
}
ul.ref-list{
	display: flex;
	margin-left: 1.5em;
}
ul.star-list li.sub-list{
	display: flex;
	flex-wrap: wrap;
}
ul.star-list li.sub-list > p{
	flex: 0 0 85%;
}
ul.star-list li::before{
	content: '☆';
	font-size: 1.4em;
	line-height: 1.4;
	font-weight: 300;
	display: flex;

}
ul.ref-list li::before{
	content: '※';
	font-size: 1.4em;
	line-height: 1.4;
	font-weight: 300;
	display: flex;
}
ul.star-list  li.no-before::before{
	content: '';
}
footer{
	background-color: #fff;
	padding: 2em;
}
footer img.footer-icon {
    width: 34px;
    margin-right: 6px;
}
footer a.sub-links {
    margin-bottom: 1.2rem;
}
footer .footer-social-icon p, .footer-social-icon img {
    font-size: 12px;
    text-align: center;
    width: 54px;
}
footer .footer-social-icon p, .footer-social-icon2 img {
    font-size: 12px;
    text-align: center;
    width: 80px;
	padding: 5px;
}
footer .footer-txt{
	font-weight: 700;
	margin-bottom: 1em;
}
footer .footer-address{
	margin-bottom: 1.5em;
}
footer .footer-address .footer-l{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
footer .footer-address .footer-l img{
	height: 100%;
	width: 100%;
	margin-top: 1em;
}
footer .footer-address .footer-l p{
	font-size: 1rem;
	margin-left: 1rem;
	font-weight: 700;
}
footer .footer-address .footer-m{
	font-size: 1.0rem;
	border-left: 1px solid #fff;
	padding-left: 1em;
}
footer .footer-detail {
	font-size: 0.8rem;
}
footer .footer-detail .bold-txt{
	margin-right: 1em;
}
footer .footer-r{
	display: flex;
	padding: 0 30px;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
footer .footer-m a{
	display: inline;
}
footer .footer-r a{
	display: inline-block;
	margin: 0 auto;
	text-align: left;
	font-size: 1rem;
	padding: 0.5rem;
}
footer .footer-r a.sub-links{
	width: 100%;
}
footer .footer-r a.border-btn{
	border: 1px solid #fff;
}
nav.footer-menu ul{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	list-style: none;
	margin: 2em auto;
}
nav.footer-menu ul li{
	flex:0 0 20%;
	height: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	border-left: 1px solid #fff;
}
nav.footer-menu ul li:last-child{
	border-right: 1px solid #fff;
}
nav.footer-menu ul li a{
	display: block;
}
nav.footer-menu ul li a:hover{
	text-decoration: none;
}
footer .copyright{
	text-align: center;
	font-size: 0.75rem;
}

/* Job Search Page */


.form-group-wrap {
    background-color: white;
    padding: 20px 20px;
    border-radius: 1rem;
}
.form-group-wrap select#syokusyu {
    max-width: 100%;
	padding: 8px;
}
.form-group-wrap select#business {
    max-width: 100%;
	padding: 8px;
}

.form-group.search-buttons {
    display: flex;
    justify-content: start;
}

.form-group-wrap .jobsearch-button button{
	margin-right: 20px;
	padding: 10px 20px;

}

.form-group-wrap .form-title{
	font-weight: bold;
}
label, input[type='checkbox'] {
    cursor: pointer;
}
input[type="checkbox"] {
    margin-right: 8px;
}

.jobsearch-result-wrap .job-card-wrap{
	margin-bottom: 10px;
}
.jobsearch-result-wrap .job-card-wrap a:hover{
	opacity: 1;
}
.jobsearch-result-wrap .job-card-wrap a:hover .job-card{
	box-shadow: 1px 3px 15px rgb(0 0 0 / 20%);
}

.jobsearch-result-wrap .job-card{
    background-color: white;
    margin: 10px;
    padding: 13px 20px;
    border-radius: 0.5rem;
	box-shadow: 1px 3px 5px rgb(0 0 0 / 10%);
}
.jobsearch-result-wrap .job-card .small-info {
    font-size: 0.9rem;
	margin-bottom: 8px;
}
.jobsearch-result-wrap .job-card .job-title {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.3;
    margin: 10px 0;
}
.border-box {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 18px 0 0;
}
.ieOnly {display: none;}
_:-ms-lang(x)::-ms-backdrop, .ieOnly {display: block;}
_:-ms-lang(x)::-ms-backdrop, .otherIEonly {display: none;}

/* Banner Link Screen / バナー広告募集案内 */
.main-content-wrap {
    margin: 2rem;
    text-align: center;
}
.main-content-wrap h1 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-family: YuGothic;
    color: #006837;
    letter-spacing: 8px;
}
.main-content-wrap .description {
    margin-bottom: 1.9rem;
}
.links-row {
    display: flex;
    justify-content: center;
    column-gap: 1rem;
	margin-bottom: 2rem;
}
.links-row a.mk-link-box {
    border: 1px solid #006837;
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex: 0 1 240px;
    color: #006837;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.links-row a.mk-link-box:hover {
    background-color: #006837;
    color: white;
    opacity: 0.8;
}

a.inline-link {
	display: inline;
	color: #067d45;
	font-weight: bold;
	text-decoration: underline;
}
.conf-desc {
	margin-bottom: 20px;
}

/* @media-section */

@media (max-width: 1199.98px) {

}
@media (max-width: 991.98px) {
	.status-detail{
		width: 30vw;
	}
	.box-btn.bigger{
		font-size: 1.2em;
	}
	footer .footer-r a{
		font-size: 0.75rem;
	}
	.slide-txt{
		padding: 0 2em;
	}
	.info-container .info-list .info-img{
		font-size: 1.5em;
		-webkit-text-stroke:1px #fff;
	}
	.container{
		max-width: 96%;
	}
	.boxes-content .boxes-container .box-content .heading{
		font-size: 1.5em;
	}
	#page_top{
		z-index: 1;
	   }
	.welfare-table .float-image {
		display: none;
	}

}
@media (max-width: 767.98px) {
	.pcOnly{
        display: none;
    }
    .mobileOnly{
        display: block;
    } 
	.status-detail{
		width: 40vw;
	}
	.announce-boxes .announce-half{
		flex: 0 0 100%;
	}
	.announce-col .announce-col-each{
		flex: 1 1 100%;
    	max-width: 100%;
	}
	.box-btn.bigger{
		font-size: 1em;
	}
	.welfare .welfare-table table tr td:first-child{
		width: 100%;
        text-align: left;
        border-left: 1px solid #006837;
        border-right: none;
	}
	.welfare .welfare-table table tr td:last-child{
		width: 100%;
	}
	footer .footer-r a{
		font-size: 1rem;
	}
	.boxes-content .boxes-container .box-content .heading{
		font-size: 1.5em;
	}
	.burger-icon {
		display: inline-flex;
	}
	.top-l-header .head-txt{
		display: none;
	}
	header .top-r-header{
		align-items: center;
	}
	header .top-r-header a{
		display: none;
	}
	.main-menu{
		display: none;
	}
	.pages-banner{
		flex-wrap: wrap;
	}
	.pages-banner.container{
		max-width: unset;
	}
	.pages-banner .page-banner{
		flex: 0 0 48%;
		margin-bottom: 3em;
	}
	.banners-img .banners-row{
		flex-wrap: wrap;
	}
	.banners-img .banners-row .banner-img{
		flex: 0 0 49%;
		margin-bottom: 2%;
	}
	nav.footer-menu ul{
		flex-wrap: wrap;
	}
	nav.footer-menu ul li{
		flex: 0 0 100%;
		border: 0;
		padding: 1.5em 0;
		border-bottom: 1px solid #fff;
	}
	nav.footer-menu ul li:first-child{
		border-top: 1px solid #fff;
	}
	nav.footer-menu ul li:last-child{
		border: 0;
		border-bottom: 1px solid #fff;
	}
	footer .footer-address .footer-m{
		border: 0;
		border-top: 1px solid #fff;
		padding: 0;
		padding-top: 1em;
	}
	footer .footer-menu-container{
		max-width: unset;
	}
	footer .footer-r{
		padding: 1em 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	footer .footer-r > a{
		margin: 0.5em 0;
		display: inline-block;
	}
	.sidebar-content{
		margin-top: 0;
		border-radius: 0;
	}
	.side-content .banners-list{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.side-content .banners-list a{
		flex: 0 0 48%;
		width: 100%;
	}
	.side-content .social-icons .social-icon{
		flex: 0 0 16%;
	}
	.social-icons .footer-social-icon {
		padding: 0 30px;
	}
	.dimage{
		text-align: center;
	}
	.dimage .social-icon p{
		margin-left: 0;
	}
	.banner-img-label p{
		font-size: 1.4rem;
	}
	.banner-img-label img{
		height: 40px;;
	}

	.learning-full-content .learning-label p{
		font-size: 1.5em;
	}
	.updates-l-label .updates-l-label-txt .green-label{
		font-size: 1.2rem;
	}
	.updates-l-label img{
		height: 40px;
	}
	.learning-list .learning-date-time{
		flex-direction: column;
		align-items: flex-start;
	}
	.learning-list .learning-date-time .learning-time{
		margin: 0;
	}
	.training-desc .training-box .training-detail{
		flex-direction: column-reverse;

	}
	.training-desc .training-box .training-detail .training-side{
		flex: 0 0 100%;
	}
	.training-desc .training-box .training-detail .training-side.training-img::after{
		content: '';
		display: block;
		padding-bottom: 50%;
	}
	.training-location .location-list .location-card{
		flex: 0 0 100%;
	}
	.training-location .location-list .location-card.empty-card{
		display: none;
	}
	.updates-r-label{
		min-width: 30%;
	}
	.updates-r-label .label-btn{
		font-size: 1rem;
		padding: 0.5em
	}
	.pages-banner .page-banner .banner-txt{
		font-size: 1.5em;
		-webkit-text-stroke:1px #fff;;
	}
	.history-lists table tr td:first-child{
		width: 40%;
	}
	.history-lists table tr td{
		font-size: 0.9rem;
	}
	.center-lists table tr td.list-pos,.center-lists table tr td.list-name{
		width: 20%
	}
	.center-lists table tr td.list-desc{
		width: 60%;
	}
	.info-container .info-list{
		flex: 0 0 100%;
	}
	.learning-box table tr td:first-child{
		width: 30%;
	}
	#page_top{
		z-index: 1;
	   }

}
@media (max-width: 575.98px) {
	footer .container {
		padding: 0;
	}
	.container{
		padding: 1rem;
	}
	.top-cover p{
		font-size: 1.7rem;
		letter-spacing: 0.2em;
		max-width: 85%;
	}
	.info-container .info-list > ul li{
		flex: 0 0 95%;
	}
	.status-detail{
		width: 44vw;
	}
	.days-month-wrapper .days li.status > a{
		padding-top: 0.5em;
	}
	.learning-box{
		padding: 2em 1em;
	}
	.learning-box table tr td:first-child{
		width: 35%;
	}
	.form .form-box{
		width: 100%;
	}
	.form .form-box .fld-group button{
		margin-bottom: 1em;
	}
	.detail-btn a.box-btn{
		margin-bottom: 1em;
	}
	.detail-btn a.box-btn:last-child{
		width: unset;
	}
	
	.learning-full-box .learning-full-content,.learning-half-box .learning-half-content{
		flex: 0 0 100%;
		margin-bottom: 1em;
	}

	footer{
		padding: 1em 0.5em;
	}
	.boxes-content .boxes-container .box-label{
		font-size: 1.8rem;
	}
	.calendar{
		margin-top: 4em;
	}
	.calendar .calendar-wrapper{
		width: 100%;
	}.days-month-wrapper .days li.status:after{
		width: 1em;
	}
	.days-container .weekdays li, .days-container .days-month-wrapper .days li{
		padding: 0.5em;
	}
	.calendar-wrapper .calendar-icons{
		width: 97.5%;
		flex-wrap: wrap;
		justify-content: left;
		margin-left: 20px;
	}
	.calendar-wrapper .calendar-icons .calendar-icon{
		flex: 0 0 50%;
		margin: 0.5em 0;
		justify-content: left;
	}
	header .top-l-header .head-logo .each-logo img{
		height: 40px;
	}
	.list-event .events > ul li{
		flex: 0 0 100%;
	}
	.list-event .events > ul li.event-element{
		flex: 0 0 100%;
	}
	.updates-content{
		padding: 0;
	}
	.video-list table .table-num{width: 4%;}
	.video-list table .table-cate{width: 22%}
	.video-list table .table-name{width: 26%}
	.video-list table .table-sub{width: 26%;}
	.video-list table .table-vdo{width: 22%;}

	/* Job Search Page */
	.job-card-wrap.col-md-6 {
		padding: 5px 5px;
	}
	.jobsearch-result-wrap .job-card{
		padding: 6px 13px;
	}
	#page_top{
		z-index: 1;
	   }
	.welfare{
		padding: 1em 0;
	}
	.welfare .cover-label{
		padding-left: 1rem;
	}
	.welfare .welfare-table {
		padding: 1rem 0;
	}
  　.section-head .heading-label{
		font-size: 2rem;
	}
	.announce-col {
		flex-direction: column;
	}

}

@media (max-width: 375px){
	.welfare{
		padding: 1em 0;
	}
	.welfare .cover-label{
		padding-left: 1rem;
	}
	.welfare .welfare-table {
		padding: 1rem 0;
	}
  　.section-head .heading-label{
		font-size: 2rem;
	}
}


/* OUTCOME Video Update */

.video-table .video-list {
}
.video-table .video-list .video-card {
	width: 100%;
	padding: 10px 10px;
	background-color: #DAEAD3;
	border: 1px solid #006837;
	margin-bottom: 16px;
	box-shadow: 0 5px 11px -2px rgb(0 0 0 / 20%);
}
.video-table .video-list .video-card .card-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.video-table .video-list .video-card .card-heading .video-number {
	font-size: 14px;
	margin: 0;
	padding: 1px 5px;
	border: 1px solid #006837;
}
.video-table .video-list .video-card .card-heading .video-link {
	display: flex;
	align-items: center;
}
.video-table .video-list .video-card .card-heading .video-link .link-icon {
	height: 24px;
}
.video-table .video-list .video-card .card-heading .video-link .link-title {
	color: #006837;
	font-size: 14px;
	font-weight: 500;
	margin-right: 5px;
}
.video-table .video-list .video-card .card-heading .video-link:hover {
	opacity: 1.0;
}
.video-table .video-list .video-card .card-heading .video-link:hover .link-icon {
	opacity: 0.6;
}
.video-table .video-list .video-card .card-heading .video-link:hover .link-title {
	text-decoration: underline;
}
.video-table .video-list .video-card .video-body .label {
	font-weight: 500;
	line-height: 1.3em;
}
.video-table .video-list .video-card .video-body .label {
	color: #006837;
	font-size: 12px;
	margin: 0;
}
.video-table .video-list .video-card .video-body .video-name {
	color: #006837;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 7px;
}
.video-table .video-list .video-card .video-body .video-category {
	color: #000;
	font-size: 14px;
	margin-bottom: 7px;
}
.video-table .video-list .video-card .video-body .video-presenter {
	color: #000;
	font-size: 14px;
	margin-bottom: 7px;
	margin: 0;
}
.row.video-row {
    column-gap: 1rem;
}
.video-box .announce-title {
    font-size: 1rem;
    margin-top: 1rem;
}
.video-box {
    background-color: #5E8140;
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
}


/*
 * OC Outcome styles
 */

br.mb-only {
	display: none;
}


.boxes-content.challenge-page {
	padding-top: 130px;
}
.boxes-content.challenge-page .boxes-container {
	padding: 2.25em 2.25em 0.5em 2.25em;
	max-width: 900px;
}
.boxes-content .boxes-container .long-box-label {
	position: absolute;
	top: -1.5em;
	left: 1.5em;
	height: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	text-align: center;
	padding: 0.2em 0.75em;
}
.boxes-content .boxes-container .long-box-label:before {
	content: "";
	top: 0;
	left: 0;
	height: 3em;
	position: absolute;
}
.boxes-content .boxes-container .long-box-label.w16em:before {
	border-left: 16em solid #336837;
	border-top: 0.2em solid transparent;
	border-bottom: 0.2em solid transparent;
}
.boxes-content .boxes-container .long-box-label .box-label-txt {
	z-index: 1;
	color: #fff;
	font-size: 1.5rem;
}
.boxes-content .boxes-container .oc-box-text {
	color: #000;
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	margin-bottom: 9px;
	font-family: "YuGothic";
}

.challenge-iconed-title {
	margin: 0;
	color: #006837;
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	text-align: center;
}
.challenge-iconed-title-icon {
	width: 74px;
	height: 66px;
	display: inline-block;
}
.challenge-iconed-title-icon.left-icon {
	margin-right: 26px;
}
.challenge-iconed-title-icon.right-icon {
	margin-left: 26px;
	transform: rotateY(180deg);
}

.challenge-introductions-section {
	padding-bottom: 145px;
}
.challenge-introductions-section .container {
	max-width: 900px;
}
.challenge-nurse-boxes {
	width: 100%;
	display: flex;
	column-gap: 30px;
	row-gap: 50px;
	align-items: stretch;
	justify-content: flex-start;
	margin-top: 40px;
	flex-wrap: wrap;
}
.challenge-nurse-box {
	flex: 0 0 calc((100% - 60px) / 2);
	display: flex;
	align-items: stretch;
	flex-direction: column;
	justify-content: flex-start;
	font-family: "YuGothic";
}
.challenge-nurse-box-img {
	flex: 0 0 auto;
	width: 100%;
}
.challenge-nurse-box-role {
	flex: 0 0 auto;
	color: #006837;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	text-align: center;
	margin: 19px 0 15px 0;
}
.challenge-nurse-box-text {
	flex: 1 0 1px;
	color: #000;
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	text-align: left;
	margin: 0 0 40px 0;
}
.challenge-nurse-box-btn {
	flex: 0 0 auto;
	width: 220px;
	height: 87px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	text-align: center;
	margin: 0 auto;
	background-color: #006837;
}

.challenge-schedule-section {
	padding: 75px 0 120px 0;
	background-color: #edf9f3;
}
.schedule-wrap {
	display: flex;
	column-gap: 33px;
	align-items: stretch;
	justify-content: flex-start;
	font-family: "YuGothic";
	max-width: 900px;
	margin: 75px auto 0 auto;
}
.schedule-left,
.schedule-right {
	width: calc((100% - 33px) / 2);
	flex: 0 0 calc((100% - 33px) / 2);
	display: flex;
	align-items: stretch;
	flex-direction: column;
	justify-content: flex-start;
}
.schedule-top-row {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	text-align: center;
	padding: 22px 0;
	background-color: #006837;
}
.schedule-mid-row {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	text-align: center;
	padding: 12px 0;
	background-color: #14814b;
}
.schedule-bottom {
	padding: 18px 16px 36px 16px;
	background-color: #20ab66;
}
.schedule-bottom-box {
	width: 100%;
	min-height: 226px;
	aspect-ratio: 411 / 226;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 23px 30px;
	border-radius: 7px;
	background-color: #fff;
}
.box-centered {
	align-items: center;
	justify-content: center;
}
.schedule-bottom-box.top {
}
.schedule-bottom-box.btm {
	margin-top: 24px;
}
.schedule-bottom-box-single {
	color: #006837;
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	text-align: center;
	margin: 0;
}
.schedule-bottom-box-title {
	color: #006837;
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	text-align: left;
	margin: 0 0 10px 20px;
}
.schedule-bottom-box-text {
	color: #000;
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	text-align: left;
	margin: 0 0 20px 0;
}
.schedule-bottom-box-link {
	width: 100%;
	height: 41px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #006837;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	text-align: center;
	border: 3px solid #006837;
	margin: 0;
}
.challenge-seniors-section {
	padding: 100px 0 25px 0;
}
.challenge-seniors-video-wrap {
	width: 850px;
	margin: 71px auto 0 auto;
}
.challenge-seniors-video {
	width: 100%;
	border: none;
	aspect-ratio: 850 / 500;
}

.challenge-interview-section {
	padding: 100px 0 120px 0;
}
.challenge-interviews {
	max-width: 850px;
	width: calc(100% - 30px);
	margin: 88px auto 0 auto;
}
.challenge-interview {
	display: flex;
	column-gap: 62px;
	align-items: stretch;
	justify-content: flex-start;
	margin-bottom: 50px;
}
.challenge-interview.right {
	flex-direction: row-reverse;
}
.challenge-interview:nth-child(2) {
	margin-bottom: 62px;
}
.challenge-interview:last-child {
	margin-bottom: 0;
}
.challenge-interview-image-wrap {
	flex: 0 0 180px;
}
.challenge-interview-image {
	width: 100%;
}
.challenge-interview-image.mb {
	display: none;
}
.challenge-interview-details {
	flex: 1 0 1px;
	background-color: #EDF9F3;
	padding: 40px 50px;
	border-radius: 26px;
	position: relative;
}
.challenge-interview-title {
	color: #006837;
	font-size: 22px;
	font-weight: 700;
	line-height: 26px;
	margin-bottom: 20px;
}
.challenge-interview-title-sm {
	font-size: 20px;
	line-height: 24px;
}
.challenge-interview-text {
	color: #000;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 10px;
}
.challenge-interview-arrow {
	position: absolute;
	left: -46px;
	top: 62px;
	border-right: 46px solid #EDF9F3;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
}
.challenge-interview.right .challenge-interview-arrow {
	left: unset;
	right: -46px;
	border-right: none;
	border-left: 46px solid #EDF9F3;
}
.flow-item-text span.mb {
	display: none;
}

/*
 * KAIGO-CHALLENGE TYPE 1 FLOW PAGE
 */

 .wide-banner-wrapper img {
    width: 100%;
}
.challenge-flow-item:last-child .flow-item-count:after {
    background-image: none;
}
.challenge-flow-top-section {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 41px;
	padding: 82px 0 80px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	background-image: url('../img/challenge-flow-top-bg.jpg');
}
/* .challenge-flow-top-section.type2, .challenge-flow-top-section.type3  {
	padding-bottom: 80px;
} */

.challenge-flow-top-section.type3 .challenge-flow-top-head{
	align-items: center;
}

.challenge-flow-top-section.type4 .row.type4-top {
	max-width: 600px;
	column-gap: 20px;

}
.challenge-flow-top-section.type4 .type4-top .type4-top-container {
	flex: 0 0 48%;
	background-color: white;
	border: 1px solid #195427;
	padding: 15px;
	margin-bottom: 20px;
}
.type4-top .type4-top-container .type4-top-container-title {
	color: #195427;
	margin-bottom: 20px;
	font-weight: bold;
}
.type4-top .type4-top-container .type4-top-container-text {
	margin-bottom: 20px;
}

.challenge-flow-top-head {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: center;
	margin-bottom: 25px;
}
.challenge-flow-top-img {
}
.challenge-flow-top-img.img-side-left {
	width: 78px;
	margin-right: 26px;
}
.challenge-flow-top-img.img-side-right {
	width: 225px;
	margin-top: -15px;
	margin-left: 9px;
}
.challenge-flow-top-wrap {
}
.challenge-flow-top-title {
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 0;
	letter-spacing: 0.06em;
	font-family: "YuGothic";
}
.challenge-flow-top-title.top {
}
.challenge-flow-top-title.mid {
}
.challenge-flow-top-title.btm {
}
.challenge-flow-top-title .cft-blk    { color: #070203; }
.challenge-flow-top-title .cft-grn-dk { color: #195427; }
.challenge-flow-top-title .cft-grn-lt { color: #2a9677; }
.challenge-flow-top-byline {
	max-width: 592px;
	width: calc(100% - 70px);
	color: #195427;
	font-size: 25px;
	font-weight: 700;
	line-height: 30px;
	text-align: center;
	margin: 0;
	padding-top: 10px;
	padding-bottom: 25px;
	border-top: 4px solid #195427;
	border-bottom: 4px solid #195427;
}
.challenge-flow-top-byline.type4 {
	padding-bottom: 0;
}
.challenge-flow-top-byline .challenge-title {
	display: block;
	margin-bottom: 10px;
	text-align: center;
}
.challenge-flow-top-byline.type2 {
	text-align:unset;
}

.challenge-flow-top-byline2 {
	text-align: left;
	font: normal normal normal 18px/22px Yu Gothic;
	letter-spacing: 0px;
	color: #000000;
	opacity: 1;
	font-size:18px;
}

.challenge-flow-top-text {
	color: #000;
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	text-align: center;
	margin: 37px 0 46px 0;
	font-family: "YuGothic";
}
.challenge-flow-notice {
	margin: 30px auto 0 auto;
	max-width: 700px;
	width: calc(100% - 70px);
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 40px 0 47px 0;
	border-radius: 10px;
	font-family: "YuGothic";
	background-color: #fafafa;
	border: 4px solid #d4d4d4;
}
.challenge-flow-notice.grn-notice {
	background-color: #e6ffe6;
	border-color: #33cc33;
}
.challenge-flow-notice.red-notice {
	background-color: #ffe6e6;
	border-color: #cc3333;
}
.challenge-flow-notice-title {
	font-size: 25px;
	font-weight: 600;
	line-height: 30px;
	text-align: center;
	margin-bottom: 8px;
}
.challenge-flow-notice-text {
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	text-align: center;
	margin: 0;
}
.challenge-flow-notice.grn-notice .challenge-flow-notice-text,
.challenge-flow-notice.grn-notice .challenge-flow-notice-title {
	color: #33cc33;
}
.challenge-flow-notice.red-notice .challenge-flow-notice-text,
.challenge-flow-notice.red-notice .challenge-flow-notice-title {
	color: #cc3333;
}

.challenge-flow-content-section {
	padding: 88px 0 168px 0;
}
.challenge-flow-content {
	width: calc(100% - 70px);
	max-width: 833px;
	margin: 0 auto;
}
.challenge-flow-items {
	display: flex;
	row-gap: 30px;
	align-items: stretch;
	flex-direction: column;
	justify-content: flex-start;
}
.challenge-flow-item {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	font-family: "YuGothic";
}
.challenge-flow-item .flow-item-left {
	flex: 0 0 193px;
}
.challenge-flow-item .flow-item-image {
	width: 100%;
}
.challenge-flow-item .flow-item-image.mb {
	display: none;
}
.challenge-flow-item .flow-item-count {
	flex: 0 0 auto;
	position: relative;
}
.challenge-flow-item .flow-item-count:after {
	content: "";
	top: 0;
	left: 50%;
	bottom: -30px;
	width: 5px;
	position: absolute;
	transform: translateX(-50%);
	background-size: 5px 11px;
	background-position: right;
	background-repeat: repeat-y;
	background-image: linear-gradient(#195427 50%, #fff 0%);
}
.challenge-flow-item .flow-item-number {
	z-index: 1;
	width: 80px;
	height: 80px;
	display: block;
	position: relative;
	color: #195427;
	font-size: 40px;
	font-weight: 700;
	line-height: 70px;
	text-align: center;
	margin-top: -20px;
	border-radius: 50%;
	background-color: #fff;
	border: 5px solid #195427;
}
.challenge-flow-item .flow-item-right {
	flex: 1 0 1px;
	padding-left: 23px;
	margin-bottom: 25px;
}
.challenge-flow-item .flow-item-title {
	color: #195427;
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	text-align: left;
	margin-bottom: 21px;
}
.challenge-flow-item .flow-item-text {
	color: #070203;
	font-size: 18px;
	font-weight: 500;
	line-height: 29px;
	text-align: left;
	margin-bottom: 30px;
}
.challenge-flow-item .flow-item-link {
	color: #ed9303;
	font-size: 25px;
	font-weight: 700;
	line-height: 45px;
	text-align: center;
	margin-bottom: 20px;
	border: 3px solid #ed9303;
}
.challenge-flow-item .flow-item-link.mgn-btm {
	margin-bottom: 14px;
}
.challenge-flow-item .flow-item-link.mgn-top {
	margin-top: 14px;
}
.challenge-flow-item.flow-item-1 .flow-item-image {
	margin-top: 50px;
}
.challenge-flow-item.flow-item-3 .flow-item-image {
	margin-top: 50px;
}
.challenge-flow-item.flow-item-2.type2 img,.challenge-flow-item.flow-item-2.type3 img{
	margin-top: 50px;
}

.challenge-flow-item.flow-item-9.type4 img.flow-item-image {
	margin-top: 90px;
}
.challenge-flow-item.flow-item-7.type4 img.flow-item-image {
	margin-top: -40px;
}
.flow-item-contact {
	padding: 26px;
	border: 3px solid #195427;
}
.challenge-flow-item.flow-item-6 img.flow-item-image.type2 {
	margin-top: -50px;
}
.flow-item-contact-fax,
.flow-item-contact-title {
	color: #195427;
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	margin-bottom: 3px;
}
.flow-item-contact-split {
	display: flex;
	column-gap: 48px;
	align-items: center;
}
.flow-item-contact-text {
	flex: 1 0 1px;
	color: #000;
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	margin-bottom: 0;
}
.flow-item-contact-qr {
	width: 92px;
	display: block;
	flex: 0 0 92px;
}
.flow-item-line.mb {
	display: none;
}
.mb {
	display: none;
}
.challenge-flow-item.flow-item-7.type1 img.flow-item-image.dt {
	margin-top: -40px;
}
.challenge-flow-item.flow-item-5.type1 img.flow-item-image.dt {
	margin-top: 180px;
}

@media screen and (min-width: 767px) {
	.challenge-flow-item.flow-item-6.type3 img.flow-item-image {
		margin-top: 280px;
	}
}

@media screen and (max-width: 767px) {
	br.mb-only {
		display: initial;
	}
	br.dt-only {
		display: none;
	}


	.boxes-content.challenge-page {
		padding-top: 30px;
	}
	.boxes-content .boxes-container .long-box-label {
		left: 1em;
		top: -1.25em;
		height: 2.5em;
	}
	.boxes-content .boxes-container .long-box-label .box-label-txt {
		font-size: 19px;
	}
	.boxes-content .boxes-container .long-box-label:before {
		height: 2.5em;
	}
	.boxes-content .boxes-container .long-box-label.w16em:before {
		border-left: 13em solid #336837;
	}
	.boxes-content.challenge-page .boxes-container {
		max-width: calc(100% - 20px);
		padding: 1.5em 1.25em 0 1.25em;
	}
	.challenge-schedule-section .row {
		margin-left: 0;
		margin-right: 0;
	}
	.challenge-schedule-section .col-12 {
		padding-left: 0;
		padding-right: 0;
	}
	.schedule-top-row {
		padding: 14px 0;
	}
	.schedule-wrap {
		margin-top: 44px;
	}
	.challenge-iconed-title {
		font-size: 19px;
		line-height: 23px;
	}
	.challenge-iconed-title-icon.left-icon {
		height: 63px;
		display: block;
		margin: 0 auto 22px auto;
	}
	.challenge-iconed-title-icon.left-icon.mb-sm {
		height: 43px;
		margin-bottom: 6px;
	}
	.challenge-iconed-title-icon.right-icon {
		display: none;
	}
	.challenge-introductions-section {
		padding-bottom: 28px;
	}
	.challenge-nurse-boxes {
		row-gap: 49px;
		column-gap: 0;
		padding-left: 12px;
		padding-right: 12px;
		flex-direction: column;
	}
	.challenge-nurse-box-text {
		margin-bottom: 35px;
	}
	.challenge-schedule-section {
		padding-top: 41px;
		padding-bottom: 0;
	}
	.challenge-seniors-section {
		padding: 50px 0 0 0;
	}
	.challenge-interview-section {
	    padding: 0 0 80px 0;
	}
	.challenge-schedule-section .container {
		margin: 0;
		padding: 0;
		max-width: 100%;
	}
	.schedule-wrap {
		row-gap: 24px;
		flex-direction: column;
	}
	.schedule-wrap .schedule-left,
	.schedule-wrap .schedule-right {
		width: 100%;
		flex: 0 0 100%;
	}
	.challenge-seniors-video-wrap {
		width: calc(100% - 52px);
		margin: 40px auto 50px auto;
	}
	.challenge-interview-section .container {
		padding: 0;
	}
	.challenge-interview-section .container .row {
		margin: 0;
	}
	.challenge-interviews {
		width: 100%;
		margin: 60px auto 0 auto;
	}
	.challenge-interview {
		column-gap: 12px;
	}
	.challenge-interview-image-wrap {
		flex: 0 0 60px;
	}
	.challenge-interview-image.mb {
		display: initial;
		margin-top: 4px;
	}
	.challenge-interview-image.dt {
		display: none;
	}
	.challenge-interview-details {
		padding: 14px 22px;
	}
	.challenge-interview-title,
	.challenge-interview-title-sm {
		font-size: 15px;
		line-height: 18px;
	}
	.challenge-interview-title {
		margin-bottom: 13px;
	}
	.challenge-interview-text {
		font-size: 14px;
		line-height: 17px;
	}
	.challenge-interview-arrow {
		top: 25px;
		left: -10px;
		border-right: 20px solid #EDF9F3;
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
	}
	.challenge-interview.right .challenge-interview-arrow {
		left: unset;
		right: -10px;
		border-left: 20px solid #EDF9F3;
	}

	/*
	 * CHALLENGE FLOW 1
	 */

	.challenge-flow-top-section {
		margin-top: 0;
		padding-top: 24px;
	}
	.challenge-flow-top-img.img-side-right {
		width: 120px;
		display: block;
		margin: 0 auto 16px auto;
	}
	.challenge-flow-top-title {
		font-size: 30px;
		line-height: 40px;
	}
	.challenge-flow-top-byline {
		font-size: 20px;
		line-height: 24px;
		border-width: 2px;
		width: calc(100% - 56px);
	}
	.challenge-flow-top-text {
		font-size: 15px;
		line-height: 18px;
		margin: 21px 31px 38px 31px;
	}
	.challenge-flow-notice {
		width: calc(100% - 30px);
		padding: 22px 27px;
		border-width: 2px;
	}
	.challenge-flow-notice-title {
		font-size: 15px;
		line-height: 18px;
		margin-bottom: 15px;
	}
	.challenge-flow-notice-text {
		font-size: 16px;
		line-height: 19px;
	}
	.challenge-flow-content {
		width: calc(100% - 30px);
	}
	.challenge-flow-top-head {
		flex-direction: column-reverse;
	}
	.challenge-flow-top-img.img-side-left {
		display: none;
	}
	.challenge-flow-content-section {
		padding:0 0 68px 0;
	}
	.challenge-flow-item .flow-item-left {
		display: none;
	}
	.challenge-flow-item .flow-item-image.mb {
		display: initial;
	}
	.challenge-flow-item .flow-item-image.dt {
		display: none;
	}
	.challenge-flow-item .flow-item-number {
		width: 46px;
		height: 46px;
		font-size: 27px;
		line-height: 40px;
		margin-top: -10px;
		border-width: 3px;
	}
	.challenge-flow-item .flow-item-count:after {
		background-size: 3px 9px;
		background-image: linear-gradient(#195427 45%, #fff 0%);
	}
	.challenge-flow-item .flow-item-right {
		padding-left: 6px;
	}
	.challenge-flow-item .flow-item-title {
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 15px;
	}
	.challenge-flow-item .flow-item-text {
		font-size: 14px;
		line-height: 17px;
		margin-bottom: 9px;
	}
	

	.challenge-flow-item img.flow-item-image.mb {
		width: 98px;
		display: block;
		margin: 15px auto 13px auto;
	}



	.challenge-flow-item.flow-item-6.type3 img {

	}
	.challenge-flow-item .flow-item-link {
		font-size: 20px;
		line-height: 35px;
		margin: 20px 0 15px 0;
	}
	/* .challenge-flow-item.flow-item-3 .flow-item-image,
	.challenge-flow-item.flow-item-6 .flow-item-image {
		width: 84px;
		display: block;
		margin: 16px auto 26px auto;
	}
	.challenge-flow-item.flow-item-8 .flow-item-image {
		width: 104px;
		display: block;
		margin: 23px auto 19px auto;
	}
	.challenge-flow-item.flow-item-10 .flow-item-image {
		width: 110px;
		display: block;
		margin: 23px auto 0 auto;
	}
	.challenge-flow-item.flow-item-13 .flow-item-image {
		width: 96px;
		display: block;
		margin: 24px auto 0 auto;
	} */
	.flow-item-contact-fax, .flow-item-contact-title {
		font-size: 20px;
		line-height: 24px;
	}
	.flow-item-contact {
		padding: 17px;
	}
	.flow-item-contact-split {
		flex-wrap: wrap;
		column-gap: 20px;
		justify-content: center;
	}
	.flow-item-contact-text {
		flex: 0 0 100%;
		font-size: 14px;
		line-height: 17px;
		margin: 9px 0 20px 0;
	}
	.flow-item-contact-text {
		flex: 0 0 100%;
	}
	img.flow-item-contact-qr {
		width: 80px !important;
		flex: 0 0 80px;
	}
	.flow-item-contact-split img.flow-item-line.mb {
		width: 80px !important;
		flex: 0 0 80px;
		display: initial;
	}
	.challenge-flow-top-section.type4 .row.type4-top {
		flex-direction: column;
		margin: 0 20px;
	}
	.challenge-flow-item.flow-item-1.type2 img{
		display:none;
	}	
	.challenge-flow-top-byline2 {
		text-align: center;
		display: block;
		font-size: 16px;
	}
	.pc {
		display: none;
	}
	.flow-item-text span.mb {
		display: inline-block;
	}
	.challenge-flow-top-byline .challenge-title {
		font-size: 20px;
	}
	.challenge-flow-item.flow-item-7.type4 img.flow-item-image {
		margin-top: unset;
	}
	.mb {
		display: initial;
	}
	.challenge-flow-item.flow-item-9.type4 img.flow-item-image {
		margin-top: 15px;
	}

}


/*
 * END OC Outcome styles
 */


