@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

/* !Fonts
---------------------------------------------------------- */
@font-face {
    font-family: 'Hoover-Bold';
    src: url('../fonts/Hoover-Bold.eot');
    src: url('../fonts/Hoover-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Hoover-Bold.woff2') format('woff2'),
         url('../fonts/Hoover-Bold.woff') format('woff'),
         url('../fonts/Hoover-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

fieldset {
  border: none;
}

ul,
ol,
li {
	list-style: none;
}

img {
	max-width: 100%;
    height: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check{
	display: none;
}

select,
input[type=radio],
input[type=checkbox],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=reset],
input[type=button],
input[type=submit],
textarea {
	appearance: none;
	border-radius: 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear{
	display: none;
}

input[type=reset],
input[type=button],
input[type=submit]  {
	font-family: "Zen Kaku Gothic New", sans-serif;
	cursor: pointer;
}

*,
*:before,
*::after {
	box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
    display: block;
    min-height: 1%;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}

/*** タブレット 768x ~ 1200px***/
@media screen and (min-width: 768px) and (max-width: 960px) {
    html {
        font-size: calc(100vw / 96);
    }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    html {
        font-size: 62.5%;
    }
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    line-height: 1.5;
    font-weight: normal;
    color: #000;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html.no-move {
    overflow: hidden;
}

.eng-font {
    font-family: 'Hoover-Bold';
    font-weight: 700;
}

.noto-font {
	font-family: "Noto Sans JP", sans-serif;
}

/* !Base Fonts -------------------------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    a {
        transition: all 0.5s;
    }

    a:hover {
		opacity: 0.7;
        text-decoration: underline;
    }

    .op {
        transition: opacity 0.5s ease-out;
    }

    .op:hover {
        opacity: .7;
        text-decoration: none;
    }

    a[href^="tel:"] {
        cursor: default;
        pointer-events:none;
    }
}

.is-hide {
    display: none;
}

/*** 非スマホ 768px ~ ***/
@media screen and (min-width: 768px) {
    .is-sp {
        display: none;
    }
}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){
    .is-pc {
        display: none;
    }
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
    padding-top: 9.4rem;
}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){
    #wrapper {
        padding-top: 5.5rem;
    }
}

/* !header
---------------------------------------------------------- */
#header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background: #fff;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-logo {
    margin-left: 10rem;
    width: 28rem;
    font-size: 1px;
    line-height: 1;
}

.header-logo img {
    width: 100%;
}

.header-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5.5rem;
}

.header-links .header-links__box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    margin-bottom: .64rem;
}

.header-links .header-button {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.header-links .header-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: .1rem solid #707070;
    border-radius: 1.5rem;
    font-size: .9rem;
    font-weight: bold;
    line-height: 1.45;
    width: 8.8rem;
    height: 2.2rem;
}

.header-links .header-sns {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-links .header-sns li {
    font-size: 1px;
    line-height: 1;
}

.header-links .header-sns li img {
    max-width: unset;
    width: auto;
    height: 2.4rem;
}

.header-links .header-links__recruit {
    width: 14.8rem;
}

.header-links .header-links__recruit a {
    width: 100%;
    height: 9.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    letter-spacing: .1em;
    background: url(../img/common/bg_header_recruit.jpg) center center no-repeat;
    background-size: cover;
}

.btn-menu {
    display: none;
}



@media only screen and (max-width : 1349px){
    .header-logo {
        margin-left: 4.5rem;
        /*width: 22rem;*/
    }

    .header-links {
        /*gap: 1.5rem;*/
    }
}


@media only screen and (max-width : 1199px){
    .header-logo {
        width: 22rem;
    }

    .header-links {
        gap: 1.5rem;
    }
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){
    .header-logo {
        margin-left: 1.4rem;
        width: 16.3rem;
    }

    .header-links {
        gap: 2rem;
    }

    .header-links .header-links__box {
        display: block;
        gap: 0;
        margin-bottom: 0;
    }

    .header-links .header-button {
        display: none;
    }

    .header-links .header-sns {
        gap: 1.6rem;
    }

    .header-links .header-sns li img {
        height: 1.9rem;
    }

    .header-links .header-links__recruit {
        display: none;
    }

    .btn-menu {
        display: flex;
        width: 5.5rem;
        height: 5.5rem;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: .5rem;
        background: url(../img/common/bg_header_recruit.jpg) center center no-repeat;
        background-size: cover;
    }

    .btn-menu .line {
        width: 2.2rem;
        height: .2rem;
        background: #fff;
        transition: all .3s;
    }

    .btn-menu.is-active .line:nth-child(1) {
        transform: translateY(.7rem) rotate(45deg);
    }

    .btn-menu.is-active .line:nth-child(2) {
        opacity: 0;
    }

    .btn-menu.is-active .line:nth-child(3) {
        transform: translateY(-.7rem) rotate(-45deg);
    }
}

/* !global navigation
---------------------------------------------------------- */
#g-navi {}

#g-navi ul {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

#g-navi ul li a {
    font-size: 1.4rem;
    line-height: 1.45;
    font-weight: bold;
}

@media only screen and (max-width : 1229px){
    #g-navi ul {
        gap: 1.1rem;
    }
}

@media only screen and (max-width : 999px){
    #g-navi ul li a {
        font-size: 1.25rem;
    }
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){

    #g-navi {
        position: fixed;
        top: 5.5rem;
        left: 0;
        width: 100%;
        height: calc(100dvh - 5.5rem);
        z-index: 98;
        padding: 2rem 2.5rem 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s,visibility .3s;
        background: #fff;
    }

    #g-navi.is-open{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    #g-navi ul {
        display: block;
        border-top: .1rem solid #707070;
        margin-bottom: 5.6rem;
    }

    #g-navi ul li {
        border-bottom: .1rem solid #707070;
    }

    #g-navi ul li + li {
        margin-top: 0;
    }

    #g-navi ul li a {
        padding: 2rem 0 2rem 3rem;
        font-size: 2.1rem;
        line-height: 3rem;
        background: url(../img/common/icon_arrow.svg) left 2.84rem no-repeat;
        background-size: 1.719ren auto;
        display: block;
    }

    #g-navi .g-navi__recruit {
        width: 100%;
        margin-bottom: 2.4rem;
    }

    #g-navi .g-navi__recruit a {
        width: 100%;
        height: 20.6rem;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2.3rem;
        line-height: 1.4;
        color: #fff;
        font-weight: bold;
        position: relative;
        background: url(../img/common/img_footer_recruit.jpg) center center no-repeat;
        background-size: cover;
    }

    #g-navi .g-navi__info {
        width: 100%;
        padding: 6rem 0 5.4rem;
        position: relative;
        z-index: 2;
    }

    #g-navi .g-navi__info:before {
        pointer-events: none;
        width: 100vw;
        height: 100%;
        border-top: .1rem solid #707070;
        border-right: .1rem solid #707070;
        border-radius: 0 3rem 0 0;
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }

    #g-navi .g-navi__info .logo {
        font-size: 1px;
        line-height: 1;
        width: 28rem;
    }

    #g-navi .g-navi__info .logo img {
        width: 100%;
    }

    #g-navi .g-navi__info .access {
        font-size: 1.8rem;
        line-height: 1.5;
        font-weight: bold;
        margin-top: 2.16rem;
    }

    #g-navi .g-navi__info .copyright {
        font-weight: bold;
        font-size: 1.2rem;
        line-height: 1.5;
        margin-top: 1.24rem;
    }
}

/* !breadcrumb
---------------------------------------------------------- */
.breadcrumb {
    margin-top: 1.85rem;
}

.breadcrumb ul {
    display: flex;
    gap: 4rem;
}

.breadcrumb ul li {
    font-size: 1.4rem;
    line-height: 1.857;
    word-break: keep-all;
    white-space: nowrap;
    position: relative;
    font-weight: 500;
}

.breadcrumb ul li:after {
    width: .1rem;
    height: 100%;
    background: #707070;
    content: '';
    position: absolute;
    right: -2.1rem;
    top: 0;
    z-index: 2;
}

.breadcrumb ul li:last-child {
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){
    .breadcrumb {
        margin-top: 1rem;
    }

    .breadcrumb ul {
        gap: 2rem;
    }

    .breadcrumb ul li {
        font-size: 1rem;
        line-height: 1.5;
    }

    .breadcrumb ul li:after {
        right: -1.1rem;
    }

    .breadcrumb ul li:last-child {
        overflow : hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
}

/* !main Visual
---------------------------------------------------------- */
#main-visual {
    position: relative;
}
#main-visual .kv img {
	object-fit: cover;
	width: 100%;
	max-height: 76rem;
}
#main-visual .head {
	position: absolute;
	left: 9rem;
	top: 5.208vw;
	width: 40.2778%;
	max-width: 58rem;
}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){
	#main-visual {
		margin-bottom: 9.5rem;
	}
	#main-visual .kv img {
		height: 53.2rem;
	}
	#main-visual .head {
	    left: 2.5rem;
		right: 2.5rem;
	    top: auto;
		bottom: -7rem;
		text-align: center;
        width: auto;
	}
}

/* !teaser
---------------------------------------------------------- */
#teaser {
    padding-bottom: 7rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

#teaser .page-title {
    position: absolute;
    left: 50%;
    transform: translateX(-60rem);
    top: 0;
    z-index: 2;
    width: 25rem;
    display: flex;
    flex-direction: column-reverse;
    gap: 2.38rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 3.28rem 0 0 4.4rem;
    word-break: keep-all;
    white-space: nowrap;
}

#teaser .page-title .page-title__en {
    font-size: 2.3rem;
    color: #000;
    line-height: 1.3;
    letter-spacing: 0;
}

#teaser .page-title .page-title__ja {
    font-size: 4.6rem;
    font-weight: bold;
    color: #57AC39;
    line-height: 1;
    letter-spacing: .55rem;
}

