@charset "utf-8";

.top-banner {
    margin-top: -20px;
    padding-bottom: 120px;
}

.top-banner > img {
    width: 1225px;
}

.top-banner .__content {
    margin-top: 120px;
}

.top-banner .__content img {
    margin: 0 auto;
}

.top-banner h3 {
    font-size: 36px;
    margin: 25px 0px;
    font-weight: 500;
    line-height: 1.5;
}

.indexNews {
    overflow: hidden;
    background-color: #ecf3fa;
    padding: 120px 0px 100px;
    position: relative;
}

.indexNews::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/car-bg-compressed.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}

.indexNews .container {
    position: relative;
    z-index: 2;
}

.block-title .__big {
    font-size: 70px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.block-title .__small {
    font-size: 15px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: block;
    position: relative;
}

.block-title .__small:before {
	position:  absolute;
	top: 50%;
	left: calc( 50% + 46px );
	content: "";
	background-color: #3177ab;
	width: 30px;
	height: 1px;
}

.news-block {
    flex-wrap: wrap;
    column-gap: 60px;
}

.new-list {
    flex: 1;
}

.new-item {
    display: block;
    background-color: #ffffffcc;
    padding: 12px 16px;
    border-radius: 6px;
    color: #3177ab;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.new-date {
    font-size: 13px;
    text-transform: uppercase;
}

.instagram-block {
    margin-top: 60px;
    column-gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.instagram-block h2 {
    font-size: 50px;
    letter-spacing: 1px;
	line-height: 1.4;
}

.instagram-block h2 a {
	display: inline-block;
}

.insta-list {
    flex: 1;
    max-width: 615px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.insta-item {
    display: block;
    background-color: #3177ab;
    width: 186px;
    height: 186px;
}

.page-on-site {
    padding: 120px 0px 100px;
    overflow: hidden;
}

.page-on-site .container {
    max-width: 1100px;
}

.page-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    column-gap: 48px;
    row-gap: 30px;
}

.page__item {
    width: calc(100%/2 - 24px);
    margin-bottom: 20px;
}

.page__item:nth-child(2n + 2) {
    margin-top: 68px;
}
 
.page__item .__thumb {
    position: relative;
}

.page__item .__thumb h3 {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -62%);
    line-height: 1;
    font-size: 55px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.page__item .txt {
    padding: 20px 38px 30px;
}

.page__item .btn {
    margin: 0 auto;
}

.btn {
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #3177ab;
    position: relative;
    display: block;
    width: fit-content;
    padding: 15px 30px;
    border-radius: 62px;
    min-width: 280px;
    text-align: center;
    color: #3177ab;
    letter-spacing: 2px;
}

.btn::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 32px;
    background-color: #3177ab;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    transition: 0.25s;
}

.btn:hover {
    background-color: #3177ab;
    color: #fff;
}

.btn:hover::after {
    background-color: #fff;
}

.recruit {
    padding-bottom: 20px;
}

.recruit-link-to {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 600;
    color: #3177ab;
    letter-spacing: 2px;
}


/*=========== Responsive style ===========*/

@media only screen and (max-width: 1600px) {
    .top-banner > img {
        max-width: 82%;
    }
}

@media only screen and (max-width: 1400px) {
    .top-banner > img {
        max-width: 80%;
    }
}

@media only screen and (max-width: 1200px) {
    .top-banner {
        margin-top: 30px;
        padding-bottom: 70px;
    }

    .page-list {
        column-gap: 24px;
    }

    .page__item {
        width: calc(100% / 2 - 12px);
    }

    .page__item .__thumb h3 {
        font-size: 42px;
    }

    .news-block {
        column-gap: 30px;
    }

    .block-title .__big {
        font-size: 56px;
    }
    
    .block-title .__small {
        font-size: 14px;
    }

    .instagram-block h2 {
        font-size: 42px;
    }

    .top-banner .__content {
        margin-top: 60px;
    }

    .top-banner h3 {
        font-size: 32px;
    }

    .indexNews {
        padding: 80px 0px 60px;
    }
}

@media only screen and (max-width: 1024px) {
    .page__item .__thumb h3 {
        font-size: 34px;
    }

    .page-on-site {
        padding: 60px 0px 80px;
        overflow: hidden;
    }

    .insta-list {
        flex: unset;
        width: 100%;
        padding-top: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .top-banner > img {
        max-width: 92%;
    }
    
    .page__item {
        max-width: 510px;
        width: 100%;
        margin-top: 0px !important;
    }

    .page-list {
        row-gap: 60px;
    }

    .btn {
        font-size: 14px;
        min-width: 220px;
        padding: 10px 20px;
    }

    .new-list {
        flex: unset;
        width: 100%;
        padding-top: 25px;
    }

    .instagram-block {
        margin-top: 40px;
    }

    .indexNews {
        padding: 45px 0px 50px;
    }

    .block-title .__big {
        font-size: 34px;
    }

    .block-title .__small {
        font-size: 12px;
    }

    .instagram-block h2 {
        font-size: 34px;
    }

    .top-banner {
        padding-bottom: 55px;
    }

    .top-banner .__content {
        margin-top: 40px;
    }

    .top-banner h3 {
        font-size: 26px;
    }

    .insta-list {
        gap: 10px;
        justify-content: flex-start;
    }

    .page__item .txt {
        padding: 15px 40px 20px;
    }
				.top-banner .text-center {
				text-align: left;
    }
				
				.recruit-link-to {
					font-size: 18px;
				}

}

@media only screen and (max-width: 479px) {
    .insta-list li {
        width: 100%;
    }

    .insta-list {
        justify-content: center;
    }

    .insta-item {
        width: 100%;
        margin: 0 auto;
    }

    .top-banner .__content img {
        max-width: 200px;
    }
}

@media only screen and (max-width: 360px) {
    .page__item .__thumb h3 {
        font-size: 30px;
    }

    .tel__phone {
        font-size: 32px;
    }

    .tel__phone img {
        max-width: 24px;
    }
}

@media only screen and (max-width: 320px) {

}


/*news--------------------------------------------------*/
#second.news .ttl {
	padding: 0 20px;
	background: url(../images/back_news.jpg) no-repeat center center;
	background-size: cover;
}

#second.news .new-list {
	margin-bottom: 60px;
}

