@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Noto_Sans_JP';
    src: url(../font/Noto_Sans_JP/static/NotoSansJP-Medium.ttf);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/*ヘッダー*/

header {
    position: fixed;
    top: 0;
    display: flex;
    width: 100%;
    background-color: #fff;
    z-index: 999;
}

h1 {
    width: 33%;
    margin-left: 33%;
}

h1 a img {
    width: 100%;
}

nav {
    position: relative;
}

nav ul {
    display: none;
    position: absolute;
    top: 13vw;
    left: -66vw;
    width: 100vw;
    list-style-type: none;
}

nav ul li {
    position: relative;
    width: 100%;
}

nav ul li a {
    display: block;
    text-align: center;
    line-height: 4;
    font-size: 4vw;
    font-family: 'Noto_Sans_JP';
    text-decoration: none;
    color: #222;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #fff;
    background-color: rgb(244, 0, 0);
    transition: 0.3s;
}

nav ul li:nth-child(4) a {
    color: red;
}

.insta {
    position: relative;
    top: 0.5vw;
    left: 24vw;
    width: 5%;
}

.insta a {
    display: block;
    text-align: center;
    color: #666;
    font-size: 9vw;
}

/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active ul {
	/*transform: translateY(0%);/*上から出したい場合は、transform: translateYを使う。*/
    display: block;
    background-color: rgba(255,255,255,1);
    animation: humbarger 0.8s;
}

@keyframes humbarger {
	0% { width: 10vw; }
  100% { width: 100vw; }
}

/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;    /* bodyに対しての絶対位置指定 */
    top: 1.5vw;
    left: 12px;
    width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 3;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
	display: block;
	position: absolute;
	width: 22px;
	border-bottom: solid 3px #000;
	transition: .35s ease-in-out;			/*変化の速度を指定*/
	left: 6px;
}

.Toggle span:nth-child(1) {
	top: 9px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

/*メイン*/

main {
    padding-top: 30%;
}

/*トップ画像*/

.recruitment-top {
    position: relative;
    width: 100%;
    height: 55vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/mv-photo-item1.webp);
}

.recruitment-top h2 {
    position: absolute;
    top: -10vw;
    left: 39%;
    font-size: 4vw;
    font-weight: 200;
    letter-spacing: 0.5em;
    font-family: 'Noto_Sans_JP';
    color: #444;
}

.recruitment-top p {
    position: absolute;
    top: -5vw;
    left: 30%;
    font-size: 6vw;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-family: 'Noto_Sans_JP';
    color: rgb(244, 0, 0);
   
}

/*会社案内*/

.column {
    display: flex;
    margin-top: -8%;
}

.section-left {
    width: 100%;
}

/*採用メッセージ*/

.section-left-back {
    padding: 15% 0 10%;
    border-bottom-right-radius: 2.5rem;
    background-color: rgb(248, 248, 248);
}

.recruitment-massage h2 {
    position: relative;
    margin-left: 8%;
    margin-bottom: 3%;
    letter-spacing: 0em;
    color: #222;
    font-size: 5vw;
    font-family: 'Noto_Sans_JP';
}

.recruitment-massage h2::before {
    position: absolute;
    top: -1.8vw;
    left: -4%;
    width: 10%;
    height: 3vw;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/section-title-decoration.svg);
}

.recruitment-massage p:nth-child(2) {
    width: 90%;
    margin-left: 8%;
    margin-bottom: 2%;
    padding-bottom: 2%;
    color: #222;
    font-size: 3vw;
    letter-spacing: 0em;
    border-bottom: 1px solid #aaa;
    font-family: 'Noto_Sans_JP';
}

.recruitment-massage img {
    width: 90%;
    margin-left: 8%;
}

.recruitment-massage p:nth-child(4) {
    width: 90%;
    margin-top: 5%;
    margin-left: 8%;
    letter-spacing: 0.2em;
    line-height: 2;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

/*キャリアステップ*/

.career-steps {
    margin-top: 10%;
}

.career-steps h2 {
    position: relative;
    margin-left: 8%;
    margin-bottom: 3%;
    letter-spacing: 0em;
    color: #222;
    font-size: 5vw;
    font-family: 'Noto_Sans_JP';
}

.career-steps h2::before {
    position: absolute;
    top: -1.8vw;
    left: -4%;
    width: 10%;
    height: 3vw;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/section-title-decoration.svg);
}

.career-steps img {
    width: 88%;
    margin-left: 8%;
    margin-bottom: 5%;
}

.career-steps-flex {
    display: flex;
    width: 86%;
    margin-left: 8%;
    padding: 3% 0;
    border-bottom: 1px solid #aaa;
}

