@charset "UTF-8";

html {
	font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}
body{
	margin:0;
	padding:0;
	color: #333333;
	font-size: 1.5rem;/* 15px */
	line-height: 1.8;
	/* [disabled]line-height:26px; */
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	/*font-feature-settings: "palt";*/
	letter-spacing: 0.1em;
}
@media screen and (min-width: 481px)  and (max-width: 768px){
	/*　画面サイズが481pxからはここを読み込む　*/
 body{
	font-size: 1.4rem;
}
}
@media screen and (max-width: 480px) {
 body{
	font-size: 1.3rem;
}
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
		font-feature-settings: "pkna";
	}
}

.clearfix:after{
    content: "."; 
    display: block; 
    height: 0; 
    font-size:0;    
    clear: both; 
    visibility:hidden;
}
.clearfix{
    display: inline-block;
} 
/* Hides from IE Mac */
* html .clearfix{
    height: 1%;
}
.clearfix{
    display:block;
}
/* End Hack */
.ml10 {
	margin-left: 10px;
}
.mr10 {
	margin-right: 10px;
}
.mt10 {
	margin-top: 10px;
}
.mt15 {
	margin-top: 15px;
}
.mt20 {
	margin-top: 20px;
}
.mt30 {
	margin-top: 30px;
}
.mt40 {
	margin-top: 40px;
}
.mt50 {
	margin-top: 50px;
}
.mt80 {
	margin-top: 80px;
}
.mt160 {
	margin-top: 160px;
}
.mb0 {
	margin-bottom: 0px;
}
.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb60 {
	margin-bottom: 60px;
}
.pt10 {
	padding-top: 10px;
}
.pt30 {
	padding-top: 30px;
}
.pt40 {
	padding-top: 40px;
}
.pt60 {
	padding-top: 60px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb40 {
	padding-bottom: 40px;
}
.pb60 {
	padding-bottom: 60px;
}

/*-------------------- Reset */
h1,
h2,
h3,
p,
dl,
dt,
dd,
li {
  margin: 0;
  word-break: break-word;
}
a {
  color: #000;
  text-decoration: none; 
}
  a:hover {
    text-decoration: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0; 
}
img {
	max-width: 100%;
	height: auto;
}


.img-spnone {
	display: block;
}
.img-pcnone {
	display: none;
}
@media screen and (max-width: 768px) {
	.img-spnone {
		display: none;
	}
	.img-pcnone {
		display: block;
	}
}


.futo {
	font-weight: bold;
}

.sec {
	width: 100%;
	padding-top: 6em;
	padding-bottom: 6em;
}
@media screen and (max-width: 768px) {
	.sec {
		padding-top: 4em;
		padding-bottom: 4em;
	}
}

 h2 {
  font-size: 2.8rem;
}
@media screen and (min-width: 481px)  and (max-width: 768px){
 h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
 h2 {
    font-size: 1.8rem;
  }
}

.lead {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  margin-bottom: 0;
  color: #333333;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .lead {
    font-size: 1rem;
  }
}

.catch {
	font-size: 2.4rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
	.catch {
		font-size: 2rem;
	}
}
@media screen and (max-width: 480px) {
	.catch {
		font-size: 1.7rem;
	}
}

.catch2 {
	font-size: 2rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
	.catch2 {
		font-size: 1.7rem;
	}
}
@media screen and (max-width: 480px) {
	.catch2 {
		font-size: 1.5rem;
	}
}

.catch3 {
	font-size: 1.7rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
	.catch3 {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 480px) {
	.catch3 {
		font-size: 1.4rem;
	}
}

.box_center {
	text-align: center;
}

.btn_link {
	display: block;
	width: 200px;
	color: #2c3d83;
	background-color: #f6cf41;
	text-align: center;
	font-weight: 700;
	font-family: 'Lato', sans-serif;
	padding: 10px;
	transition: .2s;
	position: relative;
}
.btn_link::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #2c3d83;
	border-right: 2px solid #2c3d83;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: rotate(-45deg) translateY(-50%);
}
.btn_link:hover {
	opacity: .7;
}
@media screen and (max-width: 768px) {
	.btn_link {
		font-size: 1.4rem;
	}
}