#teaser .teaser-inner {
    width: 100%;
    overflow: hidden;
}

#teaser .teaser-box {
    padding-left: 25rem;
    position: relative;
}

#teaser .teaser-image {
    width: calc(100% + 50vw - 60rem);
    height: 25.4rem;
}

#teaser .teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width : 1250px){
    #teaser .teaser-image {
        width: calc(100% + 2.5rem);
    }

    #teaser .page-title {
        left: 2.5rem;
        transform: translateX(0);
    }
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){
    #teaser {
        padding-bottom: 6rem;
    }

    #teaser .page-title {
        left: 2.5rem;
        transform: translateX(0);
        width:5.7rem;
        gap: .5rem;
        padding: 0;
    }

    #teaser .page-title .page-title__en {
        font-size: 1.1rem;
        line-height: 1.36;
    }

    #teaser .page-title .page-title__ja {
        font-size: 2.2rem;
        letter-spacing: .26rem;
    }

    #teaser .teaser-box {
        padding-left: 5.7rem;
    }

    #teaser .teaser-image {
        width: calc(100% + 2.5rem);
        height: 13.7rem;
    }
}

/* !contents
---------------------------------------------------------- */
#contents {
    width: 100%;
    padding-bottom: 13rem;
}

.section {
    display: flex;
}

.section .main {
    width: calc(100% - 25rem);
}

.section .side {
    width: 25rem;
}

.inner,
.inner-small {
    width: 100%;
    max-width: 125rem;
    padding: 0 2.5rem;
    margin: 0 auto;
}
.inner-small {
    max-width: 98.6rem;
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){
    #contents {
        padding-bottom: 5.4rem;
    }

    .section {
        display: block;
    }

    .section .main,
    .section .side {
        width: 100%;
    }
}

/* !page Top
---------------------------------------------------------- */
.page-top {}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){}

/* !footer
---------------------------------------------------------- */
#footer {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    z-index: 10;
}

#footer .footer-inner {
    display: flex;
    justify-content: space-between;
}

#footer .footer-info {
    width: 36.5rem;
    position: relative;
    z-index: 2;
    padding: 6.3rem 0 0 2rem;
}

#footer .footer-info:before {
    pointer-events: none;
    width: 100vw;
    height: 100%;
    border-top: .1rem solid #707070;
    border-right: .1rem solid #707070;
    border-radius: 0 3rem 0 0;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

#footer .footer-logo {
    font-size: 1px;
    line-height: 1;
    width: 28rem;
}

#footer .footer-logo img {
    width: 100%;
}

#footer .footer-access {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: bold;
    margin-top: 2.16rem;
}

#footer .copyright {
    font-size: .7rem;
    font-weight: bold;
    line-height: 1rem;
    margin-top: .46rem;
}

.footer-links {
    width: calc(100% - 40rem);
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 5rem 0 8rem;
    flex-wrap: wrap;
}

#footer .footer-links:before {
    pointer-events: none;
    width: 100vw;
    height: .1rem;
    background: #707070;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.footer-links .footer-links__navi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links .footer-links__navi ul {
    width: 17rem;
    border-right: .1rem solid #707070;
    padding-top: .72rem;
}

.footer-links .footer-links__navi ul:last-child {
    border-right: 0;
}

.footer-links .footer-links__navi ul li + li {
    margin-top: 1.4rem;
}

.footer-links .footer-links__navi ul li a {
    padding-left: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    background: url(../img/common/icon_arrow.svg) left .54rem no-repeat;
    background-size: 1.111ren auto;
}

.footer-links .footer-links__recruit {
    width: 20rem;
    line-height: 1;
    font-size: 1px;
}

.footer-links .footer-links__recruit a {
    width: 100%;
    height: 12.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #fff;
    font-weight: bold;
    position: relative;
    background: url(../img/common/img_footer_recruit.jpg) center center no-repeat;
    background-size: cover;
}

/*** hover ***/
@media screen and (min-width: 960px) {}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){


    #footer .footer-inner {
        flex-direction: column-reverse;
    }

    #footer .footer-info {
        width: 100%;
        padding: 6rem 0 5.4rem;
    }

    #footer .footer-access {
        font-size: 1.8rem;
    }

    #footer .copyright {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-top: 1.24rem;
    }

    .footer-links {
        width: 100%;
        display: block;
        padding: 0 0 2.4rem;
    }

    #footer .footer-links:before {
        display: none;
    }

    .footer-links .footer-links__navi {
        display: block;
        border-top: .1rem solid #707070;
        margin-bottom: 5.4rem;
    }

    .footer-links .footer-links__navi ul {
        width: 100%;
        border-right: 0;
        padding-top: 0;
    }

    .footer-links .footer-links__navi ul li {
        border-bottom: .1rem solid #707070;
    }

    .footer-links .footer-links__navi ul li + li {
        margin-top: 0;
    }

    .footer-links .footer-links__navi ul li a {
        padding: 2rem 0 2rem 3rem;
        font-size: 2.1rem;
        line-height: 3rem;
        background: url(../img/common/icon_arrow.svg) left 2.84rem no-repeat;
        background-size: 1.719ren auto;
        display: block;
    }

    .footer-links .footer-links__recruit {
        width: 100%;
    }

    .footer-links .footer-links__recruit a {
        height: 20.6rem;
        font-size: 2.3rem;
    }
}

/* !common
---------------------------------------------------------- */
.anchor-wrap {
    position: relative;
}

.anchor-wrap .anchor {
    position: absolute;
    top: -9.4rem;
    z-index: -1;
}

.btn-link {
	display: inline-flex;
	align-items: center;
	padding: 0 3.2rem 0 1.5rem;
	height: 4rem;
	width: 100%;
	max-width: 15.2rem;
	background: url(../img/common/icon_arrow_circle_wh.svg)no-repeat right 1.2rem center #32791a;
	background-size: 1.5rem;
	border-radius: 4rem;
	color: #fff;
	font-size: .9rem;
	font-weight: 700;
}
.btn-link.small-st {
	max-width: 11.3rem;
	height: 3rem;
	background-position: right 0.8rem center;
	font-size: .7rem;
}
.btn-link.big-st {
	padding: 0 4rem 0 2.6rem;
	height: 5.2rem;
	max-width: 19.4rem;
	background-size: 2.5rem;
	background-color: #57AC39;
	background-position: right 1.5rem center;
	font-size: 1.2rem;
}
.btn-link.white-st {
	background-image: url(../img/common/icon_arrow_circle_gre.svg);
	background-color: #fff;
	color: #32791A;
}

.head-large {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}
.head-large .eng {
	line-height: 1.3;
	letter-spacing: 0;
	font-size: 2.3rem;
}
.head-large .jap {
	font-size: 4.6rem;
	font-weight: bold;
	color: #57AC39;
	line-height: 1;
}
.head-large.column {
	gap: 2.2rem;
	writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.head-large.column .jap {
	letter-spacing: .55rem;
}
.head-large.small-st .jap {
	font-size: 3.1rem;
}
.head-large.small-st .eng {
	font-size: 1.5rem;
}

.head-middle {
	margin-bottom: 2rem;
	line-height: 1.45;
	font-size: 4rem;
	font-weight: 700;
}

.head-small {
	padding: 0.8rem 2.8rem;
	margin-bottom: 2rem;
	background: #32791A;
	border-radius: 0.3rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
}
.head-small.white-st {
	background: #fff;
	color: #174948;
}

.head-wrap {
	margin-bottom: 5.5rem;
}
.head-wrap .sub {
	line-height: 2;
	font-size: 1.7rem;
	font-weight: 700;
}

.head-txt {
	line-height: 30px;
	font-weight: bold;
}

.color-green {
	color: #57AC39;
}

.mt40 {
	margin-top: 4rem;
}

/*** hover ***/
@media screen and (min-width: 960px) {
	.btn-link:hover {
		opacity: 0.7;
		text-decoration: none;
	}
}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){
    .anchor-wrap .anchor {
        top: -5.5rem;
    }

	.head-large .jap {
		font-size: 4rem;
	}

	.head-middle {
		margin-bottom: 1.2rem;
		font-size: 3rem;
	}

	.head-wrap {
		margin-bottom: 3.2rem;
	}
	.head-wrap .sub {
		font-size: 1.4rem;
	}

	.head-txt {
		font-size: 1.4rem;
	}
}


/* !お知らせ
---------------------------------------------------------- */
.news-wrap {
    padding: 5rem 0 8rem;
}

.news-cate {
    position: sticky;
    left: 0;
    top: 9.4rem;
    z-index: 2;
    padding: 2.6rem;
}

.news-cate li + li {
    margin-top: 1.7rem;
}

.news-cate a {
    display: inline-flex;
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
    font-weight: 500;
    padding: .4rem 2rem;
    background: #57AC39;
    border-radius: 1.2rem;
}

.news-list li {
    border-bottom: .1rem solid #C9C9C9;
}

.news-list .news-item {
    display: block;
    padding: 2.2rem 3.5rem 1.84rem 0;
    background: url(../img/common/icon_arrow_news.svg) right center no-repeat;
    background-size: 2.5rem auto;
}

.news-list .news-info {
    display: flex;
    gap: 1.2rem;
    margin-bottom: .11rem;
}

.news-list .news-info .news-info__date {
    font-size: 1rem;
    line-height: 1.5;
}

.news-list .news-info .news-info__cate {
    font-size: .5rem;
    line-height: 1.5;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 1.5rem;
    background: #57AC39;
    border-radius: .8rem;
    color: #fff;
    font-weight: 500;
    padding: 0 1rem;
}

