@charset "UTF-8";
/* CSS Document */



@media (max-width: 1184px) {
#header_inner {
    padding-bottom: 0px;
    align-items: center;
}
#head_logo {
    min-width: 312px;
}
#head_tel-navi-contact {
    width: 100%;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    margin-right: 0px;
    z-index: 1001;
    border-bottom: none;
    align-items: center;
}
#head_tel-navi{
	margin-right: 16px;
	padding-top: 0px;
}
.head_tel {
	margin-bottom: 0px;
}
.head_navi_ul {
    display: none;
    list-style: none;
    gap: 8px;
}
/* ハンバーガーアイコン */

#hamburger_box {
    background-color: #494949;
    padding: 18px;
    display: inherit;
    text-align: center;
}

#hamburger {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40px;
    height: 48px;
    cursor: pointer;
    z-index: 1002;
}
#hamburger span {
    display: block;
  height: 1.5px; /* 細くする */
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
#hamburger .menu_text {
	font-family: "Anton", sans-serif;
    height: 0px; /* 細くする */
    background-color: hsla(0,0%,100%,0.00);
    font-size: 17px;
    line-height: 1em;
	font-weight: 400;
}
header.scrolled #hamburger .menu_text {
    color:#fff; 
}
/* ハンバーガー開閉時のアニメーション */
#hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}
#hamburger.active span:nth-child(2) {
  opacity: 0;
}
#hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}



/* SPメニュー全体 */
#sp_menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #494949;
    padding-top: 96px;
    padding-bottom: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 80px;
    padding-right: 80px;
    overflow-y: scroll;  /* 常に縦スクロールバーを表示 */
    background-image: url(../images/logo_mark_wht.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 50% auto;
	z-index: 1001;
}

/* メニューが開いた時 */
#sp_menu.active {
  opacity: 1;
  visibility: visible;
}

.sp_menu_logo {
  width: 264px;
  margin-bottom: 30px;
}

/* メニューリスト */
.sp_menu_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* メニューアイテム */
.sp_item {
	color: #fff;
}

/* メニューアイテム */
.sp_item > a {
    display: flex;
    justify-content: space-between; /* アイテムとアイコンの間にスペースを確保 */
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: background-color 0.3s ease;
    width: 100%;  /* 親要素いっぱいに広がらないように */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 0.04em solid #C4C4C4;
    background-image: url(../images/arrow_wht_s.svg);
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 26px auto;
    padding-right: 16px;
}

.sp_item > a:hover {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.sp_item.has-accordion > a {
	background-image: none;
}

/* アコーディオンアイコン（+ と -） */
.sp_item > a .accordion-toggle {
    font-size: 20px;
    display: inline-block;
    position: relative;
    width: 20px;  /* アイコンの幅 */
    height: 20px;  /* アイコンの高さ */
    margin-left: 10px; /* アイコンとテキストの間にスペース */
    transition: transform 0.3s ease;
}

/* 直線の縦線（+） */
.sp_item > a .accordion-toggle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 9px;  /* 横にセンタリング */
    width: 2px;  /* 縦線の太さ */
    height: 100%;
    transition: transform 0.3s ease;  /* 回転時のトランジション */
    background-color: #FFFFFF;
}

/* 直線の横線（+） */
.sp_item > a .accordion-toggle::after {
    content: "";
    position: absolute;
    top: 9px;  /* 横にセンタリング */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
}

/* 開いた状態で「-」にする（縦線を回転） */
.sp_item > a .accordion-toggle.open::before {
  transform: rotate(90deg);  /* 縦線を45度回転 */
}

/* 閉じた状態で「+」に戻る（回転なし） */
.sp_item > a .accordion-toggle:not(.open)::before {
  transform: rotate(0);  /* 縦線は回転しない */
}

/* 子メニュー */
.sp_submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 8px;
}

.sp_submenu.open {
  max-height: 500px;
}

.sp_submenu li {
  padding: 5px 0;
}

.sp_submenu li a {
    font-size: 16px;
    text-decoration: none;
    padding-top: 12px;
    padding-right: 10px;
    padding-left: 16px;
    padding-bottom: 12px;
    transition: background-color 0.3s ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    font-weight: 500;
    background-image: url(../images/arrow_wht_s.svg);
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 26px auto;
    background-color: #8A8A8A;
}


#sp_navi_contact a {
    background-color: #de2526;
    padding-left: 16px;
    border-radius: 24px;
    padding-right: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    display: none;
    color: #FFFFFF;
}
#sp_navi_cdg-logo {
    width: 88px;
	display: none;
}

}