#second.news .new-list li {
	border-bottom: 1px dotted #3177ab;
}

#second.news .new-list li p {
	margin: 0;
}

#second.news .new-item {
	font-size: 16px;
	padding: 20px;
	margin-bottom: 0;
	text-decoration: none;
}

.newsDetail {
	padding: 0 0 40px;
}


/*about--------------------------------------------------*/
#second.company .ttl {
	padding: 0 20px;
	background: url(../images/back_company.jpg) no-repeat center center;
	background-size: cover;
}

.company .greeting {
}

.company .greeting .cont {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.company .greeting .text p {
	margin: 0 0 30px;
}

.company .greeting .photo {
	position: relative;
 width: 400px;
	height: auto;
	margin: 30px 0 0;
}

.company .greeting .photo img {
	border: 4px solid #FFF;
}

.company .greeting .photo p {
	margin: 8px 0 0;
	line-height: 1.4;
}

.company .greeting .photo:after {
	position: absolute;
	top: 10%;
	left: 10%;
 width: 100vw;
	height: 100%;
	background-color: #CEE0F2;
	content: "";
	z-index: -2;
	border-radius: 0 0 0 10px;
}

/*.company .greeting .photo:before {
	position: absolute;
	content: "";
	top: 10px;
	left: 10px;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(-45deg, #666666, #666666 2px, transparent 2px, transparent 4px);
	z-index: -1;
}*/

.company .greeting .inner {
	position: relative;
}

.company .greeting .inner:before {
	position: absolute;
	top: 98px;
	left: -20px;
	content: "GREETING";
	font-size: 60px;
	font-family: "Arial Black", Gadget, sans-serif;
	color: #3262AB;
 -webkit-text-fill-color: white;
 -webkit-text-stroke: 0.5px #3262AB;
	z-index: -1;
	transform: rotate(90deg);
	transform-origin: left top;
}

.company .about {
	background: linear-gradient(90deg, rgb(235, 242, 250), rgb(199, 232, 239));
}

.company .about .inner h2 {
	position: relative;
}

.company .about .inner h2:before {
	position: absolute;
	content: "COMPANY INFO";
	font-size: 60px;
	top: 10px;
	right: -60px;
	font-family: "Arial Black", Gadget, sans-serif;
	color: #3262AB;
 -webkit-text-fill-color: transparent;
 -webkit-text-stroke: 0.5px #3262AB;
}

.company .about .inner a {
	text-decoration: underline;
	color: #3177ab;
}

.company .about .aboutTb {
	padding: 20px;
	background-color: #FFF;
	border-radius: 0 10px 0 10px;
}

.company .about .aboutTb table {
	width: 100%;
	margin: 0 0 20px;
}

.company .about .aboutTb table th {
	width: 240px;
	padding: 20px;
	text-align: left;
	vertical-align: top;
	font-weight: 400;
	border-bottom: 3px solid #3177ab;
}

.company .about .aboutTb table td {
	padding: 20px 20px 20px 40px;
	border-bottom: 1px solid #CCC;
}

.company .about .aboutTb table td ul {
	margin-left: 20px;
}

.company .about .aboutTb table td ul li {
	list-style: circle;
}

.company .about .aboutTb table td ul li ul {
	margin-bottom: 8px;
}

.company .about .aboutTb table td ul li ul li {
	list-style: none;
}

.company .about .aboutTb table td ul li dl {
	line-height: 1.5;
}

.company .about .aboutTb table td ul li dt {
	font-weight: 500;
}

.company .about .aboutTb table td ul li dd {
	margin: 0 0 6px;
}

.company .about .aboutTb table td ul li:last-child dd {
	margin: 0;
}

.kigyourinen,
.keieirinen {
	display: flex;
	background: url(../images/back_grid.gif);
}

.kigyourinen .photo {
	width: 50%;
	background: url(../images/rinen-01.jpg) no-repeat center center;
	background-size: cover;
}

.kigyourinen .text {
	width: 50%;
	padding: 100px 20px;
	text-align: center;
}

.kigyourinen .text h2 {
	position: relative;
	margin: 0 0 40px;
	letter-spacing: 0.1em;
	font-size: 40px;
}

.kigyourinen .text h2:before {
	position: absolute;
	content: "";
	background-color: #3177ab;
	width: 46%;
	height: 2px;
	top: 50%;
	left: -100px;
}

.kigyourinen .text p {
	display: block;
 color: #3177ab;
 background: -webkit-linear-gradient(0deg, #E6439F, #3177AB);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.4;
}

.keieirinen .photo {
	width: 50%;
	background: url(../images/rinen-02.jpg) no-repeat center center;
	background-size: cover;
}

.keieirinen .photo img {
	object-fit: cover;
}

.keieirinen .text {
	width: 50%;
	padding: 100px 20px;
	text-align: center;
}

.keieirinen .text h2 {
	position: relative;
	margin: 0 0 40px;
	letter-spacing: 0.1em;
	font-size: 40px;
}

.keieirinen .text h2:before {
	position: absolute;
	content: "";
	background-color: #3177ab;
	width: 46%;
	height: 2px;
	top: 50%;
	right: -100px;
}

.keieirinen .text p {
	display: block;
 color: #3177ab;
 background: -webkit-linear-gradient(0deg, #3177AB, #E6439F);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.4;
}

.enkaku {
	position: relative;
	margin: 0 0 60px;
}

.enkaku::before {
 position: absolute;
 content: "";
 border: 120px solid #1168AB;
 display: block;
 width: 0;
 height: 0;
 top: 0;
 left: 0;
 border-bottom-color: transparent;
 border-right-color: transparent;
}

.enkaku::after {
 position: absolute;
 content: "";
 border: 120px solid #1168AB;
 display: block;
 width: 0;
 height: 0;
 bottom: 0;
 right: 0;
 border-top-color: transparent;
 border-left-color: transparent;
}

.enkaku .inner {
	position: relative;
}

.enkaku .inner:before {
	position: absolute;
	top: 60px;
	left: 100%;
	content: "HISTORY";
	font-size: 60px;
	font-family: "Arial Black", Gadget, sans-serif;
	color: #3262AB;
 -webkit-text-fill-color: white;
 -webkit-text-stroke: 0.5px #3262AB;
	z-index: -1;
	transform: rotate(90deg);
	transform-origin: left top;
}

.enkaku h2 {
	text-align: center;
}

.enkaku dl {
	margin: 0 0 0 220px;
	display: flex;
	flex-wrap: wrap;
}

.enkaku dl dt {
	position: relative;
	width: 30%;
	padding: 14px 0;
}

.enkaku dl dt:after {
	position: absolute;
	content: "";
	border-radius: 100vh;
	width: 8px;
	height: 8px;
	background-color: #cee0f2;
	border: 2px solid #1168AB;
	top: 23px;
	right: 50px;
}

.enkaku dl dd {
	position: relative;
	width: 70%;
	padding: 14px 0 14px 0;
}

.enkaku dl dd:before {
	position: absolute;
	top: 0;
	left: -56px;
	background-color: #CCC;
	width: 1px;
	height: 100%;
	content: "";
	z-index: -1;
}

/*work--------------------------------------------------*/
#second.work .ttl {
	padding: 0 20px;
	background: url(../images/back_work.jpg) no-repeat center 30%;
	background-size: cover;
}

.workAbout {
	padding: 60px 0 0;
	display: flex;
	align-items: center;
}

.workAbout .text {
	width: 50%;
	position: relative;
}

.workAbout .text .box {
	position: absolute;
	width: 580px;
	margin: 0 0 0 auto;
	right: -40px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #FFF;
	padding: 20px 30px;
}

.workAbout .text .box h2 {
	margin: 0 0 30px;
	font-size: 40px;
	letter-spacing: 0.08em;
}

.workAbout .text .box p {
	line-height: 1.8;
}

.workAbout .photo {
	width: 50%;
	object-fit: contain;
}

.workPhoto {
	position: relative;
}

.workPhoto:before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	content: "";
	background-color: #CEE0F2;
	z-index: -1;
}

.workPhoto ul {
	display: flex;
	gap: 80px;
	justify-content: center;
}

.workTime h2 {
	text-align: center;
}

.workTime .han {
	display: flex;
	gap: 80px;
	position: relative;
	margin: 0 0 80px;
}

.workTime .han p {
	font-size: 26px;
	font-weight: 600;
	position: absolute;
	top: -24px;
}

.workTime .han .han1 {
	width: 50%;
	padding: 30px;
	background-color: #F2F2CE;
	border-radius: 12px 0 12px 0;
}

.workTime .han .han2 {
	width: 50%;
	background-color: #E0F2CE;
	padding: 30px;
	border-radius: 12px 0 12px 0;
}

.workTime .han dl {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.workTime .han dt {
	position: relative;
	color: #3177ab;
	font-weight: 600;
	font-size: 24px;
	width: 180px;
	padding-bottom: 10px;
}

.workTime .han dt:before {
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	background-color: #CCC;
	top: 20px;
	right: 36px;
}

.workTime .han dt:after {
	position: absolute;
	content: "";
	background-color: #FFF;
	border: 3px solid #3177ab;
	top: calc( 50% - 10px);
	right: 30px;
	border-radius: 100vh;
	width: 8px;
	height: 8px;
}

.workTime .han dd {
	width: calc( 100% - 180px);
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 10px;
}

.workTime .photos {
	position: relative;
}

.workTime .photos:before {
	position: absolute;
	width: 100vw;
	height: 76%;
	background-color: #CEE0F2;
	content: "";
	margin: 0 calc(50% - 50vw) 30px;
	top: 8%;
}

.workTime ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 40px;
	line-height: 1.4;
}

.workTime ul li {
	position: relative;
}

.workTime ul li img {
	display: block;
	margin: 0 0 8px;
	width: auto;
	height: 200px;
	border-radius: 12px 0 12px 0;
}

.workTime ul.l {
	gap: 80px;
}

.workTime ul.l li:before {
	position: absolute;
	top: calc( 50% - 40px);
	right: -60px;
	width: 40px;
	height: 32px;
	background: url(../images/arrow-01.png);
	background-size: 40px;
	content: "";
}

.workTime ul.r {
	gap: 60px;
	justify-content: right;
}

.workTime ul.r li:before {
	position: absolute;
	top: calc( 50% - 24px);
	left: -50px;
	width: 40px;
	height: 32px;
	background: url(../images/arrow-01.png);
	background-size: 40px;
	content: "";
}

.workTime ul.l li strong,
.workTime ul.r li strong {
	font-size: 18px;
}


/*number--------------------------------------------------*/
#second.number .ttl {
	padding: 0 20px;
	background: url(../images/back_number.jpg) no-repeat center 30%;
	background-size: cover;
}