.news-list .news-title {
    display: block;
    font-size: 1.4rem;
    lline-height: 1.857;
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.6rem;
    margin-top: 9rem;
    text-align: center;
}
.wp-pagenavi .pages,
.wp-pagenavi .last,
.wp-pagenavi .first {
    display: none;
}
.wp-pagenavi a.page,
.wp-pagenavi span.current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    line-height: 1;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    background: #8BD571;
}
.wp-pagenavi span.current {
    background: #57AC39;
}
.previouspostslink,
.nextpostslink {
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 50%;
    font-size: 0;
}
.previouspostslink {
    background-image: url(../img/common/icon_arrow_news.svg);
    transform: scaleX(-1);
}
.nextpostslink {
    background-image: url(../img/common/icon_arrow_news.svg);
}

.news-detailstyle {
	max-width: 85rem;
}
.news-detailstyle .title {
	margin-bottom: 2rem;
}
.news-detailstyle .news-info {
	display: flex;
	align-items: center;
	gap: 0 0.9rem;
	margin-bottom: 3.2rem;
}
.news-detailstyle .title .date {
	font-size: 1.4rem;
}
.news-detailstyle .title .cate {
	display: inline-flex;
	padding: 0 1rem;
	justify-content: center;
	align-items: center;
	height: 1.5rem;
	background: #57AC39;
	border-radius: .8rem;
	color: #fff;
	font-weight: 500;
	font-size: .7rem;
}
.news-detailstyle .title h2 {
	font-size: 1.8rem;
	font-weight: 700;
}
.news-detailstyle .detail p {
	margin-bottom: 6.4rem;
	line-height: 2.14;
	font-size: 1.4rem;
}
.news-detailstyle .detail figure {
	margin: 0 auto;
}
.news-detailstyle .detail figure img {
	width: 100%;
}
.news-detailstyle .btn {
	margin-top: 7rem;
	text-align: center;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    .news-list .news-item:hover {
        text-decoration: none;
    }

    .news-list .news-item:hover .news-title {
        text-decoration: underline;
    }
}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){
    .news-wrap {
        padding: 0 0 3rem;
    }

    .news-cate {
        position: static;
        padding: 0;
        margin-bottom: 1.1rem;
        display: flex;
        flex-wrap: wrap;
        gap: .6rem;
    }

    .news-cate li + li {
        margin-top: 0;
    }

    .news-list .news-item {
        display: block;
        padding: 2rem 4.4rem .6rem 0;
    }

    .news-list .news-info {
        margin-bottom: 1.15rem;
    }

    .news-list .news-title {
        font-size: 1.4rem;
        line-height: 1.857;
    }

    .wp-pagenavi {
        margin-top: 4rem;
    }

	.main .news-detailstyle {
		margin-top: 4rem;
	}
	.news-detailstyle .news-info {
		margin-bottom: 2rem;
	}
	.news-detailstyle .detail p {
	    margin-bottom: 4rem;
	}
	.news-detailstyle .btn {
	    margin-top: 5rem;
	}

}


/* !page
---------------------------------------------------------- */
.top-notice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 2rem;
	position: relative;
	margin: -5.8rem auto 6.8rem;
	padding: 5rem;
	max-width: 107.6rem;
	background: #fff;
}
.top-notice .dt {
	display: flex;
	align-items: center;
}
.top-notice .date {
	padding-right: 3rem;
	border-right: 1px solid;
	letter-spacing: 0.1em;
	font-size: 1.4rem;
}
.top-notice .cate {
	padding: 0 3rem;
	border-right: 1px solid;
}
.top-notice .cate span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
	padding: 0 1.6rem;
	height: 1.9rem;
	background: #57AC39;
	border-radius: 2rem;
	color: #fff;
	font-weight: 500;
	font-size: .7rem;
}
.top-notice .title {
	padding-left: 2rem;
	font-size: 1.4rem;
}

.top-about {
	margin-bottom: 14rem;
}
.top-about .display {
	display: flex;
	gap: 0 5rem;
}
.top-about .display .img {
	width: clac(50% - 2.4rem);
	max-width: 69.6rem;
}
.top-about .display .info {
	position: relative;
	padding-right: 15.5rem;
	width: clac(30% - 1.2rem);
	max-width: 42rem;
}
.top-about .display .head-large {
	flex-direction: column-reverse;
	position: absolute;
	right: 0;
	top: 0;
}
.top-about .display .head {
	margin-bottom: 3rem;
	line-height: 1.88;
	font-weight: bold;
	font-size: 2.5rem;
}
.top-about .display .btn {
	margin-top: 3rem;
	text-align: right;
}

.top-work {
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding: 10rem 0 24rem;
}
.top-work:before {
	content: "";
	clip-path: polygon(0% 0%, calc(100% - 13.5rem) 0%, 100% 50%, calc(100% - 13.5rem) 100%, 0% 100%);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: calc(50% + 45rem);
	height: 100%;
	background: #E0F2D9;
}
.top-work .bg-head {
	overflow: hidden;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
	width: 100%;
	white-space: nowrap;
	word-wrap: break-word;
	word-break:break-all;
	text-align: center;
}
.top-work .bg-head img {
	object-fit: cover;
	min-width: 155.6rem;
}
.top-work .section .side {
	padding: 0 6rem 0 10rem;
    width: 38.7rem;
}
.top-work .section .main {
    width: calc(100% - 38.7rem);
}

.top-work .head-large {
	margin-bottom: 5rem;
}
.works-introd-list li {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 6rem;
}
.works-introd-list .img {
	width: 30rem;
}
.works-introd-list .img img {
	width: 100%;
}
.works-introd-list .info {
	width: calc(100% - 34.4rem);
}
.works-introd-list .head {
	margin-bottom: 1.6rem;
	font-size: 2.3rem;
	font-weight: bold;
}
.works-introd-list .head .cate {
	display: inline-flex;
	align-items: center;
	padding: 0 2.2rem;
	margin-bottom: 1.6rem;
	height: 4.5rem;
	background: #fff;
	font-size: 2.2rem;
}
.works-introd-list .head-txt {
	max-width: 37.5rem;
}
.works-introd-list .btn {
	margin-top: 1.8rem;
}

.top-interview {
	position: relative;
	z-index: 2;
	margin: -17.5rem 0 7.8rem;
}
.top-interview-con {
	padding: 8rem 9.6rem;
	background-image: url(../img/top/bg_interview.jpg);
	background-size: 100% 100%;
	border-radius: 5rem;
	color: #fff;
}
.top-interview .title {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2.4rem;
}
.top-interview-con .head-large .jap {
	color: #fff;
    word-break: keep-all;
}
.interview-member-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.4rem 9.5rem;
}
.interview-member-list li a {
	display: block;
	background: url(../img/common/icon_arrow_circle_wh.svg) no-repeat right bottom;
	background-size: 2.8rem;
}
.interview-member-list .img {
	overflow: hidden;
	margin-bottom: 0.9rem;
	border-radius: 1rem;
}
.interview-member-list .position {
	margin-bottom: 0.6rem;
	font-size: 0;
}
.interview-member-list .position span {
	display: inline-flex;
	align-items: center;
	padding: 0 1.4rem;
	height: 2.6rem;
	background: #57AC39;
	border-radius: 5rem;
	font-weight: 700;
	font-size: .9rem;
}
.interview-member-list .sir {
	font-weight: 500;
	font-size: 1rem;
}
.interview-member-list .name {
	margin-right: 0.5rem;
	font-size: 1.5rem;
}

.top-interview-special {
	position: relative;
	margin-top: 10rem;
}
.top-interview-special .head {
	position: relative;
	margin-bottom: -2.6rem;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 5.2rem;
}
.top-interview-special .head2 {
	line-height: 1.444;
	font-weight: bold;
	font-size: 3.6rem;
    word-break: keep-all;
}
.top-interview-special .info {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	position: absolute;
	left: 0;
	bottom: 5rem;
	padding: 0 5.5rem;
	width: 100%;
}
.top-interview-special .info .con {
	max-width: 39rem;
}
.top-interview-special .info .btn {
	margin-top: 1rem;
	text-align: right;
}
.top-interview-special .info .btn-link {
	background-color: #57AC39;
}

.top-environment {
	padding: 7.8rem 0 0;
}
.top-environment .display {
	display: flex;
	align-items: center;
	background: #FCF4ED;
}
.top-environment .display .img {
	width: 50%;
}
.top-environment .display .info {
	padding: 2rem 3rem 2rem 9.8rem;
	width: 50%;
	max-width: 50rem;
}
.top-environment .display .head-large {
	margin-bottom: 3.2rem;
}
.top-environment .display .btn {
	margin-top: 3.2rem;
}

.top-recruitment {
	position: relative;
	z-index: 2;
	margin-top: 7.8rem;
}
.top-recruitment .info {
	padding: 6.6rem 15rem 6.4rem 10rem;
	width: 72%;
	max-width: 53.8rem;
	min-height: 29rem;
	background: url(../img/top/bg_arrow_gre.png)no-repeat left center;
	background-size: 100% 100%;
	color: #fff;
}
.top-recruitment .head-large {
	margin-bottom: 3.2rem;
}
.top-recruitment .head-large .jap {
	color: #fff;
}
.top-recruitment .img {
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	height: 100%;
	width: 50%;
	text-align: right;
}
.top-recruitment .img img {
	object-position: right center;
	object-fit: cover;
	height: 100%;
}
.top-recruitment .btn {
	position: absolute;
	right: 2.2rem;
	bottom: 2.2rem;
	z-index: 2;
	width: 15.2rem;
}

.top-service-link {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4.4rem;
	margin-top: 3.3rem;
}
.top-service-link .item {
	position: relative;
}
.top-service-link .bg:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	background-color: #8E8E8E;
}
.top-service-link a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 1.8rem;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	font-weight: bold;
	font-size: 3.1rem;
}
.top-service-link a:after {
	content: "";
	display: block;
	width: 3.6rem;
	height: 3.6rem;
	background: url(../img/common/icon_arrow_circle_wh.svg) no-repeat center;
	background-size: 100%;
}

