@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.area {
	padding: 100px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}
.inner_in {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 20px;
}
.poppins {
	font-family: "Poppins", serif;
	font-weight: 400;
}
.blue {
	color: #00a9d8;
}
.bg_blue {
	background: #e6f5f9;
}
.bg_white {
	background: #fff;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 50px 20px;
	}
	.inner {
		max-width: 100%;
	}
}


/* header
-------------------------------------------------------*/
#header {
	box-sizing: border-box;
}
#header .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	max-width: 100%;
	padding: 30px 50px;
}
#header .logo {
	margin-right: 20px;
}
#header .logo img {
    max-width: 240px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	#header .inner {
		padding: 30px 20px;
	}
}
@media screen and (max-width:768px) {
	#header .inner {
		padding: 20px;
	}
	#header .logo img {
		max-width: 150px;
	}
}

/* nav
-------------------------------------------------------*/
#nav_pc ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
	font-size: 1.5rem;
}
#nav_pc ul li {
	margin-left: 50px;
}
@media screen and (max-width:1080px) {
	#nav_pc ul li {
		margin-left: 20px;
	}
}
@media screen and (max-width:768px) {
	#btn_nav {
		position: fixed;
		top: 20px;
		right: 15px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 18px;
	}
	#btn_nav span {
		display: inline-block;
		background: #00a9d8;
		width: 25px;
		height: 2px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		transform: translateY(9px) rotate(45deg);
		background: #fff;
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-8px) rotate(-45deg);
	}
	#nav_sp .nav_cont,
	#nav_sp .nav_cont::after {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp .nav_cont {
		overflow: auto;
		background: linear-gradient(95deg, #81cde3, #00a9d8);
		right: -100%;
		z-index: 998;
		transition: .5s;
		padding: 50px 30px;
		box-sizing: border-box;
		font-size: 2rem;
	}
	#nav_sp .nav_cont.active {
		right: 0;
	}
	#nav_sp .nav_cont ul li:not(:last-child) {
		margin: 0 0 15px;
	}
}


/* footer
-------------------------------------------------------*/
#footer {
	background: #3f3a39;
}
#footer.area {
	padding: 50px;
}
#footer .inner {
	max-width: 100%;
}
#footer .logo {
	text-align: right;
}
#footer .logo img {
	max-width: 241px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#footer.area {
		padding: 30px 20px;
	}
	#footer .logo {
		text-align: right;
	}
	#footer .logo img {
		max-width: 120px;
	}
}


/* parts
-------------------------------------------------------*/
/* ttl */
.ttl01 {
	font-family: "Poppins", serif;
	font-weight: 700;
	font-size: 10.8rem;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
	line-height: 1;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.ttl01 {
		font-size: 8rem;
	}

}
@media screen and (max-width:768px) {
	.ttl01 {
		font-size: 4.6rem;
	}
}

/* btn */
.btn_more {
	display: flex;
	justify-content: flex-end;
	margin-top: 50px;
}
.btn_more a {
	font-size: 3.2rem;
	font-weight: 600;
	position: relative;
	line-height: 1;
	width: 290px;
	display: inline-block;
}
.btn_more a::after {
	position: absolute;
	display: block;
	content: "";
	width: 170px;
	height: 4px;
	background: #3f3a39;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
}
@media screen and (max-width:768px) {
	.btn_more {
		margin-top: 30px;
	}
	.btn_more a {
		font-size: 2.6rem;
		width: 200px;
		display: inline-block;
	}
	.btn_more a::after {
		width: 100px;
		height: 3px;
	}
}

.btn_contact a  {
	color: #fff;
	background: #00a9d8;
	padding: 20px 100px;
	font-size: 3rem;
	letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
	.btn_contact a  {
		padding: 10px 50px;
		font-size: 1.8rem;
	}
}


/* index
-------------------------------------------------------*/
/* index */
#index_visual {
	position: relative;
}
#index_visual.area {
	padding: 0 50px;
}
#index_visual .inner {
	max-width: 1760px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: center;
	padding: 150px 0;
}