.marker {
	background: rgba(135,215,255,1.0);
	background: -moz-linear-gradient(transparent 60%, rgba(135,215,255,1.0) 60%);
	background: -webkit-linear-gradient(transparent 60%, rgba(135,215,255,1.0) 60%);
	background: linear-gradient(transparent 60%, rgba(135,215,255,1.0) 60%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#88D7FF",endColorstr="#88D7FF",GradientType=1);
}




/*---------------フッター*/
.foot_arc {
	width: 100%;
	height: 0;
	padding-top: 3.833%;
	background-image: url("../img/common/foot_arc.png");
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
}
.bg_footer {
	background-color: #ffcc00;
	overflow: hidden;
}
.footer {
	color: #333333;
	position: relative;
}

.footer .footer-inner {
	width: 100%;
	max-width: 1200px;
	padding: 50px 20px 10px;
	margin-left: auto;
	margin-right: auto;
}
.footer .footer-inner .footer-company {
	width: 100%;
	text-align: center;
}
.footer .footer-inner .footer-company img.foot_logo {
	width: 100%;
	max-width: 300px;
	margin: 20px auto 40px;
}
.footer .footer-inner ul.foot_contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 20px;
}
.footer .footer-inner ul.foot_contact li {
	padding: 10px 20px;
	margin: 0 10px 10px;
	border: 2px solid #2c3d83;
	color: #2c3d83;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	font-size: 1.6rem;
	text-align: center;
}
.footer .footer-inner ul.foot_contact li a {
	color: #2c3d83;
}

.footer .footer-inner ul.foot_link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 20px auto;
}
.footer .footer-inner ul.foot_link li:first-child::before {
	content: none;
}
.footer .footer-inner ul.foot_link li {
	padding: 0 20px;
}
.footer .footer-inner ul.foot_link li a {
	color: #333333;
	font-size: 1.3rem;
	font-weight: 600;
	display: block;
}
.footer .footer-inner ul.foot_link li a span.link_blank {
	position: relative;
	padding-left: 20px;
}
.footer .footer-inner ul.foot_link li a span.link_blank::before {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	background-image: url("../img/common/ic_blank.png");
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}
.footer .footer-inner ul.foot_link li a img {
	max-width: 30px;
}
.footer .footer-inner .footer-company .company-info {
	margin-top: 20px;
	font-size: 1.3rem;
}
.footer .footer-inner .footer-company .company-info span.post-code {
	display: inline-block;
	margin-right: 10px;
}
@media screen and (max-width: 768px) {
	.footer .footer-inner .footer-company img {
		max-width: 280px;
	}
	.footer .footer-inner .footer-company .company-info {
		font-size: 1.2rem;
	}
	.footer .footer-inner ul.foot_link li {
		padding: 0 15px;
	}
	.footer .footer-inner ul.foot_link li a img {
		max-width: 25px;
	}
}
@media screen and (max-width: 480px) {
	.footer .footer-inner .footer-company .company-info span.post-code {
		display: block;
		margin-right: 0;
	}
}


.copyright {
	font-size: 1.1rem;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	margin: 0 auto;
	display: block;
	padding: 20px 0;
	color: #2c3d83;
	position: relative;
}


