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

/*------------------------------------------------
 sub.css
------------------------------------------------*/
main{
  overflow-x: clip;
}
.handline::before {
  right: 0;
  bottom: -10px;
}
.handline::after {
  right: 0;
  bottom: -8px;
}

/* 丸角見出し */
.heading_radius, .heading_radius small{
  display: block;
  text-align: center;
  font-weight: 600;
}
.heading_radius {
  background-color: #fff;
  color: var(--site_green_deep);
  font-size: 0.25rem;
  border: 1px solid #3B3B3B;
  border-radius: 20px;
  line-height: 1.4;
  padding: 22px 15px;
  margin-bottom: 42px;
}
.heading_radius small {
  word-break: break-all;
  font-family: var(--elm);
  line-height: 1.4;
  margin-top: 7px;
}
/* ドット見出し */
.heading_dot{
  max-width: max-content;
  padding-right: 45px;
  margin: 0 auto 45px;
}
.heading_dot.white span, .heading_dot.white small{
  color: #fff;
}
.heading_dot span, .heading_dot small{
  display: block;
  text-align: center;
  word-break: break-all;
  font-weight: 800;
}
.heading_dot span{
  font-size: 0.45rem;
  font-family: var(--elm);
  line-height: 1.2;
}
.heading_dot small{
  font-size: 0.2rem;
  line-height: 1.4;
  padding-left: 45px;
  margin-top: 10px;
}
.heading_dot span::before {
  content: "・";
  display: inline-block;
  vertical-align: -2px;
}
/* 中見出し */
.heading_md, .heading_md small, .heading_md_jp, .heading_md_jp small{
  display: block;
  text-align: center;
  max-width: max-content;
  word-break: break-all;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 auto;
}
.heading_md.left, .heading_md.left small{
  text-align: start;
  margin-left: 0;
}
.heading_md, .heading_md_jp{
  font-size: 0.25rem;
  color: var(--site_green_deep);
}
.heading_md small, .heading_md_jp small{
  font-size: 0.16rem;
  font-family: var(--elm);
}
.heading_md_jp small{
  line-height: 1.8;
  margin-top: 25px;
}
/* 白文字見出し */
.heading_white, .heading_white small{
  display: block;
  text-align: center;
  max-width: max-content;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin: 0 auto;
}
.heading_white{
  font-family: var(--elm);
  font-size: 0.24rem;
}
.heading_white small{
  font-size: 0.2rem;
  margin-bottom: 12px;
}
/* 白文字見出し逆 */
.heading_white_reverse, .heading_white_reverse small{
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}
.heading_white_reverse{
  font-size: 0.25rem;
}
.heading_white_reverse small{
  font-family: var(--elm);
  margin-top: 5px;
}
/* 見出し単体 */
.heading_mono{
  display: block;
  color: var(--site_green_deep);
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 1.6;
}
/* 箱入り見出し */
.heading_boxed{
  display: block;
  background-color: #fff;
  border-radius: 18px;
  font-size: 0.25rem;
  font-weight: 600;
  max-width: max-content;
  padding: 4px 60px 7px;
  margin: 80px auto 40px;
}


/*------------------------------------------------
 下層共通パーツ
------------------------------------------------*/
/* 方眼紙背景コンテンツ */
.graph_background{
  background-image: linear-gradient(to right, rgba(38, 103, 158, 0.18) 0, rgba(38, 103, 158, 0.18) 1px, transparent 1px, transparent 19px), linear-gradient(to bottom, rgba(38, 103, 158, 0.18) 0, rgba(38, 103, 158, 0.18) 1px, transparent 1px, transparent 19px);
  background-size: 19px 19px;
  padding-top: 95px;
}
/* 葉っぱ背景コンテンツ */
.leaf_container{
  position: relative;
  overflow: clip;
  padding: 140px 0 105px;
}
.leaf_container .leaf{
  position: absolute;
  transform: translateY(10px);
  inset: 0;
  z-index: -10;
  opacity: 0;
  transition: .5s .5s ease;
}
.leaf_container.__enable .leaf{
  transform: translateY(0);
  opacity: 1;
}
.leaf_container .leaf::before, .leaf_container .leaf::after{
  content: "";
  position: absolute;
  z-index: -10;
}
.leaf_container .leaf::before{
  background: url(../img/sub/leaf_top.png) repeat-x;
  width: 100%;
  height: 202px;
  left: 0;
  top: 2px;
}
.leaf_container .leaf::after{
  background: url(../img/sub/leaf_body.jpg) repeat-y;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
  inset: 0;
  top: 200px;
}
.leaf_inner{
  background-color: #fff;
  border: 1px solid #3B3B3B;
  border-radius: 28px;
  padding: 30px 50px 50px;
  margin-bottom: 40px;
}
.leaf_inner_lg{
  background-color: #fff;
  border-radius: 28px;
  padding: 60px 50px;
  margin-bottom: 120px;
}
/* 手書き風太テキスト */
.hl_text{
  display: block;
  text-align: left;
  font-size: 0.26rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 35px;
}
/* スクロール画像 */
.scroll_figure{
  overflow: auto;
  margin: 30px 0;
}
.scroll_figure img{
  display: block;
  width: 100%;
  max-width: max-content;
  margin: 0 auto;
}
.scroll_figure.max img{
  min-width: 800px;
}
/* お知らせリスト */
.news_list{
  list-style: none;
}
.news_list li {
  display: grid;
  align-items: center;
  grid-template-columns: 110px 95px 1fr;
  border-bottom: 1px solid #3B3B3B;
  padding: 20px 15px;
}
.news_list li:last-of-type{
  border-bottom: 0;
}
.news_list a{
  display: block;
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 1.6;
}
.news_list .cat{
  position: relative;
  margin-right: 30px;
}
.news_list .cat::before {
  content: "";
  position: absolute;
  background-color: #3B3B3B;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  top: 50%;
  right: -10px;
}
.news_list time{
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 1.6;
}
/* 色付きボックス */
.cc_box{
  position: relative;
  background-color: #fff;
  border-radius: 33px;
  padding: 40px 30px 30px;
  margin-bottom: 95px;
  margin-right: 25px;
}
.cc_box::before{
  content: "";
  position: absolute;
  background-color: var(--site_green_deep);
  border-radius: 33px;
  inset: 25px -25px -25px 25px;
  z-index: -10;
}



/*------------------------------------------------
 下層トップ
------------------------------------------------*/
.sub_top{
  margin-bottom: 45px;
}
.sub_top_grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 41%;
}
.sub_top_grid article{
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, rgba(38, 103, 158, 0.18) 0, rgba(38, 103, 158, 0.18) 1px, transparent 1px, transparent 19px), linear-gradient(to bottom, rgba(38, 103, 158, 0.18) 0, rgba(38, 103, 158, 0.18) 1px, transparent 1px, transparent 19px);
  background-size: 19px 19px;
  padding: 15px 15px 20px;
  padding-left: 10%;
}
.sub_top_grid h1 span,
.sub_top_grid h1 small{
  display: block;
  text-align: left;
  line-height: 1.4;
}
.sub_top_grid h1 span{
  font-weight: 800;
  font-size: 0.45rem;
  font-family: var(--elm);
  line-height: 1.2;
  margin-bottom: 10px;
}
.sub_top_grid h1 small{
  font-weight: 600;
  font-size: 0.2rem;
  color: var(--site_green_deep);
}
.sub_top_grid img {
  display: block;
  object-fit: cover;
  width: 100%;
  min-height: 190px;
}
.sub_top_loop{
  position: relative;
  overflow: hidden;
  color: var(--site_color);
  height: 100px;
  margin-top: 45px;
}
.sub_top_loop span{
  display: block;
  position: absolute;
  min-width: max-content;
  animation: 25s linear infinite;
  left: 0;
  top: 0;
  line-height: 1;
  font-weight: 900;
  font-size: 0.88rem;
  font-family: var(--elm);
  color: inherit;
  opacity: .61;
  padding: 0 35px;
}
.sub_top_loop span.loop01{
  animation-name: anim_text_loop01;
}
.sub_top_loop span.loop02{
  animation-name: anim_text_loop02;
}


/*------------------------------------------------
 NOSAIについて
------------------------------------------------*/
/* 概要グリッド */
.nosai_about_grid {
  display: grid;
  align-items: center;
  grid-template-columns: auto auto 47%;
  justify-content: space-between;
  gap: 0 25px;
  padding-left: 9%;
  margin-bottom: 80px;
}
.nosai_about_grid ul{
  list-style: none;
}
.nosai_about_grid ul li{
  color: var(--site_green_deep);
  font-weight: 600;
}
.nosai_about_grid ul small{
  display: inline-block;
  color: #ADADAD;
  font-family: var(--elm);
  font-weight: 600;
  margin-left: 6px;
}
.nosai_about_grid article > br{
  display: none;
}
.nosai_about_grid article p{
  display: block;
  font-weight: 600;
}
.nosai_about_grid img{
  display: block;
  object-fit: cover;
  border-radius: 44px 0 0 44px;
  width: 100%;
}
/* 保険バナー */
.nosai_insurance{
  position: relative;
  margin-right: 6%;
  margin-bottom: 25px;
}
.nosai_insurance br{
  display: none;
}
.nosai_insurance img{
  display: block;
  width: 100%;
}
.nosai_insurance .rain {
  position: absolute;
  left: 9%;
  top: 25%;
  width: 8%;
}
.nosai_insurance .cloud {
  position: absolute;
  left: 41%;
  top: -22%;
  width: 12%;
}
/* 役割テキスト */
.nosai_role_text{
  display: block;
  text-align: center;
  font-size: 0.26rem;
  font-weight: 600;
  max-width: max-content;
  margin: 65px auto 55px;
}
.nosai_role_text p{
  display: inline-block;
  font-size: 0.26rem;
  font-weight: 600;
}
.nosai_role_text p:empty{
  display: none;
}
.nosai_role_text figure {
  position: relative;
  display: inline-block;
  vertical-align: 5px;
  margin-left: 12px;
  margin-right: 14px;
}
.nosai_role_text figure::before {
  content: "";
  aspect-ratio: 9/4;
  position: absolute;
  background: url(../img/sub/nosai_role_exq.svg) no-repeat;
  background-position: left bottom;
  background-size: contain;
  width: 33%;
  top: -80%;
  right: -22%;
  animation: anim_flash_blink 1.5s infinite steps(1, end);
}
/* 役割コンテンツ */
.nosai_role_grid{
  display: grid;
  gap: 50px;
}
.nosai_role_grid p:empty{
  display: none;
}
.nosai_role_grid article{
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 25px 35px 35px;
}
.nosai_role_grid article div > br{
  display: none;
}
.nosai_role_grid article p,
.nosai_role_grid article p span{
  font-weight: 600;
  line-height: 2.3;
}
.nosai_role_grid.nosai_role_grid01{
  grid-template-columns: 37% 1fr;
  margin-bottom: 100px;
}
.nosai_role_grid.nosai_role_grid01 article{
  border-radius: 40px 0 0 40px;
  padding-left: 10%;
}
.nosai_role_grid.nosai_role_grid01 img{
  border-radius: 0 40px 40px 0;
}
.nosai_role_grid.nosai_role_grid02{
  grid-template-columns: 1fr 43%;
}
.nosai_role_grid.nosai_role_grid02 article{
  justify-content: flex-end;
  border-radius: 0 40px 40px 0;
  padding-right: 10%;
}
.nosai_role_grid.nosai_role_grid02 img{
  border-radius: 40px 0 0 40px;
}
/* メッセージコンテンツ */
.nosai_messege_text{
  display: block;
  text-align: center;
  font-size: 0.3rem;
  font-weight: 600;
  margin-bottom: 35px;
}
.nosai_impact_text{
  display: block;
  text-align: center;
  font-family: var(--elm);
  font-size: 1.01rem;
  font-weight: 900;
  line-height: 1;
  color: var(--site_green);
}


/*------------------------------------------------
 FAQページ
------------------------------------------------*/
/* ナビリスト */
.faq_navi_list{
  display: grid;
  list-style: none;
  align-items: stretch;
  justify-content: center;
  grid-template-columns: repeat(6, 170px);
  gap: 18px;
  margin-bottom: 60px;
}
.faq_navi_list a {
  display: block;
  text-align: center;
  background: #fff url(../img/common/parts/arrow_down.svg) no-repeat;
  background-position: 50% 80%;
  background-size: 8px;
  box-shadow: 3px 3px 4px #00000029;
  border: 1px solid #3B3B3B;
  border-radius: 13px;
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--site_green_deep);
  padding: 8px 5px 33px;
}
/* コンテンツ */
.faq_md_heading{
  text-align: center;
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 35px;
}
.faq_content_list{
  list-style: none;
}
.faq_content_list li{
  margin-bottom: 20px;
}
.faq_content_list li:last-of-type{
  margin-bottom: 0;
}
.faq_content_list li > br{
  display: none;
}
.faq_content_list b, .faq_content_list article{
  position: relative;
  font-weight: 600;
  padding: 13px 15px 14px 66px;
}
.faq_content_list b::before, .faq_content_list article::before {
  position: absolute;
  font-size: 0.35rem;
  font-weight: 800;
  font-family: var(--elm);
  left: 15px;
  top: -1px;
}
.faq_content_list b::before{
  content: "Q.";
  color: #fff;
}
.faq_content_list article::before{
  content: "A.";
  color: var(--site_green_deep);
  left: 17px;
  top: -8px;
}
.faq_content_list b {
  display: block;
  background-color: var(--site_green_deep);
  border-radius: 15px;
  color: #fff;
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 5px;
}