.index_visual_txt {
	padding-left: 14%;
}
#index_visual .visual_ttl {
	font-size: 11.2rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	font-weight: 700;
	background: linear-gradient(95deg, #81cde3, #00a9d8); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#index_visual .en {
	font-size: 2rem;
	letter-spacing: 0.05em;
	color: #3f3a39;
	margin-top: 50px;
}
#index_visual .visual_logo {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translate(0,-50%);
	z-index: -1;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	#index_visual .visual_ttl {
		font-size: 9rem;
	}
}
@media screen and (max-width:768px) {
	#index_visual.area {
		padding: 0 30px;
	}
	#index_visual .inner {
		padding: 100px 0;
	}
	.index_visual_txt {
		padding-left: 7%;
	}
	#index_visual .visual_ttl {
		font-size: 4.2rem;
	}
	#index_visual .en {
		font-size: 1.4rem;
		margin-top: 30px;
	}
}

/* about */
.index_about {
	background: url(../img/index/bg_about.png)no-repeat right 30% bottom/cover;
}
.index_about .mid_ttl {
	font-size: 3.8rem;
	font-weight: 700;
	margin-bottom: 50px;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
}
.index_about .txt {
	line-height: 2;
	font-weight: 700;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.index_about .mid_ttl {
		font-size: 3.2rem;
	}
}
@media screen and (max-width:768px) {
	.index_about.area {
		padding: 50px 20px 130px;
	}
	.index_about {
		background: url(../img/index/bg_about_sp.png)no-repeat right 30% bottom/cover;
	}
	.index_about .mid_ttl {
		font-size: 2rem;
		margin-bottom: 30px;
	}
}