/*-----------------------固定お問合せボタン*/
.contact_fixed_btn {
	position: fixed;
	bottom: 50px;
	right: 20px;
	width: 133px;
	height: 133px;
	border: 7px solid #ffffff;
	border-radius: 50%;
	background-color: #f6cf41;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}
.contact_fixed_btn .text {
	color: #2c3d83;
	font-weight: 600;
	text-align: center;
	line-height: 1.6;
	display: block;
	padding-top: 30px;
	background-image: url("../img/common/ic_mail.png");
	background-position: top center;
	background-size: 30px auto;
	background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
	.contact_fixed_btn {
		bottom: 10px;
		right: 10px;
		width: 100px;
		height: 100px;
		border: 5px solid #ffffff;
	}
	.contact_fixed_btn .text {
		font-size: 1.2rem;
		padding-top: 20px;
		background-size: 20px auto;
	}
}



/*-----------------------TOP*/
.top .section-heading {
	text-align: center;
	margin: 0 auto 30px;
}
.top .section-heading .section_title {
	display: inline-block;
	margin: 0 auto;
	border-bottom: 2px solid #ffcc00;
	color: #333333;
	font-size: 2.8rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	position: relative;
}
.top .section-heading .section_title::before,
.top .section-heading .section_title::after {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background-color: #333333;
	position: absolute;
}
.top .section-heading .section_title::before {
	left: -30px;
	top: 5px;
	transform: rotate(-20deg);
}
.top .section-heading .section_title::after {
	right: -30px;
	top: 5px;
	transform: rotate(20deg);
}
@media screen and (max-width: 768px) {
	.top .section-heading .section_title {
		font-size: 2.2rem;
	}
}
@media screen and (max-width: 480px) {
	.top .section-heading .section_title {
		font-size: 1.8rem;
	}
}

.top .top_banner {
	padding: 60px 0;
	overflow: hidden;
}
.top .top_banner .top_bannerbox {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 10px;
	padding: 0 20px;
}
.top .top_banner .top_bannerbox ul.list_topbanner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.top .top_banner .top_bannerbox ul.list_topbanner li {
	width: 48%;
	transition: .3s;
	position: relative;
}
.top .top_banner .top_bannerbox ul.list_topbanner li:first-child {
	box-shadow: 10px 10px 0 #0077ff;
}
.top .top_banner .top_bannerbox ul.list_topbanner li:last-child {
	box-shadow: 10px 10px 0 #ffcc00;
}
.top .top_banner .top_bannerbox ul.list_topbanner li::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: .2s;
}
.top .top_banner .top_bannerbox ul.list_topbanner li:first-child::before{
	background-color: rgba(0,119,255,0.4);
}
.top .top_banner .top_bannerbox ul.list_topbanner li:last-child::before{
	background-color: rgba(255,230,10,0.65);
}.top .top_banner .top_bannerbox ul.list_topbanner li:first-child:hover::before{
	background-color: rgba(0,119,255,0);
}
.top .top_banner .top_bannerbox ul.list_topbanner li:last-child:hover::before{
	background-color: rgba(255,230,10,0);
}
.top .top_banner .top_bannerbox ul.list_topbanner li a .top_banner_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.top .top_banner .top_bannerbox ul.list_topbanner li a .top_banner_inner .btn_link {
	margin-top: 25px;
}
.top .top_banner .top_bannerbox ul.list_topbanner li:first-child a .top_banner_inner .btn_link {
	background-color: #ffe60a;
	color: #2c3d83;
}
.top .top_banner .top_bannerbox ul.list_topbanner li:last-child a .top_banner_inner .btn_link {
	background-color: #2c3d83;
	color: #ffe60a;
}
@media screen and (max-width: 768px) {
	.top .top_banner {
		padding: 40px 0;
	}
	.top .top_banner .top_bannerbox ul.list_topbanner {
		flex-direction: column;
	}
	.top .top_banner .top_bannerbox ul.list_topbanner li {
		width: 100%;
		margin-bottom: 50px;
	}
	.top .top_banner .top_bannerbox ul.list_topbanner li:last-child {
		margin-bottom: 0;
	}
}