.numList {
	max-width: 1032px;
	margin: 0 auto;
	padding: 60px 20px;
}

.numList h2 {
	margin: 0 0 40px;
	font-size: 40px;
}

.numList ul {
	margin: 0 0 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.numList ul li {
	width: 48%;
	margin: 0 0 40px;
	background-color: #F7F7F7;
	padding: 20px;
	border-radius: 10px 0 10px 0;
}

.numList ul li h3 {
	margin: 0 0 10px;
	font-size: 24px;
	border-bottom: 3px solid #CCC;
}

.numList ul li img {
	display: block;
	margin: 0 auto 10px;
}

.numList ul li p {
	line-height: 1.4;
}

.nenkyu {
    width: 100%;
}

.nenkyuLead {
    margin: 12px 0 4px;
    font-weight: 500;
}

.nenkyu {
    border-top: 1px solid #AAA;
}

.nenkyu th {
    background-color: #EEE;
    padding: 4px;
    text-align: center;
    border-right: 1px dotted #AAA;
    border-bottom: 1px dashed #AAA;
}

.nenkyu th:last-child {
    border-right: none;
}

.nenkyu td {
    background-color: #FFF;
    padding: 4px;
    text-align: center;
    border-right: 1px dotted #AAA;
    border-bottom: 1px solid #AAA;
}

.nenkyu td:last-child {
    border-right: none;
}


/*faq--------------------------------------------------*/
#second.faq .ttl {
	padding: 0 20px;
	background: url(../images/back_faq.jpg) no-repeat center 30%;
	background-size: cover;
}

