@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/*---------------------------------------------------------------------------------------
大枠設定
----------------------------------------------------------------------------------------*/
html {
	font-size: 62.5%;
	height: 100%;
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: normal;
	src: local("Noto Sans CJK JP Regular"),
	url('../font/NotoSans_Regular.woff2') format('woff2'),
	url('../font/NotoSans_regular.woff') format('woff'),
	url('../font/NotoSans_regular.otf') format('opentype');
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: bold;
	src: local("Noto Sans CJK JP Bold"),
	url('../font/NotoSans_Bold.woff2') format('woff2'),
	url('../font/NotoSans_bold.woff') format('woff'),
	url('../font/NotoSans_bold.otf') format('opentype');
}

@font-face {
	font-family: "YakuHanJP";
	font-style: normal;
	font-weight: normal;
	src: url("../font/YakuHanJP-Regular.woff2") format("woff2"),
	url("../font/YakuHanJP-Regular.woff") format("woff");
}
@font-face {
	font-family: "YakuHanJP";
	font-style: normal;
	font-weight: bold;
	src: url("../font/YakuHanJP-Bold.woff2") format("woff2"),
	url("../font/YakuHanJP-Bold.woff") format("woff");
}
body{
	font-family: 'YakuHanJP','Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color:#333;
	font-size: 1.6rem;
	text-align:center;
	line-height: 1.7;
	letter-spacing: .01rem;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#wrapper{
	position: relative;
}
.switch{}
a img,a{ color:#333; text-decoration:none; -webkit-transition: all .2s; transition: all .2s;}
a:hover,a:hover img{ opacity: .7; text-decoration:none;}
img.imgalpha, .svg path, .svg polygon{ -webkit-transition: all .2s; transition: all .2s;}
.svg{ vertical-align: middle;}
/* font */
.gothic{ font-family: "Noto Sans JP";}
.mincho{ font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;}
.roboto{ font-family: 'Roboto', sans-serif;}
/* move */
.move,
.move2,
.move3,
.movelist,
.movelist_sp{ transform: translateY(50px); transition : all 500ms; opacity: 0;}
.animation_do{ transition : all 500ms; opacity: 1;}
.move.move-active,
.move2.move-active,
.move3.move-active,
.movelist.move-active,
.movelist_sp.move-active{ transform: translateY(0); opacity: 1;}
.move2-later,
.move3-later{ transition : all 500ms; opacity: 0;}
.move2-later.move-active,
.move3-later.move-active{ opacity: 1;}
.animation_do.animation_active{ opacity: 1;}
.sp-only{
	display: none;
}
.pc-only{
	display: block;
}
@media screen and (max-width:768px){
	.sp-only{
	display: block;
}
.pc-only{
	display: none;
}
	}
@keyframes rotation {
	0% {
		transform: scale(0, 0);
	}
	100% {
		transform: scale(1, 1);
	}
}
/*------------------------------ responsive ------------------------------*/

@media screen and (max-width:768px){
	a:hover{ opacity: 1;}
	body{
		font-size: 14px;
	}

}

/*---------------------------------------------------------------------------------------
header
----------------------------------------------------------------------------------------*/


/*---------------------------------------------------------------------------------------
	header
----------------------------------------------------------------------------------------*/

header{
	height: 88px;
		background: #FFF;
	box-shadow: 0px 0px 7px -2px rgba(0, 0, 0, 0.3);
	z-index: 100;
	position: fixed;
	width: 100%;
}

header h1{
	float: left;
	padding: 25px 0 0 2%;
	z-index: 1;
	position: relative;
}

header p{
	display: none;
}
header nav{
	float: right;
	line-height: 1.6;
	padding: 1.4rem 1.5% 0 0;
	text-align: right;
	z-index:2;
	position: relative;
}
header nav ul{
	margin-top: .6rem;
}
header nav li{
	float: left;
}
header nav li:not(:first-child):before{ content: "|";}
header nav li.btn:before{ content: none;}
header nav li a{
	display: inline-block;
	padding: 0 1rem;
}
header nav li.active a{ color: #46CDF0; font-weight: bold;}
header nav li a:hover{ color: #46CDF0; opacity: 1; }

/*------------------------------ responsive ------------------------------*/



@media screen and (max-width:1000px){
	header{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		z-index: 99999999;
			background-color: rgba(255,255,255, .9);
	}
	header.shadow{ box-shadow: 0px 0px 7px -2px #999;}
	header.top{
		position: fixed;
	}
	header h1{
		float: none;
		padding: 14px 3% 12px;
		width: auto;
		text-align: left;
		position: relative;
		z-index: 1;
	}
	header h1:before,
	header h1:after{
		height: 4px;
	}
	header h1 img{
		width: 183px;
	}
	header p{
		display: block;
		position: absolute;
		right: 10px;
		top: 15px;
		width: 25px;
			height: 25px;
	background: url("../img/menu.png") no-repeat center top;
			background-size: 25px;
		z-index: 3;
		cursor: pointer;
	}
	header.open p{ background: url("../img/menu.png") no-repeat center bottom;background-size: 25px;}
	header nav{
		position: fixed;
		top: 0;
		right: -320px;
		width: 300px;

		padding: 2rem 2rem 2rem 2rem ;
		text-align: left;
		background: #24ADE2;
		overflow-y: auto;
		transition: .5s ease-in-out;
		z-index: 2;
		float: none;
		line-height: 30px;

	}
	header nav h2{
		display: none;
	}
	header.open nav{ transform: translateX(-300px);}
	header ul{
		padding-top: 2rem;
	}
	header nav li{
		float: none;
		font-family: "Noto Sans JP";
	}
	header nav li:not(:first-child):before{ content: none;}
	header nav li.btn:before{ content: none;}
	header nav li a{
		display: inline-block;
		padding: 0 .2em;
		color: #fff;
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 2.6;

	}
	header nav li a:before{
		content: "・";
	}
	header nav li.active a,
	header nav li a:hover{ color: #fff;}

}

/*
top mv
_________________________________________________________*/

.top-mv h2{
	width: 100%;
	color: #24ADE2;
	font-size: 3.2rem;
	font-weight:bold;
	line-height: 1.5;
	padding: 2rem 0;
}
.top-mv figure{
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	background: #24ade2;
}
@media only screen and (max-width: 1000px) {
.top-mv h2{
	font-size: 2.8rem;
	padding: 2rem 0;
}
}
@media only screen and (max-width: 768px) {
.top-mv h2{
	font-size: 2rem;
	padding: 2rem ;
}
.top-mv h2 br{
	display: none;
}
.top-mv figure{
	margin-top: 54px;
}
}
.business{
	z-index: 1;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
}
.top-business{
	width: 33.3333333%;
	margin: 0 auto;
	position: relative;
	padding-bottom: 4rem;
	overflow: hidden;
}
.top-business .top-business__img{
	width: 100%;
	z-index: 1;
	position: relative;
}
.top-business .top-business__text {
	padding: 2rem 10% 0 10%;
}
.top-business .top-business__text dt{
	display: table;
	font-size: 2.8rem;
	font-weight:bold;
	height: 90px;
	width: 100%;
	line-height: 1.4;
	text-align: center;
}
.top-business .top-business__text dt h2{
	display: table-cell;
	vertical-align: middle;
}
.top-business .top-business__text dd{
	font-size: 1.6rem;
	text-align: left;
	margin: 2rem 0 0 0;
	height: 90px;
}
.top-business .link-more{
	width: 160px;
	float: right;
	margin: 2rem 0 0 0;

}
.link-more a{
	display: block;
	color: #FFF;
	line-height: 1;
	padding: 1rem 0;
	font-weight: bold;
	border-radius: 6rem;
	background: #24ADE2 url(../img/arrow_white.png) no-repeat 94% center;
	background-size: 8px;
}
@media only screen and (max-width: 1200px) {
	.top-business .top-business__text dd{
	height: 120px;
}
	}
@media only screen and (max-width: 1000px) {
.top-business .top-business__text {
	padding: 1.5rem 5% 0 5%;
}
.top-business .top-business__text dt{
	font-size: 2.5rem;
	height: 70px;
}
.top-business .top-business__text dd{
	font-size: 1.6rem;
}
}

@media only screen and (max-width: 768px) {
	.business{
		padding-bottom: 0;
	}
	.top-business{
		width: 90%;
		max-width: auto;
		min-width: auto;
		margin: 0 auto 0 auto;
		display:block;
		position: relative;
		padding-bottom: 3rem;
	}
	.top-business .top-business__text {
	padding: 0;
}
	.top-business .top-business__img{
		width: 100%;
		z-index: 1;
		position: relative;
	}
	.top-business .top-business__text dt{
	display: table;
	font-weight:bold;
	height: auto;
	padding: 1.5rem 0 1rem 0;
}
	.top-business .top-business__text h2{
		font-size:2rem;
	}
	.top-business .top-business__text h3{
		font-size: 1.6rem;
		margin-top: 0;
	}
	.top-business .top-business__text dd{
		font-size: 1.4rem;
		margin-top: 0;
		height: auto;
	}
.top-business .link-more{
	width: 100%;
	float: none;
	margin: 1.5rem auto 0 auto;
}
.link-more a{
	padding: 1.2rem 0;
	font-size: 1.5rem;
	font-weight: bold;
	border-radius: 6rem;
	background: #24ADE2 url(../img/arrow_white.png) no-repeat 94% center;
	background-size: 8px;
}
}


.catalog-list{
	z-index: 1;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;


}
.catalog-list:after{
	 content:"";
    display:block;
    width: 33.33333333%;
    height:0;

}
.catalog-list__item{
	width: 33.3333333%;
	margin: 0 auto;
	position: relative;
	padding-bottom: 6rem;
	overflow: hidden;
}
.catalog-list__item figure{
	width: 100%;
	z-index: 1;
	position: relative;
}
.catalog-list__text {
	padding: 0 3% 0 3%;
}
.catalog-list__text dt{
	display: table;
	font-size: 2.4rem;
	font-weight:bold;

	width: 100%;
	line-height: 1.4;
	text-align: center;
	height: 60px;
}
.catalog-list__text dt p{
	display: table-cell;
	vertical-align: middle;
}
.catalog-list__text dd{
	font-size: 1.6rem;
	text-align: left;
	line-height: 1.6;

	height: 120px;
}
.catalog-list__more{
	width: 90%;
	margin: 2rem auto 0 auto;

}
.catalog-list__more a{
	display: block;
	color: #FFF;
	line-height: 1;
	padding: 1rem 0;
	font-weight: bold;
	border-radius: 6rem;
	background: #24ADE2 url(../img/arrow_white.png) no-repeat 94% center;
	background-size: 8px;
}
@media only screen and (max-width: 1200px) {

.catalog-list__text dd{

	height: 140px;
}
.catalog-list__text dt span{
font-size: 1.6rem;
}

}
@media only screen and (max-width: 1000px) {

.catalog-list__item{
	width: 50%;
	margin: 0 auto;
	position: relative;
	padding-bottom: 4rem;
	overflow: hidden;
}


}

@media only screen and (max-width: 768px) {
	.catalog-list{
		padding-bottom: 0;
	}
	.catalog-list__item{
		width: 90%;
		max-width: auto;
		min-width: auto;
		margin: 0 auto 0 auto;
		display:block;
		position: relative;
		padding-bottom: 3rem;
	}
	.catalog-list__text {
	padding: 0;
}
	.catalog-list__item figure{
		width: 100%;
		z-index: 1;
		position: relative;
	}
	.catalog-list__text dt{
	display: table;
	font-weight:bold;
	height: auto;
	padding: 1.5rem 0 1rem 0;
	height: auto;
}
	.catalog-list__text p{
		font-size:2rem;
	}
	.catalog-list__text h3{
		font-size: 1.6rem;
		margin-top: 0;
	}
	.catalog-list__text dd{
		font-size: 1.4rem;
		margin-top: 0;
		height: auto;
	}
.catalog-list__more{
	width: 100%;
	float: none;
	margin: 1.5rem auto 0 auto;
}
.catalog-list__more a{
	padding: 1.2rem 0;
	font-size: 1.5rem;
	font-weight: bold;
	border-radius: 6rem;
	background: #24ADE2 url(../img/arrow_white.png) no-repeat 94% center;
	background-size: 8px;
}
}
.top-greeting{
	z-index: 1;
	position: relative;
	width: 100%;
	padding: 4rem 0;
	background: url(../img/greeting.jpg) no-repeat center top;
	background-size: 1200px;
	min-height: 560px;
}

.top-greeting__inner{
	width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}
.top-greeting__item{
	width: 500px;
	margin-left: 2rem;
	box-sizing: border-box;
	text-align: left;
}
.top-greeting__item h3{
	font-size: 3.2rem;
	line-height: 1.5;
}
.top-greeting__item p {
	margin-top: 2rem;
}

.top-greeting__item .top-greeting__name{
	text-align:right;
}
@media only screen and (max-width: 1000px) {
	.top-greeting{
		background: url(../img/greeting_sp.jpg) no-repeat right top;
		background-size: 100%;
		padding-top: 60%;
	}
	.top-greeting__inner{
		width: 100%;
		margin: 0 auto;
	}
	.top-greeting__item{
		width: 90%;
		margin: -5rem auto 0 auto;
		box-sizing: border-box;
		padding: 2rem;
		text-align: left;
		background-color: rgba(255,255,255, 1);
		box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	}
	.top-greeting__item h3{
		font-size: 2rem;
		margin-bottom: .5rem;
	}
	.top-greeting__item p span{
		font-weight:bold;
	}

	.top-greeting__item .top-greeting__name{
		text-align:right;
	}
}
.top-news{
	width: 100%;
}
.top-news__box{
	border-top:2px solid #24ADE2;
	width: 100%;
	max-width: 1200px;
	padding: 2.5rem 0 5rem 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	margin: 0 auto;
}
.top-news .top-news__title{
	width: 12%;
	vertical-align: middle;
	text-align: left;
	font-size: 2rem;
	font-weight: bold;
	box-sizing: border-box;
}
.top-news .top-news__title p{
	border-bottom: 2px solid #EE86A8;
	display: inline-block;
	color: #24ADE2;
}
.top-news .top-news__item{
	display: table-cell;
	text-align: left;
	width: 70%;
	box-sizing: border-box;

}
.top-news .top-news__link{
	width: 16%;
	padding:0 0 0 2%;
	box-sizing: border-box;
	position: relative;
}
.top-news .top-news__link p.link-more{
	width: 100%;
	position: absolute;
	bottom: 0;
}
.top-news .top-news__item li{
	padding: 0 0 2rem 0;

}
.top-news .top-news__item li:last-child{
	padding: 0;
}
.top-news .top-news__item li dl{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	width: 100%;
	padding: 0 0;
}
.top-news .top-news__item li dl dt{
	width: 15%;
	color: #24ADE2;
	font-weight: bold;
}
.top-news .top-news__item li dl dd{
	width: 85%;
}
@media only screen and (max-width: 1200px) {

.top-news__box{
	border-top:2px solid #24ADE2;
	width: 100%;
	padding: 2rem 0;
	display: block;
}
.top-news .top-news__title{
	width: 100%;
	vertical-align: middle;
	text-align: center;
	font-size: 2rem;
}
.top-news .top-news__title br{
	display: none;
}
.top-news .top-news__item{
	display: block;
	text-align: left;
	width: 100%;
	box-sizing: border-box;
}
.top-news .top-news__link{
	width: 200px;
	padding:0 0 2rem 0;
	box-sizing: border-box;
	margin: 3rem auto 0 auto;
	position: relative;

}
.top-news .top-news__link p.link-more{
	width: 100%;
	position: relative;
	bottom: auto;
}
.top-news .top-news__item li{
	padding: 0 0 2rem 0;
}
.top-news .top-news__item li:last-child{
	padding: 0;
}
.top-news .top-news__item  ul{
	margin-top: 2rem;
	padding: 0 2rem;
}
.top-news .top-news__item li dl{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	width: 100%;
}
.top-news .top-news__item li dl dt{
	width: 13%;
	color: #24ADE2;
	font-weight: bold;
}
.top-news .top-news__item li dl dd{
	width: 87%;

}
	}
@media only screen and (max-width: 768px) {
	.top-news{
		padding: 0 0 3rem 0;
		width: 100%;
	}
	.top-news__box{
		width: 90%;
		display: block;
		margin: 0 auto;
		padding: 2rem 0 0 0;
	}
	.top-news .top-news__title{
		display: block;
		width: 100%;
		font-size: 1.6rem;
	}
	.top-news .top-news__item{
		display: block;
		text-align: left;
		width: 100%;
		padding-left:0;
		box-sizing: border-box;
	}
	.top-news .top-news__item ul{
		margin: 1.5rem 0 0 0;
		padding: 0;
	}
	.top-news .top-news__item li{
	padding: 0 0 1.5rem 0;
}

.top-news .top-news__item li dl{
	display: block;
}
.top-news .top-news__item li dl dt{
	width: 100%;
}
.top-news .top-news__item li dl dd{
	width: 100%;
}
.top-news .top-news__link{
	width: 100%;
	padding:0 0 1rem 0;
	box-sizing: border-box;
	margin: 2rem auto 0 auto;
	position: relative;
}
}
.news__nav ul{
	width: 100%;
	max-width: 960px;
	margin: 5rem auto 0 auto;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
}
.news__nav li a{
	background: #DDD;
	color: #666;
	line-height: 1;
	font-size: 2rem;
	padding: 1.2rem 2rem;
}
.news__nav li.current a{
	background: #24ADE2;
	color: #FFF;
	padding: 1.2rem 16rem;
}
.news__nav li a:hover{
	background: #24ADE2;
	color: #FFF;
	opacity: 1;
}
.news__contents{
	width: 100%;
	max-width: 960px;
	margin: 5rem auto 0 auto;
	text-align: left;
}
.news ul.news__contents-list{
	margin-top: 2rem;
	overflow: hidden;
	width: 100%;
	border-top: 1px solid #24ADE2;
}
.news ul.news__contents-list li{
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;

}
.news ul.news__contents-list li a{
	display: block;
	border-bottom: 1px solid #ccc;
	padding: 2rem;
}
.news ul.news__contents-list li:last-child a{
	border-bottom: 1px solid #24ADE2;
}
.news ul.news__contents-list li dl{
	overflow: hidden;
  	width: 100%;
  	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;

}
.news ul.news__contents-list li dt{
	color: #24ADE2;
	font-weight: bold;

	width: 15%;
}

.news ul.news__contents-list li dd{
	letter-spacing: .05rem;
	width:85%;


}
.news__contents-pager {
    overflow: hidden;
    margin-top: 4rem;
    padding-bottom: 5rem;
}
.news__contents-pager ul {
    list-style: none;
    position: relative;
    left: 50%;
    float: left;
}
.news__contents-pager ul li {
    margin: 0 1px;
    position: relative;
    left: -50%;
    float: left;
    line-height: 1.4;

    color: #24ADE2;

}
.news__contents-pager ul li span,
.news__contents-pager ul li a {
    display: block;

    padding: 0.6em 1em;
}
.news__contents-pager ul li a {

    color: #333;
    text-decoration: none;
    -webkit-transition: 0.2s;
	transition: 0.2s;

}
.news__contents-pager ul li a:hover {
    background: #24ADE2;
    color: #FFF;
}
.news__detail{
	padding: 4rem 0;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
.news__detail-title dt{
	color: #24ADE2;
	font-weight: bold;
	text-align: left;
	font-size: 2rem;
	text-align: left;
	line-height: 2;
	border-bottom: 2px solid #24ADE2;

}
.news__detail-title dd{
	font-size: 2.8rem;
	font-weight: bold;
	text-align: left;
	line-height: 1.6;
	padding-top: .5rem;
}
.news__detail-photo{
	width: 400px;
	margin: 2rem auto 0 auto;
}
.news__detail-article{
	width: 760px;
	margin: 2rem auto 0 auto;
	text-align: left;
}
.news__detail-article p{
	margin-bottom: 1.5em;
}
.news__contents-link{
	margin-top: 5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #CCC;
}
.news__contents-link a:hover,.news__contents-link a span{
color: #24ADE2;
}
@media only screen and (max-width: 768px) {
.news__nav ul{
	width: 90%;
	max-width: auto;
	margin: 3rem auto 0 auto;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
}
.news__nav li a{
	font-size: 1.6rem;
	padding: 1rem 1rem;
}
.news__nav li.current a{
	padding: 1rem 4rem;
}

.news__contents{
	width: 90%;
	max-width: auto;
	margin: 3rem auto 0 auto;

}


.news ul.news__contents-list li a{

	padding: 1rem .5rem;
}
.news ul.news__contents-list li:last-child a{
	border-bottom: 1px solid #24ADE2;
}
.news ul.news__contents-list li dl{
	overflow: hidden;
  	width: 100%;
  	display: block;

}
.news ul.news__contents-list li dt{

	padding-right: 0;
	width: 100%;
}

.news ul.news__contents-list li dd{

	width:100%;



}
.news__contents-pager {
    overflow: hidden;
    margin-top: 2rem;
    padding-bottom: 5rem;
}
.news__contents-pager ul li span,
.news__contents-pager ul li a {
    display: block;

    padding: 0.6em .8em;
}
.news__detail{
	padding: 2rem 0;
	width: 90%;
	max-width: auto;
	margin: 0 auto;
}
.news__detail-title dt{
	font-size: 1.6rem;
	border-bottom: 2px solid #24ADE2;

}
.news__detail-title dd{
	font-size: 1.8rem;

	line-height: 1.5;

}
.news__detail-photo{
	width: 100%;
	margin: 1.5rem auto 0 auto;
}
.news__detail-article{
	width: 100%;
	margin: 1.5rem auto 0 auto;

}
.news__contents-link{
	margin-top: 4rem;
}
}
.bg-toplink{
	background: #DDD;
}
.top-link{
	width: 100%;
	max-width: 2000px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	margin: 0 auto;
	background: #FFF;
}
.top-link div{
	width: 50%;
	position: relative;
}
.top-link div figure{
	display: block;
}
.top-link div p.top-link__title{
	position: absolute;
	top: 45%;
	font-size: 3rem;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	width: 100%;
}
.top-link div p.top-link__en{
	position: absolute;
	top: 20px;
	left:30px;
	color: #FFF;
	font-weight: bold;
}
.top-link p:last-child a{
	background-color: #009DE6;
	text-shadow:0 0 10px #078bc8;
}
.top-link p a{
	display: block;
	padding: 5rem 0;
	font-size: 3.2rem;
	color: #FFF;
	background: #46CDF0 url(../img/arrow_white.png) no-repeat 94% center;
	background-size: 14px;
	text-shadow:0 0 10px #009DE6;
	font-weight: bold;
}
.top-recruit{
	width: 100%;
}
.top-recruit a{
	display: block;
	text-align: center;
	padding: 3rem 0;
	color: #FFF;
	background-color: #24ADE2;
	background-image:url(../img/arrow_white.png), url(../img/bg.png);
	background-repeat:no-repeat,repeat-y;
	background-position: 94% center,center top;
	background-size: 20px,100%;

	font-weight: bold;
	text-shadow:0 0 10px #0a6689;

	font-size: 4.8rem;
}
.top-recruit a span{
	display: block;
	font-size: 3.2rem;
}
.top-recruit a span br{
	display: none;
}
@media only screen and (max-width: 1000px) {
.top-link div p.top-link__title{
	font-size: 2.8rem;
}
.top-link div p.top-link__en{
	position: absolute;
	top: 10px;
	left:15px;
}
	.top-recruit{
		width: 100%;
	}
	.top-recruit a{
		font-size: 3.8rem;
	}
	.top-recruit br{
		display: none;
	}
	.top-recruit a span{
		font-size: 2.8rem;
	}
	.top-recruit a span br{
	display: block;
}
}
@media only screen and (max-width: 768px) {
	.top-link{
	width: 100%;
	display: block;
}
.top-link div{
	width: 100%;
}
.top-link div p.top-link__title{
	font-size: 2rem;
}
.top-link div p.top-link__en{
	top: 5px;
	left:10px;
	font-size: 1.5rem;
}
	.top-recruit{
		width: 100%;
	}
	.top-recruit br{
		display: block;
	}
	.top-recruit a{
		display: block;
		text-align: center;
		padding:1.5rem 0;
		color: #FFF;
		background:#24ADE2 url(../img/arrow_white.png) no-repeat 95% center;
		background-size:8px;
		font-size: 2rem;
		line-height: 1.6;
	}
	.top-recruit a span{
		display: block;
		font-size: 1.4rem;
	}
}
.item-blue{
	background:#24ADE2 url(../img/bg.png) repeat-y center top;
	background-size: 100%;
	color: #FFF;
	padding: 2rem 0 2.5rem 0;
	z-index: 10;
	position: relative;
}
.item-blue__inset{
	box-shadow:inset 0px 4px 5px -2px rgba(0, 0, 0, .3);
}
.item-blue__shadow{
	box-shadow: 0px 2px 8px 0 rgba(0, 0, 0, .2);
}
.item-blue__en{
	font-size: 2.4rem;
	text-shadow:0 0 10px #009DE6;
	font-weight: normal;
}
.item-blue__en:after{
	content: "";
	display: block;
	width: 200px;
	margin: 0 auto;
	border-bottom: 4px solid #b0e4f6;

}
.item-blue__title{
	font-size: 3.2rem;

	line-height: 1.4;
}
.item-blue__text{
	font-size: 1.8rem;
	width: 90%;
	max-width: 880px;
	margin: 1.5rem auto 0 auto;
	text-align: left;
}
@media screen and (max-width:1000px){
	.item-blue__text{
	font-size: 1.6rem;
	width: 90%;
	max-width: 880px;
	margin: 1.5rem auto 0 auto;
	text-align: left;
}
	}
@media screen and (max-width:768px){
	.item-blue{
		padding: 2rem 0;
	}
	.item-blue__en{
		font-size: 1.8rem;
	}
	.item-blue__en:after{
		content: "";
		display: block;
		width: 50%;
		margin: 0 auto;
		border-bottom: 4px solid #b0e4f6;
	}
	.item-blue__title{
		font-size: 2rem;
		text-shadow:0 0 10px #009DE6;
	}
	.item-blue__text{
		font-size: 1.4rem;
		width: 90%;
		margin: 1rem auto 0 auto;
	}
}
.media{
	box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.1);
}
.media-inner{
	width: 100%;
	max-width: 1200px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 4rem 1rem;
}
.media h2{
	width: 144px;
	margin: 0 auto;
}
.media .media-read{
	font-size: 2rem;
	font-weight: bold;
	margin: 3rem 0 0 0;
	border-bottom: 1px solid #000;
	padding-bottom: .5rem;
}
.media .media-read span{
	color: #24ade2;

}
.media-box{
	padding: 3rem 0 0 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}
.media-book{
	width: 50%;
	box-sizing: border-box;
	/* padding: 0 2rem 0 0; */
}
.media-book dl{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	padding: 2rem 0 0 0;
}
.media-book dt{
	width: 53%;
	padding: 0 0 0 2%;
	order: 2;
}
.media-book dd{
	width: 45%;
	order: 1;
	text-align: left;
	font-weight: bold;
}
.media-book dd p{
	margin-top: 1rem;
}
.media-book__link a{
	background: #FF71A9 url(../img/merry_link.png) no-repeat 95% center;
	background-size: 20px;
	color: #FFF;
	border-radius: 10rem;
	display: block;
	padding: 1.4rem 0 1.4rem 1.5rem;
	line-height: 1;

}
.media-download{
	width: 50%;
	box-sizing: border-box;
	padding: 0 0 0 2rem;
	text-align: left;
}
.media-box h3{
	background: #24ade2;
	text-align: center;
	color: #FFF;
	font-size: 2.4rem;
	line-height: 1;
	padding: 1rem 0;
	border-radius: 1rem;
}
.media-download p{
	margin-top: 1.5rem;

}
.media-download h4{
	font-size: 1.8rem;
	margin-top: 1rem;
}
.media-download h4 span{
	color: #d3473f;
	text-decoration: underline;
}
.media-download ul{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	margin-top: 1rem;
}
.media-download li:first-child{
	width: 20%;
}
.media-download li:nth-child(2){
	width: 40%;
}
.media-download li:nth-child(3){
	width: 40%;
}
.media-download li:nth-child(2) dl,.media-download li:nth-child(3) dl{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	padding: .5rem;
}
.media-download li:nth-child(2) dt,.media-download li:nth-child(3) dt{
	width: 50%;
	font-size: 1.4rem;
}
.media-download li:nth-child(2) dd,.media-download li:nth-child(3) dd{
	width: 50%;
	box-sizing: border-box;
	padding: 0 .5rem;
}
@media only screen and (max-width: 1000px) {
	.media-book__link a{
	background: #FF71A9 url(../img/merry_link.png) no-repeat 95% center;
	background-size: 16px;
	color: #FFF;
	border-radius: 20rem;
	display: block;
	padding: 1.4rem 2.5rem 1.4rem 1.5rem;
	line-height: 1.2;

}
}
@media only screen and (max-width: 768px) {
	.media{
		box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.1);
	}
	.media-inner{
		width: 90%;
		margin: 0 auto;
		padding: 3rem 0;
		min-width: 90%;
	}
	.media h2{
		width: 100px;
		margin: 0 auto;
	}
	.media .media-read{
		font-size: 1.5rem;
		text-align: left;
		font-weight: bold;
	}
	.media-box{
		padding: 2rem 0 0 0;
		display: block;
	}
	.media-book{
		width: 100%;
		box-sizing: border-box;
		/* padding: 0 0 0 0; */
	}
	.media-book dl{
		display: block;
		padding: 1rem 0;
		width: 100%;
		margin: 0 auto
	}
	.media-book dt{
		width: 80%;
		padding: 0 0 0 0;
		margin: 0 auto;

	}
	.media-book dd{
		width: 100%;
		order: 1;
		text-align: left;
		font-weight: bold;
	}
	.media-book dd img{
		width: 60%;
		margin: .5rem auto 0 auto;

		display: block;

	}
	.media-book dd p{
		margin-top: 1rem;
	}
	.media-book__link a{
		background: #FF71A9 url(../img/merry_link.png) no-repeat 95% center;
		background-size: 20px;
		color: #FFF;
		border-radius: 10rem;
		display: block;
		padding: 1.4rem 0 1.4rem 1.5rem;
		line-height: 1;
		text-align: center;
		font-size: 1.6rem;

	}
	.media-download{
		width: 100%;
		box-sizing: border-box;
		padding: 3rem 0 0 0;
		text-align: left;
	}
	.media-box h3{
		background: #24ade2;
		text-align: center;
		color: #FFF;
		font-size: 1.8rem;
		line-height: 1;
		padding: 1rem 0;
		border-radius: 1rem;
	}
	.media-download p{
		margin-top: 1.5rem;

	}
	.media-download h4{
		font-size: 1.6rem;
		margin-top: 1rem;
	}
	.media-download h4 span{
		color: #d3473f;
		text-decoration: underline;
	}
	.media-download ul{
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		flex-wrap: wrap;
		margin-top: 1rem;
	}
	.media-download li:first-child{
		width: 20%;
	}
	.media-download li:nth-child(2){
		width: 40%;
	}
	.media-download li:nth-child(3){
		width: 40%;
	}
	.media-download li:nth-child(2) dl,.media-download li:nth-child(3) dl{
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		flex-wrap: wrap;
		padding: .5rem;
	}
	.media-download li:nth-child(2) dt,.media-download li:nth-child(3) dt{
		width: 100%;
		font-size: 1.4rem;

	}
	.media-download li:nth-child(2) dt p,.media-download li:nth-child(3) dt p{
		line-height: 1.4;
	}
	.media-download li:nth-child(2) dd,.media-download li:nth-child(3) dd{
		width: 50%;
		box-sizing: border-box;
		padding: 0 .5rem;
		display: none;

	}
}

.heading-about{
	width: 100%;
	height: 280px;
	background: url(../img/about_heading.jpg) no-repeat;
	background-size: cover;
	background-position:  center top;
}
.heading-company{
	width: 100%;
	height: 280px;
	background: url(../img/company_heading.jpg) no-repeat;
	background-size: cover;
	background-position:  center center;
}
.heading-service{
	width: 100%;
	height: 280px;
	background: url(../img/service_heading.jpg) no-repeat;
	background-size: cover;
	background-position:  center center;
}
.heading-recruit{
	width: 100%;
	height: 280px;
	background: url(../img/recruit_heading.jpg) no-repeat;
	background-size: cover;
	background-position:  center center;
}

@media only screen and (max-width: 1200px) {
	.heading-about{
		width: 100%;
		height: 240px;
		background: url(../img/about_heading.jpg) no-repeat;
		background-size: cover;
		background-position:  center top;
	}
	.heading-company{
		width: 100%;
		height: 240px;
		background: url(../img/company_heading.jpg) no-repeat;
		background-size: cover;
		background-position:  center center;
	}
	.heading-recruit{
		width: 100%;
		height: 240px;
		background: url(../img/recruit_heading.jpg) no-repeat;
		background-size: cover;
		background-position:  center center;
	}
	.heading-service{
	width: 100%;
	height: 240px;
	background: url(../img/service_heading.jpg) no-repeat;
	background-size: cover;
	background-position:  center center;
}

}
@media only screen and (max-width: 768px) {
	.heading-about{
		width: 100%;
		height: 140px;
		background: url(../img/about_heading.jpg) no-repeat;
		background-size: cover;
		background-position:  center top;
	}
	.heading-company{
		width: 100%;
		height: 140px;
		background: url(../img/company_heading.jpg) no-repeat;
		background-size: cover;
		background-position:  center center;
	}
	.heading-recruit{
		width: 100%;
		height: 140px;
		background: url(../img/recruit_heading.jpg) no-repeat;
		background-size: cover;
	background-position:  center center;
	}
	.heading-service{
	width: 100%;
	height: 140px;
	background: url(../img/service_heading.jpg) no-repeat;
	background-size: cover;
	background-position:  center center;
}
}
.nav-sub{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem 0 6rem 0;

}
.nav-sub ul{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
}
.nav-sub li{
	width: 33.33333333333%;
	box-sizing: border-box;
	padding: 1rem;
}
.nav-sub li a{
	display: block;
	background: #DDD;
	color: #666;
	line-height: 1;
	font-size: 1.9rem;
	padding: 2rem 0;
	border-radius: 1rem;
	font-weight: bold;
	box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, .2);
}
.nav-sub li a:hover{
	background: #24ADE2;
	color: #FFF;
	opacity: 1;
}
@media only screen and (max-width: 768px) {
.nav-sub{
	width: 100%;
	max-width: auto;
	margin: 0 auto;
	padding: 2rem 0;

}
.nav-sub ul{
	display: block;
}
.nav-sub li{
	width: 100%;
	box-sizing: border-box;
	padding: .5rem 2rem;

}
.nav-sub li a{

	font-size: 1.5rem;
	padding: 1.4rem 0;
	border-radius: .6rem;
	font-weight: bold;

}

	}
.about-reason{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.about-reason ul{
display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	width: 100%

	margin: 0 auto;
	padding: 3rem 0 4rem 0;
}
.about-reason li{
	width: 50%;
	box-sizing: border-box;
	padding: 2rem 1.5rem;
}
.about-reason li h3{
	font-size: 2rem;
	border-bottom: 2px solid #24ADE2;
	padding-bottom: .5rem;
}
.about-reason li h3 span,.about-reason li dt span,.about-reason li dd span{
	color: #24ADE2;

}
.about-reason li dt{
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.3;
	margin-top: 2rem;
}
.about-reason li dt em{
	font-size: 2rem;
	font-weight: bold;
}
.about-reason li dd{
	text-align: left;
	margin-top: 2rem;
}
@media only screen and (max-width: 768px) {
.about-reason{
	width: 90%;
	max-width: auto;
	margin: 0 auto;
}
.about-reason ul{
display: block;
	width: 100%

	margin: 0 auto;
	padding:0 0 2rem 0;
}
.about-reason li{
	width: 100%;
	box-sizing: border-box;
	padding: 0 0 2rem 0;
}
.about-reason li h3{
	font-size: 1.6rem;

	padding:2rem 0 .5rem 0;
}
.about-reason li h3 span,.about-reason li dt span,.about-reason li dd span{
	color: #24ADE2;

}
.about-reason li dt{
	font-size: 2rem;

	line-height: 1.3;
	margin-top: 1rem;
}
.about-reason li dt em{
	font-size: 1.6rem;

}
.about-reason li dd{

	margin-top: 1rem;
}
	}
.about-group{
	padding: 0 0 4rem 0;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
.about-group h4{
	font-size: 3.2rem;
}
.about-group__txt1{
	margin-top: 2rem;
}
.about-group h5{
	margin-top: 5rem;
	background: #24A19C;
	font-size: 2rem;
	line-height: 1;
	padding: 1rem 0;
	color: #FFF;
	text-align: center;
}
.about-group__txt2{
	font-size: 6.4rem;
	margin-top: 3rem;
	letter-spacing: .1rem;
	color: #EB347C;
}
.about-group__txt2 span{
	color: #24A19C;

}
.about-group__txt3{
	font-weight: bold;
	font-size: 2rem;
	padding: 3rem 0 1rem 0;
}
.about-group__txt4{
	margin-top: 4rem;
	border-top:1px solid #CCC;
	padding: 4rem 0;
}
.about-group__img1{
	width: 390px;
	margin: 3rem auto 0 auto;
}
.about-group__img2{
	width: 600px;
	margin: 3rem auto 0 auto;

}
.about-business{
	padding-bottom: 5rem;
}
.about-business__lead{
	font-size: 2rem;
	margin-top: 1rem;
	line-height: 1.6;
	padding-bottom: 2rem;

}
@media only screen and (max-width: 768px) {
.about-group{
	padding: 0 0 0 0;
	width: 90%;
	max-width: auto;

}
.about-group h4{
	font-size: 2rem;
}
.about-group h4 br{
	display: none;
}
.about-group__txt1{
	margin-top: 2rem;
}
.about-group h5{
	margin-top: 3rem;
	font-size: 1.5rem;
	padding: 1rem 0;

}
.about-group__txt2{
	font-size: 4rem;
	margin-top: 1rem;
}

.about-group__txt3{
	font-weight: bold;
	font-size: 1.6rem;
	padding: 0rem 0 1rem 0;
}
.about-group__txt3 br{
	display: none;
}
.about-group__txt4{
	margin-top: 3rem;
	padding: 2rem 0 4rem 0;
	text-align: left;
}
.about-group__img1{
	width: 100%;
	margin: 2rem auto 0 auto;
}
.about-group__img2{
		width: 100%;
	margin: 2rem auto 0 auto;

}
.about-business{
	padding-bottom: 1rem;
	width: 100%;
	margin: 0 auto;
}
.about-business .title-sub{
	margin: 0;
}
.about-business__lead{
	font-size: 1.5rem;
	width: 90%;

	text-align: left;
	margin: 0 auto;
	line-height: 1.6;
}
.about-business__lead br{
	display: none;
	}
}

.item-service01{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 3rem 0;
}
.item-service01__read{

	text-align: left;
	font-size: 1.8rem;
	padding-bottom: 3rem;
}
.item-service01__step{
	border-top:1px solid #CCC;
	border-right:1px solid #CCC;
	box-sizing: border-box;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	margin-top: 3rem;

}
.item-service01__step li{
	width: 50%;
	border-left:1px solid #CCC;
	border-bottom:1px solid #CCC;
	box-sizing: border-box;
	padding: 2%;
}
.item-service01__step li p{
	text-align: left;

	font-size: 2.6rem;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	width: 100%;

}
.item-service01__step li p em{
	background: #24ADE2;
	padding: 1.5rem 0;
	text-align: center;
	color: #FFF;
	line-height: 1;
	width: 90%;
	font-weight: bold;
}
.item-service01__step li p span{
	width: 10%;
	background: #333;
	padding: 1.5rem 0;
	text-align: center;
	color: #FFF;
	line-height: 1;
	font-weight: bold;
}
.item-service01__step li dt figure{
	margin-top: 2.5rem;
}
.item-service01__step li dd{
	padding: 1.5rem 0 0 0;
	text-align: left;
}
.item-service01__product h4{
	font-size: 3.2rem;
	margin-top: 2rem;
}
.item-service01__product p{

	margin-top: 1rem;
	line-height: 1;
	font-size: 2rem;

}
.item-service01__catalog{
	width: 100%;
	max-width: 1000px;
	margin:0 auto;

}
.link-service{
	width: 780px;
	margin: 0 auto 6rem auto;
	border-top:4px solid #CCC;
	border-bottom:4px solid #CCC;
}
.link-service a{
	display: block;
	width: 100%;
	font-weight: bold;
	padding: 1.4rem 0;
	background: #FFF url(../img/arrow_blue.png) no-repeat 98% center;
	background-size: 10px;
	font-size: 2.4rem;
}
.catalog__title{
	border-bottom: 1px solid #CCC;
	font-size: 2.4rem;
	font-weight: bold;
	margin-top: 5rem;
	padding-bottom: .5rem;

}
@media only screen and (max-width: 768px) {
.item-service01{
	width: 90%;
	max-width: auto;
	margin: 0 auto;
	padding: 2rem 0;
}
.item-service01__read{
	font-size: 1.5rem;
	padding-bottom: 1rem;
}
.item-service01__step{

	display: block;
	margin-top: 0;

}
.item-service01__step li{
	width: 100%;

	padding: 0;
}
.item-service01__step li p{

	font-size: 1.6rem;



}
.item-service01__step li p em{
	padding: 1.2rem 0;
	width: 90%;

}
.item-service01__step li p span{
	width: 10%;
	padding: 1.2rem 0;

}
.item-service01__step li dt figure{
	margin-top: 1rem;
}
.item-service01__step li dd{
	padding: 1rem 1.5rem 2rem 1.5rem;
	text-align: left;
}
.item-service01__product h4{
	font-size: 1.8rem;
	margin-top: 1rem;
	text-align: left;
}
.item-service01__product p{

	margin-top: 0;
	font-size: 1.4rem;
	text-align: left;
	line-height: 1.6;

}
.item-service01__catalog{
	width: 100%;
	max-width: auto;
	margin:0 auto;

}
.link-service{
	width: 90%;
	margin: 0 auto 4rem auto;
	border-top:4px solid #CCC;
	border-bottom:4px solid #CCC;
}
.link-service a{

	padding: 1.2rem 0;
	background: #FFF url(../img/arrow_blue.png) no-repeat 98% center;
	background-size: 8px;
	font-size: 1.6rem;
	line-height: 1.4;
}
.catalog__title{
	border-bottom: 1px solid #CCC;
	font-size: 1.5rem;
	font-weight: bold;
	margin-top: 4rem;
}
	}
.catalog__main ul{
	width: 40%;
	margin: 4rem auto 0 auto;
	padding-bottom: 2rem;
	
}
.catalog__main .catalog-list__more{
	width: 100%;
	margin: 2rem auto 0 auto;

}
.catalog__main ul li{
width: 100%;
box-sizing: border-box;
}
.catalog__main ul li figure{
	width: 100%;
	margin: 0 auto;
	padding-bottom: 2rem;
}
.catalog__main ul li p{
padding: 0;
}
.service02-step{
	width: 100%;
	max-width: 700px;
	margin: 3rem auto 0 auto;
}

.service02-step ul{
	width: 640px;
	margin: 3rem auto 0 auto;
	padding-bottom: 4rem;
}

.service02-step ul dl{
	border: 4px solid #24ADE2;
	border-radius: 1rem;
	padding: 1.5rem 2rem 2rem 2rem;
	text-align: left;

}
.service02-step ul li dt{
	color: #24ADE2;
	font-size: 2.4rem;

}
.service02-step ul li.arrow:after{
	content: "";
	display: block;
	width: 32px;
	height: 16px;
	background: url(../img/arrow_service.png) no-repeat center top;
	background-size: 32px;
	margin: 1rem auto;
}
#service02 .catalog-list{
	margin-top: 3rem;
}
.service03-item{
	width: 100%;
	max-width: 1000px;
	margin: 3rem auto 0 auto;
}
.service03-item h2{
	font-weight:normal;
}
.service03-item__list ul{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	padding: 3rem 0 4rem 0;
}

.service03-item__list ul li{
	width: 33.3333333333%;
	box-sizing: border-box;
	padding: 1rem;
}
.service03-item__list dd{
	text-align: left;
	margin-top: 1rem;
}

@media only screen and (max-width: 768px) {
.catalog__main ul{
	display: block;
	width: 100%;
	max-width: auto;
	margin: 2rem auto 0 auto;
	padding-bottom: 0;
}
.catalog__main ul li{
width: 100%;
box-sizing: border-box;
}
.catalog__main ul li figure{
	width: 70%;
	margin: 0 auto;
	padding-bottom: 1rem;
}
.catalog__main ul li p{
padding: 0 0 2rem 0;
font-weight: normal;

}
.catalog__main .catalog-list__more{
	width: 100%;
	margin: 0 auto 0 auto;

}
.service02-step{
	width: 90%;
	max-width: auto;
	margin: 2rem auto 0 auto;
}
.service02-step p{
	font-weight: normal;
	text-align: left;

}
.service02-step ul{
	width: 100%;
	margin:1rem auto 0 auto;
	padding-bottom: 1rem;
}

.service02-step ul dl{
	border: 4px solid #24ADE2;
	border-radius: 1rem;
	padding: 1rem 1.5rem 1.5rem 1.5rem;


}
.service02-step ul li dt{

	font-size: 1.5rem;

}

#service02 .catalog-list{
	margin-top: 0;
}
.service03-item{
	width: 90%;
	max-width: auto;
	margin: 2rem auto 0 auto;
}
.service03-item h2{
	text-align: left;
}
.service03-item__list ul{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	padding: 0 0 2rem 0;
}

.service03-item__list ul li{
	width: 100%;
	box-sizing: border-box;
	padding: 1rem;
}
.service03-item__list dd{
	text-align: left;
	margin-top: 1rem;
}
	}
.company{
	width:100%;
	margin: 0 auto;
	padding: 3rem 0 0 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
}
.company h2{
	width: 100%;
	text-align: center;
	font-size: 1.8rem;
	font-weight: normal;
}
.company a{
	text-decoration: underline;
}
.company-list{
	width: 880px;
	margin: 3rem auto 0 auto;
	padding-bottom: 2rem;
}
.company-list li{
	padding: 1rem 0;
	border-bottom: 1px solid #ccc;
	text-align: left;
}
.company-list dl{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
	font-size: 1.8rem;
}
.company-list dt{
	width: 23%;
	font-weight: bold;
	color: #24ADE2;
	padding-left: 2%;

}
.company-list dd{
	width: 75%;

}
.company-map{
	width: 100%;
	margin: 3rem auto 0 auto;
}
.company-map iframe{
	width: 100%;
	height: 400px;
}
@media only screen and (max-width: 768px) {
.company{
	width: 90%;
	margin: 0 auto;
	padding: 2rem 0 3rem 0;
	display:block;
}
.company h2{
	width: 100%;
	text-align: left;
	font-size: 1.5rem;

}
.company-list{
	width: 100%;
	padding-left: 0;
	text-align:left;
	margin-top: 1rem;

}
.company-list li{
	padding: .5rem 0;

}
.company-list dl{
	display: block;
	font-size: 1.4rem;
}
.company-list dt{

	padding: 0;
	width: 100%;


}
.company-list dl dt br{
	display: none;
}
.company-list dd{
	width: 100%;
}

.company-map iframe{
	width: 100%;
	height: 300px;
}
	}
.policy{
	width: 100%;
	max-width: 1000px;
	padding:3rem 2rem 6rem 2rem;
	margin: 0 auto;
	text-align: left;
}
.policy h3{
	font-size: 2.4rem;
	font-weight: bold;
	padding-bottom: 2rem;
	margin-top: 3rem;
}
.policy ul{
	margin: 2rem 0 0 0;
}
.policy li{
	padding: 1rem 0;

}
.policy dl{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
}
.policy dt{
	width: 4%;
}
.policy dd{
	width: 96%;
}
.policy li a{
	text-decoration: underline;
	}

@media only screen and (max-width: 768px) {
.policy{
	width: 90%;
	padding:2rem 0 3rem 0;
	margin: 0 auto;
	text-align: left;
}
.policy h3{
	font-size: 2rem;
	font-weight: bold;
	padding-bottom: 1rem;
}
.policy ul{
	margin: 1rem 0 0 0;
}
.policy li{
	padding: .4rem 0;

}
}
.recruit{
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	text-align: left;
	padding: 3rem 2rem;
}
.title-sub{
	margin-top: 4rem;
	text-align: center;
	padding-bottom: 1rem;
}
.title-sub h3{
	font-size: 2.4rem;
}
.title-sub h3:after{
	content: "";
	display: block;
	width: 240px;
	margin: .5rem auto 0 auto;
	border-bottom: 6px solid #24ADE2;
}

.recruit-item{
	margin-top: 5rem;
}
.recruit-item p{
	font-weight: bold;
}
.recruit-item .recruit-item__job{
	color: #24ADE2;
	font-size: 2.8rem;
	font-weight: bold;
	border-bottom: 4px solid #24ADE2;
	margin-bottom: 2rem;
}
.recruit-item ul{
	margin-top: 1rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid #CCC;
}
.recruit-item li {
    border-top: 1px solid #24ADE2;
    border-right: 1px solid #24ADE2;
    border-left: 1px solid #24ADE2;
}
.recruit-item li:last-of-type {
    border-bottom: 1px solid #24ADE2;
}
.recruit-item li dl{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
}
.recruit-item li dt{
	width: 30%;
	font-weight: bold;
	padding: 1rem;
	background: rgba(36, 173, 226, .5);
}
.recruit-item li dd{
	width: 70%;
	padding: 1rem;
}
.link-contact{
	width: 480px;
	margin: 3rem auto 0 auto;
	padding-bottom: 3rem;
}
.link-contact a{
	display: block;
	background-color: #24ADE2;
	background-image:url(../img/arrow_white.png), url(../img/bg.png);
	background-repeat:no-repeat,repeat-y;
	background-position: 94% center,center top;
	background-size: 10px,100%;

	color: #FFF;
	font-weight: bold;
	line-height: 1;
	border-radius: 10rem;
	font-size: 3.2rem;
	padding: 2rem 0;
	text-align: center;
	text-decoration: none!important;

}
.recruit a{
	text-decoration: underline;
}
@media only screen and (max-width: 768px) {
.recruit{
	width: 90%;
	margin: 0 auto;
	text-align: left;
	padding: 2rem 0 0 0;
}
.title-sub{
	text-align: center;
	padding-bottom: 1.5rem;
	margin-top: 4rem;
}
.title-sub h3{
	font-size: 1.6rem;
}
.title-sub h3:after{
	content: "";
	display: block;
	width: 140px;
	margin: .5rem auto 0 auto;
	border-bottom: 4px solid #24ADE2;
}

.recruit-item{
	margin-top: 3rem;
}
.recruit-item .recruit-item__job{
	font-size: 2rem;
	margin-bottom: 1rem;
}
.recruit-item ul{
	margin-top: 1rem;
	padding-bottom: 2rem;
}
.recruit-item li dl{
	display: block;
}
.recruit-item li dt{
	width: 100%;

}
.recruit-item li dd{
	width: 100%;
}
.link-contact{
	width: 100%;
	margin: 2rem auto 0 auto;
}
.link-contact a{
	display: block;
	background-color: #24ADE2;
	background-image:url(../img/arrow_white.png), url(../img/bg.png);
	background-repeat:no-repeat,repeat-y;
	background-position: 94% center,center top;
	background-size: 8px,100%;

	border-radius: 10rem;
	font-size: 2rem;
	padding: 1.8rem 0;
	text-align: center;
}
}
.contact{
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	text-align: left;
	padding: 3rem 2rem 4rem 2rem;
	border-bottom: 1px solid #CCC;
}
.contact-item{
	padding: 3rem 0;
}
.contact-item ul{
	margin-top: 1rem;
	padding-bottom: 1rem;

}
.contact-item li{
	padding: 1rem 0;

}
.contact-item li dl{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap: wrap;
}
.contact-item li dt{
	width: 30%;
	font-weight: bold;
	color: #24ADE2;

}
.contact-item li dt span{
	width: 70%;
	display: inline-block;
}
.contact-item li dt em{
	background: #fa163f;
	color: #FFF;
	border-radius: .4rem;
	line-height: 1;
	padding: .2rem 1rem;
	font-size: 1.4rem;
}
.contact-item li dd{
	width: 70%;
}
.link-submit,.link-confirm{
   width: 320px;
  margin: 3rem auto 0 auto;
}
.link-submit input{
  font-family: 'YakuHanJP','Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  display: block;
  width: 100%;
  color: #FFF;


  background-color: #24ADE2;
	background-image:url(../img/arrow_white.png), url(../img/bg.png);
	background-repeat:no-repeat,repeat-y;
	background-position: 94% center,center top;
	background-size: 10px,100%;



  font-size: 2.2rem;
  line-height:1;
  border-radius: 6rem;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  box-shadow: none;
  padding: 2rem 0;
  border:none;
}
.link-confirm input{
  font-family: 'YakuHanJP','Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  display: block;
  width: 100%;
  color: #FFF;
 background-color: #24ADE2;
	background-image:url(../img/arrow_white.png), url(../img/bg.png);
	background-repeat:no-repeat,repeat-y;
	background-position: 94% center,center top;
	background-size: 10px,100%;
  font-size: 2.2rem;
  line-height:1;
  border-radius: 6rem;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  box-shadow: none;
   padding: 2rem 0;
  border:none;
}
.contact-complete{
	text-align: center;
	padding: 4rem 0;
}
.contact-complete h3{
	font-size: 3.2rem;

}
.contact-complete p{
	margin-top: 2rem;
}
.link-top{
   width: 320px;
  margin: 3rem auto 0 auto;
}
.link-top a{
  font-family: 'YakuHanJP','Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  display: block;
  width: 100%;
  color: #FFF;
background-color: #24ADE2;
	background-image:url(../img/arrow_white.png), url(../img/bg.png);
	background-repeat:no-repeat,repeat-y;
	background-position: 94% center,center top;
	background-size: 10px,100%;
 font-size: 2.2rem;
  line-height:1;
  border-radius: 6rem;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
    padding: 2rem 0;
  box-shadow: none;
  border:none;
}
@media only screen and (max-width: 768px) {
.contact{
	width: 90%;
	margin: 0 auto;
	text-align: left;
	padding: 2rem 0 3rem 0;
	border-bottom: 1px solid #CCC;
}
.contact-item{
	padding: 1rem 0 0 0;
}
.contact-item ul{
	margin-top: 0;
	padding-bottom: 1rem;

}
.contact-item li{
	padding: 1rem 0;

}
.contact-item li dl{
display: block;
}
.contact-item li dt{
	width: 100%;
	font-weight: bold;
	color: #24ADE2;

}
.contact-item li dt span{
	width: auto;
	padding-right: 1rem;
	display: inline-block;
}
.contact-item li dt em{
	background: #fa163f;
	color: #FFF;
	border-radius: .4rem;
	line-height: 1;
	padding: .1rem 1rem;
	font-size: 1.2rem;
}
.contact-item li dd{
	width: 100%;
	margin-top: 1rem;
}
.link-submit,.link-confirm{
   width: 100%;
  margin: 1rem auto 0 auto;
}
.link-submit input{
  font-family: 'YakuHanJP','Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  display: block;
  width: 100%;
  color: #FFF;
background-color: #24ADE2;
	background-image:url(../img/arrow_white.png), url(../img/bg.png);
	background-repeat:no-repeat,repeat-y;
	background-position: 94% center,center top;
	background-size:8px,100%;
  font-size: 1.5rem;
  line-height:1;
  border-radius: 6rem;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  box-shadow: none;
  border:none;
}
.link-confirm input{
  font-family: 'YakuHanJP','Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  display: block;
  width: 100%;
  color: #FFF;
 background-color: #24ADE2;
	background-image:url(../img/arrow_white.png), url(../img/bg.png);
	background-repeat:no-repeat,repeat-y;
	background-position: 94% center,center top;
	background-size:8px,100%;
  font-size: 1.5rem;
  line-height:1;
  border-radius: 6rem;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.contact-complete{

	padding: 2rem 0;
}
.contact-complete h3{
	font-size: 2rem;

}
.contact-complete p{
	margin-top: 2rem;
}
.link-top{
   width: 100%;
  margin: 3rem auto 0 auto;
}
.link-top a{
   background-color: #24ADE2;
	background-image:url(../img/arrow_white.png), url(../img/bg.png);
	background-repeat:no-repeat,repeat-y;
	background-position: 94% center,center top;
	background-size:8px,100%;
 font-size: 1.6rem;
  line-height:1;
  padding: 1.5rem 0;

}
}

/*---------------------------------------------------------------------------------------
contents
----------------------------------------------------------------------------------------*/

/* pnav */
#pnav{
	font-size: 1.2rem;
	text-align: left;
	padding: 10rem 0 1rem 2rem;
}
#pnav li{
	display: inline-block;
	vertical-align: top;
}
#pnav li:not(:last-child):after{
	content: "＞";
	margin: 0 .3em;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){

	/* pnav */
	#pnav{
		padding: 7.3rem 0 1rem 2rem;
	}
}