.career-steps-flex:nth-of-type(1) {
    border-top: 1px solid #aaa;
}

.career-steps-flex:nth-child(odd) {
    background-color: rgb(248, 248, 248);
}

.no {
    width: 15%;
    text-align: center;
    color: rgb(244, 0, 0);
    font-size: 3vw;
    font-weight: 800;
    font-family: 'Noto_Sans_JP';   
}

.career-steps-box {
    width: 80%;
    height: 30vw;
}

.career-steps-box p:nth-child(1) {
    white-space: pre-wrap;
    letter-spacing: 0em;
    color: #222;
    font-size: 3vw;
    font-weight: 600;
    font-family: 'Noto_Sans_JP';
}

.career-steps-box p:nth-child(2) {
    margin-top: 3%;
    letter-spacing: 0.1em;
    color: #222;
    font-size: 2.8vw;
    font-family: 'Noto_Sans_JP';
}

/*女性のライフイベントサポート制度*/

.women-support {
    margin-top: 10%;
    margin-left: 8%;
}

.women-support h2 {
    position: relative;
    margin-bottom: 3%;
    letter-spacing: 0em;
    color: #222;
    font-size: 5vw;
    font-family: 'Noto_Sans_JP';
}

.women-support h2::before {
    position: absolute;
    top: -1.8vw;
    left: -4%;
    width: 10%;
    height: 3vw;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/section-title-decoration.svg);
}

.women-support-sdgs {
    display: flex;
    width: 85%;
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 5% 5% 5%;
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: rgb(255, 185, 0);
}

.women-support-sdgs p {
    margin-left: 18%;
    margin-right: 2%;
    line-height: 3;
    font-size: 2.3vw;
    letter-spacing: 0.2em;
    color: #222;
    font-family: 'Noto_Sans_JP';
}

.women-support-sdgs img {
    width: 8vw;
    height: 8vw;
    margin-left: 2%;
}

.women-support-back {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/life-event-arrow.webp);
}

.women-support-flex1 {
    display: flex;
    margin-top: 0%;
}

.women-support-flex1 img:nth-child(1) {
    width: 10%;
    height: 10%;
    margin-top: 1%;
    margin-left: 10%;
}

.women-support-flex1 img:nth-child(2) {
    width: 22%;
    height: 22%;
    margin-left: 20%;
}

.women-support-flex2 {
    display: flex;
    margin-top: 2%;
}

.women-support-flex2 img:nth-child(1) {
    width: 14%;
    height: 14%;
    margin-top: 1%;
    margin-left: 10%;
}

.women-support-flex2 img:nth-child(2) {
    width: 23%;
    height: 23%;
    margin-left: 15%;
}

.women-support-flex2 img:nth-child(3) {
    width: 24%;
    height: 24%;
    margin-top: 4%;
    margin-left: 12%;
}

.women-support-flex3 img {
    width: 36%;
    height: 36%;
    margin-top: 2%;
    margin-left: 64%;
}

.women-support a {
    display: block;
    width: 70%;
    margin: 10% auto;
    padding-top: 1%;
    padding-bottom: 1%;
    text-align: center;
    text-decoration: none;
    line-height: 1.8;
    white-space: pre-wrap;
    color: #fff;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
    border-radius: 1em;
    box-shadow: 0 0 10px #999;
    background-color: rgb(244, 0, 0);
    transition: 0.5s;
}

.women-support a:hover {
    color:  rgb(244, 0, 0);
    background-color: #fff;
    transition: 0.5s;
}

/*数字でみる株式会社キノシタ*/

.numbers {
    margin-top: 10%;
    margin-left: 8%;
}

.numbers h2 {
    position: relative;
    margin-bottom: 3%;
    letter-spacing: 0.1em;
    color: #222;
    font-size: 5vw;
    font-family: 'Noto_Sans_JP';
}

.numbers h2::before {
    position: absolute;
    top: -1.8vw;
    left: -4%;
    width: 10%;
    height: 3vw;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/section-title-decoration.svg);
}

.numbers-flex1 {
    display: flex;
    margin-top: 5%;
}

.numbers-flex1 div:nth-child(1) {
    width: 20%;
    padding: 2% 6% 2%;
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: rgb(248, 248, 248);
}