@media (max-width: 700px) {
html{
	scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: 100px; /* ヘッダー分のズレ調整を一括管理 */
}
body{
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    margin: 0px;
    padding: 0px;
    line-height: 1;
    color: #002236;
	height: 100%;
}
img{
max-width: 100%;
margin: 0;
padding: 0;
vertical-align: bottom;
height:auto;
}
h1,h2,h3,h4,h5,h6,p,ul {
margin-top: 0px;
margin-right: 0px;
margin-left: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-right: 0px;
padding-left: 0px;
padding-bottom: 0px;
line-height:1;
}
ul {
list-style-type: none;
	margin: 0;
	padding: 0;
}
.cl {
clear: both;
}
a {
	text-decoration: none;
color: inherit;
}
a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.eng {
	font-family: "Anton", sans-serif;
}

header {
    width: 100%;
    position: fixed;
    color: #FFFFFF;
    z-index: 1100;
    top: 0px;
    left: 0px;
	background: transparent;
	transition: background-color 0.3s ease, padding 0.3s ease;
}


/* スクロール時のヘッダーcssここから */

header.scrolled {
    background: #fff;
    color: #002236;
    box-shadow: 0 6px 16px hsla(0,0%,40%,0.08);
}
#head_logo img {
  content: url("../images/logo.svg");
  transition: 0.3s;
}
header.scrolled #head_logo img {
  content: url("../images/logo_color.svg");
}
header.scrolled #head_tel-navi-contact {
    border-bottom: none !important;
}
.head_tel img {
  content: url("../images/ico_tel.svg");
  transition: 0.3s;
}
header.scrolled .head_tel img {
  content: url("../images/ico_tel_blck.svg");
}
header.scrolled .head_contact p{
	color: #fff;
}

/* スクロール時のヘッダーcssここまで */



/* リクルートのヘッダーcssここから */

header.recruit_header {
    background: #fff;
    color: #002236;
    box-shadow: 0 6px 16px hsla(0,0%,40%,0.08);
}
#head_logo img {
  content: url("../images/logo.svg");
  transition: 0.3s;
}
header.recruit_header #head_logo img {
  content: url("../images/logo_color.svg");
}
header.recruit_header #head_tel-navi-contact {
    border-bottom: none !important;
}
.head_tel img {
  content: url("../images/ico_tel.svg");
  transition: 0.3s;
}
header.recruit_header .head_tel img {
  content: url("../images/ico_tel_blck.svg");
}
header.recruit_header .head_contact p{
	color: #fff;
}

/* リクルートのヘッダーcssここまで */



#header_inner {
    box-sizing: border-box;
    padding-right: 0;
    padding-left: 2.3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-repeat: no-repeat;
	
}
#head_logo {
    width: 232px;
    box-sizing: border-box;
    min-width: 0px;
}
#head_tel-navi-contact{
	border-bottom: 1.6px solid #FFFFFF;
	display: flex;
	justify-content: space-between;
	display: none;
}

#head_tel-navi{
	margin-right: 16px;
	padding-top: 20px;
}
.head_tel {
	font-family: "Anton", sans-serif;
	box-sizing: border-box;
    font-size: 32px;
    line-height: 1em;
    font-weight: 500;
/*          width: 312px;*/
	letter-spacing: 0;
	text-align: right;
	    margin-right: 8px;
	margin-bottom: 6px;
}
.head_tel img {
	display: inline-block;
    width: 28px;
    margin-right: 10px;
        vertical-align: bottom;
	margin-bottom: 1px;
}
.head_navi_ul {
    display: flex;
    list-style: none;
    gap: 8px;
    justify-content: flex-end;
}
.head_navi_item {
	font-size: 15px;
	font-weight: 600;
	padding: 0;
	margin: 0;
}
.head_navi_item a {
    padding-top: 12px;
    padding-right: 8px;
    padding-left: 16px;
    padding-bottom: 18px;
    display: block;
    background-image: url(../images/onp_8_blue.svg);
    background-repeat: no-repeat;
    background-position: left top 10px;
    background-size: 10px auto;
}
.head_navi_item:first-child a{
	padding-left: 2px;
}
.head_contact{
	box-sizing: border-box;
}
.head_contact a{
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 96px;
	height: 100%;
	padding: 12px 16px;
	background: linear-gradient(
    to right top,
    #009685 0%,
    #00964F 100%
  );
	
}
.head_contact img{
	box-sizing: border-box;
	width: 28px;
	display: block;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 16px;
}
.head_contact p{
	text-align: center;
	font-family: "Anton", sans-serif;
	line-height: 1em;
	font-weight: 500;
	font-size: 17px;
}