/* our mission */
.mission_list li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.mission_list li:not(:last-child) {
	margin-bottom: 80px;
}
.mission_list li .mission_no {
	font-size: 3.2rem;
	font-weight: 600;
	background: url(../img/common/mission_line.png)no-repeat left bottom/217px 28px;
	min-width: 217px;
	margin-right: 50px;
}
.mission_list li .mission_no .blue {
	font-size: 7.2rem;
	padding-left: 10px;
}
.mission_list li .txt_box {
	padding-top: 20px;
}
.mission_list li .ttl_en {
	font-weight: 600;
	font-size: 4.8rem;
}
.mission_list li .ttl {
	font-size: 3.2rem;
	font-weight: 700;
	margin-bottom: 50px;
}
.mission_list li .txt {
	line-height: 2;
	font-weight: 700;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.mission_list li .mission_no {
		margin-right: 40px;
	}
	.mission_list li .ttl_en {
		font-size: 4rem;
	}
}
@media screen and (max-width:768px) {
	.mission_list li {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.mission_list li:not(:last-child) {
		margin-bottom: 50px;
	}
	.mission_list li .mission_no {
		font-size: 2.4rem;
		background: url(../img/common/mission_line.png)no-repeat left bottom/151px 19px;
		width: 151px;
		margin-right: 0;
	}
	.mission_list li .mission_no .blue {
		font-size: 5rem;
	}
	.mission_list li .txt_box {
		padding-top: 20px;
	}
	.mission_list li .ttl_en {
		font-size: 2.6rem;
	}
	.mission_list li .ttl {
		font-size: 2rem;
		margin-bottom: 30px;
	}
}

/* news */
.index_news.area {
	padding: 100px 0 50px;
}
.index_news>.inner {
	max-width: 1040px;
}
.bg_white {
	padding: 50px 0 100px;
}
.news_list {
	font-size: 1.8rem;
}
.news_list a {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.news_list .date {
	font-weight: 600;
	margin-right: 40px;
}
.news_list .ttl {
	font-weight: 700;
}
@media screen and (max-width:768px) {
	.index_news.area {
		padding: 50px 0 30px;
	}
	.bg_white {
		padding: 30px 0 50px;
	}
	.news_list {
		font-size: 1.4rem;
	}
	.news_list a {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
}

/* recruit */
.index_recruit.area {
	padding: 0;
}
.index_recruit .bg_recruit {
	background: url(../img/index/bg_recruit.png)no-repeat center/cover;
	padding: 280px 0 250px;
}
.index_recruit .ttl01 {
	text-align: center;
}
.index_recruit .bg_recruit .ttl_img {
	text-align: center;
}
.index_recruit .bg_recruit .ttl_img img {
	max-width: 316px;
}
.index_recruit .ttl_logo {
	margin: 100px 0 50px;
}
.index_recruit .ttl_logo img {
	max-width: 540px;
}
.index_recruit .bg_box {
	position: relative;
}
.index_recruit .bg01 {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
}
.index_recruit .bg01 img {
	max-width: 1000px;
}
.index_recruit .txt_box01 {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}
.index_recruit .txt_box01 .in {
	width: 50%;
	margin: 0 0 0 auto;
	padding-left: 50px;
	box-sizing: border-box;
}
.index_recruit .txt_box01 .ttl {
	color: #0080cc;
	font-weight: 700;
	font-size: 3.2rem;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
.index_recruit .txt_box01 .lead {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 2;
	margin-bottom: 40px;
}
.index_recruit .txt_box01 .txt {
	font-weight: 300;
	line-height: 2;
}
.index_recruit .txt_box02 {
	padding: 100px 0;
}
.index_recruit .txt_box02 dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: stretch;
}
.index_recruit .txt_box02 dl:not(:last-child) {
	margin: 0 0 50px;
}
.index_recruit .txt_box02 dl dt {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1;
	padding-right: 40px;
}
.index_recruit .txt_box02 dl dd {
	border-left: 8px solid #00a9d8;
	padding-left: 40px;
	line-height: 2;
	font-weight: 700;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.index_recruit .bg_recruit {
		background: url(../img/index/bg_recruit.png)no-repeat center right 20%/cover;
		padding: 170px 0 100px;
	}
	.index_recruit .txt_box01 .in {
		padding-left: 40px;
	}
	.index_recruit .txt_box01 .lead {
		font-size: 2.1rem;
	}
	.index_recruit .txt_box02 dl dt {
		font-size: 3rem;
	}
}
@media screen and (max-width:768px) {
	.index_recruit .bg_recruit {
		background: url(../img/index/bg_recruit_sp.png)no-repeat center/cover;
		padding: 70px 0;
	}
	.index_recruit .ttl01 {
		margin-bottom: 20px;
	}
	.index_recruit .bg_recruit .ttl_img img {
		max-width: 50%;
	}
	.index_recruit .ttl_logo {
		margin: 50px 0 30px;
	}
	.index_recruit .bg01 {
		position: inherit;
		width: 80%;
		margin-bottom: 30px;
	}
	.index_recruit .txt_box01 .in {
		width: 100%;
		margin: 0;
		padding-left: 0;
	}
	.index_recruit .txt_box01 .ttl {
		font-size: 2.8rem;
		margin-bottom: 10px;
	}
	.index_recruit .txt_box01 .lead {
		font-size: 2rem;
	}
	.index_recruit .txt_box02 {
		padding: 80px 0;
	}
	.index_recruit .txt_box02 dl {
		display: flex;
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.index_recruit .txt_box02 dl:not(:last-child) {
		margin: 0 0 40px;
	}
	.index_recruit .txt_box02 dl dt {
		font-size: 2.2rem;
		padding-right: 0;
		width: inherit;
		margin-bottom: 20px;
	}
	.index_recruit .txt_box02 dl dd {
		border-left: 4px solid #00a9d8;
		padding-left: 20px;
	}	
}

/* company */
.index_company {
	position: relative;
}
.index_company .inner {
	position: relative;
	z-index: 5;
}
.index_company .img01,.index_company .img02 {
	position: absolute;
}
.index_company .img01 {
	right: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	text-align: right;
}
.index_company .img01 img {
	max-width: 55%;
}
.index_company .img02 {
	left: 0;
	top: 10%;
	z-index: -1;
	width: 100%;
}
.index_company .img02 img {
	max-width: 55%;
}
.index_company.area {
	padding: 240px 20px 100px;
}
.index_company dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 50px;
	font-size: 1.8rem;
}
.index_company dl.name {
	font-weight: 700;
}
.index_company dl.name dt {
	font-size: 2.4rem;
}
.index_company dl.name dd {
	padding-top: 7px;
}
.index_company dl dt {
	width: 120px;
	font-weight: 700;
}
.map iframe {
	/*filter: grayscale(1);*/
	width: 100%;
}
@media screen and (max-width:768px) {
	.index_company .img01 {
		right: 0;
		top: 0;
		z-index: 1;
		width: 100%;
		text-align: right;
	}
	.index_company .img01 img {
		max-width: 70%;
	}
	.index_company .img02 img {
		max-width: 70%;
	}
	.index_company.area {
		padding: 80px 20px 50px;
	}
	.index_company .txt_box {
		margin-top: 60px;
	}
	.index_company dl {
		margin-bottom: 30px;
		font-size: 1.4rem;
	}
	.index_company dl.name dt {
		font-size: 2rem;
	}
	.map iframe {
		width: 100%;
		height: 300px;
	}	
}

/* contact */
.index_contact {
	text-align: center;
}
.index_contact .lead {
	line-height: 2;
	font-weight: 700;
	margin-bottom: 60px;
}
.index_contact .contact_mail {
	line-height: 1;
	font-size: 2rem;
}
.index_contact .contact_mail span {
	display: inline-block;
	align-content: center;
	margin-right: 15px;
}
.index_contact .contact_mail span img {
	max-width: 21px;
	padding-bottom: 2px;
}
@media screen and (max-width:768px) {
	.index_contact .lead {
		margin-bottom: 50px;
	}
	.index_contact .contact_mail {
		font-size: 1.8rem;
	}
}


/* lower
-------------------------------------------------------*/
.lower_visual {
	background: #e6f5f9;
	text-align: center;
}
.lower_visual .ttl01 {
	margin: 0;
	font-size: 8rem;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.lower_visual .ttl01 {
		margin: 0;
		font-size: 4rem;
	}
}

/* news
-------------------------------------------------------*/

@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {

}


/* contact
-------------------------------------------------------*/
#contact .inner {
	max-width: 800px;
}
.contact_lead {
	margin-bottom: 50px;
}
.contact_lead dt {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
}
.contact_lead dd {
	font-weight: 700;
	line-height: 2;
}
#contact .table_temp {
	width: 100%;
}
#contact.contact_after .inner {
	padding: 0;
}
#contact tr {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-bottom: 1px solid #ccc;
}
#contact tr>* {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 10px;
	box-sizing: border-box;
	line-height: 1;
}
#contact tr th {
	width: 250px;
	text-align: left;
}
#contact .contact_after tr th {
	width: 300px;
}
#contact .contact_after tr td {
	text-align: left;
}
#contact tr th b {
	display: block;
	position: relative;
	font-weight: 700;
}
#contact .hissu b::after {
	color: #fff;
	font-weight: 500;
	font-size: 1.2rem;
	width: 50px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	content: "必須";
	background: #00a9d8;
}
#contact.contact_after tr {
	border-bottom: 1px solid #ccc;
}
#contact.contact_after tr:first-child {
	border-top: 1px solid #ccc;
	margin: 30px 0 0;
}
#contact.contact_after tr td {
	font-weight: 500;
}
.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}
.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}
.error_messe>* {
	display: inline-block;
}
#contact input[type="text"],
#contact select,
#contact textarea {
	width: 100%;
}
#contact input[type="text"],
#contact select {
	height: 40px;
}
#contact textarea {
	min-height: 150px;
	resize: vertical;
}
#contact .radio_area label,
#contact .check_area label {
	display: inline-block;
	margin: 5px 5px 5px 0;
	line-height: 1.3;
}
::placeholder {
	color: #ccc;
}
#contact .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}
#contact .form_btn01,
#contact .form_btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 300px;
	height: 70px;
	border: none;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	font-size: 120%;
	color: #fff;
	line-height: 1;
    text-align: center;
}
#contact .form_btn01 {
	background: #00a9d8;
}
#contact .form_btn02 {
	background: #3f3a39;
}
#contact .privacy {
	margin: 50px 0 30px;
	text-align: center;
	font-weight: 700;
}
#contact .privacy dt {
	font-size: 2.2rem;
	padding-right: 80px;
	margin-bottom: 30px;
	line-height: 1;
}
#contact .privacy dt b {
	display: inline-block;
	position: relative;
}
#contact .privacy dt b::after {
	right: -80px;
}
#contact .privacy dd {
	line-height: 2;
	margin-bottom: 30px;
}
#contact .privacy dd a {
	color: #00a9d8;
	text-decoration: underline;
}
#contact .privacy dd label {
	font-size: 1.8rem;
}
.contact_after .inner {
	text-align: center;
	font-weight: 700;
}
.contact_after .ttl {
	font-size: 2.2rem;
	margin-bottom: 30px;
}
.contact_after .txt_form {
	line-height: 2;
}
.contact_after .txt_form .red {
	display: block;
	font-weight: 700;
	font-size: 1.8rem;
	margin-bottom: 20px;
}