.numbers-flex1 div:nth-child(1) h3 {
    text-align: center;
    color: #222;
    font-size: 3.5vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex1 div:nth-child(1) img {
    width: 100%;
    margin-top: 12%;
    margin-bottom: 5%;
}

.numbers-flex1 div:nth-child(1) p {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex1 div:nth-child(1) p span {
    font-size: 4vw;
}

.numbers-flex1 div:nth-child(2) {
    width: 20%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 2% 6% 2%;
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: rgb(248, 248, 248);
}

.numbers-flex1 div:nth-child(2) h3 {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex1 div:nth-child(2) img {
    width: 100%;
    margin-top: 11%;
    margin-bottom: 5%;
}

.numbers-flex1 div:nth-child(2) p {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex1 div:nth-child(2) p span {
    font-size: 4vw;
}

.numbers-flex1 div:nth-child(3) {
    width: 26%;
    padding: 2% 3% 2%;
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: rgb(13, 169, 225);
}

.numbers-flex1 div:nth-child(3) h3 {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex1 div:nth-child(3) img {
    width: 60%;
    margin-top: 10%;
    margin-left: 15%;
    margin-bottom: 4%;
}

.numbers-flex1 div:nth-child(3) p {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex1 div:nth-child(3) p span {
    font-size: 4vw;
}

.numbers-flex2 {
    width: 68%;
    margin-top: 5%;
    padding: 2% 16% 2%;
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: rgb(248, 248, 248);
}

.numbers-flex2 h3 {
    margin-bottom: 3%;
    text-align: center;
    color: #222;
    font-size: 3.5vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex2 img {
    width: 100%;
}

.numbers-flex2 p {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex2 p span {
    font-size: 4vw;
}

.numbers-flex3 {
    display: flex;
    width: 100%;
    margin-top: 5%;
}

.numbers-flex3 div:nth-child(1) {
    width: 24%;
    padding: 2% 12% 2%;
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: rgb(155, 217, 69);
}

.numbers-flex3 div:nth-child(1) h3 {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex3 div:nth-child(1) img {
    width: 96%;
    margin-top: 5%;
    margin-left: 2%;
    margin-bottom: 3%;
}

.numbers-flex3 div:nth-child(1) p {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex3 div:nth-child(1) p span {
    font-size: 4vw;
}

.numbers-flex3 div:nth-child(2) {
    width: 24%;
    margin-left: 4%;
    padding: 2% 12% 2%;
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: rgb(248, 248, 248);
}

.numbers-flex3 div:nth-child(2) h3 {
    text-align: center;
    color: #222;
    font-size: 3.5vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex3 div:nth-child(2) img {
    width: 88%;
    margin-top: 18%;
    margin-left: 8%;
    margin-bottom: 4%;
}

.numbers-flex3 div:nth-child(2) p {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex3 div:nth-child(2) p span {
    font-size: 4vw;
}

.numbers-flex4 {
    display: flex;
    margin-top: 5%;
}

.numbers-flex4 div:nth-child(1) {
    width: 20%;
    padding: 2% 6% 2%;
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: rgb(248, 248, 248);
}

.numbers-flex4 div:nth-child(1) h3 {
    text-align: center;
    color: #222;
    font-size: 3.5vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex4 div:nth-child(1) h3 span {
    font-size: 3vw;
}

.numbers-flex4 div:nth-child(1) img {
    width: 100%;
    margin-top: 12%;
    margin-bottom: 5%;
}

.numbers-flex4 div:nth-child(1) p {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex4 div:nth-child(1) p span {
    font-size: 4vw;
}

.numbers-flex4 div:nth-child(2) {
    width: 20%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 2% 6% 2%;
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: rgb(248, 248, 248);
}

.numbers-flex4 div:nth-child(2) h3 {
    text-align: center;
    color: #222;
    font-size: 3.5vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex4 div:nth-child(2) img {
    width: 100%;
    margin-top: 45%;
    margin-bottom: 5%;
}

.numbers-flex4 div:nth-child(2) p {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex4 div:nth-child(2) p span {
    font-size: 4vw;
}

.numbers-flex4 div:nth-child(3) {
    width: 26%;
    padding: 2% 3% 2%;
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: rgb(255, 228, 15);
}

.numbers-flex4 div:nth-child(3) h3 {
    text-align: center;
    color: #222;
    font-size: 3.5vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex4 div:nth-child(3) img {
    width: 71%;
    margin-top: 10%;
    margin-left: 20%;
    margin-bottom: 5%;
}

.numbers-flex4 div:nth-child(3) p {
    text-align: center;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
}

.numbers-flex4 div:nth-child(3) p span {
    font-size: 4vw;
}

/*採用FAQ*/

.faq {
    margin-top: 10%;
    padding: 5% 0 5% 8%;
    border-top-right-radius: 2.5rem;
    border-bottom-right-radius: 2.5rem;
    background-color: rgb(248, 248, 248);
}

.faq h2 {
    position: relative;
    margin-bottom: 3%;
    letter-spacing: 0.1em;
    color: #222;
    font-size: 5vw;
    font-family: 'Noto_Sans_JP';
}

.faq h2::before {
    position: absolute;
    top: -1.8vw;
    left: -4%;
    width: 10%;
    height: 3vw;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/section-title-decoration.svg);
}

.faq p {
    display: block;
    width: 90%;
    margin-top: 5%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 5%;
    text-decoration: none;
    line-height: 3;
    white-space: pre-wrap;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: #fff;
    transition: 0.5s;
}

.faq p:hover {
    color:  #fff;
    background-color: rgb(244, 0, 0);
    transition: 0.5s;
}

/*募集要項*/

.information {
    margin-top: 10%;
    margin-left: 8%;
}

.information h2 {
    position: relative;
    margin-bottom: 3%;
    letter-spacing: 0.1em;
    color: #222;
    font-size: 5vw;
    font-family: 'Noto_Sans_JP';
}

.information h2::before {
    position: absolute;
    top: -1.8vw;
    left: -4%;
    width: 10%;
    height: 3vw;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/section-title-decoration.svg);
}

.information p {
    display: block;
    width: 90%;
    margin-top: 5%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 5%;
    text-decoration: none;
    line-height: 3;
    white-space: pre-wrap;
    color: #222;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
    border-radius: 1rem 2.5rem 2.5rem;
    background-color: rgb(248, 248, 248);
    transition: 0.5s;
}

.information p:hover {
    color:  #fff;
    background-color: rgb(244, 0, 0);
    transition: 0.5s;
}

.information a {
    display: block;
    width: 70%;
    margin: 10% auto;
    padding-top: 1%;
    padding-bottom: 1%;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    white-space: pre-wrap;
    color: #fff;
    font-size: 3vw;
    font-family: 'Noto_Sans_JP';
    border-radius: 1em;
    box-shadow: 0 0 10px #999;
    background-color: rgb(244, 0, 0);
    transition: 0.5s;
}

.information a:hover {
    color:  rgb(244, 0, 0);
    background-color: #fff;
    transition: 0.5s;
}

/*サイドバー*/

.section-right {
    display: none;
}

/*ユースエール認定企業*/

.youth-yell {
    display: flex;
    width: 82%;
    margin: 15% auto 0%;
}

.youth-yell-image {
    width: 15%;
}

.youth-yell-image img {
    width: 100%;
}

.youth-yell-text {
    width: 75%;
    margin-left: auto;
}


.youth-yell-text h3 {
    letter-spacing: 0.1em;
    color: #222;
    font-size: 4vw;
    font-family: 'Noto_Sans_JP';
}

.youth-yell-text p {
    margin-top: 2%;
    margin-bottom: 5%;
    line-height: 1.5;
    color: #222;
    font-size: 2.8vw;
    font-family: 'Noto_Sans_JP';
}

/*フッター*/

footer {
    width: 100%;
    height: 59vw;
    margin-top: 5%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/footer-bg.svg);
}

.yajirushi {
    width: 1.5%;
    height: 5vw;
    margin: 0 auto;
    content: "";
    clip-path: polygon(0 0, 100% 14%, 100% 100%, 0% 100%);
    background: #ffbc0d;
    transition: 0.8s;
}

.yajirushi:hover {
    transform: scale(-1, 1);
    transition: 0.8s;
}

footer a {
    text-decoration: none;
}

footer a p {
    text-align: center;
    color:  rgb(244, 0, 0);
    font-size: 2.8vw;
    font-family: 'Noto_Sans_JP';
}

.footer-image {
    width: 50%;
    margin: 5% auto 3%;
}

.footer-image img {
    width: 100%;
}

footer address {
    text-align: center;
    line-height: 2;
    color:  #fff;
    font-size: 2.8vw;
    font-family: 'Noto_Sans_JP';
}

.mac-image-footer {
    position: relative;
    width: 100%;
}

.mac-image-footer img:nth-child(1) {
    position: absolute;
    top: 8vw;
    height: 8vw;
    animation: macanime2 40s linear infinite;
}

@keyframes macanime2 {
    0% {transform: translateX(43%);}
  100% {transform: translateX(-90%);}
}

.mac-image-footer img:nth-child(2) {
    position: absolute;
    height: 36vw;
    top: -3vw;
    left: 68vw;
    animation: swing 10s linear infinite;
    transform: rotate(20deg);
}

@keyframes swing {
    50% {transform: rotate(-20deg);}
    100% {transform: rotate(20deg);}
}

