@charset "utf-8";

/*-----------------------
    page_contents.css
------------------------*/

/*----- service -----*/

.svc_head {
	padding: 80px 0 60px;
}
.svc_head .ttl {
	margin-bottom: 50px;
}
.svc_head .ttl > div {
	display: flex;
	justify-content: center;
}
.svc_head .ttl .text {
	font-size: 37px;
	line-height: 2;
}
.svc_head .ttl .text.blue {
	color: #1761ae;
}
.svc_head .flow {
	margin-top: 80px;
	text-align: center;
}

/* point */

.svc_point {
	padding: 100px 0 80px;
}
.svc_point .ul {
	margin-top: 75px;
}
.svc_point .ul .li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}
.svc_point .ul .li .conts {
	width: 66.66%;
	order: 2;
}
.svc_point .ul .li .conts .ttl {
	font-size: 33px;
	margin-bottom: 15px;
	line-height: 1.5;
}
.svc_point .ul .li .pic {
	width: 29.166%;
}
.svc_point .ul .li .pic img {
	aspect-ratio: 35/24;	
}

/* item */

.svc_items {
	padding: 100px 0 80px;
	background: var(--grey);
}
.svc_items_text {
	margin: 50px 0 60px;
}
.svc_items .ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 2%;
}
.svc_items .ul .li {
	width: 32%;
}
.svc_items .ul .li a {
	display: block;
	height: 100%;
	padding: 25px 30px 60px;
	background: var(--white);
}
.svc_items .ul .li a:hover {
	opacity: .7;
}
.svc_items .ul .li a .pic img {
	aspect-ratio: 4/3;
}
.svc_items .ul .li a .ttl {
	margin: 15px 0;
	color: var(--text);
	font-size: 23px;
	text-align: center;
}
.svc_items .ul .li a .tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
}
.svc_items .ul .li a .tabs p {
	padding: 10px 15px;
	background: #fffdcd;
	border-radius: 20px;
	color: var(--blue_dark);
}

@media screen and (min-width: 768px) and (max-width: 1260px){
    
	.svc_head {
		padding: 6vw 0 4vw;
	}
	.svc_head .ttl {
		margin-bottom: 4vw;
	}
	.svc_head .ttl .text {
		font-size: 3.5vw;
		line-height: 1.8;
	}
	.svc_head .flow {
		margin-top: 6vw;
	}	
	
	/* point */

	.svc_point {
		padding: 8vw 0 6vw;
	}
	.svc_point .ul {
		margin-top: 5vw;
	}
	.svc_point .ul .li {
		margin-bottom: 5vw;
	}
	.svc_point .ul .li .conts .ttl {
		font-size: 3vw;
		margin-bottom: 1.5vw;
	}
	
	/* item */

	.svc_items {
		padding: 8vw 0;
	}
	.svc_items_text {
		margin: 4vw 0;
	}
	.svc_items .ul {
		gap: 3vw 2%;
	}
	.svc_items .ul .li a {
		padding: 2vw 2vw 4vw;
	}
	.svc_items .ul .li a .ttl {
		margin: 2vw 0;
		font-size: 2.3vw;
	}
	.svc_items .ul .li a .tabs {
		gap: 1vw 1vw;
	}
	.svc_items .ul .li a .tabs p {
		padding: 1vw 1vw;
		border-radius: 2vw;
		font-size: 1.5vw;
	}

}
@media screen and (max-width: 767px){
    
	.svc_head {
		padding: 50px 0 20px;
	}
	.svc_head .ttl {
		margin-bottom: 30px;
		display: inline-block;
	}
	.svc_head .ttl > div {
		display: inline;
	}
	.svc_head .ttl .text {
		display: inline;
		font-size: 24px;
		line-height: 1.8;
	}
	.svc_head .pml br {
		display: none;
	}
	.svc_head .flow {
		margin-top: 30px;
	}	
	
	/* point */

	.svc_point {
		padding: 50px 0 30px;
	}
	.svc_point .ul {
		margin-top: 40px;
	}
	.svc_point .ul .li {
		display: block;
		margin-bottom: 30px;
	}
	.svc_point .ul .li .conts {
		width: 100%;
	}
	.svc_point .ul .li .conts .ttl {
		font-size: min(7vw,28px);
	}
	.svc_point .ul .li .pic {
		margin: 20px auto 0;
		width: min(350px,100%);
	}

	/* item */

	.svc_items {
		padding: 50px 0;
	}
	.svc_items_text {
		margin: 30px 0;
	}
	.svc_items .ul {
		gap: 15px 3%;
	}
	.svc_items .ul .li {
		width: 48.5%;
	}
	.svc_items .ul .li a {
		padding: 15px 2vw 30px;
	}
	.svc_items .ul .li a .ttl {
		margin: 15px 0;
		font-size: 20px;
	}
	.svc_items .ul .li a .tabs {
		gap: 7px 8px;
	}
	.svc_items .ul .li a .tabs p {
		padding: 7px 10px;
		font-size: 14px;
	}
	
}
@media screen and (max-width: 479px){
    
	/* item */
	
	.svc_items .ul {
		display: block;
	}
	.svc_items .ul .li {
		width: 100%;
		margin-bottom: 30px;
	}
	.svc_items .ul .li a {
		padding: 15px 4vw 30px;
	}
	.svc_items .ul .li a .pic {
		width: min(350px,100%);	
	}
	
	
}