#sp_navi {
    display: none;
}

#hamburger_box {
    background-color: #494949;
    padding: 14px;
    display: inherit;
    text-align: center;
}
#hamburger {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 32px;
    height: 40px;
    cursor: pointer;
    z-index: 1002;
}

#hamburger .menu_text {
    font-size: 12px;
}

#sp_menu {
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 64px;
}

/*ヘッダーここまで*/

.content_wrap{
    max-width: 1400px;
    padding-right: 6.15%;
    padding-left: 6.15%;
    margin-right: auto;
    margin-left: auto;
}
.h2_h2 {


}
.h2h2_abc {
    font-family: "Anton", sans-serif;
    font-size: 48px;
    line-height: 1em;
    font-weight: 400;
    color: #DADEDF;
    margin-bottom: 3.07%;
}
.h2h2_abc span{
	background: linear-gradient(48deg, #009687 30%, #00964C 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h2h2_abc::first-letter {
	background: linear-gradient(48deg, #009687 30%, #00964C 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.child_border-tit::first-letter{
	background: linear-gradient(48deg, #009687 30%, #00964C 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.child_h2h2_abc::first-letter{
	background: linear-gradient(48deg, #009687 30%, #00964C 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.h2_h2 h2 {
    font-size: 22px;
    line-height: 1.5em;
}

.border-tit{
    padding-left: 64px;
    position: relative;
}
.border-tit::before {
    position: absolute;
    content: "";
    width: 56px;
    height: 1px;
    bottom: 40%;
    left: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #0a2a3a;
}

.contact_box{
    box-sizing: border-box;
    text-align: center;
    padding-top: 7.69%;
    padding-bottom: 14.61%;
    padding-right: 6.15%;
        padding-left: 6.15%;
        margin-right: auto;
        margin-left: auto;
    background-image: url("../images/kairo_bg_2.svg");
    background-position: center bottom;
    background-size: 220% auto;
    background-repeat: no-repeat;
    background-color: #F7F8FB;
}
.contact_box h2{
	margin-bottom: 10px;
	font-size: 48px;
	
}
.contact_box_tel-mail{
	box-sizing: border-box;
	display: flex;
	    max-width: 1400px;
	margin-right: auto;
	margin-left: auto;
	flex-direction: column;
}
.contact_box_tel{
	box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	background: linear-gradient(to right top, #009685 20%, #00964F 96.92%);
	padding:28px 16px;
	color:#FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact_box_tel h3{
	font-size: 20px;
	font-weight: 600;
	line-height: 1em;
	margin-bottom: 18px;
}
.contact_box_tel_time{
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 12px;
	line-height: 1em;
}
.contact_box_tel_number{
	font-family: "Anton", sans-serif;
	font-size: 28px;
	line-height: 1em;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-indent: 0.05em;
}
.contact_box_tel_number img{
	display: inline-block;
	    vertical-align: bottom;
	width: 24px;
	margin-right: 8px;
}
.contact_box_tel_number a{
	pointer-events: inherit;
}
.contact_box_mail{
	box-sizing: border-box;
	width: 100%;
	padding: 24px 16px;
	border-top: 0 solid #009450;
	border-right: 1px solid #009450;
	border-left: 1px solid #009450;
	border-bottom: 1px solid #009450;
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact_box_mail h3{
	color:#009450;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	margin-bottom: 18px;
}
.contact_box_mail p{
	
}
.contact_box_mail p a{
	box-sizing: border-box;
	font-family: "Anton", sans-serif;
	display: block;
	background: linear-gradient(to right top, #009685 0%, #00964F 100%);
	background-position: center center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	color: #FFFFFF;
	font-size: 24px;
	line-height: 1em;
	font-weight: 500;
	width: 224px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 14px;
	padding-bottom: 14px;
	padding-right: 4px;
	padding-left: 16px;
	text-align: center;
	
}
.contact_box_mail_L{
	box-sizing: border-box;
	display: inline-block;
	    vertical-align: bottom;
	width: 24px;
	margin-right: 8px;
}
.contact_box_mail_R{
	box-sizing: border-box;
	display: inline-block;
	width: 40px;
	margin-left: 2px;
	margin-right: 8px;
	    vertical-align: super;
}
.link_btn{
}
.link_btn a{
    display: block;
    background: linear-gradient(to right top, #009685 0%, #00964F 100%);
    background-position: center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 1em;
    font-weight: 600;
    width: 224px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0;
    text-align: center;
	box-sizing: border-box;
}
.link_btn img {
    display: inline-block;
    width: 44px;
    margin-left: 10px;
    vertical-align: super;
}


footer{
    color: #FFFFFF;
    background-image: none, -webkit-linear-gradient(45deg,rgba(0,150,133,1.00) 0%,rgba(0,150,79,1.00) 100%);
    background-image: none, -moz-linear-gradient(45deg,rgba(0,150,133,1.00) 0%,rgba(0,150,79,1.00) 100%);
    background-image: none, -o-linear-gradient(45deg,rgba(0,150,133,1.00) 0%,rgba(0,150,79,1.00) 100%);
    background-image: none, linear-gradient(to right top, #009685 0%, #00964F 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: right -264px top, left top;
    background-size: auto 100%, 100% 100%;
    padding-top: 11.53%;
    padding-right: 2.3%;
    padding-left: 2.3%;
    padding-bottom: 9.23%;
}
#foot_flex{
    display: flex;
    border-bottom-style: none;
    border-bottom-width: 2px;
    padding-bottom: 16px;
    margin-bottom: 32px;
    flex-direction: column;
}
#foot_L{
    width: 100%;
    margin-right: 0;
}
#foot_L p{
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 500;
	margin-bottom: 4px;
}
#foot_L p:last-of-type{
	margin-bottom: 0;
}
#foot_logo{
	width: 224px;
	margin-bottom: 24px;
    box-sizing: border-box;
}
#foot_logo img{
	width: 100%;
}
#foot_R{
	display: none;
}

#foot_all-right{
	font-size: 12px;
	line-height: 1em;
	font-weight: 400;
}
/*フッターここまで*/

.pagetit_wrap{
    background-image: url(../images/mv_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 88px;
    padding-bottom: 10.76%;
}
#pagetitle{
	position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
        padding-top: 3.07%;
    padding-bottom: 3.07%;
}
#pagetitle h1{
	position: relative;
    z-index: 1;
    text-align: center;
    font-size: 26px;
    color: #FFFFFF;
    line-height: 1.2em;
	font-weight: 700;
}
#pt_abc{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 68px;
    line-height: 1em;
    font-weight: 500;
    color: hsla(0,0%,100%,0.24);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    font-family: "Anton", sans-serif;
}
.pagetit_wrap.recruit_pt {
    background-image: url(../images/mv_recruit_bg.png);
    margin-top: 103px;
    padding-top:32px;
    padding-bottom: 24px;
}
.pagetit_wrap.recruit_pt.rec_pt_top {
    padding-bottom: 72px;
}
.pagetit_wrap.recruit_kaso_about_pt {
    background-image: url("../images/recruit_kaso-tit_about.png");
}
.pagetit_wrap.recruit_kaso_careers_pt {
    background-image: url("../images/recruit_kaso-tit_careers.png");
}
.pagetit_wrap.recruit_kaso_welfare_pt {
    background-image: url("../images/recruit_kaso-tit_welfare.png");
}
.pagetit_wrap.recruit_kaso_factory_pt {
    background-image: url("../images/recruit_kaso-tit_factory.png");
}
.pagetit_wrap.recruit_kaso_interview_pt {
    background-image: url("../images/recruit_kaso-tit_interview.png");
}


