@charset "utf-8";
/*
ページごとの設定や、位置調整、テキスト装飾などで使用する汎用的なものとを記述します。
Anything used for general purpose such as setting for every page, position adjustment, and text decoration will be written.

接頭辞はUtilityの頭文字を取って【u_】とします。
Prefix will take the "Utility" first letter and use it as "u_".

clearfixのみ、例外的に接頭辞をつけてません。
This not apply to "clearfix".

フォントサイズはremで指定します。
"rem" will be used for font-size.
*/

.u_mat0 { margin-top: 0; }
.u_mat5 { margin-top: 5px; }
.u_mat10 { margin-top: 10px; }
.u_mat20 { margin-top: 20px; }
.u_mat30 { margin-top: 30px; }
.u_mat40 { margin-top: 40px; }
.u_mat50 { margin-top: 50px; }
.u_mat80 { margin-top: 80px; }
.u_mat100 { margin-top: 100px; }

.u_mab0 { margin-bottom: 0; }
.u_mab5 { margin-bottom: 5px; }
.u_mab10 { margin-bottom: 10px; }
.u_mab15 { margin-bottom: 15px; }
.u_mab20 { margin-bottom: 20px; }
.u_mab25 { margin-bottom: 25px; }
.u_mab30 { margin-bottom: 30px; }
.u_mab40 { margin-bottom: 40px; }
.u_mab50 { margin-bottom: 50px; }
.u_mab60 { margin-bottom: 60px; }
.u_mab70 { margin-bottom: 70px; }
.u_mab80 { margin-bottom: 80px; }
.u_mab90 { margin-bottom: 90px; }
.u_mab100 { margin-bottom: 100px; }
.u_mab120 { margin-bottom: 120px; }
.u_mab150 { margin-bottom: 150px; }

.u_mar10 { margin-right: 10px; }
.u_mar20 { margin-right: 20px; }

.u_mal10 { margin-left: 10px; }
.u_mal20 { margin-left: 20px; }
.u_mal30 { margin-left: 30px; }
.u_mal50 { margin-left: 50px; }

.u_malm1rem { margin-left: -1rem; }

.u_margin_auto{ margin: 0 auto; }
.u_margin0{ margin: 0!important; }

.u_ALcenter { text-align: center!important; }
.u_ALright { text-align: right!important; }
.u_ALleft { text-align: left!important; }
.u_ALjustify { text-align: justify!important; }
.u_ALtop { vertical-align: top; }
.u_ALmiddle { vertical-align: middle; }
.u_ALbottom { vertical-align: bottom; }
.u_ALsub{
  font-size: 80%;
  vertical-align:baseline;
}

.u_float_left { float: left; }
.u_float_right { float: right; }

