@charset "UTF-8";
/*----------------------------------------------
　　basic
----------------------------------------------*/
body {
	/*min-width: 1040px;*/
	color: #333;
	font-family: 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
    /*font-family: 'Noto Sans Japanese', serif;*/
	font-weight: 500;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5 {
	margin: 0;
	padding: 0;
}

.page_title h2 {
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 2.5em;
	text-shadow: 0 0 10px #333;
	padding: 40px 0;
}

.page_title h2 span {
	font-size: 36px;
	display: block;
}

.content h3 {
	display: flex;
	justify-content: space-between;
	font-size: 28px;
	border-top: solid 8px #3dd9ca;
	margin: 50px 0 40px 0;
	padding-top: 20px;
}

.content h3 span {
	color: #25beb0;
	font-size: 14px;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
}

p,ul,li,dl,dt,dd,th,td {
	font-size: 16px;
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

i {
	font-size: 110% !important;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #e7faf9;
}

::-moz-selection {
	background: #e7faf9;
}

@media screen and (max-width: 896px) {
	body {
		min-width: 300px;
	}
	
	img {
		width: 100%;
	}
	
	p,ul,li,dl,dt,dd,th,td {
		font-size: 14px;
	}
	
	.content h3 {
		font-size: 21px;
	}
}

@media screen and (max-width: 480px) {
	.page_title h2 {
		font-size: 14px;
	}
	
	.page_title h2 span {
		font-size: 24px;
	}
	
	.content h3 {
		font-size: 18px;
		border-top: solid 5px #3dd9ca;
		margin: 30px 0 20px 0;
		padding-top: 10px;
	}
	
	.content h3 span {
		font-size: 12px;
	}
}

/*----------------------------------------------
　　ScrollTrigger
----------------------------------------------*/
.invisible {
  transition: all 1s ease;
  opacity: 0.0;
}

.visible {
  transition: all 1s ease;
  opacity: 1.0;
}

/*----------------------------------------------
　　link
----------------------------------------------*/
a:link {
	color: #333;
	text-decoration: none;
}

a:visited {
	color: #333;
	text-decoration: none;
}

a:hover {
	color: #333;
	text-decoration: none;
}

a:active {
	color: #333;
	text-decoration: none;
}

/* icon forward */
.hvr-icon-forward {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-right: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.1s;
}

.hvr-icon-forward:before {
	content: "\e5cc";
	position: absolute;
	right: 1em;
	padding: 0 1px;
	font-family: 'Material Icons';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-forward:hover:before, .hvr-icon-forward:focus:before, .hvr-icon-forward:active:before {
	-webkit-transform: translateX(4px);
	transform: translateX(4px);
}

.hvr-icon-forward:hover {
	opacity: 0.8;
	transition: 0.3s;
}

/* icon back */
.hvr-icon-back {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.hvr-icon-back:before {
	content: "\e5cb";
	position: absolute;
	left: 1em;
	padding: 0 1px;
	font-family: 'Material Icons';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.1s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-back:hover:before, .hvr-icon-back:focus:before, .hvr-icon-back:active:before {
	-webkit-transform: translateX(-4px);
	transform: translateX(-4px);
}

/* zoom img */
.zoom_img img {
	width: 100%;
	display: block;
	transition: 0.3s;
}

.zoom_img img:hover {
	transform: scale(1.1);
	transition: 0.3s;
}

/*----------------------------------------------
　　PC
----------------------------------------------*/
@media print, screen and (min-width: 896px) {
	.pc_hidden {
		display: none;
	}
}

/*----------------------------------------------
　　SP
----------------------------------------------*/
@media screen and (max-width: 896px) {
	.sp_hidden {
		display: none;
	}
}

/*----------------------------------------------
　　common
----------------------------------------------*/
.wrapper {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 10px;
}

/* pan */
.pan {
	background: #f5f5f5;
	margin-bottom: 50px;
	padding: 3px 0;
}

.pan ul {
	display: flex;
	flex-wrap: wrap;
}

.pan li {
	font-size: 12px;
	display: flex;
}

.pan li:first-child:before {
    content: "\e88a";
	font-family: 'Material Icons';
	font-size: 18px;
	margin-right: 5px;
}

.pan li:nth-child(n+2):before {
    content: "\e5cc";
	font-family: 'Material Icons';
	font-size: 18px;
	padding: 0 10px;
}

.pan li a:hover {
	color: #;
	text-decoration: underline;
	transition: 0.3s
}

/*----------------------------------------------
　　header
----------------------------------------------*/
header .wrapper,
header .wrapper div a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

header .wrapper div {
	margin-right: auto;
}

header img {
	width: 60px;
	margin-right: 15px;
}

h1 {
	font-size: 24px;
	letter-spacing: 0.1em;
	padding-top: 8px;
}

h1 span {
	color: #b1b1b2;
	font-size: 12px;
	letter-spacing: 0.2em;
	display: block;
}

.glonav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.glonav li a {
	width: 120px;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	padding: 20px 0;
}

.glonav li a:hover {
	opacity: 0.8;
	transition: 0.3s;
}

.glonav li a span {
	font-size: 28px !important;
	display: block !important;
	margin-bottom: 10px;
}

.glonav li:first-child,
.glonav li:nth-child(2) {
	margin-right: 30px;
}

.glonav li:nth-child(n+3) a {
	color: #fff;
	font-size: 14px;
}

.glonav li:nth-child(3) a {
	background: #3dd9ca;
	display: block;
}

.glonav li:nth-child(3) a span {
	color: #25beb0;
}

.glonav li:last-child a {
	background: #ffbd42;
	display: block;
}

.glonav li:last-child a span {
	color: #d88f00;
}

@media screen and (max-width: 896px) {
	header {
		padding: 10px 0;
	}
	
	.glonav {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	header img {
		width: 50px;
	}
	
	h1 {
		font-size: 18px;
	}
	
	h1 span {
		font-size: 10px;
		letter-spacing: 0.1em;
	}
}

/*----------------------------------------------
　　burger menu
----------------------------------------------*/
.burger_area {
	position: absolute;
	top: 10px;
	right: 0;
}

.btn_burger {
	display: flex;
	justify-content: flex-end;
}

.btn_burger a {
    z-index: 20;
    position: relative;
    width: 30px;
    height: 26px;
	display: block;
    cursor: pointer;
	margin: 15px;
}

.btn_burger a,
.btn_burger a span {
	display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
}

.btn_burger a span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #25beb0;
    border-radius: 4px;
}

.btn_burger a span:nth-of-type(1) {
    top: 0;
}

.btn_burger a span:nth-of-type(2) {
    top: 11px;
}

.btn_burger a span:nth-of-type(3) {
    bottom: 0;
}

.btn_burger a.active span:nth-of-type(1) {
    background-color: #fff;
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
}

.btn_burger a.active span:nth-of-type(2) {
    opacity: 0;
}

.btn_burger a.active span:nth-of-type(3) {
    background-color: #fff;
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
}

.burger {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    background-color: rgba(37,190,176,0.9);
    width: 100%;
    height: 100%;
}

.burger.open {
	display: block;
}

.burger.close {
	display: none;
}

.burger_menu {
	height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.burger_menu li {
	font-weight: 600;
    display: block;
    margin: 2em;
}
	
.burger_menu li:before {
	color: #fff;
	content: "\e5cc";
	font-family: "Material Icons";
	vertical-align: bottom;
	margin-right: 5px;
}

.burger_menu li a {
    color: #fff !important;
}

/*----------------------------------------------
　　slide
----------------------------------------------*/
.slide {
	overflow: hidden;
}

.slide_inner {
	max-width: 1100px;
	margin: 0 auto;
}

.slide img {
	width: 100%;
	height: 438px;
	object-fit: cover;
}

.slide .slick-list {
	overflow: visible !important;
}

.slide .slick-slide {
	opacity: 0.5;
	transition: 0.5s;
}

.slide .slick-slide:focus {
	outline: none;
}

.slide .slick-now {
	opacity: 1;
}

.slick-arrow {
	z-index: 5;
}

.slick-prev:before,
.slick-next:before {
	font-family: "Material Icons" !important;
	font-size: 50px !important;
	opacity: 1 !important;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    color: #333;
}

.slick-prev {
	left: 0 !important;
}

.slick-prev:before {
    content: "\e314" !important;
}

.slick-next {
    right: 0 !important;
}

.slick-next:before {
    content: "\e315" !important;
}

.slick-dots li button:before {
    content: '\e3fa' !important;
    font-family: "Material Icons" !important;
    font-size: 12px !important;
    line-height: 20px;
    color: #ccc;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li button:hover:before {
    color: #999;
    opacity: 0.8;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #333;
}

@media only screen and (max-width: 896px) {
	.slide_inner {
		width: auto;
	}
	
	.slide_inner img {
		width: 100%;
		height: auto;
	}
}

/*----------------------------------------------
　　トップページ
----------------------------------------------*/
/* VISION */
.index h2 {
	width: 100%;
	font-size: 28px;
	text-align: center;
	position: relative;
	display: inline-block;
	margin-bottom: 70px;
}

.index h2:before {
	content: '';
	position: absolute;
	bottom: -25px;
	display: inline-block;
	width: 50px;
	height: 3px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #333;
	border-radius: 2px;
}

.vision {
	text-align: center;
	padding: 50px 10px;
}

.vision h3 {
	color: #25beb0;
	font-size: 21px;
	text-align: center;
	line-height: 1.8em;
	margin-bottom: 50px;
}

.vision h4 {
  font-size: 21px;
  line-height: 2em;
}

.vision span {
  color: #ee1d47;
  font-weight: 600;
}

.vision p {
  margin-top: 2em;
}

.vision ul {
	width: 500px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px auto 0 auto;
}

.vision li a {
	width: 200px;
	height: 50px;
	line-height: 50px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	background: #3dd9ca;
	display: block;
	position: relative;
}

.vision li a:after {
	position: absolute;
	right: 15px;
    content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
}

.vision a:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.index h2 {
		margin-bottom: 50px;
	}
	
	.vision h3 {
		margin-bottom: 30px;
	}
  
  .vision h4 {
    font-size: 18px;
    text-align: left;
  }
  
  .vision h4 br:first-child {
    display: none;
  }
  
  .vision p {
    text-align: left;
  }
	
	.vision ul {
		width: 100%;
		justify-content: space-around;
		margin: 30px auto 0 auto;
	}
}

@media screen and (max-width: 480px) {
	.vision {
		padding: 30px 10px;
	}

	.vision p {
		text-align: left;
	}
	
	.vision h3 {
		font-size: 18px;
		margin-bottom: 20px;
	}
  
  .vision h4 {
    font-size: 16px;
  }
	
	.vision ul {
		flex-direction: column;
	}
	
	.vision li a {
		width: 100%;
	}
	
	.vision li:last-child {
		margin-top: 15px;
	}
}

/* SERVICE - RECRUIT */
.t_service {
	background: #f5f5f5;
	margin-bottom: 70px;
	padding: 70px;
}

.t_service_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.t_service_list {
	width: 48%;
	border-top: solid 10px #3dd9ca;
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	background: #fff;
	padding: 0 2.5% 2.5% 2.5%;
	cursor: pointer;
}

.t_service_list:hover {
	opacity: 0.8;
	transition: 0.3s;
}

.t_service_list:nth-child(n+3) {
	margin-top: 40px;
}

.t_service_list div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 20px;
}

.t_service_list h3 {
	font-size: 24px;
}

.t_service_list div p {
	color: #25beb0;
	font-size: 12px;
	font-weight: 600;
}

.t_service_list img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	margin: 20px 0;
}

.t_service_list ul {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
}

.t_service_list li {
	color: #25beb0;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.8em;
}

.t_service_list li:after {
	content: "/"
}

.multiple {
	margin-top: 50px;
}

.multiple img {
	border: solid 5px #f5f5f5;
}

.health img {
	border: solid 5px #3dd9ca;
	box-sizing: border-box;
}

.health img:hover {
	opacity: 0.8;
	transition: 0.3s;
}

.health p:nth-last-child(2) {
	margin: 30px 0;
}

.health p:last-child span a {
	color: #25beb0;
	font-weight: 600;
	text-decoration: underline;
	margin-left: 30px;
}

.health p:last-child span i {
	margin-left: 10px;
}

.t_recruit {
	min-height: 450px;
	background: url(images/top/bg_recruit.jpg) no-repeat;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	margin-top: 180px;
}

.t_recruit_wrap {
	width: 45%;
	max-width: 700px;
	color: #fff;
	background: #3dd9ca;
	position: absolute;
	top: -90px;
	padding: 70px;
}

.t_recruit_wrap h2 {
	font-size: 48px;
	font-weight: 500;
	line-height: 1em;
}

.t_recruit_wrap h2 span {
	font-size: 16px;
	display: block;
}

.t_recruit_wrap h3 {
	margin: 30px 0 15px 0;
}

.t_recruit_wrap a:last-child {
	width: 220px;
	height: 60px;
	line-height: 60px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	border: solid 1px #fff;
	display: block;
	margin-top: 30px;
}

.t_recruit_wrap a:last-child span {
	color: #25beb0;
	vertical-align: sub;
	margin-right: 5px;
}

.t_recruit_wrap a:last-child:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.t_service {
		margin-bottom: 30px;
		padding: 30px 0 20px 0;
	}
	
	.t_service_wrap {
		flex-direction: column;
	}
	
	.t_service_list {
		width: 100%;
		padding: 0 10px 10px 10px;
	}
	
	.t_service_list:nth-child(n+2) {
		margin-top: 30px;
	}
	
	.t_service_list div {
		margin-top: 10px;
	}

	.t_service_list h3 {
		font-size: 18px;
	}
	
	.multiple {
		margin-top: 20px;
	}
	
	.health img {
		border: solid 2px #3dd9ca;
	}
	
	.health p:nth-last-child(2) {
		margin: 20px 0;
	}
	
	.health p:last-child span {
		display: block;
	}
	
	.health p:last-child span a {
		margin-left: 0;
	}
	
	.t_recruit {
		min-height: inherit;
		background-attachment: inherit;
		background-position: center;
		margin-top: 30px;
		padding: 30px 0;
	}
	
	.t_recruit_wrap {
		width: 90%;
		max-width: none;
		background: rgba(37,190,176,0.9);
		position: inherit;
		margin: 0 auto;
		padding: 20px;
	}
	
	.t_recruit_wrap h2 {
		font-size: 28px;
		line-height: 1.2em;
		text-align: center;
	}
	
	.t_recruit_wrap h2 span {
		font-size: 14px;
	}
	
	.t_recruit_wrap h3 {
		font-size: 21px;
		text-align: center;
		margin: 20px 0 15px 0;
	}
	
	.t_recruit_wrap a:last-child {
		width: 80%;
		display: block;
		margin: 30px auto 0 auto;
	}
	
	.t_recruit_wrap a:last-child span {
		color: #fff;
	}
}

@media screen and (max-width: 480px) {
	.t_recruit_wrap h3 {
		font-size: 16px;
	}
}

/*----------------------------------------------
　　事業案内
----------------------------------------------*/
.service_title {
	background: url(images/service/bg_title.jpg) no-repeat;
	background-size: cover;	
	background-position: bottom;
}

.service h4 {
	font-size: 21px;
	text-align: center;
	line-height: 1.8em;
	margin-top: 50px;
}

.service h4 span {
	color: #25beb0;
}

.service h4+p {
	text-align: center;
	margin-top: 50px;
}

.service_nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 50px;
}

.service_nav li {
	width: 20%;
}

.service_nav li a {
	color: #fff;
	height: 50px;
	line-height: 50px;
	font-weight: 600;
	text-align: center;
	background: #3dd9ca;
	position: relative;
	display: block;
}

.service_nav li a:after {
	position: absolute;
	right: 15px;
    content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
}

.service_nav li a:hover {
	opacity: 0.8;
	transition: 0.3s;
}

.service ul {
	display: flex;
	flex-wrap: wrap;
}

.service li {
	width: 30%;
	margin-right: 5%;
}

.service li:nth-child(n+4) {
	margin-top: 30px;
}

.service li:nth-child(3n) {
	margin-right: 0;
}

.service li img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.service li img:hover {
	opacity: 0.8;
	transition: 0.3s;
}

.service li p {
	text-align: center;
	margin-top: 10px;
}

@media screen and (max-width: 896px) {
	.service h4 {
		text-align: left;
		margin-top: 30px;
	}
	
	.service h4+p {
		text-align: left;
		margin-top: 20px;
	}
	
	.service_nav li {
		width: 45%;
	}
	
	.service_nav li:nth-child(n+3) {
		margin-top: 20px;
	}
	
	.service ul {
		justify-content: space-between;
	}
	
	.service li {
		width: 48%;
		margin-right: 0;
	}
	
	.service li:nth-child(n+3) {
		margin-top: 20px !important;
	}
}

@media screen and (max-width: 480px) {
	.service h4 {
		font-size: 16px;
	}
	
	.service_nav {
		margin-top: 30px;
	}
}

/*----------------------------------------------
　　会社概要
----------------------------------------------*/
.about_title {
	background: url(images/about/bg_title.jpg) no-repeat;
	background-size: cover;	
	background-position: bottom;
}

.overview {
	display: flex;
	flex-wrap: wrap;
	border-bottom: solid 1px #ccc;
	margin-bottom: 50px;
}

.overview dt,
.overview dd {
	border-top: solid 1px #ccc;
	padding: 20px;
}

.overview dt {
	width: 20%;
	font-weight: 600;
	background: #f5f5f5;
}

.overview dd {
	width: 80%;
}

.overview dd ul {
	margin-bottom: 30px;
}

.overview li p {
	width: 160px;
	font-weight: 600;
	display: inline-block;
}

.history {
	display: flex;
	flex-wrap: wrap;
}

.history dt,
.history dd {
	padding: 5px 15px;
}

.history dt {
	width: 10%;
	color: #fff;
	text-align: center;
	background: #25beb0;
}

.history dt+dd {
	width: 15%;
	text-align: center;
	background: #f5f5f5;
}

.history dt+dd+dd {
	width: 75%;
}

.cafeteria {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.cafeteria li {
	width: 30%;
	margin-top: 30px;
}

@media screen and (max-width: 896px) {
	.overview {
		flex-direction: column;
		margin-bottom: 30px;
	}
	
	.overview dt,
	.overview dd {
		padding: 10px;
	}
	
	.overview dt {
		width: 100%;
	}
	
	.overview dd {
		width: 100%;
	}
	
	.overview dd ul {
		margin-bottom: 20px;
	}
	
	.overview li p {
		width: 100%;
	}
	
	.history {
	}
	
	.history dt,
	.history dd {
		padding: 5px 15px;
	}
	
	.history dt {
		width: 25%;
	}
	
	.history dt+dd {
		width: 75%;
		text-align: left;
	}
	
	.history dt+dd+dd {
		width: 100%;
		padding: 5px 0;
	}
}

@media screen and (max-width: 480px) {
	.cafeteria li {
		width: 48%;
		margin-top: 20px;
	}
}

/*----------------------------------------------
　　求人情報
----------------------------------------------*/
.recruit_title {
	background: url(images/recruit/bg_title.jpg) no-repeat;
	background-size: cover;	
	background-position: bottom;
}

.recruit h4 {
	font-size: 21px;
	border-left: solid 5px #3dd9ca;
	border-bottom: solid 1px #ccc;
	margin-bottom: 30px;
	padding: 10px;
}

.recruit_main img,
.recruit_message img {
	float: left;
	width: 50%;
	max-width: 400px;
	max-height: 300px;
	object-fit: cover;
	margin: 0 30px 50px 0;
}

.recruit_main div,
.recruit_message div {
	margin-bottom: 50px;
}

.recruit_main:after,
.recruit_message:after {
	content: "";
	clear: both;
	display: block;
}

.recruit_detail {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: solid 1px #ccc;
	margin-bottom: 50px;
}

.recruit_detail dt,
.recruit_detail dd {
	border-top: solid 1px #ccc;
	padding: 15px 20px;
}

.recruit_detail dt {
	width: 20%;
	font-weight: 600;
	background: #f5f5f5;
}

.recruit_detail dd {
	width: 80%;
}

.recruit_detail iframe {
	margin-top: 20px;
}

.recruit_detail ul {
  margin-bottom: 1em;
}

.recruit_detail li {
  text-indent: -1em;
  padding-left: 1em;
}

.recruit_detail li:before {
  content: "※";
}

@media screen and (max-width: 896px) {
	.recruit h4 {
		font-size: 18px;
		margin-bottom: 20px;
		padding: 8px 10px;
	}
	
	.recruit_detail {
		flex-direction: column;
		margin-bottom: 30px;
	}
	
	.recruit_detail dt,
	.recruit_detail dd {
	}
	
	.recruit_detail dt {
		width: 100%;
		padding: 5px 15px;
	}
	
	.recruit_detail dd {
		width: 100%;
		padding: 10px 0;
	}
}

@media screen and (max-width: 480px) {
	.recruit_main img,
	.recruit_message img {
		float: none;
		width: 100%;
		margin: 0 0 15px 0;
	}
	
	.recruit_main div,
	.recruit_message div {
		margin-bottom: 30px;
	}
}

/*----------------------------------------------
　　form
----------------------------------------------*/
.contact_title {
	background: url(images/contact/bg_title.jpg) no-repeat;
	background-size: cover;	
	background-position: bottom;
}

.mailform {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	border-bottom: solid 1px #ccc;
	margin-bottom: 50px;
}

.mailform dt,
.mailform dd {
	border-top: 1px solid #ccc;
	padding: 15px 20px;
}

.mailform dt {
	width: 30%;
	font-weight: 600;
	background: #f5f5f5;
	display: flex;
	align-items: center;
}

.mailform dd {
	width: 70%;
}

.required,
.optional {
	width: 35px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	font-size: 0.7em;
	font-weight: 600;
	text-align: center;
	border-radius: 3px;
	margin: 0 10px 0 0;
}

.required {
	background: #ed3239;
}

.optional {
	background: #ccc;
}

.contact_category {
	display: flex;
	flex-wrap: wrap;
}

.contact_category label {
	margin-right: 50px;
}

.contact_category label:nth-child(n+3) {
	margin-top: 15px;
}

button,
input,
select,
textarea {
	font-size: 100%;
	font-family: inherit;
}

input,
textarea {
	border: solid 1px #ccc;
	border-radius: 5px;
	-webkit-appearance:none;
	box-sizing: border-box;
}

input {
	padding: 5px 10px;
}

textarea {
	max-width: 100%;
	min-width: 70%;
	min-height: 150px;
	padding: 10px;
}

.input_wide,
.mf {
	width: 70% !important;
}

.input_middle {
	width: 30% !important;
}

.postcord,
input[type="submit"],
input[type="reset"]  {
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	border: none;
}

input[type="submit"],
input[type="reset"]  {
	width: 30%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	padding: 0;
}

input[type="submit"] {
	background: #3dd9ca;
}

.postcord,
input[type="reset"] {
	background: #ccc;
}

.postcord:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.button:hover  {
	opacity: 0.8;
	transition: 0.3s;
}

::-webkit-input-placeholder {
    color: #ddd;
}

.privacy > h5 {
	font-size: 12px;
	margin: 15px 0 5px 0;
}

.privacy p,
.privacy li  {
	font-size: 12px;
	line-height: 1.5em;
}

li.privacy > ul {
	margin-top: 10px;
}

li.privacy ul li {
    padding-left: 1em;
    text-indent: -1em;
	list-style: decimal inside;
}

.button:after {
    content: "\E147";
	font-family: 'Material Icons';
	font-weight: 500;
	font-size: 21px;
    position: absolute;
    top: 11px;
    right: 13px;
}

.button.active:after {
    content: "\E15C";
	font-family: 'Material Icons';
}

form div:last-child {
	display: flex;
	justify-content: space-around;
}

@media screen and (max-width: 896px) {
	.mailform {
		display: block;
		margin-bottom: 20px;
	}
	
	.mailform dt {
		padding: 8px 15px;
	}
	
	.mailform dd {
		padding: 20px 0;
	}
	
	.mailform dt,
	.mailform dd {
		width: 100%;
	}
	
	.required,
	.optional {
		height: 20px;
		line-height: 20px;
	}
	
	input {
		font-size: 16px;
		padding: 10px;
	}
	
	.input_wide,
	.mf {
		width: 100% !important;
	}
	
	.input_middle {
		width: 50% !important;
	}
	
	textarea {
		width: 100% !important;
		font-size: 16px;
	}
	
	.postcord {
		font-size: 14px;
	}
	
	input[type="submit"],
	input[type="reset"]  {
		width: 49%;
		font-size: 14px;
	}
}

/* radio・checkbox共通 */
input[type="checkbox"],
input[type="radio"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

.label_list label {
	position: relative;
	display: block;
	word-break: break-all;
}

.label_list label input[type="checkbox"] + span,
.label_list label input[type="radio"] + span {
	position: relative;
	padding-left: 35px;
}

label {
	cursor: pointer;
}

/* checkbox */
.checkbox {
	margin-top: 5px;
}

.checkbox .label_list:nth-of-type(1) label input[type="checkbox"] + span::before {
	border-color: #ccc;
}

.checkbox .label_list:nth-of-type(1) label input[type="checkbox"]:checked + span::before {
	border-color: #333;
}

.checkbox label input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.checkbox label input[type="checkbox"] + span::before, .checkbox label input[type="checkbox"] + span::after {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}

.checkbox label input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: transparent;
	width: 25px;
	height: 25px;
	border: 3px #ccc solid;
	border-radius: 5px;
}

.checkbox label input[type="checkbox"] + span::after {
	z-index: 1;
	margin: 2px 8px;
	width: 10px;
	height: 15px;
}

.checkbox label input[type="checkbox"] + span::after {
	border: 4px solid #ccc;
	border-width: 0 4px 4px 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
		    transform: rotate(45deg);
}

.checkbox label input[type="checkbox"]:checked + span::after {
	border: 4px solid #ff6f61;
	border-width: 0 4px 4px 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
		    transform: rotate(45deg);
}

/* radio */
.radio .label_list:nth-of-type(1) label input[type="radio"] + span::before {
	border-color: #ccc;
}

.radio label span,
.checkbox label span {
	display: inline-block;
}

.radio label input[type="radio"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.radio label input[type="radio"] + span::before {
	position: absolute;
	display: inline-block;
	content: '';
	box-sizing: border-box;
	border-radius: 25px;
}

.radio label input[type="radio"] + span::before {
	width: 25px;
	height: 25px;
	z-index: 0;
	top: 0;
	left: 0;
	background-color: transparent;
	border: solid 2px #ccc;
}

.radio label input[type="radio"] + span::before {
	border-width: 8px;
	background: #fff;
	border-color: #ccc !important;
}

.radio label input[type="radio"]:checked + span::before {
	border-width: 8px;
	border-color: #ed3239 !important;
}

/* アコーディオン */
.accordion {
    width: 100%;
	margin-bottom: 20px !important;
}

.button {
    width: 100%;
	font-weight: 600;
	border: solid 1px #ccc;
	border-radius: 3px;
    background: #f5f5f5;
    cursor: pointer;
    position: relative;
    padding: 10px 15px;
}

.accordion_contents {
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	background: #fff;
	padding: 15px;
}

/*----------------------------------------------
　　thanks
----------------------------------------------*/
.thanks p {
	padding: 10px 0;
}

.thanks p:nth-last-child(2)	{
	font-size: 24px;
	font-weight: 600;
}

.thanks p:nth-last-child(2):before {
    content: "\e0b0";
	font-family: 'Material Icons';
	font-size: 26px;
	vertical-align: middle;
	margin-right: 5px;
}

/*----------------------------------------------
　　footer
----------------------------------------------*/
.sitemap {
	background: #f5f5f5;
	margin-top: 70px;
	padding: 30px 0;
}

.sitemap ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sitemap li {
	font-weight: 600;
}

.sitemap li:before {
    content: "\f138";
	font-family: "Font Awesome 5 Free";
	color: #3dd9ca;
	margin-right: 5px;
}

.sitemap li a:hover {
	text-decoration: underline;
}

footer {
	color: #fff;
	text-align: center;
	background: #333;
	padding: 40px 0;
}

footer .wrapper > p:first-child {
	font-size: 18px;
	font-weight: 600;
}

footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 40px 0 50px 0;
}

footer li {
	width: 33.3%;
	font-size: 14px;
	border-left: solid 1px #fff;
	padding: 20px 10px;
}

footer li:last-child {
	border-right: solid 1px #fff;
}

address {
	color: #fff;
	font-size: 0.7em;
	font-style: normal;
	text-align: center;
}

@media screen and (max-width: 896px) {
	.sitemap {
		margin-top: 30px;
	}
	
	footer ul {
		flex-direction: column;
		margin: 30px 0;
	}
	
	footer li {
		width: 100%;
		font-size: 12px;
		border-left: none;
		border-top: solid 1px #fff;
		padding: 10px 0;
	}
	
	footer li:last-child {
		border-right: none;
		border-bottom: solid 1px #fff;
	}
}

@media screen and (max-width: 480px) {
	.sitemap li {
		width: 48%;
	}
}

/*----------------------------------------------
　　pagetop
----------------------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 50px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 36px;
	text-align: center;
	background: rgba(37,190,176,0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1000;
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 40px;
		font-size: 28px;
		right: 10px;
		bottom: 10px;
	}
}