/*----- products -----*/

.products {
	padding: 80px 0 0;
}
.pdt_list {
	padding: 120px 0 0;
}
.pdt_list .ul {
	margin-top: 75px;
}
.pdt_list .ul .li {
	margin-bottom: 90px;	
}
.pdt_list .ul .li:last-child {
	margin-bottom: 0;	
}
.pdt_list .ul .li .frame {
	display: flex;
	justify-content: space-between;
}
.pdt_list .ul .li .frame .pic {
	width: 29.166%;
}
.pdt_list .ul .li .frame .pic img {
	aspect-ratio: 35/24;
}
.pdt_list .ul .li .frame .conts {
	width: 66.66%;
}
.pdt_list .ul .li .frame .conts .ttl {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	color: var(--blue_dark);
}
.pdt_list .ul .li .frame .conts .ttl .text {
	font-size: 33px;
	font-weight: 900;
}
.pdt_list .ul .li .frame .conts .ttl .sub {
	font-size: 20px;
	font-weight: 900;
}
.pdt_list .ul .li .maker {
	background: var(--grey);
	margin-top: 20px;
	padding: 30px 45px;
}
.pdt_list .ul .li .maker .ttl {
	font-size: 25px;
	margin-bottom: 15px;
}

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

	.products {
		padding: 8vw 0 0;
	}
	.pdt_list {
		padding: 8vw 0 0;
	}
	.pdt_list .ul {
		margin-top: 7vw;
	}
	.pdt_list .ul .li {
		margin-bottom: 7vw;	
	}
	.pdt_list .ul .li .frame .pic {
		width: 29.166%;
	}
	.pdt_list .ul .li .frame .conts {
		width: 66.66%;
	}
	.pdt_list .ul .li .frame .conts .ttl {
		margin-bottom: 2vw;
	}
	.pdt_list .ul .li .frame .conts .ttl .text {
		font-size: 3vw;
	}
	.pdt_list .ul .li .frame .conts .ttl .sub {
		font-size: 2vw;
	}
	.pdt_list .ul .li .maker {
		margin-top: 2vw;
		padding: 2.5vw 3vw;
	}
	.pdt_list .ul .li .maker .ttl {
		font-size: 2.4vw;
		margin-bottom: 1.5vw;
	}	
	
}
@media screen and (max-width: 767px){
	
	.products {
		padding: 50px 0 0;
	}
	.pdt_list {
		padding: 50px 0 0;
	}
	.pdt_list .ul {
		margin-top: 40px;
	}
	.pdt_list .ul .li {
		margin-bottom: 40px;	
	}
	.pdt_list .ul .li:last-child {
		margin-bottom: 0;	
	}
	.pdt_list .ul .li .frame {
		display: block;
	}
	.pdt_list .ul .li .frame .pic {
		margin: 0 auto 15px;
		width: min(350px,100%);
	}
	.pdt_list .ul .li .frame .conts {
		width: 100%;
	}
	.pdt_list .ul .li .frame .conts .ttl {
		margin-bottom: 15px;
		display: flex;
	}
	.pdt_list .ul .li .frame .conts .ttl .text {
		font-size: min(5vw,28px);
	}
	.pdt_list .ul .li .frame .conts .ttl .sub {
		font-size: min(3.75vw,18px);
	}
	.pdt_list .ul .li .maker {
		margin-top: 15px;
		padding: 15px 4vw;
	}
	.pdt_list .ul .li .maker .ttl {
		font-size: 20px;
		margin-bottom: 10px;
	}	
	
}