.top-news-content {
	display: flex;
	margin-top: 9.8rem;
}
.top-news-content .side {
	width: 22.5rem;
}
.top-news-content .side .btn {
	margin-top: 2.8rem;
}
.top-news-content .main {
	width: calc(100% - 22.5rem);
}

/*** スマホ 767px ~ 375px ***/
@media only screen and (max-width : 767px){
	.top-notice {
		flex-wrap: wrap;
		justify-content: flex-end;
	    margin: 0 auto 5.2rem;
	    padding: 0 2.5rem;
	}
	.top-notice .dt {
		flex-wrap: wrap;
		width: 100%;
	}
	.top-notice .title {
	    padding: 1rem 0;
		line-height: 2;
	}

	.top-about {
	    margin-bottom: 6.2rem;
	}
	.top-about .display {
	    display: block;
	}
	.top-about .display .img {
		width: auto;
	}
	.top-about .display .info {
		padding: 2rem 2.5rem 0;
		width: auto;
	}
	.top-about .display .head-large {
	    flex-direction: column;
		gap: 1.4rem;
	    position: static;
		margin-bottom: 2.2rem;
		writing-mode: horizontal-tb;
	}
	.top-about .display .head-large .jap {
		letter-spacing: 0;
	}
	.top-about .display .head {
	    margin-bottom: 2.2rem;
	    line-height: 2.136;
	    font-size: 2.2rem;
	}
	.top-about .display .btn {
	    margin-top: 2.2rem;
	}

	.top-work {
		padding: 4.8rem 0 12rem;
	}
	.top-work:before {
	    content: "";
	    clip-path: polygon(0% 0%, calc(100% - 13.5rem) 0%, 100% 50%, calc(100% - 13.5rem) 100%, 0% 100%);
	    position: absolute;
	    left: 0;
	    top: 0;
	    z-index: -1;
	    width: calc(100% - 2.5rem);
	    height: 100%;
	    background: #E0F2D9;
	}
	.top-work .bg-head {
		top: 38%;
	}
	.top-work .bg-head img {
	    min-width: 40.5rem;
	}
	.top-work .section .side {
	    padding: 0 0 2.5rem;
	    width: auto;
	}
	.top-work .section .main {
		width: auto;
	}

	.top-work .head-large {
		gap: 1rem;
	    margin-bottom: 1.4rem;
		writing-mode: horizontal-tb;
	}
	.top-work .head-large .jap {
		letter-spacing: 0;
	}
	.works-introd-list li {
	    display: block;
	    margin-bottom: 4rem;
	}
	.works-introd-list .img {
		margin-bottom: 2.2rem;
		width: auto;
	}
	.works-introd-list .info {
		width: auto;
	}
	.works-introd-list .head,
	.works-introd-list .head .cate {
	    margin-bottom: 1.2rem;
	}
	.works-introd-list .btn {
	    margin-top: 1.2rem;
	}

	.top-interview {
	    margin: -6.5rem 0 0;
	}
	.top-interview-con {
		margin-right: -2.5rem;
	    padding: 4.5rem 3.2rem 6.2rem;
	    background-image: url(../img/top/bg_interview_sp.jpg);
		background-size: auto 100%;
	    border-radius: 3rem 0 0 3rem;
	}
	.top-interview .title {
	    display: block;
	}
	.top-interview .title .head-large {
		margin-bottom: 2rem;
	}
	.interview-member-list {
	    grid-template-columns: repeat(1, 1fr);
	    gap: 2.2rem;
	}
	.top-interview-special .info {
	    display: block;
		position: static;
	    padding: 0;
		margin-top: -3rem;
	}
	.top-interview-special .head2 {
		margin-bottom: 1.2rem;
	}
	.top-interview-special .head-txt {
		font-size: 1.6rem;
	}

	.top-environment {
	    padding: 6.2rem 0 0;
	}
	.top-environment .display {
	    display: block;
	}
	.top-environment .display .img {
		width: auto;
	}
	.top-environment .display .info {
		padding: 2rem 2.5rem 4.8rem;
		width: auto;
	}
	.top-environment .display .head-large {
	    margin-bottom: 2.2rem;
	}
	.top-environment .display .head-large .jap {
		font-size: 4rem;
	}
	.top-environment .display .btn {
	    margin-top: 2.2rem;
	}

	.top-recruitment .info {
	    padding: 3.2rem 2.8rem 5rem;
	    width: 100%;
		min-height: inherit;
		background-image: url(../img/top/bg_arrow_gre_sp.png);
		background-position: center top;
	}
	.top-recruitment .img {
	    position: relative;
		margin-top: -2.6rem;
	    width: 100%;
	    text-align: center;
	}
	.top-recruitment .info .head-large .jap {
		font-size: 4rem;
	}
	.top-recruitment .btn {
	    position: static;
		margin-top: 2.4rem;
	    width: 100%;
		text-align: right;
	}
	.top-service-link {
	    grid-template-columns: repeat(1, 1fr);
	    gap: 1.6rem;
	    margin-top: 2.4rem;
	}
	.top-service-link a {
	    font-size: 2.1rem;
	}
	.top-service-link a:after {
	    width: 2.6rem;
	    height: 2.6rem;
	}

	.top-news-content {
		display: block;
	    margin-top: 6rem;
	}
	.top-news-content .side {
		display: flex;
		justify-content: space-between;
		margin-bottom: 0.5rem;
	    width: auto;
	}
	.top-news-content .side .btn {
		margin-top: 0;
		width: 11.3rem;
	}
	.top-news-content .main {
	    width: auto;
	}

}

/* contact */
.contact-wrap {

}
.contact-tabctrl {
	display: flex;
	gap: 0 1.8rem;
	border-bottom: 1px solid #707070;
}
.contact-tabctrl li a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
	height: 5.7rem;
	width: 28rem;
	background: #B7B7B7;
	border-radius: 1rem 1rem 0 0;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 2rem;
}
.contact-tabctrl .is-active {
	background: #57AC39;
}

.contact-wrap .must {
	color: #FF0000;
}
.contact-wrap form {
	padding: 5.5rem 0 0;
	font-size: 1.8rem;
	font-weight: 700;
}
.contact-wrap form table {
	width: 100%;
}
.contact-wrap th {
	vertical-align: top;
	padding: 4rem 0;
	width: 18rem;
	line-height: 2.1;
	text-align: left;
}
.contact-wrap td {
	padding: 2.3rem 0;
    vertical-align: middle;
}
.contact-wrap input[type=text] {
	padding: 0 1rem;
	height: 7.4rem;
	width: 100%;
	border: 1px solid #707070;
	font-size: 1.8rem;
	font-weight: 700;
}
.contact-wrap input.small {
	width: 21.2rem;
}
.contact-wrap input.big {
	max-width: 46.4rem;
}
.contact-wrap select {
	padding: 0 4rem 0 1rem;
	height: 7.4rem;
	width: 100%;
	background: url(../img/contact/icon_select.svg)no-repeat right 3rem center;
	border: 1px solid #707070;
	font-size: 1.8rem;
	font-weight: 700;
}
.contact-wrap .col {
	display: flex;
	align-items: center;
	gap: 0 3.8rem;
	line-height: 2;
}
.contact-wrap .col .note {
	min-width: 16rem;
}
.choice_radio {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.8rem 2rem;
	max-width: 38rem;
}
.choice_radio label {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0 1.2rem;
}
.choice_radio input {
	display: inline-block;
	margin: 0;
	width: 3.6rem;
	height: 3.6rem;
	background: url(../img/contact/icon_radio.svg)no-repeat center;
	background-size: 100%;
}
.choice_radio input:checked {
	background-image: url(../img/contact/icon_radio_checked.svg);
}
.contact-wrap textarea {
	resize: none;
	padding: 1rem;
	width: 100%;
	height: 29rem;
	border: 1px solid #707070;
	font-size: 1.8rem;
	font-weight: 700;
}
.contact-policy {
	margin-top: 4rem;
	line-height: 1.3333;
	font-size: 1.2rem;
	font-weight: 700;
}
.contact-policy .head {
	margin-bottom: 1.8rem;
	line-height: 1.6667;
	font-size: 1.8rem;
}
.contact-policy .box-scrollbar {
	overflow-y: auto;
	padding-right: 3.8rem;
	height: 18rem;
}
	.box-scrollbar::-webkit-scrollbar {
  		width: 1.7rem;
	}
	.box-scrollbar::-webkit-scrollbar-track {
		background: #fff;
		border-radius: 0;
	}
	.box-scrollbar::-webkit-scrollbar-thumb{
		background: #D5D5D5;
		border-radius: 0;
	}
	.box-scrollbar::-webkit-scrollbar-thumb:hover{
		background: #bbb;
	}
.contact-policy .box-scrollbar p {
	margin-bottom: 1.5rem;
}
.contact-wrap .agree {
	margin-top: 5.8rem;
	text-align: center;
}
.contact-wrap .agree label {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0 1.5rem;
}
.contact-wrap .agree input[type=checkbox] {
	position: relative;
	width: 2.6rem;
	height: 2.6rem;
	border: 1px solid #707070;
}
.contact-wrap .agree input[type=checkbox]:checked {
	border-color: #57AC39;
}
.contact-wrap .agree input[type=checkbox]:checked:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 1rem;
	height: 1rem;
	background: #57AC39;
}
.contact-btns {
	margin-top: 4.4rem;
	text-align: center;
	font-size: 0;
}
.contact-btns input {
	margin: 0 1rem;
	border-radius: 4rem;
	border: 0;
	text-align: left;
}
.contact-btns input[type=reset] {
	background-color: #ccc;
}