.qa .qaList {
	margin: 0 0 40px;
}

.qa .qaList .title {
	cursor: pointer;
}

.qa .qaList .title .title-q {
	background-color: #3177ab;
	color: #FFF;
	font-weight: 500;
	font-size: 20px;
 padding: 16px 25px;
	line-height: 1.8;
}

.qa .qaList .title .title-text {
	width: 100%;
	font-weight: 500;
	padding: 20px 40px 20px 20px;
	/*background-color: #F3F2F1;*/
}

.qa .qaList span {
	display: inline-block;
}

.qa .qaList .in {
	display: flex;
	align-items: start;
}

.qa .qaList dt .in {
	background-color: #F3F2F1;
	background-image: url(../images/plus.png);
	background-repeat: no-repeat;
	background-position: 98% center;
}

.qa .qaList .title-a {
 display: inline-block;
	font-weight: 500;
	font-size: 20px;
 padding: 16px 25px;
	color: #3177ab;
	line-height: 1.8;
}

.qa .qaList dd {
	display: none;
	border-bottom: 1px dotted #CCC;
}

.qa .qaList .answer-text {
 display: block;
	padding: 19px 60px 18px 20px;
	line-height: 1.8;
	background-color: #FFF;
	width: 100%;
}

.faq .inner a {
	text-decoration: underline;
	color: #3177ab;
}