@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.contact_lead dt {
		font-size: 2.4rem;
	}
	#contact .txt_head {
		font-size: 100%;
	}
	#contact.contact_after tr:first-child {
		margin: 20px 0 0;
	}
	#contact tr>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}
	#contact tr th {
		width: 100%;
		font-size: 100%;
	}
	#contact tr td {
		padding-top: 0;
		font-size: 1.4rem;
	}
	#contact tr.hissu th b::after,
	#contact tr.nini th b::after {
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	#contact input[type="text"], #contact textarea {
		font-size: 1.4rem;
		line-height: 1.4;
	}
	#contact .radio_area label,
	#contact .check_area label {
		display: flex;
		align-items: center;
	}
	#contact .form_btn {
		flex-flow: column;
	}
	#contact .form_btn01,
	#contact .form_btn02 {
		margin: 20px 0 0;
		font-size: 100%;
		height: 50px;
	}
	#contact .privacy {
		margin: 40px 0 20px;
	}
	#contact .privacy dt {
		font-size: 1.6rem;
		padding-right: 60px;
	}
	#contact .privacy dt b::after {
		right: -60px;
	}
	#contact .privacy dd {
		line-height: 2;
		margin-bottom: 30px;
	}
	#contact .privacy dd a {
		color: #00a9d8;
		text-decoration: underline;
	}
	#contact .privacy dd label {
		font-size: 1.8rem;
	}
	.contact_after .inner {
		text-align: center;
		font-weight: 700;
	}
	.contact_after .ttl {
		font-size: 2.2rem;
		margin-bottom: 30px;
	}
	.contact_after .txt_form {
		line-height: 2;
	}
	.contact_after .txt_form .red {
		display: block;
		font-weight: 700;
		font-size: 1.8rem;
		margin-bottom: 20px;
	}
}

/* privacy appi
-------------------------------------------------------*/
.privacy_appi .underline {
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid #ccc;
}
.privacy_appi .lead {
	margin-bottom: 50px;
}
.privacy_appi .lead dt {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
}
.privacy_appi .lead dd {
	line-height: 2;
}
.privacy_appi ol li:not(:last-child) {
	margin-bottom: 30px;
}
.privacy_appi ol .ttl {
	font-weight: 700;
	margin-bottom: 10px;
}
.privacy_appi ol .txt {
	font-size: 1.4rem;
	line-height: 2;
}
.privacy_appi ol a {
	color: #00a9d8;
	text-decoration: underline;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.privacy_appi .lead {
		margin-bottom: 40px;
	}
	.privacy_appi .lead dt {
		font-size: 2rem;
	}
}