/*----- recruit -----*/

/* message, who */

.rc_msg {
	padding: 90px 0 120px;
}
.rc_msg .frame {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}
.rc_msg .frame .conts {
	width: 50%;
}
.rc_msg .frame .conts .name {
	display: flex;
	gap: 0 20px;
	align-items: baseline;
	margin-top: 50px;
	letter-spacing: 1px;
}
.rc_msg .frame .conts .name p:nth-of-type(2) {
	font-size: 25px;
	font-weight: 700;
}
.rc_msg .frame .pic {
	width: 42.25%;
}

.rc_who {
	padding: 100px 0 10px;
	background: #f5f197;
}
.rc_who .ul {
	margin-top: 75px;
}
.rc_who .ul .li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 90px;
}
.rc_who .ul .li .conts {
	width: 61%;
}
.rc_who .ul .li:nth-of-type(2n+1) .conts {
	order: 2;
}
.rc_who .ul .li .conts .ttl {
	margin-bottom: 20px;
	font-size: 33px;
	line-height: 1.75;
}
.rc_who .ul .li .pic {
	width: 33.33%;
}
.rc_who .ul .li .pic img {
	aspect-ratio: 10/7;
}

@media screen and (min-width: 768px) and (max-width: 1260px){
    
	.rc_msg {
		padding: 8vw 0 9vw;
	}
	.rc_msg .frame {
		margin-top: 5vw;
	}
	.rc_msg .frame .conts {
		width: 52%;
	}
	.rc_msg .frame .conts .name {
		gap: 0 2vw;
		margin-top: 4vw;
	}
	.rc_msg .frame .conts .name p:nth-of-type(2) {
		font-size: 2.5vw;
	}

	.rc_who {
		padding: 8vw 0 1vw;
	}
	.rc_who .ul {
		margin-top: 6vw;
	}
	.rc_who .ul .li {
		margin-bottom: 7vw;
	}
	.rc_who .ul .li .conts {
		width: 63%;
	}
	.rc_who .ul .li .conts .ttl {
		margin-bottom: 1vw;
		font-size: 2.5vw;
		line-height: 1.5;
	}
	.rc_who .ul .li .pic {
		width: 33.33%;
	}
	
}
@media screen and (max-width: 767px){
    
	.rc_msg {
		padding: 50px 0;
	}
	.rc_msg .frame {
		display: block;
		margin-top: 30px;
	}
	.rc_msg .frame .conts {
		width: 100%;
	}
	.rc_msg .frame .conts .name {
		gap: 0 15px;
		margin-top: 20px;
	}
	.rc_msg .frame .conts .name p:nth-of-type(2) {
		font-size: 22px;
	}
	.rc_msg .frame .pic {
		margin: 30px auto 0;
		width: min(400px,100%);
	}

	.rc_who {
		padding: 50px 0 10px;
	}
	.rc_who .ul {
		margin-top: 30px;
	}
	.rc_who .ul .li {
		display: block;
		margin-bottom: 40px;
	}
	.rc_who .ul .li .conts {
		width: 100%;
	}
	.rc_who .ul .li .conts .ttl {
		margin-bottom: 10px;
		font-size: min(6vw,25px);
		line-height: 1.5;
	}
	.rc_who .ul .li .pic {
		margin: 20px auto 0;
		width: min(400px,100%);
	}
    
}

/* need, job, form */

.rc_need {
	background: var(--grey);
	padding: 120px 0;
  background: url(/system_panel/uploads/images/mission_bg.jpg) center no-repeat;
    background-size: cover;
}
.rc_need .m_title.m_center .en{
color: var(--yellow);
}
.rc_need .m_title .ttl{
      color: var(--white);
}
.rc_need .ul {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	gap: 0 2%;
}
.rc_need .ul .li {
	width: 32%;
	padding: 45px 0;
	background: var(--white);
	border: 1px solid #d2e9f2;
}
.rc_need .ul .li p {
	font-size: 21px;
	text-align: center;
}