/*interview--------------------------------------------------*/
#second.interview .ttl {
	padding: 0 20px;
	background: url(../images/back_interview.jpg) no-repeat center 50%;
	background-size: cover;
}

.personBox {
	position: relative;
	display: flex;
	padding: 60px 20px 0;
	max-width: 1032px;
	margin: 0 auto;
	justify-content: flex-end;
}

.personBox:before {
	position: absolute;
	top: 160px;
	left: 0;
	width: calc( 100vw - 100px );
	height: calc( 100% - 100px );
	margin:	0 calc(50% - 50vw);
	background-color: #CEE0F2;
	content: "";
	border-radius: 0 40px 40px 0;
}

.personBox .text {
	position: absolute;
	z-index: 10;
	bottom: 40px;
	left: 0;
}

.personBox .text .lead p {
	display: inline-block;
	background-color: #FFF;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.4;
	margin: 0 0 40px;
	padding: 0 8px;
}

.personBox .text .lead .num {
 font-family: "Lato", sans-serif;
 font-weight: 400;
 font-style: italic;
	font-size: 40px;
	line-height: 1.4;
	text-shadow: 1px 1px 1px #FFF,
	 1px -1px 1px #FFF,
	 -1px 1px 1px #FFF,
	 -1px -1px 1px #FFF,
	 3px 3px 10px #FFF,
		-3px -3px 10px #FFF;
}

.personBox .text .lead .num span {
	font-size: 60px;
	margin-left: 16px;
}

.personBox .text .class p {
	position: relative;
	font-size: 20px;
	font-weight: 500;
}

.personBox .text .class p span.ib {
	display: inline-block;
	padding: 0 8px;
	background-color: #FFF;
}


.personBox .photo {
	position: relative;
	max-width: 90%;
	z-index: 1;
}

.intqaBox {
	margin: 80px 0 0;
	padding: 0 0 20px;
	border-bottom: 1px dashed #CCC;
}

.intqaBox .intqa {
	margin: 0 0 20px;
}

.intqaBox .intqa dt {
	position: relative;
 font-family: "Lato", sans-serif;
	font-size: 24px;
 font-weight: 400;
 font-style: italic;
	color: #3177ab;
	line-height: 1.2;
}

.intqaBox .intqa dt span {
	font-size: 30px;
}

.intqaBox .intqa dt:before {
	position: absolute;
	width: 30px;
	height: 30px;
	top: -6px;
	left: -10px;
	content: "";
	transform: rotate(-45deg);
	background-color: #ebf2fa;
	z-index: -1;
}

.intqaBox .intqa dd {
	font-weight: 600;
	font-size: 24px;
	color: #000;
}

.intqaBox p {
	margin: 0 0 20px 40px;
	font-size: 18px;
}

.intqaBox p:nth-of-type(1) {
	position: relative;
}

.intqaBox p:nth-of-type(1):before {
	position: absolute;
	content: "";
	top: 16px;
	left: -32px;
	width: 24px;
	height: 2px;
	background-color: #3177ab;
}

.intqaBox img {
	margin: 0 20px 20px;
}

.intMv {
	margin: 60px 0 40px;
}

.intMv video {
	width: 100%;
	height: auto;
}

/*benefits--------------------------------------------------*/
#second.benefits .ttl {
	padding: 0 20px;
	background: url(../images/back_benefits.jpg) no-repeat center 30%;
	background-size: cover;
}

.bene01 p {
	margin: 0 0 40px;
}

.bene01 table {
	margin: -30px 0 40px;
}

.bene01 table th {
	padding: 8px;
	border: 1px solid #CCC;
}

.bene01 table td {
	width: 12%;
	padding: 8px;
	border: 1px solid #CCC;
}

.bene01 table tr:nth-child(1) {
	background-color: #F3F2F1;
}

.bene01 table tr:nth-child(2) td {
	text-align: right;
}

.bene01 ul {
	margin: 0 0 0 32px;
}

.bene01 ul li {
	list-style: disc;
}

.bene02 {
	background: linear-gradient(90deg, rgb(235, 242, 250), rgb(199, 232, 239));
}

.bene02 .step {
	background: url(../images/benefits-01.png) no-repeat 100% 0;
	background-size: 400px;
	min-height: 257px;
}

.bene02 .step ul {
	display: flex;
}

.bene02 .step ul li {
	font-size: 24px;
	padding-right: 35px;
	padding-left: 10px;
	background: url(../images/arrow-01.png) no-repeat 100% 14px;
	background-size: 24px;
	font-weight: 500;
}