.child_h2_h2{
    margin-bottom: 16px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1400px;
/*
    padding-left: 6.15%;
    padding-right: 6.15%;
*/
}
.child_h2_h2_in{
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-direction: column;
	margin-bottom: 12px;
}
.child_h2h2_abc{
    font-family: "Anton", sans-serif;
    font-size: 40px;
    line-height: 1em;
    font-weight: 400;
    color: #DADEDF;
	margin-bottom: 12px;
}
.child_h2h2_abc span{
	    background: linear-gradient(48deg, #009687 30%, #00964C 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.child_h2_h2_in img{
    width: 100%;
}
.child_border-tit{
    font-size: 21px;
    line-height: 1.4em;
    padding-left: 52px;
    font-weight: 600;
    position: relative;
}
.child_border-tit::before{
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    bottom: 50%;
    left: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #0a2a3a;
}
.child_border-tit span{
	background: linear-gradient(48deg, #009687 30%, #00964C 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.font_green_gra{
	background: linear-gradient(48deg, #009687 30%, #00964C 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.font_gray{
	        color: #DADEDF;
}
.font_green{
	color: #009450;
}
.inline-b{
	display: inline-block;
}
.pc_no-link{
	pointer-events: inherit;
}
.br_sp{
	display: inherit;
	}
}
.br_pc{
		display:none;
	}