.top .top_about {
	padding: 60px 0;
	overflow: hidden;
	background-color: #f6f5f3;
}
.top .top_about .top_aboutbox {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.top .top_about .top_aboutbox .about_intro {
	width: 100%;
	max-width: 800px;
	margin: 0 auto 40px;
}
.top .top_about .top_aboutbox .about_intro .catch {
	text-align: center;
	font-weight: 600;
	margin-bottom: 20px;
}
.top .top_about .top_aboutbox .itembox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.top .top_about .top_aboutbox .itembox .textbox {
	width: 55%;
}
.top .top_about .top_aboutbox .itembox .textbox .title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 10px;
}
.top .top_about .top_aboutbox .itembox .textbox .title .rec_logo {
	display: inline-block;
	width: 70px;
	height: 70px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 70px auto;
}
.top .top_about .top_aboutbox .itembox.itemkaigo .textbox .title .rec_logo {
	background-image: url("../img/top/logo_rec_kaigo.png");
}
.top .top_about .top_aboutbox .itembox.itemonline .textbox .title .rec_logo {
	background-image: url("../img/top/logo_rec_online.png");
}
.top .top_about .top_aboutbox .itembox .textbox .title .catch2 {
	font-weight: 600;
	display: inline-block;
	margin-left: 10px;
}
.top .top_about .top_aboutbox .itembox .imagebox {
	width: 40%;
}
.top .top_about .top_aboutbox .itembox.itemkaigo {
	margin-bottom: 40px;
}
.top .top_about .top_aboutbox .itembox.itemkaigo .imagebox img {
	box-shadow: 10px 10px 0 #0077ff;
}
.top .top_about .top_aboutbox .itembox.itemonline .imagebox img {
	box-shadow: 10px 10px 0 #ffe60a;
}
.top .top_about .top_aboutbox .image_outline {
	width: 100%;
	max-width: 1000px;
	margin: 50px auto 0;
	padding: 30px;
	background-color: #ffffff;
}
@media screen and (max-width: 991px) {
	.top .top_about .top_aboutbox .itembox .textbox .title .rec_logo {
		width: 60px;
		height: 60px;
		background-size: 60px auto;
	}
}
@media screen and (max-width: 768px) {
	.top .top_about {
		padding: 40px 0;
	}
	.top .top_about .top_aboutbox .itembox {
		flex-direction: column-reverse;
	}
	.top .top_about .top_aboutbox .itembox .textbox {
		width: 100%;
		margin-top: 30px;
	}
	.top .top_about .top_aboutbox .itembox .textbox .title .rec_logo {
		width: 50px;
		height: 50px;
		background-size: 50px auto;
	}
	.top .top_about .top_aboutbox .itembox .imagebox {
		width: 100%;
	}
	.top .top_about .top_aboutbox .itembox.itemkaigo {
		margin-bottom: 30px;
	}
	.top .top_about .top_aboutbox .image_outline {
		margin: 40px auto 0;
		padding: 20px;
	}
}