.bene02 .step ul li:first-child {
	padding-left: 0;
}

.bene02 .step ul li:last-child {
	background: none;
}

.bene02 .step p {
	margin-bottom: 40px;
}

#second .bene01 .inner h3 {
	position: relative;
	border-bottom: 1px solid #CCC;
}

#second .bene01 .inner h3:before {
	position: absolute;
	content: "";
	bottom: -1px;
	left: 0;
	background-color: #3177ab;
	width: 200px;
	height: 1px;
}

#second .bene01 .inner h3:after {
	position: absolute;
	width: 30px;
	height: 30px;
	top: -6px;
	left: -10px;
	content: "";
	transform: rotate(-45deg);
	background-color: #ebf2fa;
	z-index: -1;
}

#second .bene03 ul {
	display: flex;
	flex-wrap: wrap;
}

#second .bene03 ul li {
	width: 32%;
	margin: 0 0 40px;
	text-align: center;
	border: 2px solid #439FE6;
	padding: 16px;
	border-radius: 16px;
	font-weight: bold;
	font-size: 20px;
	letter-spacing: 0.04em;
	background-color: #EFF8FA;
}

#second .bene03 ul li:nth-child(3n-1) {
	margin: 0 2% 40px;
}

#second .bene03 ul li span {
	margin-left: 8px;
}

#second .bene03 ul li img {
	display: block;
	margin: 0 auto;
}



/*requirements--------------------------------------------------*/
#second.requirements .ttl {
	padding: 0 20px;
	background: url(../images/back_requirements.jpg) no-repeat center 30%;
	background-size: cover;
}

.reqInfo {
	margin: 0 0 20px;
	background-color: #CEE0F2;
	padding: 20px;
}

.requirements h3 {
	position: relative;
	display: inline-block;
	padding: 0 10px 0 24px;
	background-color: #004080;
	color: #FFF;
	
}

.requirements h3:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 20px #FFF;
  border-bottom: solid 54px transparent;
  z-index: 1;
}

.requirements h3:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 20px transparent;
  border-bottom: solid 54px #FFF;
  z-index: 1;
}

.reqDetail table {
	margin: 0 0 40px;
	width: 100%;
	line-height: 1.6;
}

.reqDetail table tr:hover {
	background-color: #F7F7F7;
}

.reqDetail table th {
	width: 200px;
	text-align: left;
	vertical-align: top;
	padding: 20px 12px;
	border-bottom: 1px solid #3177ab;
}

.reqDetail table td {
	padding: 20px 20px 20px 24px;
	border-bottom: 1px solid #CCC;
}

.reqDetail table td ul {
	margin: 0 0 0 20px;
}

.reqDetail table td ul li {
	list-style: disc;
}

.reqDetail table td dl {
    display: flex;
    flex-wrap: wrap;
}

.reqDetail table td dl dt {
    width: 140px;
    padding: 4px 0;
}

.reqDetail table td dl dd {
    width: calc( 100% - 140px );
    padding: 4px;
    position: relative;
}

.reqDetail table td dl dd:before {
    position: absolute;
    content: "：";
    top: center;
    left: -20px;
}

.jinbutu {
	margin: 0 0 60px;
	background: url(../images/back_grid.gif);
}

.jinbutu .inner {
	display: flex;
	gap: 100px;
	align-items: center;
	font-weight: bold;
}

#second .inner .lCont h2 {
	margin: 0;
	padding: 0 16px;
}

.jinbutu .inner dt {
	margin: 0 0 8px;
	display: inline-block;
	padding: 4px 24px;
	background-color: #3177ab;
	color: #FFF;
	border-radius: 100vh;
	font-size: 20px;
}

.jinbutu .inner p {
	margin: 0 0 30px;
}

.reqFlow {
	margin: 0 0 80px;
	background: linear-gradient(90deg, rgb(235, 242, 250), rgb(199, 232, 239));
}

.reqFlow dl {
	padding: 0 0 40px;
	position: relative;
	z-index: 10;
}

.reqFlow dl:before {
	position: absolute;
	width: 12px;
	height: 100%;
	content: "";
	background-color:#E6439F;
	top: 2px;
	left: 14px;
}

.reqFlow dl:last-child {
	margin: 0;
}

.reqFlow dl:last-child:before {
	display: none;
}

.reqFlow dl dt {
	position: relative;
	z-index: 12;
	margin: 0 0 8px;
	line-height: 40px;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.04em;
	z-index: 10;
}

.reqFlow dl dt span {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 100vh;
	background-color:#E6439F;
	color: #FFF;
	margin-right: 8px;
}

.reqFlow dl dd {
	padding: 0 0 0 48px;
}


/*entry--------------------------------------------------*/
#second.entry .ttl {
	padding: 0 20px;
	background: url(../images/back_entry.jpg) no-repeat center 30%;
	background-size: cover;
}

.hs {
	color: #F00;
}

#second.entry .form table {
	width: 100%;
	margin: 40px 0;
}

