@media screen and (min-width: 800px) and (max-width: 1099px){

/* ----------base---------- */
html{
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
	font-size: 62.5%;
}
 body{
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	background-color: #fff;
	color: #333; 
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 1.5rem;
	-webkit-text-size-adjust: 100%;	
}
img{
	border: none; 
	max-width: 100%;
	height: auto;
	width /***/:auto;　
}
a{
	outline: none;
	transition: 0.6s ease;
}
p{
	line-height: 1.8;
}
.align-center{
	text-align: center;
}
.align-right{
	text-align: right;
}
.align-left{
	text-align: left;
}
.aligncenter{
 display: block;
  margin: auto;
}
.alignright {
  display: block;
  margin-left: auto;
}
.alignleft {
  display: block;
  margin-right: auto;
}




/* ----------loading---------- */
.loadingWrap{
	width: 100%;
	height: 100%;
	background-color: #0f4c95;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20001;
	display: flex;
	justify-content: center;
	align-items: center;
}
.circle {
  width: 200px;
  height: 200px;
  background-color: #fff;
  border-radius: 50%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}


/* ----------pagescroll---------- */
.pagescroll {
	position: fixed;
	bottom: 100px;
	right: -50px;
	z-index: 10;
}
.pagescroll a{
	display: block;
	font-size: 1.2rem;
	font-family: 'Montserrat', sans-serif;
	text-decoration: none;
	color: #0f4c95;
	transform: rotate(90deg);
	width: 90px;
	height: 24px;
	line-height: 24px;
	padding: 0 0 0 60px;
	text-align: center;
	background-image: url(../img/pagetop.png);
	background-position: left 10px top 6px; 	
	background-repeat: no-repeat;
}
.pagescroll a:hover{
	background-color: #fff;
	filter: drop-shadow(0px 0px 10px #e2f8f9); 
}


/* ----------effect---------- */
.fadein {
	opacity : 0.1;
	transform : translate(0, 30px);
	transition : all 500ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}



 /* ----------header---------- */
.header{
	clear: both;
	width: 100%;
	height: 100px;
	margin: 0;
	padding: 0;
	z-index: 110;
	transition: 0.3s ease;
	background-color: rgba(255,255,255,1);
	position: fixed;
	top: 0;	
	filter: drop-shadow(0px 0px 3px #eee); 
}
.home .header{
	filter: drop-shadow(0px 0px 10px transparent); 
}
.header .inner{
	height: 100px;
	width: 98%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}


 /* -----title----- */
.header .title{
	transition: 0.3s;
	width: 330px;
}
.header .title .site{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 2.8rem;
	padding:  25px 0 30px 65px;
	background-image: url(../img/logo.svg);
	background-position: top 30px left; 	
	background-repeat: no-repeat;
	background-size: 50px;
	transition: 0.6s ease;
	cursor: pointer;
}
.header .title .site span{
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
}
.header .title a{
	color: #333;
	text-decoration: none;
}
.header .title a:hover{
	color: #666;
}

 /* --navi-- */
.header .navi{
	display: none;
}


/* ----------footer---------- */
.footer{
	clear: both;
	width: 100%;
	margin: 0;
	padding: 50px 0;
	box-sizing: border-box;
	z-index: 6;
	position: relative;
	border-top: 1px solid #ddd;
}
.footer .inner{
	width: 98%;
	margin: 0 auto;
	font-size: 1.4rem;
}
/* ---info--- */
.footer .info{
	width: 94%;
	margin: 0 auto;
	text-align: center;
}
.footer .info a{
	text-decoration: none;
	color: #333;
}
.footer .info a:hover{
	color: #fc7495;
}
.footer .info .name{
	font-family: 'Shippori Mincho', serif;
	font-weight: 400;
	font-size: 3rem;
	margin: 0;
}
.footer .info .tel{
	width: 200px;
	font-family: 'Montserrat', sans-serif;
	font-size: 3.2rem;
	color: #fc7495;
	padding: 0 0 0 40px;
	background-image: url(../img/icon-tel.png);
	background-position: left center; 	
	background-repeat: no-repeat;
	margin: 0 auto -20px;
}
.footer .info .tel a{
	color: #fc7495;
	text-decoration: none;
}
/* ---sitemap--- */
.footer .sitemap{
	width: 100%;
	margin: 0;
	padding: 20px 0;
	background-color: #fafafa;
	display: flex;
	justify-content: space-between;
}
.footer .sitemap ul{
	width: 40%;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	z-index: 1;
}
.footer .sitemap ul li{
	margin: 15px 0;
}
.footer .sitemap ul li a{
	text-decoration: none;
	color: #333;
	padding-left: 18px;
	background-image: url(../img/icon-pink.png);
	background-position: left center; 	
	background-repeat: no-repeat;
}
.footer .sitemap ul li a:hover{
	color: #666;
	padding-left: 22px;
	text-decoration: underline;
}
.footer .sitemap ul li.green a{
	background-image: url(../img/icon-green.png);
}
.footer .sitemap ul li.orange a{
	background-image: url(../img/icon-orange.png);
}

/* ---sns--- */
.footer .sns{
	text-align: center;
	width: 100%;
	padding: 20px 0;
}
.footer .sns img{
	width: 40px;
	transition: 0.3s ease;
	margin: 0 5px;
}
.footer .sns img:hover{
	transform: translate(0,-3px);
}
/* ---copyright--- */
.footer .copyright{
	width: 100%;
	font-size: 1.3rem;
	text-align: center;
	z-index: 0;
}
/* scroll */
.footer .scroll {
	display: none;
}







/* -----index parts----- */

/* -----intro----- */
.intro-area{
	width: 100%;
	position: relative;
   	z-index: 1;
	background-color: #e1f8ff;
	padding: 0;
	margin: 100px 0 0;
}
.intro-area::before{
	content: '';
	width: 100%;
	height: 40px;
	display: block;
	background-image: url(../img/wave.svg);
	background-repeat: repeat-x;
	background-position: top center;
	background-color: transparent;
	background-size: 102%;
	z-index: 10;
	position: absolute;
	top: -2px;
	left: 0;
}
.intro-area::after{
	content: '';
	width: 100%;
	height: 40px;
	display: block;
	background-image: url(../img/wave-blue.svg);
	background-repeat: repeat-x;
	background-position: bottom center;
	background-color: transparent;
	background-size: 102%;
	z-index: 10;
	position: absolute;
	bottom: -2px;
	left: 0;
}

.intro-area ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.intro-area .site{
    display: block;
    position: absolute;
    top: 50%;
    left: calc(50% - 300px); 
    transform  : translateY(-50%);
	text-align: center;
	background-color: rgba(255,255,255,0.6);
	border: 2px solid #fff;
	z-index: 10;
	width: 560px;
	padding: 20px;
	box-sizing: border-box;
}
.intro-area .site h1{
	display: block;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 6rem;
	margin: 0;
	padding: 0;
}
.intro-area .site h2{
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 2.4rem;
	color: #0f4c95;
	margin: 0;
	padding: 0;
}


/* ----- message-area ------- */
.message-area{
	width: 100%;
	min-height: 410px;
	margin: 0;
	padding: 75px 0 0;
	background-image: url(../img/bg-message.jpg);
	background-position: center top; 	
	background-repeat: repeat-x;
	position: relative;
}
.message-area .inner{
	width: 96%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.message-area .inner .left{
	width: 220px;
	flex-grow: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 3.2rem;
}
.message-area .inner .left span{
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 1.8rem;
	margin: 10px 0 0;
}
.message-area .inner .right{
	width: calc(100% - 240px);
	flex-grow: 2;
	font-size: 1.6rem;
}
.message-area .inner .right p{
	margin: 0;
	padding: 0;
}


/* -----news-area----- */
.news-area{
	margin: 40px auto;
	padding: 0;
	width: 96%;
	position: relative;
}
.home .news-area{
	margin: -260px auto 100px;
}
.news-area .left{
	width: 200px;
	height: 135px;
	background-color: #0f4c95;
	color: #fff;
	border-radius: 5px;
	position: absolute;
	top: 20px;
}
.news-area .left .midashi{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 3rem;
	padding: 20px 0 10px 25px;
	margin: 0;
}
.news-area .left .more a{
	font-family: 'Montserrat', sans-serif;
	font-size: 1.6rem;
	text-decoration: none;
	color: #fff;
	padding: 15px 0 0 30px;
	margin: 0;
}
.news-area .left .more a:hover{
	color: #ddd;
}

/* right */
.news-area .right{
	width: 92%;
	margin: 0 0 0 auto;
	padding: 10px 20px 10px 160px;
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #0f4c95;
	border-radius: 5px;
	box-shadow: 10px 10px 0px 0 rgba(0,0,0,0.1);
}
.news-area ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.news-area ul li{
	margin: 15px 0 !important;
    overflow: hidden;
}
.news-area .cate a{
	display: inline-block;
	font-size: 1.1rem;
	font-weight: 500;
	background-color: #0f4c95;
	color: #fff;
	width: 70px;
	height: 22px;
	text-align: center;
	line-height: 22px;
	text-decoration: none;
	border-radius: 5px;
	margin: 0 10px;
}
.news-area .cate a:hover{
	text-decoration: none;	
	background-color: #eee;
	color: #0f4c95;
}
.news-area a{
	color: #333;
	text-decoration: none;
	display: block;
}
.news-area a:hover{
	text-decoration: underline;	
}




/* -----recruitment-area----- */
.recruitment-area{
	width: 100%;
	margin: 0;
	padding: 60px 0;
	background-color: #f4f3f2;
	position: relative;
}
.home .recruitment-area{
	padding: 0 0 60px;
}
.recruitment-area::before{
	content: '';
	width: 100%;
	height: 40px;
	display: block;
	background-image: url(../img/wave-reverse.svg);
	background-repeat: repeat-x;
	background-position: top left;
	background-size: 102%;
	z-index: 10;
	position: absolute;
	top: -1px;
	left: 0;
}
.recruitment-area::after{
	content: '';
	width: 100%;
	height: 40px;
	display: block;
	background-image: url(../img/wave-gray.svg);
	background-repeat: repeat-x;
	background-position: top left;
	background-size: 102%;
	z-index: 10;
	position: absolute;
	bottom: -39px;
	left: 0;
}
/* lead */
.recruitment-area .lead{
	text-align: center;
	position: relative;
	padding: 0 0 120px;
	z-index: 11;
}
.recruitment-area .lead .midashi{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 4rem;
	position: relative;
	top: -10px;
}
.recruitment-area .lead .midashi span{
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 2.8rem;
	margin: 10px 0;
}
.recruitment-area .lead p{
	width: 80%;
	margin: 0 auto;
	text-align: left;
}
.recruitment-area .lead p br{
	display: none;
}

/* -rehabilitation-area- */
.rehabilitation-area{
	background-color: #ffe1e2;
	width: 97%;
	margin: 0 auto 120px 0;
	border-radius: 0 2em 2em 0;
	padding: 0 25px 20px;
	box-sizing: border-box;
}
.rehabilitation-area .inner{
	width: 100%;
	margin: 0 0 0 auto;
	position: relative;
}

/* -carehome- */
.carehome-area{
	background-color: #ceecf5;
	width: 97%;
	margin: 0 0 0 auto;
	border-radius: 2em 0 0 2em;
	padding: 0 25px 20px;
	box-sizing: border-box;
}
.carehome-area .inner{
	width: 100%;
	margin: 0 auto 0 0;
	position: relative;
}

/* -name- */
.recruitment-area .name{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	position: relative;
	top: -25px;
}
.recruitment-area .carehome-area .name{
	width: 260px;
	margin: 0 0 0 auto;
}
.name .midashi{
	font-size: 3rem;
	margin: 0 0 5px;
}
.name .en{
	font-size: 1.3rem;
	display: flex;
	align-items: center;
}
.name .en::after {
  content: '';
  height: 1px;
  margin: 0 1rem;
  width: 60px;
}
.rehabilitation-area .en{
	color: #f00681;
}
.rehabilitation-area .en::after {
  background-color: #f00681;
}
.carehome-area .en{
	color: #2aa3db;
}
.carehome-area .en::after {
  background-color: #2aa3db;
}

/* -occupation- */
.recruitment-area .occupation{
	width: 100%;
	margin: 10px auto;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 1.5rem;
}
.recruitment-area .occupation ul{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	list-style: none;
}
.recruitment-area .occupation li{
	width: 23%;
	margin: 1%;
}
.recruitment-area .occupation li .icon{
	display: block;
	border-radius: 50%;
	background-color: #fff;	
	box-shadow: 0px 3px 6px rgba(0,0,0,0.3) inset;
	overflow: hidden;
    position: relative;
   	transition: 0.3s ease;
   	cursor: pointer;
}
.recruitment-area .occupation img{
	margin: 25px 30px;
	cursor: pointer;
}
.recruitment-area .occupation li.off .icon{
	background-color: #ddd;
    position: relative;
}
.recruitment-area .occupation li.off .icon:hover{
	background-color: #ccc;
}
.recruitment-area .occupation li.off .icon:after{
	content: "募集停止中";
    color: #333;
    font-weight: 600;
    position: absolute;
    bottom: calc(50% - 14px);
    left: 0;
    right: 0;
}
.recruitment-area .occupation ul img{
}
.recruitment-area .occupation ul p{
	margin: 10px 0 0;
}

.rehabilitation-area .occupation li .icon:hover{
	background-color: #f00681;
}
.carehome-area .occupation li .icon:hover{
	background-color: #2aa3db;
}






/* -----banner-area----- */
.banner-area{
	width: 94%;
	margin: 0 auto;
	padding: 90px 0 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}


/* banner */
.banner{
	margin: 1% 0;
	width: 100%;
	border-radius: 5px;
	color: #fff;
	background-position: center center; 	
	background-repeat: no-repeat;
	background-size: cover;
	transition: 0.6s ease;
	overflow: hidden;
	box-sizing: border-box;
	cursor: pointer;
}
.banner.wide{
	flex-grow: 0;
	font-size: 1.5rem;
	width: 66%;
	overflow: hidden;
	padding: 30px 0;
}
.banner.middle{
	flex-grow: 0;
	width: 32%;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #23bad8;
}
.banner.narrow{
	flex-grow: 0;
	width: 32%;
	font-size: 1.3rem;
	overflow: hidden;
}
.banner p{
	width: 90%;
	margin: 0 auto 10px;
}
.banner p br{
	display: none;
}
.banner .midashi{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	margin: 20px auto 10px;
	border: 1px solid #fff;
	padding: 10px;
	text-align: center;
	display: block;
}
.banner .midashi a{
	text-decoration: none;
	color: #fff;
}
.banner.wide .midashi{
	width: 40%;
	font-size: 2.6rem;
}
.banner.narrow .midashi{
	width: 80%;
	font-size: 1.8rem;
}
.banner.newentry{
	background-image: url(../img/bg-newentry.jpg);
}
.banner.welfare{
	background-image: url(../img/bg-welfare.jpg);
}
.banner.system{
	background-image: url(../img/bg-system.jpg);
}
.banner.contact{
	background-image: url(../img/bg-contact.jpg);
}
.banner:hover{
	opacity: 0.65;
}









/* -----page comm parts----- */

/* --ptitle-area-- */
.ptitle-area{
	width: 100%;
	height: 160px;
	margin-top: 100px;
	background-image: url(../img/bg-page.jpg);
	background-position: center center; 	
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	text-align: center;
 	z-index: 0;
}
.ptitle-area::after{
	content: '';
	width: 100%;
	height: 40px;
	display: block;
	background-image: url(../img/wave-page.svg);
	background-repeat: repeat-x;
	background-position: bottom left;
	background-color: transparent;
	background-size: 102%;
	z-index: 10;
	position: absolute;
	bottom: -1px;
	left: 0;
}
/* ptitle */
.ptitle{
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 3rem;
	height: 140px;
	display: flex;
    justify-content: center;
    align-items: center;
}

/* --contents-area-- */
.contents-area{
	width: 96%;
	margin: 0 auto;
	padding: 50px 0;
	display: flex;
}

/* side */
.side{
	width: 180px;
	flex-grow: 0;
	margin-right: 30px;
	font-size: 1.4rem;
}
.side .parent{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	position: relative;
	margin: 0 0 60px;
}
.side .parent:after{
	position: absolute;
	left: 2px;
	bottom: -25px;
	content: " "; 
	width: 16px;
	height: 3px;
	background-color: #0f4c95;
}

/* child */
.side ul{
	margin: 0;
	padding: 0 0 40px;
	list-style: none;
}
.side ul li{
	position: relative;
	padding-left: 17px;
	margin: 16px 0;
}
.side ul li:before{
	width: 5px; 
    height: 5px;
    display: block;
    position: absolute;
    left: 0;
    top: 8px; 
    content: " ";
    background: #0f4c95; 
}
.side ul li a{
	color: #333;
	text-decoration: none;
}
.side ul li a:hover{
	color: #0f4c95;
	text-decoration: none;
}



/* table */
.contents table.stripe{
	width: 100%;
	margin: 10px 0 30px;
	border-collapse: collapse !important;
	border: none !important;
}
.contents table.stripe thead tr{
	background-color: rgba(0,159,232,0.1) !important;
}
.contents table.stripe thead,
.contents table.stripe tbody{
	border-collapse: collapse !important;
}
.contents table.stripe th{
    width: 100%;
    display: block;
	padding: 15px;
	box-sizing: border-box;
	white-space: nowrap; 
	text-align: left;
	font-weight: normal;
	background-color: #f1fbff;
	border: none !important;
}
.contents table.stripe td{
    width: 100%;
    display: block;
	padding: 15px;
	box-sizing: border-box;
	border: none !important;
}
.contents table.stripe td:nth-child(odd){
}
.contents table.stripe tr:nth-child(odd){
	background-color: #fff !important;
}

/* contents */
.contents{
	width: calc(100% - 210px);
}

.contents h1{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 2.8rem;
	margin: 0 0 20px;
	padding: 0 0 15px;
	background-image: url(../img/line-midashi.png);
	background-position: bottom left; 	
	background-repeat: no-repeat;
}

.contents h2{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 2.6rem;
	position: relative;
	margin: 30px 0 20px;
	padding: 2px 5px 2px 15px;
	background-color: #d4e2f3;
	border-left: 10px solid #0f4c95;
}

.contents h3{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 2.6rem;
	padding: 0 10px 5px 35px;
	position: relative;
	margin: 30px 0 20px;
	background-image: url(../img/icon-midashi.png);
	background-position: top 10px left; 	
	background-repeat: no-repeat;
	border-bottom: 2px solid #e4e4e4;
}





/* -single- */
.single .title-area{
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 50px;
}
.single .title{
	width: 100%;
	font-family: 'Shippori Mincho', serif;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.5;
	border-bottom: 1px solid #0f4c95;
	margin: 0 0 10px;
	padding: 0 0 10px;	
}
.single .date{
	width: 50%;
}
.single .category{
	width: 50%;
	text-align: right;
}
.single .category a{
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 500;
	background-color: #0f4c95;
	color: #fff;
	width: 70px;
	height: 22px;
	text-align: center;
	line-height: 22px;
	text-decoration: none;
	border-radius: 5px;
	margin: 0 20px;
}
.single .category a:hover{
	text-decoration: none;	
	background-color: #fff;
	color: #0f4c95;
}

.topics .side select,
.archive .side select,
.single .side select{
	width: 100%;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	margin: 5px auto;
	border-radius: 0.3em;
	border: 0;
	background-color: #0f4c95;
	color: #fff;
	font-size: 1.4rem;
	padding: 10px;
	filter: drop-shadow(0px 0px 5px #eee); 
}


/* -pager- */
.pager{
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #0f4c95;
	margin: 40px 0 0;
	padding: 40px 0;
}
.pager span{
	width: 33%;
}
.pager span:nth-child(1){
	text-align: left;
}
.pager span:nth-child(2) {
	text-align: center;
}
.pager span:nth-child(3) {
	text-align: right;
}
.pager a{
	text-decoration: none !important;
	color: #0f4c95 !important;
	background-color: #fff;
	filter: drop-shadow(0px 0px 10px #e2f8f9); 
	display: inline-block;
	padding: 5px 20px;
	transition: 0.3s ease;
	text-decoration: none;
	font-size: 1.3rem;
	border-radius: 0.3em;
}
.pager a:hover,
.pager a:active{
	color: #fff !important;
	background-color: #0f4c95;
}



/* -pagination- */
.pagination{	
	clear: both;
	width: 98%;
	border-top: 1px solid #0f4c95;
	margin: 40px 0 0;
	padding: 40px 0;
	display: flex;
	align-items: stretch;
	justify-content: center;
	text-align: center;
	font-size: 1.3rem;
}
.pagination a{
	width: 28px;
	padding: 5px;
	color: #0f4c95;
	background-color: #fff;
	filter: drop-shadow(0px 0px 10px #e2f8f9); 
	transition: 0.3s ease;
	text-decoration: none !important;
	border-radius: 0.3em;
	margin: 0 2px;
}
.pagination a:hover{
	color: #fff !important;
	background-color: #0f4c95;
}
.pagination span{
	width: 28px;
	padding: 5px;
	color: #0f4c95;
	background-color: #fff;
	filter: drop-shadow(0px 0px 10px #e2f8f9); 
	transition: 0.3s ease;
	text-decoration: none;
	border-radius: 0.3em;
	margin: 0 1px;
}
.pagination span.current{
	color: #fff;
	background-color: #0f4c95;
}
.pagination a.next,
.pagination a.prev{
	color: #0f4c95;
}
.pagination a.next:hover,
.pagination a.prev:hover{
	color: #fff;
}


/* mailform */
.contents input[type=text],
.contents input[type=email],
.contents input[type=tel],
.contents input[type=number],
.contents select,
.contents textarea{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	font-size: 1.6rem;
	box-sizing: border-box;
	border-radius: 0;
    background-color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
.contents textarea{
    height: 120px;
}
.contents select{
	background-image: url(../img/icon-select.png);
	background-repeat: no-repeat;
	background-position: center right 10px;
}

.contents input[type=submit],
.contents input[type=reset]{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
    font-size: 1.8rem;
    width: 40%;
	height: 60px;
	line-height: 60px;
	color: #0f4c95;
	text-align: center;
	filter: drop-shadow(0px 2px 15px #e2f8f9); 
	border-radius: 2px;
	border: 0px;
	transition: 0.3s ease;
	margin: 30px auto;
	border-radius: 2px;
}
.contents input[type=submit]:disabled{
	opacity: 0.2;
	cursor: default;
}
.contents input[type=submit]{
	background-color: #0f4c95;
	color: #fff;
	cursor: pointer;
}
.contents input[type=submit]:enabled:hover{
	background-color: #fff;
	color: #0f4c95;
}

.contents .req{
    color: #dc3232;
    margin: 5px;
}


/* -contents edit- */
.contents a{
	text-decoration: underline;
	color: #0f4c95;
}
.contents a:hover{
	text-decoration: underline;
	color: #000;
}

.contents p{
	line-height: 1.8;
}

.contents ul,
.contents ol{
	margin: 30px auto;
}
.contents li{
}

.contents hr{
	margin: 30px 0 0;
	border: 0; 
	height: 1px; 
	background-color: #ddd;
}


.contents table{
    width: 100%;
	margin: 10px 0 25px;
	border-collapse: collapse !important;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
.contents table thead tr{
	background-color: rgba(0,159,232,0.1) !important;
}
.contents table thead,
.contents table tbody{
	border-collapse: collapse !important;
}
.contents table th{
	padding: 12px;
	box-sizing: border-box;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.contents table td{
	padding: 12px;
	box-sizing: border-box;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.contents table tr:nth-child(odd){
	background-color: #fafafa;
}


.contents figure{
	margin: 0;
}


.contents ul li {
    list-style-type: none; 
    position: relative; 
	margin: 0.4em 0;
}
.contents ul li:before {
    border-radius: 50%; 
    width: 5px; 
    height: 5px; 
    display: block;
    position: absolute; 
    left: -1.2em; 
    top: 0.6em; 
    content: "";
    background: #0f4c95;
}
.contents ol {
	list-style-type: none;
	counter-reset: number;
    position: relative; 
}
.contents ol li {
	position: relative;
	margin: 0.6em 0;
}
.contents ol li:before{
	counter-increment: number;
	content: counter(number);
	display:inline-block;
	background-color: #0f4c95;
	border-radius: 50%;
	color: #fff;
	font-size: 1.1rem;
	font-weight: bold;
	position: absolute;
	left: -28px;
	width: 22px;
	height: 22px;
	line-height: 22px;
	text-align: center;
}

.contents .link-btn{
	margin: 50px auto 100px;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 2.4rem;
}
.contents .link-btn a{
	display: block;
	margin: 0 auto;
	width: 70%;
	height: 60px;
	color: #fff;
	background-color: #f29600;
	line-height: 60px;
	text-decoration: none;
	transition: 0.3s ease;
}
.contents .link-btn a:hover{
	background-color: #eb6100;
}

.contents .link-btns{
	margin: 40px auto 80px;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 1.6rem;
	display: flex;
	flex-wrap: wrap;
}
.contents .link-btns a{
	display: block;
	width: 31%;
	margin: 1%;
	color: #fff;
	background-color: #f29600;
	padding: 15px;
	box-sizing: border-box;
	text-decoration: none;
	transition: 0.3s ease;
	background-image: url(../img/icon-arrow.png);
	background-position: left 10px center; 	
	background-repeat: no-repeat;
}
.contents .link-btns a:hover{
	background-color: #eb6100;
}


.wp-block-buttons{
    text-align: center;
    margin: 20px auto 40px;
}
.wp-block-button{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 1.6rem;
	width: 100%;
}
.wp-block-button__link{
    width: 100% !important;
	display: block !important;
	color: #fff !important;
	background-color: #f29600 !important;
	padding: 15px 5px 15px 30px !important;
	box-sizing: border-box !important;
	text-decoration: none !important;
	transition: 0.3s ease;
	background-image: url(../img/icon-arrow.png);
	background-position: left 10px center; 	
	background-repeat: no-repeat;
	border-radius: 0 !important;
}
a.wp-block-button__link:hover{
	background-color: #eb6100 !important;
}

.blocks-gallery-item{
    overflow: hidden;
}


.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

}