.top .top_news {
	padding: 60px 0;
	background-color: #ffffff;
	position: relative;
	overflow: hidden;
}
.top .top_news .top_news_inner {
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
	margin: 0 auto;
}
.top .top_news .top_news_inner .news {
	width: 100%;
	max-width: 1000px;
	height: 240px;
	margin: 0 auto;
	overflow-y: scroll;
	background-color: #ffffff;
	border: 1px solid #2c3d83;
}
.top .top_news .top_news_inner .news dl {
	display: flex;
	flex-wrap: wrap;
	padding: 0 50px 20px;
	margin-bottom: 20px;
	position: relative;
}
.top .top_news .top_news_inner .news dl:first-child {
	padding-top: 30px;
}
.top .top_news .top_news_inner .news dl::after {
	content: "";
	display: block;
	width: calc(100% - 100px);
	height: 1px;
	background-size: 8px 1px;
	background-image: linear-gradient(to right, #2c3d83, #2c3d83 3px, transparent 3px, transparent 8px);
	background-repeat: repeat-x;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.top .top_news .top_news_inner .news dl dt{
	width: 280px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
}
.top .top_news .top_news_inner .news dl dt span {
	display: inline-block;
	width: 140px;;
	height: auto;
	padding: 3px 10px;
	margin-left: 20px;
	border: 1px solid #ffcc00;
	background-color: #ffcc00;
	color: #2c3d83;
	font-size: 1.3rem;
	text-align: center;
}
.top .top_news .top_news_inner .news dl dt span.ttp {
	border: 1px solid #ffcc00;
	background-color: #ffcc00;
	color: #2c3d83;
}
.top .top_news .top_news_inner .news dl dt span.online {
	border: 1px solid #ffcc00;
	background-color: #ffffff;
	color: #2c3d83;
}
.top .top_news .top_news_inner .news dl dt span.kaigo {
	border: 1px solid #0096ff;
	background-color: #0096ff;
	color: #ffe60a;
}
.top .top_news .top_news_inner .news dl dd{
	width: calc(100% - 280px);
}
.top .top_news .top_news_inner .news dl dd a {
	color: #333333;
	transition: .2s;
}
.top .top_news .top_news_inner .news dl dd a:hover {
	color: #ffcc00;
}
.top .top_news .top_news_inner .btn_link_wrap {
	text-align: center;
	margin: 30px auto 0;
}
.top .top_news .top_news_inner .btn_link_wrap .btn_link {
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.top .top_news {
		padding: 40px 0;
	}
	.top .top_news .top_news_inner .news {
		height: 310px;
	}
	.top .top_news .top_news_inner .news dl {
		flex-direction: column;
		padding: 0 20px 10px;
		margin-bottom: 10px;
	}
	.top .top_news .top_news_inner .news dl:first-child {
		padding-top: 20px;
	}
	.top .top_news .top_news_inner .news dl::after {
		width: calc(100% - 40px);
	}
	.top .top_news .top_news_inner .news dl dt {
		width: 100%;
		margin-bottom: 8px;
	}
	.top .top_news .top_news_inner .news dl dd {
		width: 100%;
	}
	.top .top_news .top_news_inner .news dl dt span {
		width: 130px;
		font-size: 1.1rem;
	}
}
 
.top .top_insta {
	padding: 60px 0;
	background-color: #ffffff;
	position: relative;
	overflow: hidden;
}
.top .top_insta .top_instabox {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.top .top_insta .top_instabox .insta_link {
	margin-bottom: 30px;
}
.top .top_insta .top_instabox .insta_link .insta_logo {
	max-width: 100px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #ffcc00;
	margin: 0 auto 20px;
}
.top .top_insta .top_instabox .insta_link .text {
	text-align: center;
	font-family: 'Roboto', sans-serif;
}
.top .top_insta .top_instabox .insta_link .text span.account {
	font-size: 1.6rem;
	font-weight: 700;
	color: #2c3d83;
	margin-bottom: 5px;
}
.top .top_insta .top_instabox .insta_link .text span.lead {
	font-weight: 400;
	font-size: 1.2rem;
}
.top .top_insta .top_instabox .insta_item_wrap {
	display: flex;
	flex-wrap: wrap;
}
.top .top_insta .top_instabox .insta_item_wrap .insta_item {
	width: 20%;
	padding: 10px;
}
.top .top_insta .top_instabox .insta_item_wrap .insta_item a  img {
	transition: .2s;
}
.top .top_insta .top_instabox .insta_item_wrap .insta_item :hover img {
	opacity: .7;
}
@media screen and (max-width: 768px) {
	.top .top_insta {
		padding: 40px 0;
	}
	.top .top_insta .top_instabox .insta_item_wrap .insta_item {
		width: 33.333%;
		width: calc(100% / 3);
	}
	.top .top_insta .top_instabox .insta_item_wrap .insta_item:last-child{
		display: none;
	}
	.top .top_insta .top_instabox .insta_link .text span.account {
		font-size: 1.4rem;
	}
}


/*-----------------------第二階層共通*/
.page-title-out {
	clear: both;
	overflow: hidden;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../img/common/bg_daini_main.jpg");
}
.page-title-out::after {
	content: "";
	display: block;
	width: 100%;
	height: 120px;
	background-image: url("../img/slide/sd_bottom.png");
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
}
#page-title {
	clear: both;
  overflow: hidden;
  position: relative;
	padding-top: calc(8em + 80px);
	padding-bottom: 9em;
	z-index: 1;
}
#page-title .page-title-text {
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
	margin:0 auto;
	text-align: center;
}
#page-title .page-title-text h3{
	margin:0 0 20px;
	font-size: 3.4rem;
	line-height: 1;
	letter-spacing: 0.15em;
	color: #ffffff;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	text-shadow: 0 0 6px rgba(44,61,131,0.9);
}
#page-title .page-title-text .lead {
	margin-bottom: 0;
	font-size: 1.6rem;
	font-weight: 600;
	color: #ffffff;
	text-shadow: 0 0 6px rgba(44,61,131,0.9);
}
@media screen and (max-width: 991px) {
	#page-title {
		padding-top: calc(6em + 80px);
		padding-bottom: 7em;
	}
	#page-title .page-title-text h3 {
		font-size: 3rem;
	}
	#page-title .page-title-text .lead {
		font-size: 1.3rem;
	}
}
@media screen and (max-width: 480px) {
	#page-title .page-title-text h3 {
		font-size: 2.4rem;
	}
	#page-title .page-title-text .lead {
		font-size: 1.2rem;
	}
}
.daini .section {
	padding: 60px 0;
}
.daini .section_inner {
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
	margin: 0 auto;
}
@media screen and (max-width: 480px) {
	.daini .section {
		padding: 40px 0;
	}
}