.fleet-car-models {

}
.fleet-car-models .models {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
.fleet-car-models .car-data {
	margin-top: 6.8rem;
}
.fleet-car-models .head {
	margin-bottom: 2rem;
	font-weight: 700;
	font-size: 2rem;
}
.fleet-car-models .car-data .list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 4.7rem;
}
.fleet-car-models .car-data ul {
	border-top: 1px solid #707070;
}
.fleet-car-models .car-data li {
	display: flex;
	justify-content: space-between;
	padding: 3rem 0;
	border-bottom: 1px solid #707070;
	font-size: 1.4rem;
	font-weight: 700;
}

/* about */
.about-wrap .main,
.company-wrap .main,
.work-wrap .main,
.interview-wrap .main,
.environment-wrap .main {
	max-width: 85rem;
}

.about-message {
	display: flex;
	justify-content: space-between;
	gap: 0 2rem;
}
.about-message .info {
	max-width: 54.34%;
}
.about-message .head-large .jap {
	line-height: 1.66;
	font-size: 3.8rem;
}
.about-message .end {
	margin-top: 3.6rem;
	font-size: 2.2rem;
	font-weight: 700;
}

.about-strengths {
	position: relative;
	padding-left: 17rem;
	margin-top: 10rem;
}
.about-strengths .head-large {
	position: absolute;
	left: 0;
	top: 0;
}
.about-strengths .strengths {
	margin-top: 6.4rem;
}
.about-strengths .strengths li {
	position: relative;
	padding-left: 11.5rem;
}
.about-strengths .strengths li + li {
	margin-top: 5rem;
}
.about-strengths .strengths .step {
	position: absolute;
	left: 0;
	top: 0;
	line-height: 1;
	color: #57AC39;
	font-size: 7.9rem;
	font-weight: 700;
}
.about-strengths .strengths .head {
	margin-bottom: 1.8rem;
	color: #57AC39;
	font-size: 3rem;
	font-weight: 700;
}

.about-company {
	margin-top: 11.8rem;
}
.about-company .part {
	margin-bottom: 6rem;
}
.about-company .head {
	margin-bottom: 0.3rem;
	font-size: 2.4rem;
	font-weight: 700;
}
.about-company .logo-title {
	margin-top: 4rem;
	text-align: center;
}
.about-company .logo-title .logo {
	margin: 0 auto 2.8rem;
	max-width: 22.8rem;
}
.about-company .official-accounts {
	margin-top: 6rem;
	text-align: center;
}
.about-company .official-accounts .tit {
	margin-bottom: 1.4rem;
	font-size: 1.9rem;
	font-weight: 700;
}

/* company */
.company-part + .company-part {
	margin-top: 10rem;
}
.company-summary table {
	width: 100%;
	border-top: 1px solid #707070;
	font-weight: 700;
}
.company-summary tr {
	border-bottom: 1px solid #707070;
}
.company-summary th {
	padding: 2.3rem 2rem 2.3rem 0;
	width: 18.5rem;
	text-align: left;
}
.company-summary td {
	padding: 2.3rem 0;
}
.company-access .map {
	margin-top: 1.8rem;
}
.company-access .map iframe {
	width: 100%;
	height: 30.6rem;
}

.company-baselist .head {
	margin-bottom: 2.6rem;
	font-size: 3rem;
	font-weight: 700;
}
.company-baselist .baselist + .baselist {
	margin-top: 11.8rem;
}
.company-baselist .baselist ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 7.4rem 3.5rem;
}
.company-baselist .baselist .head-txt + ul {
	margin-top: 6rem;
}
.company-baselist .baselist .img {
	margin-bottom: 0.9rem;
}
.company-baselist .baselist .tit {
	margin-bottom: 0.8rem;
	font-size: 1.9rem;
	font-weight: 700;
}
.company-baselist .baselist .access {
	line-height: 1.6667;
	font-size: 1.2rem;
	font-weight: 700;
}
.company-baselist .baselist .google {
	margin-top: 1.8rem;
}
.company-baselist .baselist .google a {
	padding: 0 4rem 0 2rem;
	height: 4.6rem;
	max-width: 100%;
	background-position: right 1.8rem center;
	background-color: #57AC39;
	background-size: 2rem;
	border-radius: 0;
	font-size: 1.6rem;
}

/*** hover ***/
@media screen and (min-width: 960px) {

	.contact-tabctrl li a:hover {
		text-decoration: none;;
	}

}

/*** sp ***/
@media only screen and (max-width : 767px){
	.contact-tabctrl {
	    gap: 0 1rem;
		margin: 0 -2.5rem;
		padding: 0 2.5rem;
	}
	.contact-tabctrl li {
		width: 50%;
	}
	.contact-tabctrl li a {
		width: 100%;
		height: 3.2rem;
		font-size: 1.4rem;
	}
	.contact-wrap form {
	    padding: 2.2rem 0 0;
	    font-size: 1.4rem;
	}
	.contact-wrap th {
		display: block;
	    padding: 0 0 0.5rem;
	    width: 100%;
		line-height: 1.5;
	}
	.contact-wrap td {
		display: block;
	    padding: 0 0 2rem;
	    width: 100%;
	}
	.contact-wrap .col {
	    display: block;
	}
	.contact-wrap textarea {
		height: 51rem;
	}
	.contact-wrap select {
		background-position: right 2.6rem center;
		background-size: 1.4rem;
		font-size: 1.2rem;
	}
	.choice_radio {
		gap: 2.2rem 0.5rem;
		font-size: 1.8rem;
	}
	.contact-wrap .agree {
	    margin-top: 5.8rem;
	    text-align: left;
		font-size: 1.8rem;
	}
	.contact-btns {
	    margin-top: 3.6rem;
	}
	.contact-btns input {
	    margin: 1rem 0 0;
	}

	.fleet-car-models .models {
	    grid-template-columns: repeat(1, 1fr);
	    gap: 1.8rem 0;
	}
	.fleet-car-models .car-data {
	    margin-top: 4.6rem;
	}
	.fleet-car-models .car-data .list {
	    grid-template-columns: repeat(1, 1fr);
	}
	.fleet-car-models .car-data ul {
		margin-top: -1px;
	}

	.about-message {
		display: block;
	}
	.about-message .head-large {
		gap: 0.2rem;
		margin-bottom: 2rem;
		writing-mode: horizontal-tb;
	}
	.about-message .head-large .eng {
		font-size: 1.4rem;
	}
	.about-message .head-large .jap {
		letter-spacing: 0;
		font-size: 2.4rem;
	}
	.about-message .info {
		max-width: 100%;
	}
	.about-message .end {
	    margin-top: 2.3rem;
	    font-size: 2rem;
	}

	.about-strengths {
	    padding-left: 7rem;
	    margin-top: 9.6rem;
	}
	.about-strengths .head-large {
		flex-direction: row-reverse;
		align-items: center;
	}
	.about-strengths .head-large .jap {
		font-size: 3.6rem;
	}
	.about-strengths .strengths {
	    margin-top: 3.6rem;
	}

	.about-strengths .strengths li {
		padding-left: 0;
	}
	.about-strengths .strengths li + li {
	    margin-top: 3.6rem;
	}
	.about-strengths .strengths .step {
		position: static;
	    font-size: 6rem;
	}
	.about-strengths .strengths .head {
	    margin-bottom: 1.6rem;
	}

	.about-company {
	    margin-top: 6rem;
	}
	.about-company .head {
	    margin-bottom: 1.6rem;
	}
	.about-company .logo-title .head-txt {
		line-height: 1.85;
	}
	.about-company .official-accounts {
	    margin-top: 2.8rem;
	}
	.about-company .official-accounts .tit {
	    margin-bottom: 2.8rem;
	}

	.company-part + .company-part {
	    margin-top: 6rem;
	}
	.company-summary table {
		font-size: 1.4rem;
	}
	.company-summary th {
		display: block;
		padding: 2.5rem 0 0.9rem;
		width: 100%;
	}
	.company-summary td {
		display: block;
		padding: 0 0 2.5rem;
		width: 100%;
	}
	.company-access .head-txt {
		font-size: 1.6rem;
	}
	.company-baselist .head {
	    margin-bottom: 1rem;
	    font-size: 2rem;
	}
	.company-baselist .baselist .head-txt + ul {
	    margin-top: 4.2rem;
	}
	.company-baselist .baselist + .baselist {
	    margin-top: 7rem;
	}
	.company-baselist .baselist ul {
	    grid-template-columns: repeat(2, 1fr);
	    gap: 2.6rem 2rem;
	}
	.company-baselist .baselist .img {
	    margin-bottom: 0.6rem;
	}
	.company-baselist .baselist .tit {
	    margin-bottom: 0.5rem;
	    font-size: 1.2rem;
	}
	.company-baselist .baselist .access {
	    line-height: 1.6;
	    font-size: 1rem;
	}
	.company-baselist .baselist .google {
	    margin-top: 0.5rem;
	}
	.company-baselist .baselist .google a {
	    padding: 0 2.4rem 0 1.1rem;
	    height: 2.7rem;
	    background-position: right 1rem center;
	    background-size: 1.2rem;
	    font-size: 0.9rem;
	}
}

/* work */
.head-work {
	margin-bottom: 1.2rem;
	color: #57AC39;
	font-size: 3rem;
	font-weight: 700;
}
.work-logistics .title {
	display: flex;
	gap: 0 6.6rem;
	margin-bottom: 5rem;
}
.work-proposed-logistics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6rem;
}
.work-proposed-logistics .notes li {
	position: relative;
	padding: 0 0 1.2rem 2.2rem;
	line-height: 1.625;
	font-weight: 700;
}
.work-proposed-logistics .notes li:before {
	content: "";
	position: absolute;
	left: 0.4rem;
	top: 0.8rem;
	width: 1.2rem;
	height: 1.2rem;
	background: #57AC39;
	border-radius: 50%;
}
.work-proposed-logistics .img {
	margin-top: 0.8rem;
}
.work-proposed-logistics .img img {
	width: 100%;
}