/*------------------------------------------------
 理念・組合長メッセージページ
------------------------------------------------*/
/* メインビジュアル */
.philo_top_visual{
  position: relative;
  padding: 0 20px;
  margin-bottom: 20px;
}
.philo_top_visual img {
  display: block;
  object-fit: cover;
  object-position: 10% 50%;
  border-radius: 35px;
  min-height: 350px;
  width: 100%;
}
.philo_top_visual b {
  display: block;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 5%;
  line-height: 1.6;
  font-size: 0.35rem;
  font-weight: 600;
  color: #fff;
}
/* 乗り物コンテンツ */
.philo_vehicle_container{
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 61%;
  background-color: var(--site_color);
  gap: 22px;
  padding: 55px 0;
  padding-right: 7%;
}
.philo_vehicle_container figure{
  background-color: #fff;
  border-radius: 0 20px 20px 0;
  z-index: 10;
}
.philo_vehicle_container figure img {
  margin: -70px 0 25px -50px;
}
.philo_vehicle_content{
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px;
  padding-left: 7%;
}
.philo_vehicle_content article{
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 70px;
}
.philo_vehicle_content p,
.philo_vehicle_content p span{
  font-weight: 600;
  font-size: 0.25rem;
}
.philo_vehicle_content p{
  margin-bottom: 15px;
}
.philo_vehicle_content p span{
  position: relative;
  display: inline-block;
  margin: 0 5px;
}
.philo_vehicle_content p span::before{
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  width: 8px;
}
.philo_vehicle_content p span.d01::before{
  background-color: var(--site_green_deep);
}
.philo_vehicle_content p span.d02::before{
  background-color: #72564E;
}
.philo_vehicle_content p span.d03::before{
  background-color: var(--site_blue);
}
/* 野菜リスト */
.philo_vege_list_box{
  overflow: hidden;
}
.philo_vege_list{
  display: flex;
  list-style: none;
  align-items: center;
  min-width: 800px;
  padding-right: 35px;
  margin: 45px 0;
}
.philo_vege_list li{
  animation: anim_vege_loop 1.5s steps(2, end) infinite;
}
.philo_vege_list li:nth-child(even){
  animation-direction: reverse;
}
@keyframes anim_vege_loop {
  0%{ transform: rotateZ(-8deg); }
  100%{ transform: rotateZ(8deg); }
}
/* メッセージコンテンツ */
.philo_messege_container{
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
.philo_messege_bwd {
  position: absolute;
  border-radius: 53px 0 0 0;
  object-fit: cover;
  max-width: unset;
  height: 100%;
  width: 100%;
  inset: 0;
  left: 8%;
  z-index: -10;
}
.philo_messege_label, .philo_messege_label small{
  font-weight: 600;
  color: #fff;
}
.philo_messege_label {
  display: block;
  font-family: var(--elm);
  font-size: 0.32rem;
  padding: 18px 0;
  padding-left: 17%;
}
.philo_messege_label small{
  display: inline-block;
  font-size: 0.19rem;
  margin-left: 25px;
}
.philo_mesege_contet{
  display: grid;
  align-items: flex-start;
  grid-template-columns: auto 1fr 35%;
  background-color: #fff;
  padding: 70px 12% 45px 5%;
  margin-right: 5%;
}
.philo_mesege_contet article{
  margin-right: 25px;
  margin-left: 7%;
}
.philo_mesege_contet article p{
  font-weight: 500;
  margin-bottom: 40px;
}
.philo_mesege_contet article .name_label{
  max-width: max-content;
  margin-left: auto;
}
.philo_mesege_contet article .name_label time{
  display: inline-block;
  font-family: var(--elm);
  font-size: 0.18rem;
  font-weight: 500;
  margin-right: 20px;
}
.philo_mesege_contet article .name_label span{
  font-size: 0.2rem;
  font-weight: 500;
}
.philo_mesege_contet .philo_visual{
  border-radius: 40px;
}


/*------------------------------------------------
 体験研修ページ
------------------------------------------------*/
/* ヘッドコンテンツ */
.hands_head_content{
  margin: 65px 0 90px;
}
/* 三角形装飾パーツ */
.hands_triangle{
  display: flex;
  align-items: center;
  min-width: max-content;
  justify-content: space-between;
  gap: 35px;
  padding: 0 30px;
}
.hands_triangle span{
  display: block;
}
.hands_triangle .t{
  aspect-ratio: 22/31;
  background-image: url(../img/sub/hands_triangle_out.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 22px;
  animation: anim_triangle_flip_infinit 5s infinite;
}
.hands_triangle .text{
  font-family: var(--elm);
  font-size: 0.39rem;
  font-weight: 900;
  line-height: 1;
  color: var(--site_orange);
  opacity: .6;
}
@keyframes anim_triangle_flip_infinit {
  0%{ background-image: url(../img/sub/hands_triangle.svg); }
  10%{ background-image: url(../img/sub/hands_triangle_out.svg); }
  100%{ background-image: url(../img/sub/hands_triangle_out.svg); }
}
/* 見出しボックス */
.hands_heading_box{
  max-width: max-content;
  margin: 57px auto;
}
.hands_heading_box strong, .hands_heading_box strong span, .hands_heading_box p{
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}
.hands_heading_box strong{
  display: block;
  text-align: center;
  font-size: 0.43rem;
  margin-bottom: 25px;
}
.hands_heading_box strong span{
  display: inline-block;
  font-size: 0.38rem;
}
.hands_heading_box p{
  text-align: center;
  line-height: 1.6;
}
/* カードリスト */
.hands_card_list{
  display: grid;
  list-style: none;
  align-items: stretch;
  gap: 30px;
}
.hands_card_list.hands_card_list01{
  grid-template-columns: 36% 36% 29%;
  padding-left: 3%;
  margin-top: 95px;
}
.hands_card_list.hands_card_list02{
  grid-template-columns: 47% 35% 18%;
  margin-top: 60px;
}
.hands_card_list.hands_card_list03{
  grid-template-columns: 18% 47% 35%;
  margin-top: 60px;
}
.hands_card_list article{
  position: relative;
  height: 100%;
  padding-left: 18px;
  padding-bottom: 18px;
}
.hands_card_list article::before{
  content: "";
  position: absolute;
  border-radius: 42px;
  inset: 18px 18px 0 0;
  z-index: -10;
}
.hands_card_list.hands_card_list01 article::before{
  background-color: var(--site_blue);
}
.hands_card_list.hands_card_list02 article::before{
  background-color: var(--site_green_deep);
}
.hands_card_list.hands_card_list03 article::before{
  background-color: var(--site_orange);
}
.hands_card_list .hands_card_inner{
  background-color: #fff;
  border-radius: 42px;
  height: 100%;
  padding: 70px 15px;
}
.hands_card_list .hands_card_label{
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 1.3;
  max-width: max-content;
  margin: 0 auto 40px;
}
.hands_card_list .hands_card_label .handline{
  padding: 0 15px;
}
.hands_card_list.hands_card_list02 .hands_card_label .handline{
  padding-bottom: 5px;
}
.hands_card_list article p{
  text-align: center;
  font-weight: 600;
}
.hands_card_list article b{
  display: block;
  text-align: center;
  font-size: 0.19rem;
  line-height: 1.6;
  margin: 50px 0 20px;
}
.hands_card_list.hands_card_list01 article b{
  color: var(--site_blue);
}
.hands_card_list.hands_card_list02 article b{
  color: var(--site_green_deep);
}
.hands_card_list article dl{
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 430px;
  margin: 30px auto;
}
.hands_card_list article small{
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 0.16rem;
}
.hands_card_list article hr{
  max-width: 480px;
  border: 0;
  border-top: 1px solid var(--site_blue);
  margin: 45px auto 0;
}
.hands_card_list article address{
  margin-top: 25px;
}
.hands_card_list article address,
.hands_card_list article address a{
  text-align: center;
  font-weight: 600;
  font-size: 0.18rem;
}
.hands_card_list img{
  display: block;
  object-fit: cover;
  
  height: 100%;
  width: 100%;
}
.hands_card_list .hands_card_visual01{
  border-radius: 40px 0 0 40px;
  max-height: 800px;
}
.hands_card_list .hands_card_visual02,
.hands_card_list .hands_card_visual03 {
  max-height: 650px;
}
.hands_card_list .hands_card_visual02{
  border-radius: 0 40px 40px 0;
}
.hands_card_list .hands_card_visual03{
  border-radius: 40px 0 0 40px;
}
.hands_card_list .hands_card_visual04,
.hands_card_list .hands_card_visual05 {
  max-height: 380px;
}
.hands_card_list .hands_card_visual04{
  border-radius: 0 40px 40px 0;
}
.hands_card_list .hands_card_visual05{
  border-radius: 40px 0 0 40px;
}
/* バナーコンテンツ */
.hands_banner_container{
  background-color: #fff;
  padding: 110px 0;
  margin: 150px 0;
}
.hands_banner_grid{
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: auto auto;
  max-width: 1080px;
  margin: 0 auto;
}
.hands_banner_grid small, .hands_banner_grid b{
  display: block;
  text-align: start;
  font-weight: 600;
  color: var(--site_green_deep);
  line-height: 1.4;
}
.hands_banner_grid small{
  font-family: var(--elm);
  font-size: 0.2rem;
  margin-bottom: 5px;
}
.hands_banner_grid b{
  font-size: 0.24rem;
}
.hands_banner_grid article,
.hands_banner_grid article p{
  font-weight: 600;
}
/* 色付きボックスコンテンツ */
.hands_cc_box b.left, .hands_cc_box b.left small{
  text-align: start;
}
.hands_cc_box b, .hands_cc_box b small{
  display: block;
  text-align: center;
  line-height: 1.6;
}
.hands_cc_box b{
  font-size: 0.19rem;
  font-weight: 600;
}
.hands_cc_box b small{
  font-weight: 500;
  margin-top: 3px;
}
/* CCボックス01 */
.hands_cc_box01_inner{
  overflow: auto;
  margin-top: -50px;
}
.hands_cc_box01 figure{
  position: relative;
  max-width: max-content;
  min-width: 500px;
  padding-left: 60px;
  padding-right: 140px;
  margin: 0 auto;
}
.hands_cc_box01 figure .amo01,
.hands_cc_box01 figure .amo02 {
  position: absolute;
}
.hands_cc_box01 figure .amo01{
  left: 0;
  top: 20%;
  width: 25%;
}
.hands_cc_box01 figure .amo02{
  right: 0;
  bottom: 35px;
  width: 24%;
}
/* CCボックス02 */
.hands_cc_box02 ul{
  display: grid;
  list-style: none;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 42px 0 25px;
}
.hands_cc_box02 li{
  position: relative;
  padding-right: 16px;
  padding-bottom: 14px;
}
.hands_cc_box02 li::before{
  content: "";
  position: absolute;
  border: 1px solid #3B3B3B;
  border-radius: 22px;
  inset: 14px 0 0 16px;
}
.hands_cc_box02 li.cl01::before{
  background-color: var(--site_leaf);
}
.hands_cc_box02 li.cl02::before{
  background-color: var(--site_orange);
}
.hands_cc_box02 li.cl03::before{
  background-color: #F06F87;
}
.hands_cc_box02 li.cl04::before{
  background-color: var(--site_blue);
}
.hands_cc_box02 li figure{
  position: relative;
  overflow: hidden;
}
.hands_cc_box02 li figure img{
  border: 1px solid #3B3B3B;
  border-radius: 22px;
  width: 100%;
}
.hands_cc_box02 li figure figcaption{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 22px 0 22px 0;
  border: 1px solid #3B3B3B;
  font-size: 0.19rem;
  font-weight: 600;
  width: 170px;
  left: 0;
  top: 0;
  padding: 12px 15px;
}
/* CCボックス03 */
.hands_cc_box03_grid{
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 46%;
  gap: 30px;
  margin-top: 35px;
}
.hands_cc_box03_grid p:empty{
  display: none;
}
.hands_cc_box03_inner{
  overflow: auto;
}
.hands_cc_box03_grid ul{
  list-style: none;
}
.hands_cc_box03_grid small{
  display: block;
  font-size: 0.14rem;
  font-weight: 500;
  max-width: max-content;
  margin-left: auto;
}
.hands_cc_box03_head,
.hands_cc_box03_body li{
  display: grid;
  grid-template-columns: 20% 30% 30% 20%;
}
.hands_cc_box03_head{
  margin-bottom: 10px;
}
.hands_cc_box03_head li{
  text-align: center;
  font-weight: 600;
}
.hands_cc_box03_body li{
  overflow: hidden;
  border-radius: 7px;
  margin-bottom: 13px;
}
.hands_cc_box03_body li b, .hands_cc_box03_body li p{
  display: block;
  text-align: center;
  color: #fff;
}
.hands_cc_box03_body li b{
  font-family: var(--elm);
  font-size: 0.23rem;
  font-weight: 600;
}
.hands_cc_box03_body li p{
  font-weight: 500;
}
.hands_cc_box03_grid .hands_cc_box03_body .cl01{
  background-color: var(--site_leaf);
}
.hands_cc_box03_grid .hands_cc_box03_body .cl02{
  background-color: #207668;
}
.hands_cc_box03_grid .hands_cc_box03_body .cl03{
  background-color: var(--site_blue);
}
.hands_cc_box03_grid .hands_cc_box03_body .cl04{
  background-color: #E8E8E8;
}
/* CCボックス04 */
.hands_cc_box04_inner{
  max-width: 850px;
  margin: 40px auto 25px;
  overflow: auto;
}
.hands_cc_box04 table{
  min-width: max-content;
  width: 100%;
}
.hands_cc_box04 table th, .hands_cc_box04 table td{
  text-align: center;
  padding: 0 15px;
}
.hands_cc_box04 table thead th{
  border-bottom: 1px solid #9B9B9B;
  border-left: 1px solid #9B9B9B;
  font-weight: 600;
  padding: 0;
}
.hands_cc_box04 table thead th:nth-child(1){
  border-left: 0;
  width: 32%;
}
.hands_cc_box04 table thead th:nth-child(2),
.hands_cc_box04 table thead th:nth-child(3) {
  width: 27%;
}
.hands_cc_box04 table thead th:nth-child(4){
  width: 14%;
}
.hands_cc_box04 table thead img{
  display: inline-block;
  vertical-align: -25px;
  margin-left: 10px;
}
.hands_cc_box04 table tbody th{
  border-bottom: 1px solid #9B9B9B;
  color: var(--site_green_deep);
}
.hands_cc_box04 table tbody td{
  border-bottom: 1px solid #9B9B9B;
  border-left: 1px solid #9B9B9B;
  font-family: var(--elm);
  font-size: 0.23rem;
  font-weight: 800;
  padding: 8px;
}
.hands_cc_box04 table tbody tr:last-of-type th,
.hands_cc_box04 table tbody tr:last-of-type td {
  border-bottom: 0;
}
.hands_cc_box04 table tbody td:nth-of-type(1){
  color: #5374B2;
}
.hands_cc_box04 table tbody td:nth-of-type(2){
  color: #F06F87;
}
.hands_cc_box04 table tbody td:nth-of-type(3){
  color: var(--site_green_deep);
}


/*------------------------------------------------
 田舎暮らしページ
------------------------------------------------*/
/* トップビジュアル */
.rural_visual_list{
  display: grid;
  list-style: none;
  align-items: stretch;
  grid-template-columns: 15% minmax(600px, 1fr) 52%;
  background-color: #E8E8E8;
  gap: 20px;
  margin-bottom: 65px;
}
.rural_visual_list li{
  height: 100%;
}
.rural_visual_list img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.rural_visual_content{
  display: grid;
  align-items: stretch;
  grid-template-rows: 120px 1fr 190px;
  height: 100%;
  gap: 20px;
}
.rural_visual_content > br{
  display: none;
}
.rural_visual_list article {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 28px;
  padding: 45px 35px;
}
.rural_visual_list article strong{
  display: block;
  font-size: 0.32rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 30px;
}
.rural_visual_list article strong span{
  display: inline-block;
  color: var(--site_green_deep);
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
.rural_visual_list article p{
  font-size: 0.18rem;
  font-weight: 600;
}
.rural_visual_list .rural_visual01_box{
  padding-bottom: 20px;
}
.rural_visual_list .rural_visual04_box{
  padding-top: 20px;
}
.rural_visual_list .rural_visual01{
  object-position: center right;
  border-radius: 0 28px 28px 0;
}
.rural_visual_list .rural_visual02{
  object-position: center bottom;
  border-radius: 0 0 28px 28px;
}
.rural_visual_list .rural_visual03{
  object-position: center top;
  border-radius: 28px 28px 0 0;
}
.rural_visual_list .rural_visual04{
  object-position: center left;
  border-radius: 28px 0 0 28px;
}
/* コンテンツ汎用 */
.rural_cc_box.cl01{
  --rural_color: var(--site_blue);
}
.rural_cc_box.cl02{
  --rural_color: var(--site_orange);
}
.rural_cc_box.cl03{
  --rural_color: var(--site_leaf);
}
.rural_cc_box.cl04{
  --rural_color: var(--site_green_deep);
}
.rural_cc_box.cc_box::before {
  background-color: var(--rural_color);
}
.rural_cc_inner{
  padding-left: 40px;
}
.rural_cc_box .rural_label{
  margin-bottom: 25px;
}
.rural_cc_box p{
  font-weight: 600;
  line-height: 2.4;
}
.rural_cc_box .rural_label small{
  display: block;
  text-align: start;
  font-size: 0.2rem;
  font-weight: 800;
  font-family: var(--elm);
  color: var(--rural_color);
  line-height: 1.2;
  margin-bottom: 10px;
}
.rural_cc_box .rural_label strong {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 10px;
  text-align: start;
  color: var(--rural_color);
  font-size: 0.25rem;
  font-weight: 600;
  line-height: 1.4;
}
.rural_cc_box .rural_label strong span {
  font-family: var(--elm);
  font-size: 0.45rem;
  font-weight: 800;
  line-height: 1.2;
}
/* グリッドコンテンツ */
.rural_cc_grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 590px;
  gap: 40px;
}
.rural_cc_grid figure img{
  border-radius: 25px;
}
/* ラベル横並び */
.rural_cc_label_flex{
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 45px;
}
.rural_cc_label_flex .rural_label{
  margin-bottom: 0;
}
/* イメージ中央揃え */
.rural_cc_figure img{
  display: block;
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
}
/* 方眼紙コンテンツ */
.rural_graph_content{
  position: relative;
}
.rural_graph_content .graph_background{
  background-color: #fff;
  border-radius: 35px;
  padding: 65px 15px;
}
.rural_graph_content b{
  display: block;
  text-align: center;
  font-size: 0.18rem;
  line-height: 2.4;
}
.rural_graph_content img{
  position: absolute;
}
.rural_graph_content .rural_graph_accent01 {
  max-width: max-content;
  width: 17%;
  top: 10%;
  left: 2%;
}
.rural_graph_content .rural_graph_accent02 {
  max-width: max-content;
  width: 19%;
  right: -3%;
  bottom: -15%;
}


/*------------------------------------------------
 福利厚生ページ
------------------------------------------------*/
/* メイン見出し */
.benefit_headline{
  margin-bottom: 65px;
}
.benefit_headline b, .benefit_headline p{
  display: block;
  text-align: center;
  font-weight: 600;
}
.benefit_headline b{
  line-height: 1.6;
  font-size: 0.25rem;
  margin-bottom: 45px;
}
.benefit_headline p{
  line-height: 2.4;
}
/* ブラシ背景コンテナ */
.brush_container{
  background-size: cover;
  background-repeat: repeat-y;
  border-radius: 28px;
  padding: 105px 15px 110px;
  margin-bottom: 25px;
}
.brush_container.cl01{
  background-image: url(../img/sub/brush_bwd_dgreen.jpg);
}
.brush_container.cl02{
  background-image: url(../img/sub/brush_bwd_lgreen.jpg);
}
.brush_container.cl03{
  background-image: url(../img/sub/brush_bwd_orange.jpg);
}
/* ブラシラベル */
.brush_label{
  display: block;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 1.6;
  max-width: max-content;
  padding: 5px 20px;
  margin: 15px auto 55px;
}
/* 白見出し */
.brush_container .heading_white_reverse{
  margin-top: 130px;
}
/* 2列横並びコンテンツ */
.brush_dev02{
  display: grid;
  list-style: none;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: 150px;
}
/* 2列横並びテキストコンテンツ */
.brush_text_dev02{
  display: grid;
  list-style: none;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.brush_text_dev02 li {
  background-color: #fff;
  border-radius: 14px;
  padding: 20px 25px;
}
.brush_text_dev02 li.max{
  grid-column: 3/1;
}
.brush_text_dev02 b {
  display: block;
  text-align: start;
  color: var(--site_green_deep);
  font-size: 0.23rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}
.brush_text_dev02 p {
  font-weight: 600;
  line-height: 1.8;
}
.brush_text_dev02 p:empty{
  display: none;
}

/* ラージボックスコンテンツ */
.brush_box_lg{
  display: grid;
  grid-template-rows: auto 180px 1fr;
  gap: 25px;
  background-color: #fff;
  border-radius: 30px;
  padding: 35px 15px;
}
.brush_box_lg p:empty{
  display: none;
}
.brush_box_lg b{
  display: block;
  text-align: center;
  color: var(--site_green_deep);
  font-size: 0.25rem;
  font-weight: 600;
  line-height: 1.4;
}
.brush_box_lg figure{
  display: flex;
  align-items: center;
  justify-content: center;
}
.brush_box_lg figure img{
  display: block;
  width: 100%;
  max-width: max-content;
}
.brush_box_lg article small, .brush_box_lg article p{
  display: block;
  text-align: center;
  line-height: 1.6;
}
.brush_box_lg article small{
  font-weight: 500;
  margin: 15px 0;
}
.brush_box_lg article p{
  font-weight: 600;
}
/* 3列横並び */
.brush_dev03{
  display: grid;
  list-style: none;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.brush_dev03 li {
  display: grid;
  background-color: #fff;
  grid-template-rows: auto 200px 1fr;
  gap: 5px;
  border-radius: 30px;
  padding: 35px 30px;
}
.brush_dev03 li.connect{
  display: flex;
  align-items: center;
  background-color: transparent;
  grid-column: 4/2;
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  padding: 0;
}
.brush_dev03 li > br{
  display: none;
}
.brush_dev03 b{
  display: block;
  text-align: center;
  line-height: 1.6;
  font-weight: 600;
  font-size: 0.2rem;
}
.brush_dev03 figure{
  display: flex;
  align-items: center;
  justify-content: center;
}
.brush_dev03 figure img{
  display: block;
  width: 100%;
  max-width: max-content;
}
.brush_dev03 article {
  display: grid;
  align-items: center;
  justify-content: center;
}
.brush_dev03 article p{
  text-align: center;
  font-weight: 600;
}
.brush_dev03 article small{
  text-align: center;
  font-size: 0.16rem;
  font-weight: 500;
}


/*------------------------------------------------
 キャリアパスページ
------------------------------------------------*/
.career_inner {
  background-color: #fff;
  border-radius: 28px;
  padding: 65px 50px;
  margin-bottom: 40px;
}
.career_inner .heading_md{
  margin-bottom: 45px;
}
.career_inner p{
  text-align: center;
  font-weight: 600;
}
/* ジョブリスト */
.career_job_list{
  display: grid;
  list-style: none;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin: 60px 0 40px;
}
.career_job_list li{
  position: relative;
  display: grid;
  align-items: stretch;
  grid-template-rows: 1fr auto;
  height: 100%;
}
.career_job_list li > p{
  display: contents;
}
.career_job_list article {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background-color: var(--site_green_deep);
  border-radius: 24px;
  padding: 15px 0px 25px;
}
.career_job_list article strong,
.career_job_list article b,
.career_job_list article small {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 600;
}
.career_job_list article strong{
  font-size: 0.45rem;
  font-family: var(--elm);
  line-height: 1;
}
.career_job_list article b{
  display: grid;
  align-items: center;
  justify-content: center;
  font-size: 0.22rem;
  line-height: 1.6;
  padding: 11px 0 10px;
}
.career_job_list img{
  display: block;
  margin: -25px auto 0;
}
/* モデルリスト */
.career_model_list{
  list-style: none;
  margin-top: 45px;
}
.career_model_list li{
  display: grid;
  align-items: center;
  grid-template-columns: 150px 1fr;
  border-radius: 13px;
  min-height: 100px;
  padding: 20px 25px;
  padding-left: 50px;
  margin-bottom: 10px;
}
.career_model_list li > br{
  display: none;
}
.career_model_list li:nth-child(1){
  background-color: var(--site_green);
}
.career_model_list li:nth-child(2){
  background-color: #2B9686;
}
.career_model_list li:nth-child(3){
  background-color: #5B93C3;
}
.career_model_list li:nth-child(4){
  background-color: #5374B2;
}
.career_model_list li:nth-child(5){
  background-color: var(--site_orange);
}
.career_model_list li:nth-child(6){
  background-color: var(--site_orange_deep);
}
.career_model_list b{
  display: block;
  color: #fff;
  font-weight: 600;
}
.career_model_list article,
.career_model_list article *{
  color: #fff;
  font-weight: 500;
}
/* 役割コンテンツ */
.career_role_inner{
  padding-top: 1px;
  margin-top: 190px;
}
.career_role_inner small{
  display: block;
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 1.6;
}
/* 役割見出し */
.career_role_head{
  max-width: max-content;
  margin: -160px auto 25px;
}
.career_role_head.cl01{
  --role_color: var(--site_orange);
}
.career_role_head.cl02{
  --role_color: var(--site_blue);
}
.career_role_head.cl03{
  --role_color: var(--site_green);
}
.career_role_head img, .career_role_head strong, .career_role_head span{
  display: block;
  text-align: center;
  max-width: max-content;
  margin: 0 auto;
}
.career_role_head strong{
  color: var(--role_color);
  font-family: var(--elm);
  font-size: 0.45rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 6px;
  margin-bottom: 7px;
}
.career_role_head span{
  color: var(--role_color);
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 1.4;
}
/* スモール見出し */
.career_heading_sm{
  text-align: center;
  font-size: 0.19rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 60px 0 30px;
}


/*------------------------------------------------
 アーカイブページ
------------------------------------------------*/
/* トップビジュアル */
.talent_head_container{
  background-color: #fff;
  margin-bottom: 100px;
}
.talent_loop_box{
  position: relative;
  background-color: var(--site_green_deep);
  border-top: 1px solid #3B3B3B;
  border-bottom: 1px solid #3B3B3B;
  height: 30px;
}
.talent_loop_box .loop01, .talent_loop_box .loop02{
  display: block;
  position: absolute;
  min-width: max-content;
  animation: 25s linear infinite;
  line-height: 26px;
  left: 0;
  top: 0;
}
.talent_loop_box .loop01{
  animation-name: anim_text_loop01;
}
.talent_loop_box .loop02{
  animation-name: anim_text_loop02;
}
.talent_loop_box span{
  line-height: inherit;
  font-size: 0.15rem;
  font-weight: 500;
  padding: 0 10px;
}
.talent_visual_box{
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 2%;
  padding-right: 6%;
  margin: 65px 0;
}
.talent_visual_box ul{
  display: grid;
  list-style: none;
  align-items: stretch;
  grid-template-columns: 11% 1fr 41%;
  gap: 20px;
}
.talent_visual_box li img{
  object-fit: cover;
  border-radius: 16px;
  height: 100%;
  width: 100%;
}
.talent_visual_box li:nth-child(1) img{
  object-position: center right;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.talent_visual_label{
  writing-mode: vertical-rl;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 1.8;
  font-size: 0.32rem;
}
.talent_visual_label span{
  letter-spacing: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 0.46rem;
  color: var(--site_green_deep);
}
/* 人材育成の姿勢 */
.talent_grow_container{
  padding-right: 15%;
}
.talent_grow_grid{
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr auto;
  gap: 20px;
}
.talent_grow_head{
  display: grid;
  align-items: center;
  justify-content: flex-end;
  background-color: #fff;
  border-radius: 0 18px 18px 0;
  padding: 15px 0 20px;
  padding-right: 17%;
}
.talent_grow_content{
  border-radius: 18px;
  background-color: #fff;
  padding: 30px 50px 0 70px;
}
.talent_grow_content ul {
  display: grid;
  list-style: none;
  align-items: flex-end;
  justify-content: flex-start;
  grid-template-columns: repeat(3, auto);
  gap: 55px;
  margin-bottom: -20px;
}
.talent_grow_content li{
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, auto);
  gap: 40px;
}
.talent_grow_content li.cl01{
  --grow_color: var(--site_orange);
}
.talent_grow_content li.cl02{
  --grow_color: var(--site_blue);
}
.talent_grow_content li.cl03{
  --grow_color: var(--site_green);
}
.talent_grow_content li article{
  padding-bottom: 40px;
}
.talent_grow_content li span, .talent_grow_content li strong, .talent_grow_content li b{
  display: block;
  max-width: max-content;
  font-weight: 600;
  line-height: 1;
  margin: 0 auto;
}
.talent_grow_content li strong {
  background-color: var(--grow_color);
  border-radius: 8px;
  color: #fff;
  font-size: 0.53rem;
  line-height: 39px;
  padding-bottom: 4px;
  margin: 11px auto 9px;
}
.talent_grow_content li b{
  color: var(--grow_color);
  font-family: var(--elm);
  font-size: 0.22rem;
  font-weight: 500;
}
/* 人材育成グラフ */
.talent_grow_graph {
  background-color: #fff;
  border-radius: 9px;
  max-width: max-content;
  font-weight: 500;
  padding: 9px 14px 15px !important;
  margin-left: auto;
  margin-top: 30px;
  margin-bottom: 80px;
}
/* 研修コンテンツ共通 */
.talent_training_fill{
  background-color: #E8E8E8;
  border-radius: 18px;
  padding: 30px 30px 25px;
  margin-bottom: 25px;
}
.talent_training_fill.fill01{
  margin-top: 45px;
}
.talent_training_label{
  display: block;
  text-align: center;
  font-size: 0.19rem;
  font-weight: 600;
  margin-bottom: 15px;
}
/* 研修色付きコンテンツボックス */
.talent_training_type{
  background-color: var(--training_color);
  border-radius: 18px;
  padding: 25px 30px 30px;
  margin-bottom: 20px;
}
.talent_training_type.type01{
  --training_color: var(--site_blue);
}
.talent_training_type.type02{
  --training_color: var(--site_green);
}
.talent_training_type.type03{
  --training_color: var(--site_orange);
}
.talent_training_type b{
  display: block;
  text-align: center;
  color: #fff;
  font-size: 0.18rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.talent_training_type.type02 p{
  font-weight: 500;
  color: #fff;
}
/* 研修リスト */
.talent_training_list{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  gap: 0px 20px;
}
.talent_training_list li{
  border-radius: 7px;
  background-color: #fff;
  color: var(--training_color);
  font-weight: 600;
  line-height: 1;
  padding: 9px 20px 10px;
  margin-bottom: 10px;
}
.talent_training_list li.br{
  height: 0px;
  width: 100%;
  padding: 0;
  margin: 0;
}
.talent_training_list li.red{
  color: #F06F87;
}
.career_inner .talent_training_end_text{
  text-align: end;
  margin-bottom: -30px;
}
/* 技術研修リスト */
.talent_training_tech_list{
  display: grid;
  list-style: none;
  grid-template-columns: 34% 60%;
  gap: 45px 6%;
  margin-top: 60px;
}
.talent_training_tech_list li{
}
.talent_training_tech_list li.i01{
  grid-column: 3/1;
}
.talent_training_tech_list figure{
  position: relative;
  margin-bottom: 8px;
}
.talent_training_tech_list figure img {
  object-fit: cover;
  border-radius: 18px;
  min-height: 190px;
  width: 100%;
}
.talent_training_tech_list figure figcaption {
  position: absolute;
  border-radius: 7px;
  background-color: #fff;
  left: 18px;
  top: -17px;
  font-size: 0.18rem;
  font-weight: 600;
  color: var(--training_color);
  line-height: 1.4;
  padding: 5px 15px 6px;
}
.talent_training_tech_list figure figcaption small {
  display: inline-block;
  line-height: inherit;
  font-weight: inherit;
  font-size: 0.14rem;
  color: inherit;
  vertical-align: 2px;
  margin-right: 8px;
}
/* ラダー中見出し */
.heading_md_ladder{
  font-size: 0.21rem;
  font-weight: 600;
  margin: 15px 0 2px;
}
/* キャリアラダーコンテンツ */
.talent_ladder_container{
  overflow: auto;
}
.talent_ladder_box{
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr auto;
  min-width: 1000px;
  gap: 8px;
  margin-top: 10px;
}
.talent_ladder_box.cl01{
  --ladder_color01: #356FA0;
  --ladder_color02: #5B93C3;
}
.talent_ladder_box.cl02{
  --ladder_color01: #038873;
  --ladder_color02: var(--site_green);
}
.talent_ladder_box > p{
  display: contents;
}
.talent_ladder_box ul{
  display: grid;
  list-style: none;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
  padding: 6px 0;
  margin-bottom: 6px;
}
.talent_ladder_box ul:last-of-type{
  margin-bottom: 0;
}
.talent_ladder_box ul.lhead{
  background-color: var(--ladder_color01);
  border-radius: 8px;
}
.talent_ladder_box ul.lbody{
  background-color: var(--ladder_color02);
  border-radius: 11px;
  padding: 18px 0;
}
.talent_ladder_box li{
  border-right: 1px solid #fff;
  padding: 0 25px;
}
.talent_ladder_box li:last-of-type{
  border-right: 0;
}
.talent_ladder_box li, .talent_ladder_box li *{
  color: #fff;
  font-weight: 500;
}
.talent_ladder_box ul.lhead li{
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}
.talent_ladder_box ul.lbody li{
}
.talent_ladder_box ul.lbody li.label{
  display: grid;
  align-items: center;
  justify-content: center;
}
.talent_ladder_box ul.lbody li.label,
.talent_ladder_box ul.lbody li.label *{
  text-align: center;
  line-height: 1.8;
}
.talent_ladder_box ul.lbody li.label span{
  display: block;
  font-weight: 600;
  font-size: 0.19rem;
  margin-bottom: 5px;
}
.talent_ladder_box strong{
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  background-color: #E8E8E8;
  letter-spacing: 7px;
  border-radius: 11px;
  font-weight: 600;
  padding: 10px 7px;
  margin-top: 41px;
}
/* コメントコンテンツ */
.talent_comment_inner{
  display: grid;
  align-items: center;
  grid-template-columns: 195px 1fr;
  gap: 30px;
  padding: 25px 50px;
  margin-bottom: 15px;
}
.talent_comment_inner figure{
}
.talent_comment_inner figure img{
  display: block;
  margin: 0 auto 5px;
}
.talent_comment_inner figure figcaption{
  text-align: center;
  font-size: 0.15rem;
  font-weight: 500;
  line-height: 1.6;
}
.talent_comment_inner article,
.talent_comment_inner article *{
  font-weight: 600;
}


/*------------------------------------------------
 ３つのポジションページ
------------------------------------------------*/
/* スタイル */
.open_style01{
  --open_brush: url(../img/sub/brush_bwd_dgreen.jpg);
  --open_color: var(--site_green_deep);
  --open_color_lit: var(--site_green);
}
.open_style02{
  --open_brush: url(../img/sub/brush_bwd_dblue.jpg);
  --open_color: var(--site_blue);
  --open_color_lit: var(--site_blue);
}
.open_style03{
  --open_brush: url(../img/sub/brush_bwd_orange.jpg);
  --open_color: var(--site_orange);
  --open_color_lit: var(--site_orange);
}
/* 見出し */
.heading_open_md{
  text-align: center;
  color: var(--open_color);
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 105px auto 35px;
}
.heading_open_sm{
  text-align: center;
  background-color: var(--open_color_lit);
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  padding: 19px 15px 21px;
  margin-bottom: 70px;
}
/* メインビジュアル */
.open_visual_container{
  position: relative;
  padding: 65px 3% 40px 10%;
  margin-bottom: 65px;
}
.open_visual_container::before{
  content: "";
  position: absolute;
  background: var(--open_brush) repeat-y;
  background-size: cover;
  border-radius: 40px;
  width: 60%;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -10;
}
.open_visual_grid{
  position: relative;
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 64%;
  gap: 40px;
  margin-bottom: 55px;
}
.open_visual_grid article{
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 37px;
  padding: 40px 50px;
}
.open_visual_grid .open_linedot {
  position: absolute;
  display: grid;
  grid-template-rows: 64% 1fr;
  transform: translateY(-100%);
  width: 2px;
  height: 110px;
  left: 68px;
  top: 40px;
}
.open_visual_grid .open_linedot hr{
  border: 0;
  border-left: 1px solid #fff;
  padding: 0;
  margin: 0;
}
.open_visual_grid .open_linedot hr:nth-child(2){
  border-color: var(--open_color);
}
.open_visual_grid .open_linedot::before {
  content: "";
  position: absolute;
  background-color: var(--open_color);
  border-radius: 1000px;
  aspect-ratio: 1/1;
  width: 7px;
  height: auto;
  left: -3px;
  bottom: -4px;
}
.open_visual_grid article strong, .open_visual_grid article b, .open_visual_grid article p{
  display: block;
  font-weight: 600;
}
.open_visual_grid article strong {
  color: var(--open_color);
  font-size: 0.4rem;
  line-height: 1.5;
  margin-bottom: 25px;
  margin-top: 15px;
}
.open_visual_grid article b {
  font-size: 0.2rem;
  margin-bottom: 20px;
}
.open_visual_grid article p{
  font-weight: 500;
}
.open_visual_grid figure img{
  border-radius: 31px;
}
.open_visual_work{
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  background-color: #fff;
  border: 2px solid var(--open_color);
  border-radius: 25px;
  gap: 45px;
  padding: 50px;
  margin-right: 10%;
}
.open_visual_work p:empty{
  display: none;
}
.open_visual_work b{
  display: block;
  font-weight: 600;
  font-size: 0.26rem;
  color: var(--open_color);
}
.open_visual_work ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0px 20px;
}
.open_visual_work li{
  font-weight: 500;
}
/* ページ内リンクリスト */
.open_navi_list{
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 10px 50px;
}
.open_navi_list a {
  display: block;
  text-align: center;
  background: #fff url(../img/common/parts/arrow_down.svg) no-repeat;
  background-position: 50% 80%;
  background-size: 8px;
  box-shadow: 3px 3px 4px #00000029;
  border: 1px solid var(--site_green_deep);
  border-radius: 13px;
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--site_green_deep);
  padding: 8px 15px 33px;
}
/* 流れテーブル */
.open_flow_table_wrap{
  overflow: auto;
  margin-bottom: 75px;
}
.open_flow_table{
  border-collapse: separate;
  min-width: 900px;
  width: 100%;
}
.open_flow_table thead th{
  text-align: center;
  background-color: var(--open_color_lit);
  border-left: 1px solid #fff;
  color: #fff;
  font-size: 0.2rem;
  font-weight: 600;
  padding: 10px 15px;
}
.open_flow_table thead th:first-of-type{
  border-top-left-radius: 27px;
  border-left: 0;
}
.open_flow_table thead th:last-of-type{
  border-top-right-radius: 27px;
}
.open_flow_table tbody td,
.open_flow_table tbody th{
  border: 1px solid var(--open_color_lit);
  border-right: 0;
  border-top: 0;
  width: 25%;
  padding: 25px;
}
.open_flow_table.has_head tbody th{
  width: 12%;
}
.open_flow_table.has_head tbody td{
  width: 30%;
}
.open_flow_table tbody td:last-of-type{
  border-right: 1px solid var(--open_color_lit);
}
.open_flow_table tbody tr:last-of-type td:first-of-type,
.open_flow_table tbody th.head{
  border-bottom-left-radius: 27px;
}
.open_flow_table tbody tr:last-of-type td:last-of-type{
  border-bottom-right-radius: 27px;
}
.open_flow_table tbody th.head{
  text-align: center;
  font-size: 0.21rem;
  font-weight: 600;
}
.open_flow_table tbody td.unset{
  border-radius: 0 !important;
}
.open_flow_table tbody td ul{
  padding-left: 25px;
  margin-bottom: 20px;
}
.open_flow_table tbody td li {
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 10px;
}
.open_flow_table tbody td img{
  display: block;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
}
/* 吹き出しコンテナ */
.open_bubble_container{
  background-repeat: repeat-y;
  background-size: cover;
  border-radius: 40px;
  width: calc(100% - 30px);
  max-width: 1575px;
  padding: 65px 0;
  margin: 100px auto 0;
}
.open_bubble_container.type01{
  background-image: url(../img/sub/brush_bwd_dgreen.jpg);
  --open_bubble_color: var(--site_green);
}
.open_bubble_container.type02{
  background-image: url(../img/sub/brush_bwd_dblue.jpg);
  --open_bubble_color: var(--site_blue);
}
.open_bubble_container.type03{
  background-image: url(../img/sub/brush_bwd_orange.jpg);
  --open_bubble_color: var(--site_orange);
}
/* 吹き出し */
.open_bubble {
  position: relative;
  background-color: #fff;
  border-radius: 24px;
  max-width: 510px;
  padding: 25px 15px;
  margin: 0 auto 80px;
  z-index: 10;
}
.open_bubble::before,
.open_bubble.open_bubble_multi::before,
.open_bubble.open_bubble_multi::after {
  content: "";
  position: absolute;
  aspect-ratio: 55/75;
  background: url(../img/sub/bubble_corn.svg) no-repeat;
  background-position: center top;
  background-size: contain;
  width: 55px;
  transform: translateX(-50%);
  left: 50%;
  bottom: -50px;
  z-index: -10;
}
.open_bubble.open_bubble_multi::before,
.open_bubble.open_bubble_multi::after{
  transform: unset;
  inset: unset;
  bottom: -45px;
}
.open_bubble.open_bubble_multi::before{
  transform: rotateZ(35deg);
  left: 30px;
}
.open_bubble.open_bubble_multi::after{
  transform: rotateZ(-35deg);
  right: 30px;
}
.open_bubble .notify{
  display: block;
  text-align: center;
  font-size: 0.18rem;
  font-weight: 600;
}
.open_bubble .red_notify {
  display: block;
  transform: rotateZ(16deg);
  max-width: max-content;
  font-weight: 500;
  margin: 15px 0 -50px auto;
}
.open_bubble img{
  display: block;
  max-width: max-content;
  margin: 0 auto 10px;
}
.open_bubble b{
  display: block;
  text-align: center;
  font-size: 0.26rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 10px;
}
.open_bubble small{
  display: block;
  text-align: center;
  font-weight: 500;
  font-family: var(--elm);
  line-height: 1.4;
}
/* 塗りインナー */
.open_bubble_inner{
  background-color: #fff;
  border-radius: 30px;
  padding: 65px 50px;
}
.open_bubble_faq_inner{
  max-width: 1000px;
  margin: 0 auto;
}
/* 数字リスト */
.open_num_list{
  list-style: none;
  max-width: max-content;
  margin: 0 auto;
}
.open_num_list li{
  display: grid;
  align-items: flex-start;
  grid-template-columns: 60px 1fr;
  margin-bottom: 65px;
}
.open_num_list li > br{
  display: none;
}
.open_num_list li:last-of-type{
  margin-bottom: 0;
}
.open_num_list strong {
  display: block;
  font-size: 0.24rem;
  font-family: var(--elm);
  color: var(--open_bubble_color);
  line-height: 1;
  margin-top: 6px;
}
.open_num_list b{
  display: block;
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 10px;
}
.open_num_list b *{
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.open_num_list p{
  font-weight: 500;
}
/* FAQリスト */
.open_faq_list{
  list-style: none;
}
.open_faq_list li{
  margin-bottom: 40px;
}
.open_faq_list li:last-of-type{
  margin-bottom: 0;
}
.open_faq_list .label, .open_faq_list article{
  display: grid;
  align-items: flex-start;
  grid-template-columns: 50px auto;
}
.open_faq_list .label{
  margin-bottom: 25px;
}
.open_faq_list .label::before, .open_faq_list article::before{
  display: block;
  line-height: 1;
  font-weight: 800;
  font-family: var(--elm);
  color: var(--open_bubble_color);
}
.open_faq_list .label::before{
  content: "Q";
  font-size: 0.43rem;
  margin-top: 3px;
}
.open_faq_list article::before {
  content: "A.";
  font-size: 0.24rem;
  margin-top: 7px;
  margin-left: 12px;
}
.open_faq_list .label b {
  max-width: max-content;
  background-color: var(--open_bubble_color);
  font-size: 0.19rem;
  line-height: 1.6;
  border-radius: 10px;
  color: #fff;
  padding: 11px 20px;
}
.open_faq_list article, 
.open_faq_list article p{
  font-weight: 500;
  font-size: 0.18rem;
}
/* その他のポジション */
.open_heading_other{
  display: block;
  text-align: center;
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 95px 0 45px;
}
.open_other_list{
  display: grid;
  list-style: none;
  align-items: flex-start;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  gap: 25px;
  max-width: 580px;
  margin: 0 auto;
}
.open_other_list li{
  display: grid;
  align-items: flex-start;
  grid-template-rows: 1fr auto auto;
  gap: 20px;
  height: 100%;
}
.open_other_list li.other01{
  --open_other_color: var(--site_green_deep);
}
.open_other_list li.other02{
  --open_other_color: var(--site_blue_deep);
}
.open_other_list li.other03{
  --open_other_color: var(--site_orange);
}
.open_other_list b{
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: var(--open_other_color);
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 1.6;
  height: 100%;
  margin-bottom: 20px;
}
.open_other_list img{
  display: block;
  margin: 0 auto;
}
.open_other_list .btn01{
  background-image: url(../img/common/parts/arrow_simple_white.svg);
  background-color: var(--open_other_color);
  color: #fff;
  margin-top: 10px;
}
/* 事務職員働き方横並びコンテンツ */
.open_bus_style_grid{
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: 115px;
}
.open_bus_style_inner{
  background-color: #fff;
  border-radius: 30px;
  height: 100%;
  padding: 0 45px 65px;
}
.open_bus_style_bubble {
  position: relative;
  display: block;
  text-align: center;
  background: #fff;
  border: 2px solid #3B3B3B;
  border-radius: 15px;
  max-width: 316px;
  color: var(--site_orange);
  font-size: 0.2rem;
  font-weight: 600;
  padding: 7px 0 9px;
  margin: -29px auto 35px;
}
.open_bus_style_bubble::before {
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  background: url(../img/sub/open_bus_bubble_corn.svg) no-repeat;
  background-position: top center;
  background-size: contain;
  transform: translateX(-50%);
  left: 50%;
  bottom: -19px;
  width: 28px;
}
.open_bus_style_txt{
  text-align: center;
  font-size: 0.18rem;
  font-weight: 600;
}
.open_bus_style_label{
  display: block;
  text-align: center;
  background-color: var(--site_orange);
  border-radius: 10px;
  width: 100%;
  max-width: 345px;
  font-size: 0.22rem;
  font-weight: 600;
  color: #fff;
  padding: 4px 15px 6px;
  margin: 30px auto 35px;
}


/*------------------------------------------------
 社員インタビューページ
------------------------------------------------*/
/* 参照指定 */
.iview_orange{
  --iview_bwd: url(../img/sub/brush_bwd_orange.jpg);
  --iview_fill_color: var(--site_orange);
  --iview_color: var(--site_orange_deep);
}
.iview_blue{
  --iview_bwd: url(../img/sub/brush_bwd_dblue.jpg);
  --iview_fill_color: var(--site_blue);
  --iview_color: var(--site_blue_deep);
}
.iview_green{
  --iview_bwd: url(../img/sub/brush_bwd_dgreen.jpg);
  --iview_fill_color: var(--site_green);
  --iview_color: var(--site_green);
}
/* インタビュートップ */
.iview_top .sub_top_loop{
  height: 135px;
  margin-top: 0;
  z-index: 20;
}
.iview_top .sub_top_loop span{
  font-size: 1.4rem;
  opacity: .14;
}
/* 外枠グリッド */
.iview_top_outer{
  position: relative;
  display: grid;
  align-items: flex-start;
  grid-template-columns: 11% 89%;
  margin-top: -40px;
}
.iview_top_outer .graph_background {
  position: absolute;
  left: 5%;
  top: -45px;
  bottom: 0;
  width: 60%;
  padding: 0;
  z-index: -10;
}
/* 左側ビジュアルイメージ */
.iview_top_accent_left {
  width: 170%;
  max-width: unset;
  margin-left: -150px;
}
/* 内枠グリッド */
.iview_top_inner{
  display: grid;
  align-items: flex-end;
  grid-template-columns: minmax(450px, 38%) 62%;
  padding-left: 10%;
  padding-right: 1%;
}
.iview_top_inner article{
  padding-top: 120px;
  padding-bottom: 35px;
}
.iview_top_inner figure{
  position: relative;
}
/* 右側ビジュアルイメージ */
.iview_top_thumb{
  position: absolute;
  width: auto;
  height: 100%;
  padding-left: 70px;
  padding-top: 20px;
}
.iview_top_accent_right{
  width: 100%;
}
/* コンテンツ */
.iview_top_content{
  margin-bottom: 60px;
}
.iview_top_heading_flex {
  display: flex;
  align-items: center;
  min-width: max-content;
  gap: 10px 25px;
  margin-bottom: 50px;
}
.iview_top_heading_flex h1{
  font-family: var(--elm);
  font-size: 0.3rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--iview_color);
}
.iview_top_heading_flex a {
  display: block;
  background: var(--iview_color) url(../img/common/parts/arrow_simple_white.svg) no-repeat;
  background-position: 93% 50%;
  background-size: 16px;
  border-radius: 1000px;
  box-shadow: var(--shadow_sm);
  max-width: max-content;
  width: 100%;
  font-size: 0.14rem;
  font-weight: 600;
  color: #fff !important;
  padding: 2px 50px 3px 20px;
}
.iview_top_content b{
  display: block;
  margin-bottom: 10px;
}
.iview_top_content b span {
  color: var(--iview_color);
  font-family: var(--elm);
  font-size: 0.30rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -5px;
  margin-right: 20px;
}
.iview_top_content b small{
  display: inline-block;
  color: var(--iview_color);
  font-family: var(--elm);
  font-size: 0.16rem;
  font-weight: 600;
  margin-right: 20px;
}
.iview_top_content b p{
  display: inline-block;
  line-height: 1.6;
}
.iview_top_content p{
  font-weight: 600;
  line-height: 1.8;
}
/* メッセージ */
.iview_top_messege_flex{
  position: relative;
  display: grid;
  align-items: flex-start;
  grid-template-columns: auto 1fr;
  gap: 80px;
  z-index: 10;
}
.iview_top_messege {
  padding-top: 35px;
  margin-right: -130px;
}
.iview_top_messege b {
  display: block;
  background-color: #fff;
  border: 1px solid #3B3B3B;
  max-width: max-content;
  border-radius: 6px;
  font-size: 0.4rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 9px 22px 13px;
  margin-bottom: 20px;
}
.iview_top_messege b:last-of-type{
  margin-left: auto;
}
/* 汎用パーツ */
.iview_label{
  text-align: center;
  color: var(--iview_color);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 10px;
}
.iview_label span{
  display: block;
  text-align: inherit;
  font-family: var(--elm);
  font-weight: inherit;
  font-size: 0.25rem;
  line-height: 1;
  color: inherit;
  margin-bottom: 8px;
}
/* メインレイアウト */
.iview_main_container{
  background: var(--iview_bwd) repeat-y;
  background-size: cover;
  border-radius: 56px;
  padding: 140px 0;
}
.iview_main_inner{
  background-color: #fff;
  border-radius: 55px;
  width: calc(100% - 30px);
  max-width: 1500px;
  padding: 100px 0;
  margin: 0 auto;
}
.iview_main_inner p{
  font-weight: 600;
}
/* メインコンテンツ */
.iview_content_flex{
  display: flex;
  align-items: flex-start;
  gap: 65px;
  margin-bottom: 120px;
}
.iview_content_flex:last-of-type{
  margin-bottom: 0;
}
.iview_content_flex.reverse{
  flex-direction: row-reverse;
}
.iview_content_flex ul{
  list-style: none;
  width: 100%;
}
.iview_content_flex li{
  border-bottom: 1px solid #3B3B3B;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.iview_content_flex li:last-of-type{
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.iview_content_flex li .iview_label{
  text-align: left;
}
.iview_content_flex li article{
  display: flex;
  gap: 5px;
}
.iview_content_flex li article::before{
  content: "A.";
  font-weight: 600;
}
.iview_content_flex img{
  display: block;
  object-fit: cover;
  border-radius: 31px;
  width: 445px;
}
/* 横幅いっぱい画像 */
.iview_full_visual {
  position: relative;
  display: block;
  object-fit: cover;
  width: 100%;
  margin-top: -7%;
  z-index: -10;
}
/* スケジュールレイアウト */
.iview_schedule_container{
  padding: 110px 0 130px;
}
/* スケジュールスライダー */
.iview_schedule_swiper{
  position: relative;
  margin-top: 85px;
}
.iview_schedule_swiper::before{
  content: "";
  position: absolute;
  background: url(../img/sub/schedule_dotline_hor.svg) repeat-x;
  background-size: 10px;
  width: 100%;
  height: 2px;
  top: 69px;
  left: 0;
}
.iview_schedule_swiper .swiper-wrapper{
  align-items: stretch;
}
.iview_schedule_swiper .swiper-slide{
  width: 230px;
  height: auto;
}
.iview_schedule_content{
  display: grid;
  align-items: flex-start;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}
.iview_schedule_content *{
  user-select: none;
  cursor: pointer;
}
.iview_schedule_content time{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: var(--iview_color);
  font-family: var(--elm);
  font-weight: 800;
  font-size: 0.2rem;
  line-height: 1.2;
  min-height: 48px;
}
.iview_schedule_content .time_box{
  width: 100%;
  max-width: 95px;
  margin: 0 auto;
}
.iview_schedule_content .time_box time{
  max-width: max-content;
  min-height: unset;
}
.iview_schedule_content .time_box time:nth-child(2){
  margin-left: auto;
}
.iview_schedule_content b{
  display: block;
  text-align: center;
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 15px;
}
.iview_schedule_content article{
  position: relative;
  padding-top: 25px;
  margin-top: 15px;
}
.iview_schedule_content article::before{
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  background-color: var(--iview_color);
  transform: translateX(-50%);
  border-radius: 1000px;
  left: 50%;
  top: 0;
  width: 13px;
  height: auto;
}
.iview_schedule_content article,
.iview_schedule_content article p{
  font-weight: 600;
  line-height: 1.6;
}
.iview_schedule_content img{
  display: block;
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  margin-top: 35px;
}
/* アドバイスコンテンツ */
.iview_advide_container{
  background-color: var(--iview_fill_color);
  background-image: linear-gradient(to right, #ffffff21 0, #ffffff21 1px, transparent 1px, transparent 19px), linear-gradient(to bottom, #ffffff21 0, #ffffff21 1px, transparent 1px, transparent 19px);
  background-size: 19px 19px;
  padding: 45px 0;
}
.iview_advide_content{
  background-color: #fff;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 285px;
  border-radius: 39px;
  padding: 0 65px 0 95px;
  margin-top: 90px;
  gap: 0 45px;
}
.iview_advide_content article{
  padding: 15px 0;
}
.iview_advide_content article,
.iview_advide_content article p{
  font-size: 0.18rem;
  font-weight: 600;
}
.iview_advide_content figure{
  position: relative;
  margin-top: -65px;
}
.iview_advide_content figure::before {
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  background: url(../img/sub/iview_advice_ex_mark.svg) no-repeat;
  background-position: center;
  background-size: contain;
  width: 50px;
  top: 100px;
  right: 0px;
}
.iview_advide_content figure img{
  display: block;
  width: 100%;
}
.iview_advide_btn {
  display: block;
  text-align: center;
  border-radius: 1000px;
  border: 1px solid #707070;
  background: #fff url(../img/common/parts/arrow_simple_grad.svg) no-repeat;
  background-position: 95% 50%;
  background-size: 17px;
  box-shadow: 3px 3px 2px #00000026;
  max-width: max-content;
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 1.6;
  padding: 20px 65px 26px;
  margin: 90px auto 0;
}
/* ミドルコンテンツ */
.iview_main_inner.iview_type02 .iview_label{
  margin-top: 75px;
  margin-bottom: 25px;
}
.iview_main_inner.iview_type02 img{
  display: block;
  width: 100%;
  max-width: 655px;
  border-radius: 31px;
  margin: 0 auto;
}
.iview_main_inner.iview_type02 p{
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
}
.iview_main_inner.iview_type02 p:empty{
  display: none;
}
/* リストスケジュールコンテンツ */
.iview_schedule_list_content{
  display: grid;
  align-items: flex-end;
  grid-template-columns: 1fr 380px;
  gap: 45px;
}
.iview_schedule_list_content ul{
  position: relative;
  list-style: none;
  padding-top: 30px;
}
.iview_schedule_list_content ul::before{
  content: "";
  position: absolute;
  background: url(../img/sub/schedule_dotline_ver.svg) repeat-y;
  background-size: 2px;
  width: 2px;
  height: 100%;
  left: 145px;
  top: 0;
}
.iview_schedule_list_content li{
  display: grid;
  align-items: flex-start;
  grid-template-columns: 175px 1fr;
  padding-bottom: 30px;
}
.iview_schedule_list_content li time{
  position: relative;
  display: block;
  color: var(--iview_color);
  font-family: var(--elm);
  font-size: 0.20rem;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 4px;
}
.iview_schedule_list_content li time::after{
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  transform: translateY(-50%);
  background-color: var(--iview_color);
  border-radius: 1000px;
  top: 50%;
  right: 22px;
  width: 13px;
  height: auto;
}
.iview_schedule_list_content li time br{
  display: none;
}
.iview_schedule_list_content li b{
  display: block;
  font-size: 0.20rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 5px;
}
.iview_schedule_list_content li p{
  font-weight: 600;
}
.iview_schedule_list_content figure img{
  border-radius: 32px;
  margin-bottom: 60px;
}


/*------------------------------------------------
 採用情報募集要項ページ
------------------------------------------------*/
.recruit_inner{
  background-color: #fff;
  border-radius: 28px;
  padding: 60px 50px;
  margin-bottom: 120px;
}
.recruit_inner .heading_md_jp{
  margin-top: 120px;
}
.recruit_navi_list{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 15px 50px;
  margin-bottom: 95px;
}
.recruit_navi_list a {
  display: block;
  text-align: center;
  background: #fff url(../img/common/parts/arrow_down.svg) no-repeat;
  background-position: 50% 80%;
  background-size: 8px;
  box-shadow: 3px 3px 4px #00000029;
  border-radius: 13px;
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 1.4;
  min-width: 180px;
  color: var(--site_green_deep);
  padding: 10px 38px 33px;
}
/* リクルートテーブル */
.table_recruit{
  width: 100%;
  margin-top: 45px;
}
.table_recruit tr:last-of-type th, .table_recruit tr:last-of-type td{
  border-bottom: 0;
}
.table_recruit th, .table_recruit td{
  border-bottom: 1px dashed var(--site_green);
  padding: 25px;
}
.table_recruit th{
  line-height: 1.8;
  border-right: 1px solid var(--site_green);
  color: var(--site_green);
  font-weight: 800;
  width: 25%;
}
.table_recruit th span{
  display: inline-block;
  color: inherit;
  line-height: inherit;
  font-family: var(--elm);
  font-weight: 800;
  font-size: 0.2rem;
}
.table_recruit td, .table_recruit td p{
  text-align: left;
  line-height: 1.8;
  font-weight: 500;
}
.table_recruit td p{
  margin-bottom: 15px;
}
.table_recruit td{
  width: 75%;
}
/* ボタンリスト */
.recruit_button_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  gap: 25px;
  margin: 25px auto 65px;
}
.recruit_button_list a {
  display: block;
  text-align: center;
  border: 1px solid #707070;
  background: url(../img/common/parts/arrow_simple_white.svg) no-repeat;
  background-position: 94% 50%;
  background-size: 17px;
  background-color: var(--site_green_deep);
  box-shadow: 3px 3px 2px #00000026;
  border-radius: 58px;
  color: #fff !important;
  font-size: 0.18rem;
  line-height: 1.2;
  width: 100%;
  max-width: max-content;
  font-weight: 600;
  padding: 14px 20px;
  padding-right: 55px;
}


/*------------------------------------------------
 お問い合わせページ
------------------------------------------------*/
.contact_box{
  max-width: 850px;
  margin: 0 auto;
}


/*------------------------------------------------
 シングル・アーカイブページ
------------------------------------------------*/
.news_inner{
  padding: 50px;
}
.single{
  padding-top: 45px;
}
.single p{
  font-weight: 500;
}
.single .btn01{
  margin: 35px auto;
}



/*------------------------------------------------
 レスポンシブ　　　max-width:1500px
------------------------------------------------*/
@media screen and (max-width:1500px){
  .philo_vehicle_content p, .philo_vehicle_content p span {
    font-size: 0.2rem;
  }
  .philo_mesege_contet {
    grid-template-columns: 14% 1fr 30%;
    padding: 45px 5% 45px 5%;
  }
  .hands_card_list{
    gap: 15px;
  }
  .hands_card_list article {
    padding-left: 15px;
    padding-bottom: 15px;
  }
  .hands_card_list.hands_card_list01 {
    grid-template-columns: 43% 43% 15%;
    padding-left: 15px;
    margin-top: 65px;
  }
  .hands_card_list.hands_card_list02 {
    grid-template-columns: 30% 50% 20%;
    margin-top: 35px;
  }
  .hands_card_list.hands_card_list03 {
    grid-template-columns: 20% 50% 30%;
    margin-top: 35px;
  }
  .hands_cc_box03_grid {
    grid-template-columns: 1fr 55%;
  }
  .rural_cc_grid {
    grid-template-columns: 1fr 49%;
  }
  .career_job_list {
    gap: 30px;
  }
  .talent_grow_container {
    padding-right: 5%;
  }
  .talent_grow_content ul {
    gap: 45px;
  }
  .talent_grow_content li {
    gap: 25px;
  }
  .talent_grow_content li strong {
    border-radius: 4px;
    font-size: 0.4rem;
    line-height: 30px;
  }
  .open_visual_container {
    padding: 65px 3% 40px 3%;
  }
  .open_visual_grid {
    grid-template-columns: 1fr 50%;
  }
  .iview_top_inner {
    padding-left: 0;
    padding-right: 0;
  }
  .iview_top_inner article {
    padding-top: 90px;
  }
  .iview_top_content {
    margin-bottom: 35px;
  }
  .iview_top_messege b {
    font-size: 0.32rem;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:1199px
------------------------------------------------*/
@media screen and (max-width:1199px) {
  .sub_top_grid {
    display: block;
  }
  .sub_top_grid article {
    padding: 40px 15px 60px 45px;
  }
  .sub_top_grid img {
    display: block;
    min-height: unset;
    width: 100%;
    height: 35px;
  }
  .nosai_about_grid {
    grid-template-columns: auto 1fr;
    gap: 0 45px;
    padding-left: 5%;
    margin-bottom: 100px;
  }
  .nosai_about_grid img {
    margin-bottom: 20px;
  }
  .nosai_role_grid.nosai_role_grid01,
  .nosai_role_grid.nosai_role_grid02 {
    display: block;
  }
  .nosai_role_grid.nosai_role_grid01{
    padding-left: 15px;
    margin-bottom: 45px;
  }
  .nosai_role_grid.nosai_role_grid02{
    padding-right: 15px;
  }
  .nosai_role_grid.nosai_role_grid01 article,
  .nosai_role_grid.nosai_role_grid02 article {
    justify-content: center;
    padding: 40px;
  }
  .nosai_role_grid.nosai_role_grid01 img,
  .nosai_role_grid.nosai_role_grid02 img{
    display: block;
    border-radius: 20px;
    width: 100%;
    max-width: 750px;
    margin: 0 auto 15px;
  }
  .nosai_messege_text {
    font-size: 0.26rem;
    margin-bottom: 20px;
  }
  .nosai_impact_text {
    font-size: 0.75rem;
  }
  .faq_navi_list {
    grid-template-columns: repeat(5, 170px);
  }
  .philo_vehicle_container {
    display: flex;
    flex-direction: column-reverse;
    padding: 55px 15px;
    padding-left: 0;
  }
  .philo_vehicle_container figure{
    max-width: 470px;
  }
  .philo_vehicle_content{
    justify-content: center;
    padding: 30px 15px 15px;
    margin-left: 15px;
  }
  .philo_mesege_contet{
    display: block;
  }
  .philo_mesege_contet .philo_visual {
    max-width: 455px;
  }
  .philo_mesege_contet article{
    margin: 0;
  }
  .philo_mesege_contet article p {
    margin-bottom: 25px;
  }
  .philo_mesege_head{
    display: grid;
    grid-template-columns: 27% 1fr;
    gap: 25px;
    max-width: max-content;
    margin: 0 auto 35px;
  }
  .philo_mesege_head img{
    width: 100%;
  }
  .hands_card_list .hands_card_inner {
    padding: 35px 15px;
  }
  .hands_card_list.hands_card_list01 {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 15px;
  }
  .hands_card_list.hands_card_list02 {
    grid-template-columns: 20% 70% 10%;
  }
  .hands_banner_container {
    padding: 45px 0 50px;
    margin: 65px 0;
  }
  .hands_banner_grid {
    display: block;
    max-width: 595px;
  }
  .hands_banner_grid article{
    max-width: max-content;
    margin-left: auto;
    margin-top: 25px;
  }
  .rural_cc_grid {
    grid-template-columns: 1fr 40%;
    gap: 20px;
  }
  .rural_cc_label_flex {
    display: block;
    margin-bottom: 25px;
  }
  .rural_cc_label_flex .rural_label {
    margin-bottom: 20px;
  }
  .rural_graph_content .rural_graph_accent01 {
    top: 3%;
    left: -2%;
  }
  .rural_graph_content .rural_graph_accent02 {
    right: -3%;
    bottom: -15%;
    width: 16%;
  }
  .brush_dev02 {
    gap: 35px;
  }
  .brush_dev03 {
    grid-template-columns: repeat(2, 1fr);
  }
  .brush_dev03 li.connect{
    grid-column: unset;
  }
  .career_job_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .talent_grow_grid {
    grid-template-columns: 1fr;
  }
  .talent_grow_head {
    max-width: max-content;
    padding: 45px 50px 50px 15%;
  }
  .talent_grow_content {
    max-width: max-content;
    padding: 30px 50px 0 70px;
    margin-left: auto;
  }
  .open_visual_container::before {
    border-radius: 0;
    width: 100%;
  }
  .open_visual_grid {
    display: block;
    margin-bottom: 25px;
  }
  .open_visual_grid figure img {
    margin-bottom: 25px;
  }
  .open_visual_work {
    margin-right: 0;
  }
  .open_bus_style_grid {
    gap: 35px;
  }
  .open_bus_style_inner {
    padding: 0 25px 45px;
  }
  .iview_top_outer {
    grid-template-columns: 20% 1fr;
    gap: 90px;
  }
  .iview_top_inner{
    display: block;
    margin-right: 15px;
  }
  .iview_top_inner article{
    max-width: 600px;
    padding-top: 65px;
  }
  .iview_top_messege {
    margin-right: unset;
  }
  .iview_top_check_line{
    margin-top: -115px;
  }
  .iview_top_inner figure {
    margin-left: 25px;
  }
  .iview_top_outer .graph_background {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
  }
  .iview_content_flex {
    gap: 35px;
    margin-bottom: 90px;
  }
  .iview_content_flex img {
    width: 355px;
  }
  .iview_advide_content {
    grid-template-columns: 1fr 255px;
  }
  .iview_schedule_list_content {
    display: block;
  }
  .iview_schedule_list_content figure {
    display: grid;
    align-items: stretch;
    grid-template-columns: 41% 1fr;
    gap: 5%;
    margin-top: 45px;
  }
  .iview_schedule_list_content figure img{
    margin: 0;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:991px
------------------------------------------------*/
@media screen and (max-width:991px) {
  .heading_dot {
    padding-right: 35px;
    margin-bottom: 25px;
  }
  .heading_dot span {
    font-size: 0.35rem;
  }
  .heading_dot small {
    font-size: 0.18rem;
    padding-left: 35px;
    margin-top: 5px;
  }
  .heading_boxed {
    font-size: 0.21rem;
    padding: 4px 30px 7px;
    margin: 60px auto 25px;
  }
  .leaf_container {
    padding: 95px 0;
  }
  .leaf_container .leaf::before {
    background-size: auto 90px;
    height: 90px;
  }
  .leaf_container .leaf::after {
    top: 90px;
  }
  .leaf_inner{
    padding: 20px 15px 25px;
  }
  .graph_background {
    padding-top: 55px;
  }
  .sub_top_grid article {
    padding: 30px 15px 45px 25px;
  }
  .sub_top_grid h1 span {
    font-size: 0.35rem;
  }
  .sub_top_grid h1 small {
    font-size: 0.18rem;
  }
  .sub_top_loop {
    height: 60px;
    margin-top: 25px;
  }
  .sub_top_loop span {
    font-size: 0.5rem;
  }
  .hl_text {
    font-size: 0.22rem;
    margin-bottom: 25px;
  }
  .cc_box {
    padding-top: 30px;
    margin-bottom: 45px;
    margin-right: 15px;
  }
  .cc_box::before {
    inset: 15px -15px -15px 15px;
  }
  .nosai_about_grid {
    display: block;
    padding-left: 15px;
    margin-bottom: 65px;
  }
  .nosai_about_grid article{
    padding-right: 15px;
  }
  .nosai_about_grid img{
    border-radius: 20px 0 0 20px;
    width: calc(100% + 15px);
    max-width: unset;
  }
  .nosai_about_grid ul{
    display: flex;
    flex-wrap: wrap;
    gap: 0 25px;
    margin-top: 25px;
  }
  .nosai_role_text {
    font-size: 0.22rem;
  }
  .nosai_role_text figure {
    width: 240px;
  }
  .faq_navi_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .faq_md_heading {
    margin-bottom: 25px;
  }
  .faq_content_list b, .faq_content_list article {
    padding: 9px 10px 10px 50px;
  }
  .faq_content_list b::before, .faq_content_list article::before {
    font-size: 0.26rem;
    left: 12px;
    top: 2px;
  }
  .faq_content_list article::before {
    left: 14px;
  }
  .faq_content_list b {
    border-radius: 10px;
    font-size: 0.18rem;
    line-height: 1.6;
  }
  .news_inner {
    padding-top: 35px;
  }
  .news_list li {
    display: flex;
    flex-wrap: wrap;
  }
  .news_list a, .news_list time {
    font-size: 0.16rem;
  }
  .news_list .ttl{
    width: 100%;
    margin-top: 5px;
  }
  .news_list .cat::before {
    right: -13px;
  }
  .philo_top_visual b {
    left: 45px;
    font-size: 0.26rem;
  }
  .philo_vehicle_content {
    padding: 25px 15px 45px;
  }
  .philo_vehicle_content article {
    display: block;
  }
  .philo_vehicle_content .heading_md{
    margin-bottom: 25px;
  }
  .hands_card_list.hands_card_list01 {
    grid-template-columns: 1fr;
  }
  .hands_cc_box01_inner {
    margin-top: 0;
  }
  .hands_cc_box01 figure {
    padding: 0;
  }
  .hands_cc_box01 figure .amo02 {
    right: -50px;
    bottom: 22px;
  }
  .hands_cc_box02 ul {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 25px 0 0;
  }
  .hands_cc_box03_grid {
    display: block;
  }
  .hands_cc_box03_grid img {
    display: block;
    width: 100%;
    max-width: 450px;
    margin: 0 auto 25px;
  }
  .hands_cc_box04_inner {
    max-width: 850px;
    margin: 25px 0 0;
  }
  .rural_cc_inner {
    padding-left: 0;
  }
  .rural_cc_box .rural_label {
    margin-bottom: 15px;
  }
  .rural_cc_grid {
    display: block;
  }
  .rural_cc_grid figure img {
    display: block;
    margin: 0 auto 15px;
  }
  .rural_graph_content .rural_graph_accent01 {
    top: -30px;
    width: 140px;
  }
  .rural_graph_content .rural_graph_accent02 {
    right: -20px;
    bottom: -35px;
    width: 110px;
  }
  .brush_container {
    padding: 65px 0px 80px;
  }
  .brush_dev02 {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .brush_label {
    margin-bottom: 25px;
  }
  .brush_dev03 li {
    padding: 25px 15px;
  }
  .brush_box_lg {
    grid-template-rows: auto auto 1fr;
    gap: 20px;
    padding: 30px 15px 25px;
  }
  .brush_box_lg b {
    font-size: 0.22rem;
  }
  .brush_box_lg figure img {
    width: 55%;
  }
  .career_job_list {
    grid-template-columns: 1fr;
  }
  .talent_visual_box {
    align-items: stretch;
    gap: 10px;
    padding-right: 15px;
    margin: 45px 0;
  }
  .talent_visual_box ul {
    display: grid;
    grid-template-columns: 1fr 65%;
    grid-template-areas: 
      "i01 i02"
      "i01 i03";
  }
  .talent_visual_box li:nth-child(1) { grid-area: i01; }
  .talent_visual_box li:nth-child(2) { grid-area: i02; }
  .talent_visual_box li:nth-child(3) { grid-area: i03; }
  .talent_grow_container {
    padding-right: 15px;
  }
  .talent_grow_content {
    max-width: max-content;
    padding: 50px 35px 0;
  }
  .talent_grow_content ul{
    grid-template-columns: repeat(2, 1fr);
    justify-content: flex-end;
    gap: 25px;
  }
  .talent_ladder_box ul {
    grid-template-columns: 150px 1fr 1fr 1fr;
  }
  .talent_training_tech_list {
    display: block;
  }
  .talent_training_tech_list li {
    margin-bottom: 45px;
  }
  .talent_training_tech_list li:last-of-type{
    margin-bottom: 0;
  }
  .talent_training_fill {
    padding: 15px 15px 20px;
  }
  .talent_training_type {
    padding: 15px 20px 20px;
  }
  .career_inner .talent_training_end_text {
    margin-bottom: -10px;
  }
  .talent_comment_inner {
    display: block;
    padding: 15px 25px 25px !important;
  }
  .talent_comment_inner figure {
    margin-bottom: 15px;
  }
  .open_visual_grid article strong {
    font-size: 0.35rem;
    margin-bottom: 20px;
  }
  .open_visual_work {
    gap: 25px;
    padding: 25px;
    margin-right: 0;
  }
  .open_flow_table thead th {
    font-size: 0.18rem;
    padding: 3px 15px;
  }
  .open_flow_table tbody td {
    padding: 15px;
  }
  .open_flow_table tbody td ul {
    margin-bottom: 15px;
  }
  .open_flow_table tbody th.head {
    font-size: 0.21rem;
  }
  .heading_open_md {
    font-size: 0.23rem;
    margin: 65px auto 20px;
  }
  .heading_open_sm {
    font-size: 0.2rem;
    padding: 13px 15px 15px;
    margin-bottom: 35px;
  }
  .open_bubble_inner {
    padding: 45px 20px;
  }
  .open_bubble {
    padding: 20px 15px;
    margin-bottom: 45px;
  }
  .open_bubble::before {
    width: 35px;
    bottom: -30px;
  }
  .open_bubble b {
    font-size: 0.22rem;
  }
  .open_bubble .red_notify {
    font-size: 0.14rem;
    margin: 10px 0 -40px auto;
  }
  .open_num_list li {
    grid-template-columns: 50px 1fr;
    margin-bottom: 45px;
  }
  .open_num_list b {
    font-size: 0.2rem;
  }
  .open_bus_style_grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .open_bubble.open_bubble_multi{
    margin-bottom: 85px;
  }
  .open_bubble.open_bubble_multi::after{
    display: none;
  }
  .open_bubble.open_bubble_multi::before{
    transform: translateX(-50%);
    left: 50%;
  }
  .iview_top_outer {
    display: block;
  }
  .iview_top_inner {
    margin-left: 15px;
  }
  .iview_top_accent_left{
    display: none;
  }
  .iview_top_heading_flex {
    margin-bottom: 25px;
  }
  .iview_top_messege_flex {
    gap: 15px;
    max-width: 500px;
  }
  .iview_top_messege b {
    font-size: 0.24rem;
    padding: 6px 13px 9px;
    margin-bottom: 15px;
  }
  .iview_top_content {
    margin-bottom: 15px;
  }
  .iview_top_messege {
    padding-top: 25px;
  }
  .iview_top_check_line {
    margin-top: -150px;
  }
  .iview_top .sub_top_loop {
    height: 85px;
  }
  .iview_top .sub_top_loop span {
    font-size: 0.9rem;
  }
  .iview_top_inner article {
    margin: 0 auto;
  }
  .iview_content_flex{
    margin-bottom: 55px;
  }
  .iview_content_flex img {
    width: 255px;
  }
  .iview_main_container {
    padding: 45px 0;
  }
  .iview_main_inner {
    padding: 45px 0;
  }
  .iview_advide_content{
    display: flex;
    flex-direction: column-reverse;
    padding: 0px 30px 25px;
    margin-top: 65px;
  }
  .iview_advide_content figure {
    max-width: 230px;
    margin-top: -50px;
    margin-bottom: 15px;
  }
  .iview_advide_content figure::before {
    width: 40px;
    top: 80px;
  }
  .iview_advide_content article, .iview_advide_content article p {
    font-size: 0.18rem;
  }
  .iview_advide_content article{
    width: 100%;
    padding: 0;
  }
  .recruit_inner {
    padding: 45px 25px;
    margin-bottom: 65px;
  }
  .table_recruit tr, .table_recruit th, .table_recruit td{
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
  }
  .table_recruit tr{
    border-bottom: 1px dashed var(--site_green);
    padding: 15px 0 25px;
  }
  .table_recruit tr:first-of-type{
    padding-top: 0;
  }
  .table_recruit tr:last-of-type{
    border-bottom: 0;
  }
  .table_recruit th{
    margin-bottom: 5px;
  }
  .recruit_navi_list {
    gap: 15px;
    margin-bottom: 65px;
  }
  .recruit_navi_list a {
    min-width: unset;
  }
  .leaf_inner_lg {
    padding: 45px 25px;
    margin-bottom: 65px;
  }
  .brush_text_dev02 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .brush_text_dev02 li.max{
    grid-column: unset;
  }
  .brush_text_dev02 b {
    font-size: 0.2rem;
    margin-bottom: 10px;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:767px
------------------------------------------------*/
@media screen and (max-width:767px) {
  .leaf_container {
    padding: 95px 0 65px;
  }
  .sub_top_grid img {
    height: 15px;
  }
  .nosai_insurance .rain {
    left: 4%;
    top: 17%;
    width: 13%;
  }
  .nosai_insurance .cloud {
    left: 66%;
    top: -12%;
    width: 26%;
  }
  .nosai_role_text {
    margin: 35px auto;
  }
  .nosai_role_text figure {
    width: 240px;
    margin-top: 15px;
  }
  .nosai_role_text figure::before {
    width: 25%;
    top: -56%;
    right: -17%;
  }
  .nosai_role_grid.nosai_role_grid01 article,
  .nosai_role_grid.nosai_role_grid02 article {
    padding: 30px 25px 35px;
  }
  .nosai_messege_text {
    font-size: 0.22rem;
  }
  .nosai_impact_text {
    font-size: 0.5rem;
  }
  .faq_navi_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .philo_vehicle_content p, .philo_vehicle_content p span {
    font-size: 0.18rem;
  }
  .philo_vehicle_container figure {
    width: 80%;
  }
  .philo_vehicle_container figure img {
    margin-left: -15px;
    margin-top: -75px;
  }
  .philo_messege_label {
    font-size: 0.3rem;
    line-height: 1.4;
  }
  .philo_messege_label small {
    display: block;
    line-height: 1.2;
    font-size: 0.18rem;
    margin-left: 0;
    margin-top: 5px;
  }
  .philo_mesege_head {
    grid-template-columns: 26.8% 1fr;
    gap: 15px;
  }
  .philo_vege_list {
    margin: 25px 0;
  }
  .hands_heading_box {
    margin: 45px auto;
  }
  .hands_heading_box strong {
    font-size: 0.3rem;
    margin-bottom: 15px;
  }
  .hands_heading_box strong span {
    font-size: 0.24rem;
  }
  .hands_triangle {
    gap: 20px;
    padding: 0 15px;
  }
  .hands_triangle .text {
    font-size: 0.3rem;
  }
  .hands_triangle .t {
    width: 16px;
  }
  .hands_card_list article b {
    margin: 35px 0 15px;
  }
  .hands_card_list article dl {
    gap: 10px;
  }
  .hands_card_list article address, .hands_card_list article address a {
    line-height: 1.6;
    font-size: 0.16rem;
  }
  .hands_card_list article hr {
    margin-top: 33px;
  }
  .hands_card_list.hands_card_list02 {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .hands_card_list.hands_card_list03 {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .hands_cc_box02 li figure figcaption {
    font-size: 0.16rem;
    width: 110px;
    padding: 4px 15px 6px;
  }
  .hands_cc_box03_head, .hands_cc_box03_body li {
    grid-template-columns: 20% 29% 28% 23%;
  }
  .hands_cc_box03_grid article{
    overflow: auto;
  }
  .hands_cc_box03_inner {
    min-width: max-content;
  }
  .hands_cc_box04 table thead th{
    width: auto !important;
    padding: 0 25px;
  }
  .rural_visual_list {
    grid-template-columns: 5% 1fr 5%;
    gap: 15px;
  }
  .rural_visual_content {
    grid-template-rows: 90px 1fr 120px;
    gap: 15px;
  }
  .rural_visual_list article {
    padding: 35px 25px;
  }
  .rural_visual_list article strong {
    font-size: 0.26rem;
    margin-bottom: 25px;
  }
  .rural_visual_list article p {
    font-size: 0.16rem;
  }
  .rural_cc_box p {
    line-height: 2.2;
  }
  .rural_cc_box .rural_label small {
    font-size: 0.18rem;
  }
  .rural_cc_box .rural_label strong {
    font-size: 0.21rem;
  }
  .rural_cc_box .rural_label strong span {
    font-size: 0.36rem;
  }
  .rural_graph_content b {
    font-size: 0.16rem;
    line-height: 2.2;
  }
  .brush_container .heading_white_reverse {
    margin-top: 65px;
  }
  .brush_dev03 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .brush_dev03 li {
    grid-template-rows: auto auto 1fr;
    gap: 20px;
  }
  .brush_dev03 figure img {
    width: 55%;
  }
  .brush_dev03 li.connect {
    font-size: 0.18rem;
  }
  .career_inner {
    padding: 35px 20px;
  }
  .career_inner .heading_md {
    margin-bottom: 30px;
  }
  .career_job_list {
    margin: 40px 0 25px;
  }
  .career_job_list li {
    grid-template-rows: 1fr 130px;
  }
  .career_job_list article strong {
    font-size: 0.35rem;
  }
  .career_job_list article b {
    font-size: 0.18rem;
    padding: 6px 0 4px;
  }
  .career_job_list article small {
    font-size: 0.14rem;
    font-weight: 500;
  }
  .career_model_list li {
    display: block;
    padding: 15px 15px 20px;
  }
  .career_model_list b {
    font-size: 0.18rem;
    line-height: 1.6;
    margin-bottom: 5px;
  }
  .career_role_inner {
    margin-top: 120px;
  }
  .career_role_head {
    margin-top: -120px;
  }
  .career_role_head img{
    max-width: 120px;
  }
  .career_heading_sm {
    margin: 45px 0 20px;
  }
  .talent_head_container {
    margin-bottom: 65px;
  }
  .talent_visual_label {
    line-height: 1.6;
    font-size: 0.26rem;
  }
  .talent_grow_content {
    padding: 20px 35px 0 25px;
  }
  .talent_grow_content ul{
    grid-template-columns: 1fr;
  }
  .talent_grow_content li {
    max-width: max-content;
    margin-left: auto;
  }
  .talent_grow_content li img{
    height: 180px;
  }
  .open_visual_container {
    padding: 15px;
  }
  .open_visual_grid .open_linedot {
    height: 80px;
    left: 28px;
    top: 30px;
  }
  .open_visual_grid article {
    padding: 25px 15px;
  }
  .open_visual_grid article strong {
    font-size: 0.26rem;
    margin-bottom: 15px;
  }
  .open_visual_work{
    display: block;
    padding: 18px 25px 25px;
  }
  .open_visual_work b {
    font-size: 0.21rem;
    margin-bottom: 2px;
  }
  .open_bubble_container {
    padding: 15px 0;
    margin-top: 65px;
  }
  .open_faq_list li {
    margin-bottom: 30px;
  }
  .open_faq_list .label {
    margin-bottom: 15px;
  }
  .open_faq_list .label b {
    font-size: 0.18rem;
    padding: 8px 13px;
  }
  .open_faq_list article, .open_faq_list article p {
    font-size: 0.16rem;
  }
  .open_faq_list .label, .open_faq_list article {
    grid-template-columns: 40px auto;
  }
  .open_faq_list .label::before {
    font-size: 0.32rem;
    margin-top: 3px;
  }
  .open_faq_list article::before {
    font-size: 0.22rem;
    margin-top: 6px;
    margin-left: 8px;
  }
  .open_bus_style_label {
    font-size: 0.18rem;
  }
  .open_flow_table_wrap {
    margin-bottom: 45px;
  }
  .open_flow_table tbody th.head {
    font-size: 0.2rem;
  }
  .iview_content_flex,
  .iview_content_flex.reverse {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .iview_content_flex img{
    width: 100%;
  }
  .iview_main_inner p {
    line-height: 1.8;
  }
  .iview_schedule_swiper {
    margin-top: 65px;
  }
  .iview_advide_content article, .iview_advide_content article p {
    font-size: 0.16rem;
  }
  .iview_advide_btn {
    font-size: 0.18rem;
    padding: 15px 45px 17px;
    margin: 45px auto 0;
  }
  .iview_schedule_container {
    padding: 60px 0 90px;
  }
  .iview_content_flex img {
    border-radius: 21px;
  }
  .iview_main_container {
    border-radius: 21px;
  }
  .iview_main_inner {
    border-radius: 21px;
  }
  .iview_top_heading_flex {
    flex-wrap: wrap;
    min-width: unset;
  }
  .iview_schedule_list_content li {
    grid-template-columns: 100px 1fr;
  }
  .iview_schedule_list_content li time {
    font-size: 0.18rem;
  }
  .iview_schedule_list_content li time br{
    display: block;
  }
  .iview_schedule_list_content ul::before {
    left: 77px;
  }
  .iview_schedule_list_content li time::after {
    right: 16px;
  }
  .iview_schedule_list_content li b {
    font-size: 0.18rem;
  }
  .iview_schedule_list_content figure {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
  }
  .iview_main_inner.iview_type02 .iview_label {
    margin-top: 55px;
  }
  .recruit_button_list {
    gap: 15px;
  }
  .recruit_button_list li{
    width: 100%;
  }
  .recruit_button_list a {
    background-position: 96% 50%;
    max-width: unset;
    padding: 12px 15px;
    padding-right: 36px;
  }
}

/*------------------------------------------------
 レスポンシブ　　　max-width:480px
------------------------------------------------*/
@media screen and (max-width:480px) {
  .heading_dot {
    padding-right: 30px;
  }
  .heading_dot span {
    font-size: 0.3rem;
  }
  .heading_dot small {
    padding-left: 30px;
  }
  .heading_md, .heading_md_jp {
    font-size: 0.23rem;
  }
  .sub_top_grid h1 span {
    font-size: 0.35rem;
  }
  .nosai_role_text {
    font-size: 0.2rem;
  }
  .philo_messege_container {
    padding-bottom: 35px;
  }
  .philo_mesege_contet {
    padding: 35px 15px;
  }
  .philo_vehicle_container figure img {
    margin-top: -65px;
  }
  .hands_card_list article dl {
    grid-template-columns: 1fr;
  }
  .hands_card_list article dl a{
    max-width: unset;
  }
  .hands_card_list.hands_card_list01 {
    margin-top: 40px;
  }
  .hands_card_list article address, .hands_card_list article address a {
    font-size: 0.15rem;
  }
  .rural_visual_content {
    grid-template-rows: 70px 1fr 90px;
  }
  .benefit_headline b {
    font-size: 0.24rem;
    margin-bottom: 35px;
  }
  .talent_visual_box ul {
    grid-template-columns: 1fr 60%;
    gap: 15px;
  }
  .talent_visual_label {
    font-size: 0.23rem;
  }
  .talent_visual_label span {
    font-size: 0.38rem;
  }
  .talent_visual_box li img {
    border-radius: 8px;
  }
  .open_bubble_container{
    margin-top: 45px;
  }
  .open_bubble .red_notify {
    font-size: 0.11rem;
  }
  .open_heading_other {
    font-size: 0.22rem;
    margin: 65px 0 25px;
  }
  .open_other_list {
    grid-template-columns: 1fr;
  }
  .open_other_list li{
    display: block;
    margin-bottom: 25px;
  }
  .open_other_list b {
    display: block;
    height: auto;
  }
  .open_other_list .btn01{
    margin-left: auto;
    margin-right: auto;
  }
  .open_navi_list {
    gap: 10px 20px;
  }
  .iview_top_messege b {
    font-size: 0.21rem;
    padding: 5px 13px 6px;
  }
  .iview_schedule_swiper {
    margin-top: 45px;
  }
  .iview_main_container {
    padding: 25px 0;
  }
}