.daini .section-heading {
	width: 100%;
	margin-bottom: 40px;
	text-align: center;
}
.daini .section-heading h2 {
	display: inline-block;
	position: relative;
	border-bottom: 2px solid #ffcc00;
}
.daini .section-heading h2::before,
.daini .section-heading h2::after {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background-color: #333333;
	position: absolute;
}
.daini .section-heading h2::before {
	left: -30px;
	top: 5px;
	transform: rotate(-20deg);
}
.daini .section-heading h2::after {
	right: -30px;
	top: 5px;
	transform: rotate(20deg);
}


/*---------------会社概要*/
.company {
	overflow: hidden;
}
.company .greeting .greeting_box {
	/*display: flex;
	flex-wrap: wrap;
	justify-content: space-between;*/
	max-width: 800px;
	margin: 60px auto 0;
}
.company .greeting .greeting_box .textbox {
	width: 100%;
}
.company .greeting .greeting_box .textbox .catch {
	font-weight: 600;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
}
.company .greeting .greeting_box .textbox .text {
	line-height: 2;
}
.company .greeting .greeting_box .imagebox {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-end;
	margin-top: 30px;
}
.company .greeting .greeting_box .imagebox .name {
	text-align: right;
	margin-right: 20px;
}
.company .greeting .greeting_box .imagebox .greeting_img {
	max-width: 200px;
}
@media screen and (max-width: 768px) {
	.company .greeting .greeting_box {
		margin-top: 40px;
	}
}
@media screen and (max-width: 480px) {
	.company .greeting .greeting_box .imagebox .greeting_img {
		max-width: 140px;
	}
}