.monitor-content {
	position: relative;
}
.side-monitor {
	position: absolute;
	top: 0;
	right: calc(100% + 6rem);
	width: 20.5rem;
	height: 100%;
}

.side-monitor .roll-con {
	position: sticky;
	top: 9.4rem;
}

.side-monitor .roll-con:before {
    content: "";
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    height: 100vh;
    width: 100vw;
    background: #fff;
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
    border-radius: 0 4rem 0 0;
}

.side-monitor .anchors {
	padding: 6rem 0;
}
.side-monitor .head-large {
	margin-bottom: 3.2rem;
}
.side-monitor .anchors li {
	position: relative;
	padding: 0 0 3.2rem 2.2rem;
	font-weight: 700;
	font-size: 2rem;
}
.side-monitor .anchors li:before {
    content: "";
    position: absolute;
    left: 0.4rem;
    top: 1rem;
    width: 1.2rem;
    height: 1.2rem;
    background: #57AC39;
    border-radius: 50%;
}

.work-proposed {
	margin-top: 13rem;
}
.work-proposed-part + .work-proposed-part {
	margin-top: 12rem;
}
.work-proposed .banner {
	position: relative;
	margin-bottom: 2.4rem;
}
.work-proposed .banner .head-large {
	position: absolute;
	left: 0;
	top: 0;
	padding: 4rem 7rem 7rem 2.8rem;
	min-width: 24.5rem;
	background: #fff;
	border-radius: 0 0 5rem;
}
.work-proposed .banner .head-large .jap {
	font-size: 5.5rem;
}
.work-proposed .head {
	position: absolute;
	color: #fff;
	font-size: 3.2rem;
	font-weight: 700;
}
.work-proposed .warehouse .head {
	right: -1.6rem;
	bottom: 5.5rem;
}
.work-proposed .logistics .head {
	left: -1.2rem;
	bottom: 1rem;
}
.work-proposed .systems .head {
	top: 6rem;
	right: -2.2rem;
}
.work-proposed .head span {
	display: inline-block;
	padding: 0 0.8rem;
	margin-bottom: 2rem;
	background: #57AC39;
}
.work-proposed .head2 {
	margin-bottom: 2.5rem;
	font-size: 2rem;
	font-weight: 700;
}
.work-proposed-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6.4rem 6rem;
}
.work-proposed-list .tit {
	margin-bottom: 0.6rem;
	color: #57AC39;
	font-size: 2rem;
	font-weight: 700;
}

.interview-wrap {
	position: relative;
	z-index: 2;
}

.interview-wrap .interview-bg {
    position: absolute;
    width: 100%;
    left: 0;
    top: 6.6rem;
    z-index: -1;
    height: 141.4rem;
    overflow: hidden;
}
.interview-wrap .interview-bg:before {
	content: "";
	clip-path: polygon(0% 0%, calc(100% - 13rem) 0%, 100% 50%, calc(100% - 13rem) 100%, 0% 100%);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: calc(50vw + 60rem);
	height: 100%;
	background: #E0F2D9;
}

#interview .interview-wrap .side-monitor .roll-con:after {
    background: #E0F2D9;
}

.interview-introd {
	position: relative;
	z-index: 2;
	margin-top: 8.5rem;
}
.interview-introd .side-monitor .head-large {
	margin-bottom: 3.6rem;
}
.interview-introd .step {
	margin-bottom: 1.2rem;
	color: #57AC39;
	font-size: 6.6rem;
	font-weight: 700;
}
.interview-introd .banner {
	position: relative;
}
.interview-introd .banner .head {
	position: absolute;
	right: 4rem;
	top: -3.6rem;
	-webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
	letter-spacing: 0.2em;
	font-size: 3.4rem;
	font-weight: 700;
    white-space: nowrap;
}
.interview-introd .banner .head span {
	display: inline-block;
	padding: 1.6rem 0;
	margin: 0 1rem;
	background: #57AC39;
	color: #fff;
}
.interview-introd .banner .ban_pic {
	margin-bottom: 3.2rem;
}
.interview-introd .ban_pic {
	overflow: hidden;
	margin-bottom: 8rem;
	border-radius: 1rem;
}
.interview-head {
	margin-bottom: 8rem;
}
.interview-head .jap {
	font-size: 2rem;
	font-weight: 700;
}
.interview-head .name {
	margin-left: 4rem;
	font-size: 4.7rem;
}
.interview-head .name:after {
	content: "さん";
	margin-left: 1.6rem;
	font-size: 2rem;
}
.interview-head .eng {
	margin-top: 1.2rem;
	line-height: 1.127;
	color: transparent;
	text-stroke: 2px #57AC39;
	-webkit-text-stroke: 2px #57AC39;
	font-size: 11.6rem;
	font-weight: 700;
}
#interview3 .interview-head .eng {
	font-size: 10.8rem;
}
.interview-introd-info {
	margin-bottom: 11.8rem;
}
.interview-introd-info li {
	margin-bottom: 4rem;
}
.interview-introd-info .tit {
	margin-bottom: 0.5rem;
	color: #57AC39;
	font-weight: 700;
	font-size: 2rem;
}
.interview-introd-info .display {
	display: flex;
	justify-content: space-between;
}
.interview-introd-info .display.reverse {
	flex-direction: row-reverse;
}
.interview-introd-info .display .img {
	width: 46%;
}
.interview-introd-info .display .img img {
	border-radius: 1rem;
}
.interview-introd-info .display .info {
	width: 50.6%;
}
.interview-introd-info .display .note {
	margin-top: 1.8rem;
	color: #909090;
	font-size: 1.2rem;
	font-weight: 700;
}
.interview-introd-info .display .site-url {
	margin-top: 0.4rem;
	text-align: center;
	line-height: 2;
	font-size: 1.8rem;
	font-weight: 700;
}
.interview-introd-info .display.st2 .img {
	width: 28.23%;
}
.interview-introd-info .display.st2 .info {
	width: 65.88%;
}
.interview-introd-info .display.st3 .img {
	width: 36%;
}
.interview-introd-info .display.st3 .info {
	width: 52.6%;
}

.interview-anchorlink {
	margin-top: 9.6rem;
}
.interview-anchorlink .head {
	margin-bottom: 2.4rem;
	text-align: center;
	color: #57AC39;
	font-weight: 700;
	font-size: 2rem;
}
.interview-anchorlink .links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5rem;
}
.interview-anchorlink .links .img {
	display: block;
	overflow: hidden;
	position: relative;
	border-radius: 1rem;
}
.interview-anchorlink .links .img:after {
	content: "";
	position: absolute;
	right: 1.5rem;
	bottom: 1.1rem;
	width: 3.2rem;
	height: 3.2rem;
	background: url(../img/common/icon_link_c_gre.svg)no-repeat center;
	background-size: 100%;
}
.interview-anchorlink .links .tit {
	margin-top: 1.2rem;
	text-align: center;
	font-weight: 700;
	font-size: 1.4rem;
}
.interview-anchorlink .links .tit .name {
	margin-left: 0.8rem;
	font-size: 1.9rem;
}

.interview-anchorlink .special-link {
	position: relative;
	margin-top: 5rem;
}
.interview-anchorlink .special-link .bg img {
	width: 100%;
}
.interview-anchorlink .special-link .info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	left: 0;
	top: 0;
	padding: 0 3.6rem;
	width: 100%;
	height: 100%;
	color: #fff;
}
.interview-anchorlink .special-link .head-large {
	gap: 1rem;
}
.interview-anchorlink .special-link .head-large .eng {
	letter-spacing: 0.1em;
	font-size: 4.3rem;
    white-space: nowrap;
}
.interview-anchorlink .special-link .head-large .jap {
	font-size: 2.9rem;
	color: #fff;
}
.interview-anchorlink .special-link .btn {
	width: 17.5rem;
}
.interview-anchorlink .special-link .btn-link {
	padding: 0 4rem 0 2.3rem;
	max-width: 100%;
	height: 4.7rem;
	background-color: #57AC39;
	background-size: 2.3rem;
	font-size: 1.1rem;
}
.interview-anchorlink .col3 {
	grid-template-columns: repeat(3, 1fr);
	gap: 3.6rem;
}
.interview-anchorlink .col3 .tit {
    margin-top: 0.8rem;
    font-size: 1rem;
}
.interview-anchorlink .col3 .tit .name {
    margin-left: 1.2rem;
    font-size: 1.4rem;
}
.interview-anchorlink .col3 .img:after {
	right: 1rem;
	bottom: 0.7rem;
	width: 2rem;
	height: 2rem;
}

#interview_special .interview-wrap .interview-bg {
    display: none;
}

.interview-special-info {
	position: relative;
	z-index: 2;
	padding: 8rem 0 8rem 6.5rem;
	color: #fff;
}
.interview-special-info:before {
	content: "";
	position: absolute;
	left: -2.5rem;
	top: 0;
	z-index: -1;
	width: calc(50vw + 36.5rem);
	height: 100%;
	background: url(../img/interview/bg_special2.jpg)no-repeat center;
	background-size: 100% 100%;
	border-radius: 5rem 0 0 5rem;
}
.interview-members ul {
	display: flex;
	gap: 0 8.8rem;
}
.interview-members li {
	position: relative;
}
.interview-members li + li:before {
	content: "";
	position: absolute;
	right: 100%;
	top: 6rem;
	width: 8.8rem;
	height: 2.6rem;
	background: url(../img/interview/icon_close.svg)no-repeat center;
	background-size: 2.6rem;
}
.interview-members li .tit {
	margin-bottom: 1rem;
	font-weight: 500;
}
.interview-members li .name {
	margin-right: 0.8rem;
	font-size: 2.8rem;
}
.interview-members li .txt {
	line-height: 1.6667;
	font-size: 1.2rem;
	font-weight: 700;
}