.rc_job {
	padding: 120px 0;
}
.rc_job .dl {
	margin-top: 50px;
}
.rc_job .dl > div {
	display: flex;
	gap: 0 5px;
	box-sizing: border-box;
	font-size: 16px;
}
.rc_job .dl .dt {
	width: 15%;
	padding: 25px 30px;
	border-bottom: 1px solid var(--blue_dark);
	color: var(--blue_dark);
}
.rc_job .dl .dd {
	width: calc(85% - 5px);
	padding: 25px 30px;
	border-bottom: 1px solid var(--text);
}

.form_area.recruit {
	background: var(--grey);
	padding-bottom: 100px;
}

@media screen and (min-width: 768px) and (max-width: 1260px){
	
	.rc_need {
		padding: 8vw 0;
	}
	.rc_need .ul {
		margin-top: 4vw;
	}
	.rc_need .ul .li {
		padding: 4vw 0;
	}
	.rc_need .ul .li p {
		font-size: 1.75vw;
	}

	.rc_job {
		padding: 8vw 0;
	}
	.rc_job .dl {
		margin-top: 4vw;
	}
	.rc_job .dl > div {
		font-size: 1.5vw;
	}
	.rc_job .dl .dt,
	.rc_job .dl .dd {
		padding: 2.5vw 2vw;
	}

	.form_area.recruit {
		padding-bottom: 8vw;
	}

}
@media screen and (max-width: 767px){
	
	.rc_need {
		padding: 50px 0;
	}
	.rc_need .ul {
		display: block;
		margin-top: 30px;
	}
	.rc_need .ul .li {
		width: min(400px,100%);
		margin: 0 auto 10px;
		padding: 20px 0;
	}
	.rc_need .ul .li p {
		font-size: min(5vw,18px);
	}

	.rc_job {
		padding: 50px 0 75px;
	}
	.rc_job .dl {
		margin-top: 30px;
	}
	.rc_job .dl > div {
		display: block;
		font-size: 16px;
	}
	.rc_job .dl .dt {
		width: 100%;
		padding: 25px 0 0;
		border-bottom: none;
	}
	.rc_job .dl .dd {
		width: 100%;
		padding: 15px 0 25px;
		line-height: 1.5;
	}

	.form_area.recruit {
		padding-bottom: 50px;
	}
    
}

/*----- contact -----*/

.contact_tel {
	padding: 120px 0 60px;
}
.contact_tel .frame {
	display: flex;
	align-items: center;
}
.contact_tel .frame .m_title {
	width: 340px;
}
.contact_tel .frame .telbox {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 520px;
	height: 140px;
	background: url("/system_panel/uploads/images/tel_bg.png") center no-repeat;
	background-size: cover;
	text-align: center;
}
.contact_tel .frame .telbox .tel a {
	display: block;
	margin-bottom: 10px;
	color: var(--text);
	font-size: 43px;
	font-weight: 400;
	font-family: "Jost", sans-serif;
	letter-spacing: 3px;
}

.form_area {
	padding: 100px 0 0;	
}

.complete {
	padding: 90px 0 0;
}

@media screen and (min-width: 768px) and (max-width: 1260px){
    
	.contact_tel {
		padding: 8vw 0 2vw;
	}
	.contact_tel .frame .m_title {
		width: 33vw;
	}
	.contact_tel .frame .telbox {
		width: 50vw;
		height: 13vw;
	}
	.contact_tel .frame .telbox .tel a {
		margin-bottom: 1vw;
		font-size: 4vw;
		letter-spacing: .3vw;
	}

	.form_area {
		padding: 8vw 0 0;	
	}

	.complete {
		padding: 7.5vw 0 0;
	}
	
}
@media screen and (max-width: 767px){
    
	.contact_tel {
		padding: 50px 0 0px;
	}
	.contact_tel .frame {
		display: block;
	}
	.contact_tel .frame .m_title {
		width: 100%;
	}
	.contact_tel .frame .telbox {
		margin: 30px auto 0;
		width: min(400px,100%);
		height: 140px;
	}
	.contact_tel .frame .telbox .tel a {
		font-size: min(12vw,36px);
		letter-spacing: 3px;
	}

	.form_area {
		padding: 50px 0 0;	
	}
	
	.complete {
		padding: 50px 0 30px;
	}
	
}

@media screen and (max-width: 520px){
  .svc_head .ttl .text {font-size: 21px;}
}
@media screen and (min-width: 768px){
  .spbr br{display:none;}
}
@media screen and (min-width: 1800px){
  .rc_job .dl .dd br{display:none;}
}