#second.entry .form table th {
	padding: 24px 10px;
	text-align: left;
	font-weight: normal;
	width: 200px;
	border-bottom: 1px solid #CCC;
}

#second.entry .form table td {
	padding: 24px 10px;
	border-bottom: 1px solid #CCC;
}

#second.entry .form table td input {
 font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN W3", "Kozuka Gothic Pr6N", "Helvetica Neue", "Helvetica", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-size: 16px;
	padding: 4px;
	margin: 4px;
}

#second.entry .form table td input.l {
	width: 100%;
}

#second.entry .form table td input.m {
	width: 50%;
}

#second.entry .form table td input.ss {
	width: 60px;
}

#second.entry .form table td input.zip {
	width: 140px;
}

#second.entry .form table td textarea {
 font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN W3", "Kozuka Gothic Pr6N", "Helvetica Neue", "Helvetica", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-size: 16px;
	display: block;
	width: 100%;
	height: 160px;
	padding: 4px;
}

.formBtn {
	margin: 0 0 60px;
	text-align: center;
}

.formBtn input {
	margin: 0 10px;
	padding: 6px 10px;
 font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN W3", "Kozuka Gothic Pr6N", "Helvetica Neue", "Helvetica", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-size: 16px;
	cursor: pointer;
}



@media only screen and (max-width: 1200px) {

/*interview--------------------------------------------------*/
.personBox .text {
	left: 60px;
}


}



@media only screen and (max-width: 1032px) {

/*work--------------------------------------------------*/
.workAbout {
	display: block;
}

.workAbout .text {
	position: static;
	width: 100%;
}

.workAbout .text .box {
	position: static;
	width: 100%;
	top: unset;
	right: unset;
	transform: none;
	padding: 0 30px;
	background-color: transparent;
}

.workAbout .photo {
	width: 100%;
	padding: 30px;
}

.workAbout .photo img {
	object-fit: unset;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}



/*interview--------------------------------------------------*/
.personBox {
	flex-direction: column;
}

.personBox:before {
	top: 60px;
	width: calc( 100vw - 40px );
	height: 100%;
}

.personBox .text {
	position: static;
	margin: 20px 0 0;
}

.personBox .text .lead .num {
	font-size: 30px;
}

.personBox .text .lead .num span {
	font-size: 40px;
}

.personBox .text .lead p {
	font-size: 22px;
}

.personBox .photo {
	position: static;
	margin: 0 auto 0;
}

.intqaBox {
	margin: 80px 20px 0;
}



}


@media only screen and (max-width: 960px) {

/*about--------------------------------------------------*/

.company .greeting .cont {
	display: block;
	margin: 0 0 40px;
}

.company .greeting .photo {
	width: 100%;
}

.company .greeting .photo img {
	display: block;
	margin: 0 auto;
}

.company .greeting .photo p {
	text-align: center;
}

	

}


@media only screen and (max-width: 768px) {


#second .inner h2 {
	font-size: 26px;
}

/*about--------------------------------------------------*/

.company .about .inner h2:before {
	font-size: 30px;
	right: 0;
}

.company .about .aboutTb table th {
	display: block;
	width: 100%;
	padding: 8px;
	font-weight: 600;
}

.company .about .aboutTb table td {
	display: block;
	width: 100%;
	padding: 8px 8px 12px;
	border: none;
}

.company .about .aboutTb table td ul li ul {
	margin-bottom: 0;
	margin-left: 14px;
}

.company .greeting .photo:after {
	width: 100%;
	left: unset;
	right: -20px;
}

.kigyourinen {
	display: block;
}

.kigyourinen .photo,
.keieirinen .photo {
	width: 100%;
	height: 240px;
}

.kigyourinen .text,
.keieirinen .text {
	width: 100%;
	padding: 40px 0 50px;
}

.kigyourinen .text h2,
.keieirinen .text h2 {
	font-size: 30px;
	margin: 0 0 20px;
}

.kigyourinen .text h2:before,
.keieirinen .text h2:before {
	width: 2px;
	height: 80px;
	top: -80px;
	left: 50%;
}

.kigyourinen .text p,
.keieirinen .text p {
	font-size: 24px;
}

.keieirinen {
	flex-direction: column;
}

.keieirinen .photo {
	order: 1;
}

.keieirinen .text {
	order: 2;
	width: 100%;
}

.enkaku::before {
	border: 50px solid #1168AB;
 border-bottom-color: transparent;
 border-right-color: transparent;
}

.enkaku::after {
	border: 50px solid #1168AB;
 border-top-color: transparent;
 border-left-color: transparent;
}

.enkaku dl {
	display: block;
	margin: 0;
}

.enkaku dl dt {
	padding: 4px 8px 0 16px;
	width: 100%;
	font-weight: 500;
}

.enkaku dl dd {
	padding: 4px 4px 14px;
	width: 100%;
}