.interview-special-info .head-large {
	gap: 0;
	margin-bottom: 1.2rem;
	text-align: center;
}
.interview-special-info .head-large .eng {
	font-size: 5.7rem;
}
.interview-special-info .head-large .jap {
	color: #fff;
	font-size: 2.4rem;
}
.interview-special-info .head {
	margin-bottom: 4rem;
	text-align: center;
	font-size: 3.7rem;
	font-weight: 700;
}

.interview-special-info-content {
	margin-top: 6rem;
}
.interview-special-info-content li + li {
	margin-top: 6.8rem;
}
.interview-table table {
	width: 100%;
}
.interview-table th {
	padding: 0 1rem 2.4rem;
	width: 6.8rem;
	text-align: left;
	font-size: 2rem;
	font-weight: 700;
}
.interview-table td {
	padding: 0 0 2.4rem;
}
.interview-special-info .display {
	display: flex;
	justify-content: space-between;
}
.interview-special-info .display .info {
	width: calc(100% - 32.8rem);
}
.interview-special-info .display .img {
	width: 28.8rem;
}
.interview-special-info .display .img img {
    border-radius: 1rem;
}


/*** sp ***/
@media only screen and (max-width : 767px){
	.work-logistics .title {
	    display: block;
	    margin-bottom: 3rem;
	}
	.head-work {
	    font-size: 2rem;
	}
	.work-proposed-logistics {
	    grid-template-columns: repeat(1, 1fr);
	    gap: 4.6rem 0;
	}
	.work-proposed-logistics .notes li {
		font-size: 1.4rem;
	}
	.work-proposed-logistics .img {
	    margin-top: 1.6rem;
	}
	.work-proposed {
	    margin-top: 5rem;
	}
	.side-monitor {
	    position: relative;
		right: 0;
		top: 0;
	    width: auto;
	    height: auto;
	}

	.side-monitor .anchors {
		padding: 4rem 0 7.2rem;
	}

    .side-monitor .roll-con:before {
        height: 100%;
    }

	.side-monitor .head-large {
		margin-bottom: 0.5rem;
	}
	.side-monitor .anchors ul {
		display: grid;
		grid-auto-flow: column;
		grid-template: 1fr 1fr/1fr 1fr;
		gap: 3.2rem 0;
	}
	.side-monitor .anchors li {
		padding-bottom: 0;
	}
	.work-proposed .banner {
		margin: 0 -2.5rem 6.5rem;
	}
	.work-proposed .logistics .banner {
		margin-bottom: 12rem;
	}
	.work-proposed .systems .banner {
		margin-bottom: 14rem;
	}
	.work-proposed .banner img {
		object-fit: cover;
		width: 100%;
		height: 45.5rem;
	}
	.work-proposed .banner .head-large {
	    position: absolute;
	    left: 0;
	    top: 0;
	    padding: 4rem 5.8rem 5rem;
	    min-width: 19.8rem;
	}
	.work-proposed .banner .head-large .jap {
	    font-size: 4rem;
	}
	.work-proposed .banner .head-large .eng {
		font-size: 1.6rem;
	}
	.work-proposed .warehouse .head {
	    right: auto;
		left: 4.8rem;
	    bottom: -4.4rem;
	}
	.work-proposed .logistics .head {
	    left: 1.6rem;
	    bottom: -11.4rem;
	}
	.work-proposed .systems .head {
	    right: auto;
	    left: 1.6rem;
	    top: auto;
	    bottom: -11.4rem;
	}
	.work-proposed .head2 {
	    margin-bottom: 4rem;
	}
	.work-proposed-list {
	    grid-template-columns: repeat(1, 1fr);
	    gap: 4.5rem 0;
	}

	.interview-wrap .interview-bg {
        display: none;
	}
	.interview-introd-wrap {
		margin-top: 7.2rem;
	}
	.interview-introd {
		padding-top: 6rem;
		margin-top: 0;
	}
	.interview-introd:before {
		content: "";
		clip-path: polygon(0% 0%, calc(100% - 11rem) 0%, 100% 50%, calc(100% - 11rem) 100%, 0% 100%);
		position: absolute;
		left: -2.5rem;
		top: 0;
		z-index: -1;
		width: calc(100vw - 2.5rem);
		height: 107rem;
		background: #E0F2D9;
	}
	.interview-introd .side-monitor .head-large {
	    margin-bottom: 0.5rem;
	}
	.interview-introd .step {
	    margin-bottom: 1.2rem;
	    font-size: 3.9rem;
	}

    .interview-introd .banner .ban_pic {
        aspect-ratio: 1 / 1;
    }

    .interview-introd .banner .ban_pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

	.interview-introd .banner .head {
	    right: 0;
	    top: -4rem;
	    letter-spacing: 0.2em;
	    font-size: 2.1rem;
	}

	.interview-head {
	    margin-bottom: 2rem;
	}
	.interview-head .name {
		display: block;
	    margin-left: 0;
	    font-size: 4rem;
	}
	.interview-head .name:after {
		content: "さん";
		margin-left: 1.2rem;
	}
	.interview-head .eng,
    #interview3 .interview-head .eng {
		font-size: 6.3rem;
	}

	.interview-introd-info {
	    margin-bottom: 4rem;
	}
	.interview-introd-info li {
		margin-bottom: 2.4rem;
	}
	.interview-introd-info .tit {
	    margin-bottom: 0.6rem;
	    font-size: 1.8rem;
	}
	.interview-introd-info .display {
	    display: block;
	}
	.interview-introd-info .display .img {
		margin-top: 4rem;
	    width: auto;
	}
	.interview-introd-info .display.reverse .img {
		margin: 0 0 4rem;
	}
	.interview-introd-info .display.st2 .img,
	.interview-introd-info .display.st3 .img {
		margin: 4rem auto 0;
		width: 24rem;
	}
	.interview-introd-info .display .info,
	.interview-introd-info .display.st2 .info,
	.interview-introd-info .display.st3 .info {
	    width: auto;
	}
	.interview-introd-info .display .note {
		margin-top: 1.2rem;
		color: #000;
		font-size: 1rem;
	}
	.interview-introd-info .display .site-url {
		font-size: 1.4rem;
	}

	.interview-anchorlink {
	    margin-top: 5rem;
	}
	.interview-anchorlink .head {
	    margin-bottom: 0.9rem;
	}
	.interview-anchorlink .links {
	    gap: 0.8rem;
	}
	.interview-anchorlink .links .img:after {
		right: 0.6rem;
		bottom: 0.4rem;
		width: 1.2rem;
		height: 1.2rem;
	}
	.interview-anchorlink .links .tit {
	    margin-top: 0.5rem;
	    font-size: 0.8rem;
	}
	.interview-anchorlink .links .tit .name {
	    font-size: 1.2rem;
	}
	.interview-anchorlink .special-link {
	    margin-top: 1.2rem;
	}
	.interview-anchorlink .special-link .info {
		flex-direction: column;
		align-items: flex-end;
	    padding: 1rem 1.6rem 1.5rem;
	}
	.interview-anchorlink .special-link .head-large {
		gap: 0.6rem;
		width: 100%;
	}
	.interview-anchorlink .special-link .head-large .eng {
	    font-size: 2.9rem;
	}
	.interview-anchorlink .special-link .head-large .jap {
	    font-size: 1.9rem;
	}
	.interview-anchorlink .special-link .btn {
	    width: 15.6rem;
	}
	.interview-anchorlink .special-link .btn-link {
	    padding: 0 4rem 0 2rem;
	    height: 4.2rem;
	    background-size: 2rem;
	    font-size: 0.9rem;
	}

	#interview_special .interview-introd {
		padding-top: 0;
	}
	#interview_special .interview-introd:before {
	    content: none;
	}
	.interview-special-info {
		padding: 3.4rem 0 8rem;
	}
	.interview-special-info:before {
		width: calc(100% + 5rem);
		border-radius: 0;
	}
	.interview-special-info .head-large {
	    gap: 1.6rem;
		margin-bottom: 1.6rem;
	}
	.interview-special-info .head-large .eng {
	    font-size: 3.8rem;
	}
	.interview-special-info .head {
	    margin-bottom: 3.2rem;
	    font-size: 1.8rem;
	}
	.interview-members ul {
	    flex-direction: column;
	    gap: 6rem 0;
	}
	.interview-members li + li:before {
	    right: 0;
		top: auto;
	    bottom: 100%;
	    width: 100%;
	    height: 6rem;
	    background-size: 2.6rem;
	}
	.interview-special-info-content {
	    margin-top: 5.6rem;
	}
	.interview-special-info .head-small {
		padding: 0.8rem 2rem;
		font-size: 1.8rem;
	}
	.interview-special-info-content li + li {
	    margin-top: 2.4rem;
	}
	.interview-table th {
		display: block;
	    padding: 0 0 0.8rem;
	    width: 100%;
	}
	.interview-table td {
		display: block;
	    padding: 0 0 2.2rem;
	    width: 100%;
	}

	.interview-special-info .display {
	    display: block;
		margin-bottom: 4rem;
	}
	.interview-special-info .display .img {
		width: auto;
	}
	.interview-special-info .display .info {
		width: auto;
	}

	.interview-anchorlink .col3 {
	    grid-template-columns: repeat(2, 1fr);
		gap: 1.6rem 0.8rem;
	}

}