.company .about_ttp {
	background-color: #ffffff;
}
.company .about_ttp .ttp_box_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 30px;
	position: relative;
}
.company .about_ttp .ttp_box_wrap::before {
	content: "";
	display: block;
	width: 100%;
	height: 404px;
	background-image: url("../img/company/bg_ttp.png");
	background-position: top right;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.15;
}
.company .about_ttp .ttp_box_wrap .ttp_box {
	width: 47.5%;
}
.company .about_ttp .ttp_box_wrap .ttp_box .dl_ttp {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 20px;
	margin-bottom: 20px;
	position: relative;
}
.company .about_ttp .ttp_box_wrap .ttp_box .dl_ttp::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-size: 8px 1px;
	background-image: linear-gradient(to right, #2c3d83, #2c3d83 3px, transparent 3px, transparent 8px);
	background-repeat: repeat-x;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.company .about_ttp .ttp_box_wrap .ttp_box .dl_ttp dt {
	width: 130px;
	font-weight: 600;
}
.company .about_ttp .ttp_box_wrap .ttp_box .dl_ttp dd {
	width: calc(100% - 130px);
	padding-left: 20px;
}
.company .about_ttp .ttp_box_wrap .ttp_box .dl_ttp dd a {
	color: #2c3d83;
	font-weight: 600;
}
.company .about_ttp .ttp_box_wrap .ttp_box .dl_ttp dd a:hover {
	text-decoration: underline;
}
.company .about_ttp .g-maps {
	position: relative;
	height: 0;
	margin-top: 30px;
	padding-bottom: 400px;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.company .about_ttp .ttp_box_wrap {
		flex-direction: column;
	}
	.company .about_ttp .ttp_box_wrap .ttp_box {
		width: 100%;
	}
	.company .about_ttp .ttp_box_wrap .ttp_box .dl_ttp {
		flex-direction: column;
	}
	.company .about_ttp .ttp_box_wrap .ttp_box .dl_ttp dt {
		width: 100%;
		margin-bottom: 5px;
	}
	.company .about_ttp .ttp_box_wrap .ttp_box .dl_ttp dd {
		width: 100%;
		padding-left: 0;
	}
	.company .about_ttp .g-maps {
		padding-bottom: 50%;
	}
}

.company .history {
	background-color: #f6f5f3;
}
.company .history .history_box {
	max-width: 900px;
	margin: 0 auto;
}
.company .history .history_box .dl_history {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 20px;
	margin-bottom: 20px;
	position: relative;
}
.company .history .history_box .dl_history::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-size: 8px 1px;
	background-image: linear-gradient(to right, #2c3d83, #2c3d83 3px, transparent 3px, transparent 8px);
	background-repeat: repeat-x;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.company .history .history_box .dl_history dt {
	width: 170px;
	font-weight: 600;
}
.company .history .history_box .dl_history dd {
	width: calc(100% - 170px);
	padding-left: 20px;
}
@media screen and (max-width: 768px) {
	.company .history .history_box .dl_history {
		flex-direction: column;
	}
	company .history .history_box .dl_history dt {
		width: 100%;
		margin-bottom: 5px;
	}
	.company .history .history_box .dl_history dd {
		width: 100%;
		padding-left: 0;
	}
}
.company .recruit figure {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
}
.company .recruit figure::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	position: absolute;
	left: 0;
	top: 0;
	transition: .2s;
}
.company .recruit figure:hover::before {
	background-color: rgba(0,0,0,0);
}
.company .recruit figure .catch2 {
	font-weight: 600;
	color: #ffffff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}


/*---------------お問合せ*/
.contact .section_inner{
	max-width: 1000px;
}
.contact .form_wrap {
	margin: 40px 0;
}
.contact .dl_form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 25px 0;
	letter-spacing: 0.05em;
	position: relative;
}
.contact .dl_form::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-size: 8px 1px;
	background-image: linear-gradient(to right, #2c3d83, #2c3d83 3px, transparent 3px, transparent 8px);
	background-repeat: repeat-x;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.contact .dl_form:last-of-type::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-size: 8px 1px;
	background-image: linear-gradient(to right, #2c3d83, #2c3d83 3px, transparent 3px, transparent 8px);
	background-repeat: repeat-x;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.contact .dl_form dt {
	width: 300px;
	font-weight: 600;
	padding-left: 80px;
	text-align: left;
	position: relative;
}
.contact .dl_form dt span {
	display: inline-block;
	padding: 0 10px;
	font-size: 1.2rem;
	background-color: #ffcc00;
	color: #2c3d83;
	position: absolute;
	left: 0;
}
.contact .dl_form dd {
	width: calc(100% - 300px);
}
.contact .dl_form dd .form-control {
	display: block;
	width: 100%;
	height: 40px;
	padding: 6px 12px;
	margin: 0 auto;
	font-size: 1.4rem;
	line-height: 1.8em;
	color: #555555;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 0;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0);
}
.contact .dl_form dd select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 100%;
	max-width: 400px;
	height: 40px;
	padding: 6px 12px;
	margin: 3px auto;
	font-size: 1.4rem;
	line-height: 1.8em;
	color: #555555;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 0;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0);
	position: relative;
	background-image: url(../img/common/form_arrow.png);
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 10px auto;
}
.contact .dl_form dd textarea.form-control {
	height: auto;
}
@media screen and (max-width: 768px) {
	.contact .dl_form {
		flex-direction: column;
		padding: 20px 0;
	}
	.contact .dl_form dt {
		width: 100%;
		padding-left: 0;
		margin-bottom: 10px;
	}
	.contact .dl_form dt span {
		position: static;
		margin-right: 10px;
	}
	.contact .dl_form dd {
		width: 100%;
	}
}

.contact .privacy {
	margin: 30px 0;
	padding: 20px 40px;
	background-color: #f6f5f3;
}
.contact .privacy .privacy_inner {
	height: 240px;
	overflow-y: scroll;
	padding: 20px;
	background-color: #ffffff;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}
.contact .privacy .privacy_inner .dl_privacy {
	margin-bottom: 15px;
}
.contact .privacy .privacy_inner .dl_privacy dt {
	margin-bottom: 5px;
}
.contact .privacy .privacy_inner .text {
	margin-bottom: 15px;
}
.contact .privacy .privacy_inner .privacy_bottom{
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px dashed #cccccc;
}
.contact .privacy .agree {
	margin-top: 20px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.contact .privacy {
		padding: 20px 30px;
	}
}

.contact .submit_area {
	margin: 30px auto 0;
	text-align: center;
}
.contact .submit_area input[type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 100%;
	max-width: 200px;
	height: 50px;
	padding: 6px 12px;
	margin: 0 auto;
	color: #2c3d83;
	font-weight: 600;
	background-color: #ffe60a;
	border: 1px solid #ffe60a;
	transition: .2s;
}
.contact input[type=submit]:hover {
	opacity: .7;
}
.contact .btn_link {
	margin: 30px auto 0;
}


/*---------------最新情報一覧・詳細ページ*/
.news {
	overflow: hidden;
}
.news .news_list_box {
	max-width: 800px;
	margin: 0 auto;
}
.news .news_list_box dl.dl_news {
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}
.news .news_list_box dl.dl_news::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-size: 8px 1px;
	background-image: linear-gradient(to right, #2c3d83, #2c3d83 3px, transparent 3px, transparent 8px);
	background-repeat: repeat-x;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.news .news_list_box dl.dl_news dt {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	margin-bottom: 8px;
	color: #2c3d83;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.news .news_list_box dl.dl_news dt span {
	display: inline-block;
	width: 140px;
	height: auto;
	padding: 3px 10px;
	margin-left: 20px;
	font-size: 1.3rem;
	text-align: center;
}
.news .news_list_box dl.dl_news dt span.ttp {
	border: 1px solid #ffcc00;
	background-color: #ffcc00;
	color: #2c3d83;
}
.news .news_list_box dl.dl_news dt span.online {
	border: 1px solid #ffcc00;
	background-color: #ffffff;
	color: #2c3d83;
}
.news .news_list_box dl.dl_news dt span.kaigo {
	border: 1px solid #0096ff;
	background-color: #0096ff;
	color: #ffe60a;
}
.news .news_list_box dl.dl_news dd{
	line-height: 1.6;
}
.news .news_list_box dl.dl_news dd a {
	color: #333333;
}
.news .news_list_box dl.dl_news dd a:hover {
	text-decoration: underline;
}
.news .btn_link {
	display: block;
	margin: 50px auto 0;
}
@media screen and (max-width: 991px) {
	.news .news_list_box dl.dl_news {
		margin-bottom: 30px;
	}
	.news .news_list_box dl.dl_news dt {
		margin-bottom: 5px;
	}
}
@media screen and (max-width: 768px) {
	.news .news_list_box dl.dl_news dt span {
		width: 120px;
		font-size: 1.1rem;
	}
}

.news .section_inner {
	max-width: 800px;
	margin: 0 auto;
}
.news .news_ttl {
	margin-bottom: 40px;
	border-bottom: 2px solid #ffcc00;
}
.news .news_ttl .date{
	font-weight: 600;
	margin-bottom: 7px;
	color: #2c3d83;
	font-family: 'Roboto', sans-serif;
}
.news .news_ttl h2 {
	font-size: 2.4rem;
	font-weight: 600;
}
.news .text {
	margin-bottom: 20px;
}
.news figure {
	margin: 30px 0;
}
.news .text a {
	text-decoration: underline;
}
.news .news_pagenation {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 50px auto 0;
}
.news .news_pagenation li {
	margin: 0 10px;
}
.news .news_pagenation li a {
	display: block;
	padding: 10px;
	width: 200px;
	background-color: #f6cf41;
	color: #2c3d83;
	font-weight: 600;
	text-align: center;
	position: relative;
	transition: .2s;
}
.news .news_pagenation li a:hover {
	opacity: .7;
}
.news .news_pagenation li a::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
}
.news .news_pagenation li.pre a::after {
	border-bottom: 2px solid #2c3d83;
	border-left: 2px solid #2c3d83;
	top: 50%;
	left: 10px;
	transform: rotate(45deg) translateY(-50%);
}
.news .news_pagenation li.next a::after {
	border-bottom: 2px solid #2c3d83;
	border-right: 2px solid #2c3d83;
	top: 50%;
	right: 10px;
	transform: rotate(-45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
	.news .news_ttl {
		margin-bottom: 30px;
	}
	.news .news_ttl h2 {
		font-size: 2rem;
	}
	.news figure {
		margin: 20px 0;
	}
}
@media screen and (max-width: 480px) {
	.news .news_pagenation li {
		margin-bottom: 10px;
	}
	.news .news_pagenation li a {
		width: 140px;
	}
}