.enkaku dl dt:before {
	position: absolute;
	content: "";
	width: calc( 100% - 140px);
	height: 1px;
	background-color: #CCC;
	left: unset;
	right: 0;
	top: 16px;
}

.enkaku dl dt:after {
	top: 11px;
	right: unset;
	left: 0;
}

.company .greeting .inner:before {
	left: 100%;
	font-size: 30px;
}

.enkaku .inner:before {
	font-size: 30px;
	top: 70px;
	left: 100%;
}

/*work--------------------------------------------------*/

.workAbout {
	display: block;
}

.workAbout .text .box h2 {
	margin: 0 0 20px;
	font-size: 26px;
}

.workPhoto:before {
	height: 80%;
}

.workPhoto ul {
	display: block;
}

.workPhoto ul li {
	margin-bottom: 20px;
	text-align: center;
}

.workPhoto ul li img {
	display: block;
	margin: 0 auto;
}

.workTime .han {
	display: block;
}

.workTime .han dt {
	width: 140px;
	font-size: 16px;
}

.workTime .han dd {
	font-size: 16px;
}

.workTime .han .han1 {
	width: 100%;
	margin-bottom: 20px;
}

.workTime .han .han2 {
	width: 100%;
}

.workTime .han p {
	position: relative;
	font-size: 20px;
	top: -10px;
}

.workTime .photos {
	text-align: center;
}

.workTime .photos:before {
	width: 50vw;
	height: calc( 100% + 40px );
	top: -20px;
	left: 0;
}

.workTime ul.l {
	margin: 0;
}

.workTime ul.l,
.workTime ul.r {
	display: block;
}

.workTime ul.l li:before,
.workTime ul.r li:before {
	display: none;
}

.workTime ul.r {
	gap: 0;
}

.workTime ul.l li img,
.workTime ul.r li img {
	display: block;
	margin: 0 auto;
}

.workTime ul.l li,
.workTime ul.r li {
	margin-bottom: 20px;
}


/*number--------------------------------------------------*/
.numList h2 {
	font-size: 26px;
}

.numList ul li h3 {
	font-size: 18px;
}

.numList ul li img {
	width: 100%;
	max-width: 100%;
	height: auto;
}


/*requirements--------------------------------------------------*/
#second .reqDetail .inner h3 {
	font-size: 20px;
}

.requirements h3:before {
	border-bottom: solid 36px transparent;
}

.requirements h3:after {
	border-bottom: solid 36px #FFF;
}

.reqDetail table th {
	display: block;
	width: 100%;
	padding: 10px;
	background-color: #dbe4ed;
}

.reqDetail table td {
	display: block;
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border-bottom: none;
}

.reqDetail table td dl {
    display: block;
}

.reqDetail table td dl dt {
    width: 100%;
    padding: 4px 4px 0;
    font-weight: 500;
}

.reqDetail table td dl dd {
    width: 100%;
    margin: 0 0 4px;
    padding: 0 4px 4px;
    position: static;
    border-bottom: 1px dotted #CCC;
}

.reqDetail table td dl dd:before {
    display: none;
}

#second .inner {
	display: block;
}

#second .inner .rCont {
	margin: 40px 0 0;
}

.jinbutu .inner dt {
	font-size: 20px;
	padding: 0 16px;
}

.jinbutu .inner dd,
.jinbutu .inner p {
	font-weight: normal;
}





/*faq--------------------------------------------------*/
.qa .qaList .title .title-q {
	font-size: 18px;
}

.qa .qaList .answer-text {
 display: block;
	padding: 19px 20px 18px 20px;
}


/*interview--------------------------------------------------*/
.intqaBox .intqa dd {
	font-size: 20px;
	line-height: 1.4;
}

.intqaBox p {
	line-height: 1.6;
}

/*benefits--------------------------------------------------*/
#second .bene03 ul li {
	width: 46%;
	margin: 0 2% 40px;
	font-size: 16px;
}

#second .bene03 ul li:nth-child(3n-1) {
	margin: 0 2% 40px;
}

.bene02 .step ul li {
    font-size: 20px;
    background: url(../images/arrow-01.png) no-repeat 100% 10px;
    background-size: 24px;
}

.bene02 .step {
    background-size: 220px;
    background-position: 50% 100%;
    min-height: 300px;
}

/*entry--------------------------------------------------*/
#second.entry .form table th {
    display: block;
    width: 100%;
    background-color: #E6E6E6;
	padding: 10px;
	text-align: left;
	border-bottom: none;
	font-weight: bold;
}

#second.entry .form table td {
    display: block;
    width: 100%;
	padding: 10px;
	border-bottom: 1px solid #CCC;
}

#second.entry .form table td input.m {
	width: 100%;
}

#second.entry .form table td input.ss {
	width: 60px;
}

}


@media only screen and (max-width: 479px) {


/*interview--------------------------------------------------*/
.personBox:before {
	width: calc( 100vw - 10px );
}

.personBox .text .lead p {
	font-size: 24px;
}

}