.u_red { color: #CE1A1A; }
.u_black { color: #333; }
.u_white { color: #fff; }
.u_yellow { color: #f8e187; }
.u_color3 { color: var(--color3); }
.u_color4 { color: var(--color4); }
.u_color5 { color: var(--color5); }

.u_bold { font-weight: bold; }
.u_medium { font-weight: 500; }
.u_fw_black { font-weight: 900; }
.u_fw_normal { font-weight: normal!important; }
.u_underline { text-decoration: underline; }
.u_strike {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.u_montserrat{ font-family: "Montserrat", sans-serif; }

.u_img_floatL { float: left; margin-right: 20px; }
.u_img_floatR { float: right; margin-left: 20px; }

.u_fs11 { font-size: 1.1rem; }
.u_fs12 { font-size: 1.2rem; }
.u_fs13 { font-size: 1.3rem; }
.u_fs14 { font-size: 1.4rem; }
.u_fs15 { font-size: 1.5rem; }
.u_fs16 { font-size: 1.6rem; }
.u_fs17 { font-size: 1.7rem; }
.u_fs18 { font-size: 1.8rem; }
.u_fs19 { font-size: 1.9rem; }
.u_fs20 { font-size: 2rem; }
.u_fs21 { font-size: 2.1rem; }
.u_fs22 { font-size: 2.2rem; }
.u_fs23 { font-size: 2.3rem; }
.u_fs24 { font-size: 2.4rem; }
.u_fs28 { font-size: 2.8rem; }
.u_fs30 { font-size: 3rem; }
.u_fs32 { font-size: 3rem; }
.u_fs36 { font-size: 3.6rem; }
.u_fs42 { font-size: 4.2rem; }
.u_fs50 { font-size: 5rem; }

.u_line_height1{ line-height: 1.5; }
.u_line_height17{ line-height: 1.7; }
.u_line_height2{ line-height: 2; }
.u_line_height3{ line-height: 3; }

.u_inline { display: inline; }
.u_inlineblock { display: inline-block; }

.u_disable { pointer-events: none; }

.u_hover:hover { opacity: .7; }

.u_sp {
  display: none;
}

.u_nowrap{
  white-space: nowrap;
}

.u_hankaku {
  font-feature-settings: "palt"
}

/*----------------------------------------------
	.u_indent
---------------------------------------------*/
.u_indent01 {
	padding-left: 1em;
	text-indent: -1em;
}
.u_indent02 {
	padding-left: 2em;
	text-indent: -2em;
}
.u_indent03 {
	padding-left: 3em;
	text-indent: -3em;
}

/*----------------------------------------------
	.u_flex
---------------------------------------------*/
.u_flex {
	display: flex;
}

.u_flex.is_jc_start { 
  flex-wrap: wrap;
	justify-content: flex-start;
}

.u_flex.is_jc_end { 
  flex-wrap: wrap;
	justify-content: flex-end;
}
.u_flex.is_jc_center { 
	flex-wrap: wrap;
	justify-content: center;
}
.u_flex.is_jc_spBetween { 
	flex-wrap: wrap;
	justify-content: space-between;
}
.u_flex.is_jc_spAround { 
	flex-wrap: wrap; 
	justify-content: space-around;
}
.u_flex.is_jc_spEvenly { 
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.u_flex.is_nowrap {
  flex-wrap: nowrap;
}

.u_flex.is_column {
	flex-direction: column;
	flex-wrap: wrap;
}
.u_flex.is_ai_end { 
	align-items: flex-end;
}
.u_flex.is_ai_start { 
	align-items: flex-start;
}
.u_flex.is_ai_center { 
	align-items: center;
}

.u_gap0, .u_flex.is_gap0 { gap: 0; }
.u_gap5, .u_flex.is_gap5 { gap: 5px; }
.u_gap15, .u_flex.is_gap15 { gap: 15px; }
.u_gap20, .u_flex.is_gap20 { gap: 20px; }
.u_gap30, .u_flex.is_gap30 { gap: 30px; }
.u_gap40, .u_flex.is_gap40 { gap: 40px; }
.u_gap50, .u_flex.is_gap50 { gap: 50px; }
.u_gap60, .u_flex.is_gap60 { gap: 60px; }
.u_gap80, .u_flex.is_gap80 { gap: 80px; }

.u_shrink0{ flex-shrink: 0; }

.u_w100per{ width: 100%; }

/*----------------------------------------------
	width
---------------------------------------------*/
.u_w300{
  width: 100%;
  max-width: 300px;
 }
.u_w380{
  width: 100%;
  max-width: 380px;
 }
.u_w500{
  width: 100%;
  max-width: 500px;
 }

/*----------------------------------------------
	OTHER
---------------------------------------------*/
.u_mv_copy{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: 6.2rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 2px #13134d2e;
}
.u_mv_copy_sub{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  font-size: 2.6rem;
  text-shadow: 0 2px 2px #13134d2e;
  letter-spacing: 0.4px;
}

.u_recruit{
  background: var(--color2);
  padding: 24px 30px;
  border-radius: 15px;
  box-shadow: 0 3px 5px 0 #0000001b;
  color: #fff!important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.u_recruit .is_txt{
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  display: block;
}
.u_recruit .is_txt .is_en{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3.8rem;
}
.u_recruit::after{
  content: '';
  background: url(../images/img_recruit.png) no-repeat;
  width: 43vw;
  height: 146px;
  background-size: contain;
  background-position: bottom right;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 0 0 15px 0;
  overflow: hidden;
}

.u_recruit_txt{
  line-height: 2;
  text-align: justify;
  font-weight: 500;
  letter-spacing: -1.5px;
}

.u_product_ttl{
  font-weight: 700;
  font-size: 3rem;
  color: #333;
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 30px;
}

.u_product_lead{
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  margin-right: 120px;
}

.u_bnr{
  width: 230px;
  height: auto;
}

.u_address{
  color: #fff;
  white-space: nowrap;
}

.u_address a{
  color: #fff!important;
}

.u_company_map{
  width: 100%;
  max-width: 1080px;
  height: 375px;
  text-align: center;
  margin: 0 auto;
}

.u_more {
  color: #333!important;
  font-weight: bold;
  text-decoration: underline!important;
  position: relative;
  padding: 0;
  padding-left: 20px;
  width: fit-content;
  height: unset;
  cursor: pointer;
  margin-top: 10px;
}
.u_more::before{
  content: '+';
  color: var(--color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 2.2rem;
  top: calc(50% - (2.2rem / 2));
  line-height: 1;
}

.u_readmore{
  height: 600px;
  overflow: hidden;
  transition: 0.2s;
}

.u_office {
  width: 100%;
  height: auto;
}
.u_office img{
  width: 196px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 196/250;
}


/*----------------------------------------------
  block editor
---------------------------------------------*/
.block-editor-iframe__body h1{
  font-size: 4rem;
  font-weight: bold;
  color: var(--color);
  margin-bottom: 50px;
}

.block-editor-iframe__body :where(.wp-block){
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  max-width: 1300px;
}

.block-library-spacer__resize-container.has-show-handle,
.wp-block-spacer.is-hovered .block-library-spacer__resize-container,
.wp-block-spacer.is-selected.custom-sizes-disabled {
  background: #ff000021;
}

.wp-block-table{
  margin: 0;
}

.editor-styles-wrapper :where(:not(.is-layout-flex,.is-layout-grid))>.wp-block{
  margin-left: unset;
  margin-right: unset;
}


.wp-block-group.is-style-grid02 .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 5%;
}


.u_office_grid{
  display: grid!important;
  grid-template-columns: repeat(5, 1fr)!important;
  gap: 40px 30px;
}
.u_office_grid img{
  width: 100%!important;
  height: auto;
}

.u_factory_lead{
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.u_factory_lead .is_img{
  position: absolute;
  right: 0;
  top: 0;
  width: calc(50% - 30px);
}

.u_factory_lead .is_img img{
  height: auto;
  margin-bottom: 15px;
}

.u_factory_img_ttl{
  font-weight: 900;
  color: var(--color3);
  text-align: center;
  font-size: 1.8rem;
  position: relative;
  width: calc((100% - 120px) / 3);
}
.u_factory_img_ttl::before{
  content: '';
  background: var(--color3);
  width: 15px;
  height: 15px;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  border-radius: 100px;
}
.u_factory_img_ttl:not(:last-child)::after{
  content: '';
  background: var(--color3);
  width: calc(100% + 60px);
  height: 1px;
  position: absolute;
  top: -13px;
  left: 50%;
}

.u_factory_list_img {
  max-width: 540px;
  height: auto;
  width: 100%;
  flex-shrink: 0;
}
.u_factory_list_img img{
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  width: 100%;
}

.u_factory_list_column{
  gap: 60px;
}

.u_product_img {
  max-width: 540px;
  height: auto;
  width: 100%;
  flex-shrink: 0;
  margin: 0!important;
}

.u_product_img img{
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  width: 100%;
}

.u_product_column{
  display: grid!important;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.u_product_border img{
  border: 1px solid #DDDDDD;
}

.u_recruit_label{
  background: var(--color2);
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  padding: 8px 24px;
  position: absolute;
  left: 330px;
  top: 12px;
  z-index: 999;
}


.u_mv_recruit_copy{
  color: var(--color5);
  font-size: 5.6rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  padding-bottom: 40px;
  margin-bottom: 35px;
  position: relative;
}
.u_mv_recruit_copy::after{
  content: '';
  background: url(../images/recruit/img_dot.svg) repeat-x;
  width: 98%;
  height: 5px;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
.u_mv_recruit_copy span{
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.u_mv_recruit_txt{
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: -1px;
  text-align: center;
  font-weight: 500;
}

.u_toggle{
  color: var(--color5);
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  bottom: -39px;
  position: relative;
}
.drawer-open .u_toggle{
  color: #fff;
}

.u_entrybtn{
  background: var(--color5);
  position: fixed;
  width: 140px;
  height: 140px;
  top: 0;
  right: 140px;
  z-index: 9999;
  border: 3px solid var(--color5);
  text-align: center;
}
.u_entrybtn img{
  position: absolute;
  right: -5px;
  left: 0;
  margin: 0 auto;
  width: 55px;
  height: auto;
  top: 26px;
  pointer-events: none;
  filter: brightness(0) invert(1);
}
.u_entrybtn span{
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  bottom: 16px;
  right: 0;
  left: 0;
  position: absolute;
}
.drawer-open .u_entrybtn{
  background: #fff;
  border-color: transparent;
}
.drawer-open .u_entrybtn img{
  filter: none;
}
.drawer-open .u_entrybtn span{
  color: var(--color5);
}

.u_entry_btns{
  display: flex;
  gap: 20px 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.u_entry_link{
  width: 350px;
}


.u_square_left{
  width: 198px;
  height: 249px;
  background-size: contain;
  position: absolute;
  bottom: -30px;
  left: -260px;
  z-index: -1;
  transition: 0.1s;
}
.u_square_right{
  width: 194px;
  height: 271px;
  background-size: contain;
  position: absolute;
  top: -30px;
  right: -260px;
  z-index: -1;
  transition: 0.1s;
}

.u_circle_anim{
  width: 0;
  height: 0;
  border-radius: 100%;
  border: 20px solid #f27b1391;
  filter: blur(10px);
  position: absolute;
  margin: 0 auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.u_policy_check{
  background: #F7F7F7;
  padding: 30px;
  text-align: center;
}


/*----------------------------------------------
  slick
---------------------------------------------*/
/* RECRUIT */
.l_recruit_dtl .slick-dots {
  bottom: -39px;
}
.l_recruit_dtl .slick-dots li button:before{
  font-size: 15px;
  opacity: 1;
  color: #CCCCCC;
}
.l_recruit_dtl .slick-dots li button{
  transition: 0.2s;
}
.l_recruit_dtl .slick-dots li button:hover:before{
  opacity: 0.7;
}
.l_recruit_dtl .slick-dots li.slick-active button:before{
  color: var(--color2);
}

/* PRODUCT */
.l_product_slider .slick-arrow {
  top: -125px;
  left: unset;
  width: 40px;
  height: 40px;
  right: calc((100vw - var(--wrap)) / 2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
.l_product_slider .slick-arrow:hover {
  opacity: 0.7;
}
.l_product_slider .slick-arrow.slick-next {
  transform: rotate(180deg);
  transform-origin: center;
}
.l_product_slider .slick-arrow.slick-prev {
  right: calc((100vw - var(--wrap)) / 2 + 60px);
  top: -105px;
}
.l_product_slider .slick-arrow::before {
  opacity: 1;
  background: url(../images/icon_arrow_color.svg) no-repeat;
  content: '';
  width: 40px;
  height: 40px;
  background-size: 13px;
  background-position: center;
  position: absolute;
  background-color: #fff;
  border-radius: 100px;
  display: block;
  z-index: 99;
}


/* サービスページ */
.l_service_flow .slick-dots {
  bottom: -60px;
}
.l_service_flow .slick-dots li button:before{
  font-size: 15px;
  opacity: 1;
  color: #CCCCCC;
}
.l_service_flow .slick-dots li button{
  transition: 0.2s;
}
.l_service_flow .slick-dots li button:hover:before{
  opacity: 0.7;
}
.l_service_flow .slick-dots li.slick-active button:before{
  color: var(--color3);
}


/*----------------------------------------------
  drawer
---------------------------------------------*/
.drawer-nav{
  touch-action: auto!important;;
}


/*----------------------------------------------
  pagination
---------------------------------------------*/
.page-numbers{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.page-numbers li a,
.page-numbers li span{
  background: var(--color);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  border: 1px solid var(--color);
}
.page-numbers li span{
  background: #fff;
  color: var(--color);
}


/*----------------------------------------------
  cf7
---------------------------------------------*/
.wpcf7-form-control-wrap{
  width: 100%;
}
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-textarea{
  border: 1px solid #CCCCCC;
  background: #F0F8FF;
  border-radius: 5px;
  padding: 16px 20px;
  width: 100%;
}
.wpcf7-form-control::placeholder{
  color: #DDDDDD;
}

.wpcf7-checkbox{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wpcf7-list-item{
  margin: 0!important;
}

.wpcf7-list-item input{
  cursor: pointer;
}

.wpcf7-response-output{
  background: #fff;
  padding: 20px!important;
  text-align: center;
  border: none!important;
  color: #dc3232;
}