.environment-warehouse .head {
	margin-bottom: 4rem;
	font-size: 2.8rem;
	font-weight: 700;
}
.environment-warehouse ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
}
.environment-warehouse li {
	padding: 5rem 1rem;
	background: url(../img/environment/bg_warehouse.png)no-repeat center;
	background-size: 100% 100%;
	border-radius: 2rem;
	text-align: center;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
}
.environment-warehouse li .tit {
	padding-top: 7.5rem;
	margin-bottom: 0.5rem;
	background: no-repeat center top;
	background-size: 6rem;
	line-height: 1.2;
	font-size: 2.4rem;
}
.environment-warehouse li .icon_warehouse01 {
	background-image: url(../img/environment/icon_warehouse01.svg);
}
.environment-warehouse li .icon_warehouse02 {
	background-image: url(../img/environment/icon_warehouse02.svg);
}
.environment-warehouse li .icon_warehouse03 {
	background-image: url(../img/environment/icon_warehouse03.svg);
}
.environment-warehouse li .icon_warehouse04 {
	background-image: url(../img/environment/icon_warehouse04.svg);
}
.environment-warehouse li .icon_warehouse05 {
	background-image: url(../img/environment/icon_warehouse05.svg);
}
.environment-warehouse li .icon_warehouse06 {
	background-image: url(../img/environment/icon_warehouse06.svg);
}
.environment-warehouse li .icon_warehouse07 {
	background-image: url(../img/environment/icon_warehouse07.svg);
}
.environment-warehouse li .icon_warehouse08 {
	background-image: url(../img/environment/icon_warehouse08.svg);
}

.about-company .interview-introd-info {
    margin-bottom: 0;
}
.environment-wrap .head-small {
	padding: 0.4rem 2rem;
	font-size: 2.6rem;
}

.recruit-suitable {
	margin-bottom: 6.4rem;
}
.recruit-suitable .head {
	margin-bottom: 8.6rem;
	text-align: center;
	line-height: 2;
	font-size: 1.8rem;
	font-weight: 700;
}
.recruit-suitable .head2 {
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
}
.recruit-suitable .head2 span {
	display: inline-block;
	padding: 1rem 4.5rem;
	background: #57AC39;
	border-radius: 3rem;
	color: #fff;
}
.recruit-suitable .suitable-box {
	position: relative;
	padding: 4.2rem 4rem 3.6rem;
	background: #FCF4ED;
}
.recruit-suitable .suitable-box li {
	line-height: 2;
	font-size: 1.8rem;
	font-weight: 700;
}

.faq-list li {
	padding: 3.2rem 0;
	border-bottom: 1px solid #707070;
}
.faq-list li:first-child {
	padding-top: 1.6rem;
}
.faq-list li p {
	display: flex;
	justify-content: space-between;
	position: relative;
	font-weight: 700;
}
.faq-list li p:before {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 2rem;
}
.faq-list li .txt {
    display: flex;
    align-items: center;
	width: calc(100% - 5rem);
}
.faq-list .quest {
	margin-bottom: 2.4rem;
}
.faq-list .quest:before {
	content: "Q1";
	background: #A8CE97;
}
.faq-list .answer {
	color: #57AC39;
}
.faq-list .answer:before {
	content: "A1";
	background: #32791A;
}

.recruit-site-link {
	position: relative;
	margin-top: 8.8rem;
}
.recruit-site-link .bg img {
	width: 100%;
}
.recruit-site-link .info {
	position: absolute;
	left: 4.8rem;
	right: 4.8rem;
	bottom: 4rem;
}
.recruit-site-link .head-large {
	gap: 1rem;
	text-align: center;
	color: #fff;
}
.recruit-site-link .head-large .eng {
	font-size: 5.2rem;
}
.recruit-site-link .head-large .jap {
	color: #fff;
	font-weight: 900;
	font-size: 2.3rem;
}
.recruit-site-link .btn {
	margin-top: 0.7rem;
	text-align: right;
}
.recruit-site-link .btn-link {
	padding: 0 5rem 0 3.5rem;
	max-width: 24.5rem;
	height: 6.2rem;
	background-position: right 1.8rem center;
	background-color: #57AC39;
	background-size: 3rem;
	font-size: 1.2rem;
}

.recruit-youtube-link {
    margin-top: 9rem;
    text-align: center;
}

.recruit-youtube-link .btn-link {
    text-align: left;
    padding: 0 4.8rem;
    height: 8.4rem;
    max-width: 43.3rem;
    background: url(../img/common/icon_arrow_circle_wh.svg) no-repeat right 2.4rem center #57AC39;
    background-size: 4rem;
    border-radius: 4.2rem;
    font-size: 1.5rem;
}

/*** sp ***/
@media only screen and (max-width : 767px){

	.environment-warehouse .head {
		margin-bottom: 2.6rem;
		font-size: 2rem;
	}
	.environment-warehouse ul {
	    grid-template-columns: repeat(2, 1fr);
	    gap: 1.3rem;
	}
	.environment-warehouse li {
	    padding: 4rem 1rem;
	    font-size: 0.8rem;
	}
	.environment-warehouse li .tit {
	    padding-top: 5rem;
	    margin-bottom: 0.5rem;
	    background-size: 4rem;
	    font-size: 1.4rem;
	}
	.environment-wrap .head-small {
	    font-size: 2rem;
	}

	.recruit-suitable {
	    margin-bottom: 5rem;
	}
	.recruit-suitable .head {
		margin-bottom: 6rem;
		line-height: 2.25;
		text-align: left;
		font-size: 1.6rem;
	}
	.recruit-suitable .head2 {
		font-size: 1.6rem;
	}
	.recruit-suitable .head2 span {
		padding: 1rem 4rem;
	}
	.recruit-suitable .suitable-box {
	    padding: 5.6rem 3.2rem 4.8rem;
	}
	.recruit-suitable .suitable-box li {
		line-height: 2.25;
	    font-size: 1.6rem;
	}
	.faq-list li {
	    padding: 2.8rem 0;
	}
	.faq-list li p {
	    font-size: 1.6rem;
	}
	.faq-list li p:before {
	    width: 3.4rem;
	    height: 3.4rem;
	    font-size: 1.6rem;
	}
	.faq-list li .txt {
	    width: calc(100% - 4.2rem);
	}
	.faq-list .quest {
	    margin-bottom: 1.6rem;
	}

	.recruit-site-link {
	    margin-top: 4.8rem;
	}
	.recruit-site-link .info {
	    left: 2rem;
	    right: 2rem;
	    bottom: 3.8rem;
	}
	.recruit-site-link .head-large {
		gap: 0.2rem;
	}
	.recruit-site-link .head-large .eng {
	    font-size: 2.5rem;
	}
	.recruit-site-link .head-large .jap {
	    font-size: 1rem;
	}
	.recruit-site-link .btn {
	    margin-top: 1.6rem;
	    text-align: center;
	}
	.recruit-site-link .btn-link {
	    padding: 0 3rem 0 2.1rem;
	    max-width: 17rem;
	    height: 3.3rem;
	    background-position: right 1rem center;
	    background-size: 1.6rem;
	    font-size: 1rem;
	}

	.recruit-youtube-link {
        margin-top: 4.8rem;
        text-align: center;
    }

    .recruit-youtube-link .btn-link {
        padding: 0 0 0 2rem;
        height: 6rem;
        max-width: 43.3rem;
        background: url(../img/common/icon_arrow_circle_wh.svg) no-repeat right 2rem center #57AC39;
        background-size: 3rem;
        border-radius: 3rem;
        font-size: 1.3rem;
    }
}
button.wpcf7-form-control,button.wpcf7-form-control {
  position: relative;
	padding: 0 4rem 0 2.6rem;
	height: 5.2rem;
	max-width: 19.4rem;
	background-size: 2.5rem;
	background-color: #57AC39;
	background-position: right 1.5rem center;
	font-size: 1.2rem;
  color: #fff;
  border-radius: 30px;
}
button.wpcf7-form-control:after,button.wpcf7-form-control:after {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
	background: url(../img/common/icon_arrow_circle_wh.svg) no-repeat right center;
	color: #fff;
}

button.wpcf7-form-control:hover {
  opacity: 0.7;
}

.wpcf7-form-control.wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem 2rem; max-width: 38rem;
}

.wpcf7-form-control.wpcf7-radio label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0 1.2rem;
}

.wpcf7-form-control.wpcf7-radio input {
  display: inline-block;
  margin: 0;
  width: 3.6rem;
  height: 3.6rem;
  background: url(../img/contact/icon_radio.svg)no-repeat center;
  background-size: 100%;
}

.wpcf7-form-control.wpcf7-radio input:checked {
  background-image: url(../img/contact/icon_radio_checked.svg);
}

.wpcf7-list-item {
  margin-left: 0!important;
}

/* ===== CF7 確認モーダル ===== */

.cf7-confirm-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}

.cf7-confirm-overlay.is-active {
	display: flex;
}

.cf7-confirm-dialog {
	background: #fff;
	max-width: 640px;
	width: 90%;
	max-height: 80vh;
	padding: 24px 24px 20px;
	border-radius: 8px;
	overflow: auto;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	font-size: 1.4rem;
}

.cf7-confirm-title {
	font-size: 1.8rem;
	margin: 0 0 16px;
	font-weight: 700;
}

.cf7-confirm-list {
	margin: 0 0 16px;
}

.cf7-confirm-list dt {
	font-weight: 700;
	margin-top: 8px;
}

.cf7-confirm-list dd {
	margin: 0 0 4px 0;
	border-bottom: 1px dotted #ddd;
	padding-bottom: 4px;
	word-break: break-all;
}

.cf7-confirm-actions {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 8px;
}

.cf7-confirm-actions button {
	min-width: 120px;
	padding: 8px 16px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-size: 1.4rem;
}

.cf7-confirm-back {
	background: #ccc;
	color: #333;
}

.cf7-confirm-submit {
	background: #e6003d;
	color: #fff;
}