/*---------------------------------------------------------------------------------------
footer
----------------------------------------------------------------------------------------*/

footer{
	clear: both;
	padding-top: 50px;
}
footer #pagetop{
	position: fixed;
	right: 0;
	width: 50px;
	bottom: 30px;
	cursor: pointer;
	z-index: 100;
}
footer .logo{
	margin-bottom: 40px;
}
footer .bnr{
	padding-bottom: 25px;
	margin: 0 3%;
	border-bottom: 1px solid #ccc;
}
footer .bnr li{
	display: inline-block;
	margin: 0 7px 15px;
	vertical-align: middle;
}
footer .bnr li img{
	width: auto;
	height: 56px;
}
footer .fnav{
	clear: both;
	padding: 20px 3%;
}
footer .fnav li{
	display: inline-block;
	vertical-align: middle;
}
footer .fnav li:not(:last-child):after{ content: "｜";}
footer .fnav li a{
	display: inline-block;
	padding: 0 1em;
}
footer .copy{
	clear: both;
	color: #fff;
	font-size: 12px;
	line-height: 40px;
	background: #24ADE2;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	footer{
		padding-top: 40px;
	}
	footer .logo{
		margin-bottom: 30px;
	}
	footer .logo img{
		width: auto;
		max-width: 260px;
	}
	footer .bnr{
		padding-bottom: 15px;
		margin: 0 3%;
		border-bottom: 1px solid #ccc;
	}
	footer .bnr li{
		margin: 0 0 20px;
	}
	footer .bnr li img{
		width: auto;
		height: 45px;
	}
	footer .fnav{
		padding: 20px 3%;
	}
	footer .fnav li{
		display: block;
	}
	footer .fnav li:not(:last-child):after{ content: none;}
	footer .fnav li a{
		padding: 0 1em;
		font-size: 14px;
		line-height: 40px;
	}
	footer .copy{
		font-size: 10px;
		line-height: 30px;
		padding-bottom: 15px;
	}
}




