



.recruit_slider_section {
    width: 100%;
    height: calc(100vh - 76px); /* ヘッダー分差し引き */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  .recruit_slider_section::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .35;
    z-index: 10;
  }


  .slider_scroll_index{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 20;
  }


  .btn_content{
    width: 640px;
    margin: 64px auto;
    padding: 12px;
    background: #fff;
    border-radius: 100px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    box-shadow: 0 0px 24px rgba(0, 0, 0, 0.1);
  }
  .btn_content .site_util_button{
    width: 50%;
    margin-bottom: 0;
  }


  .recruit_slider_section .mvPageTit{
    color: #fff;
    letter-spacing: .2rem;
    font-weight: 600;
    margin-bottom: 64px;
  }


  .recruit_slider_section .mvHead{
    text-align: center;
    letter-spacing: .4rem;
    line-height: 36px;
    font-size: 120px;
    font-weight: 800;
    color: #fff;
    z-index: 15;
  }
  .recruit_slider_section .mvHead span.p1{
    font-size: 32px;
    padding-left: .5rem;
  }
  .recruit_slider_section .mvHead span.p2{
    font-size: 48px;
  }
  .recruit_slider_section .mvHead span.red{
    color: rgb(255 50 91);
  }
  

  .recruit_slider {
    position: relative;
    width: 100%;
    height: 100vh;
    aspect-ratio: 16 / 7;
    overflow: hidden;
  }
  
  .recruit_slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .recruit_slide.current {
    opacity: 1;
  }


  /* scroll down */
  .scroll-down_wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
  }
  
  .scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .mouse-icon {
    width: 30px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 20px;
    position: relative;
    margin-inline:auto;
    margin-bottom: 6px;
  }
  .mouse-icon::before {
    content: "";
    width: 1px;
    height: 8px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 2px;
    animation: scroll 2s infinite;
  }
  
  @keyframes scroll {
    0% {
      opacity: 1;
      transform: translate(-50%, 0);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, 20px);
    }
  }



  /* text loop anime */
  .recruit_textloop_section {
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    mix-blend-mode: overlay;
    z-index: 10;
    opacity: .4;
  }
  
  .loop_wrap_recruit {
    display: flex;
    white-space: nowrap;
    animation: loop_recruit 50s linear infinite;
  }
  
  .loop_wrap_recruit .loop_text {
    font-family: "Arial", sans-serif;
    font-weight: 600;
    font-size: 180px;
    line-height: 180px;
    color: #fff;
    font-weight: lighter;
    padding-left: 2rem;
  }
  
  /* アニメーション */
  @keyframes loop_recruit {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }



  /* SP */
  @media (max-width: 480px) {

    .recruit_slider_section{ width: auto; height: calc(90vh - 76px); margin: 12px; }

    .recruit_slider_section .mvPageTit{ color: #0b4b93; margin-bottom: 16px; }
    .recruit_slider_section .mvHead{ color: #000; font-size: 54px; line-height: 40px; letter-spacing: 0.2rem; }
    .recruit_slider_section .mvHead span.p2{ font-size: 32px; }
    .recruit_slider_section .mvHead span.p1{ font-size: 24px; padding-left: 0; }
    .recruit_slider_section .mvHead span.red{ color: rgb(255, 20, 67); }

    .btn_content{ width: 100%; gap: 6px; margin: 24px auto 32px; padding: 0; box-shadow: none; }

    .recruit_slider_section{ 
      display: flex;
      flex-direction: column-reverse;
      justify-content: start;
     }
    .recruit_slider_section::before{ display: none; }
    .slider_scroll_index{
      position: relative;
      height: auto;
      padding-top: 24px;
    }

    .recruit_slider{ height: 40vh; border-radius: 8px; }

    .scroll-down_wrap{ position: relative; height: 77px; }
    .scroll-down{ color: #1976D2; bottom: 0; }
    .mouse-icon{ border-color: #1976D2; }
    .mouse-icon::before{ background: #1976D2; }

    .recruit_textloop_section{ mix-blend-mode: initial; opacity: 1; }
    .loop_wrap_recruit .loop_text{ color: #f5f7fc; font-size: 90px; }
    
  }


  



/* 採用情報下層ページ　リンク */
  .recruit_contents_section {
    width: 100%;
    background: #f5f7fc;
    padding: 160px 24px 300px;
    position: relative;
  }
  .recruit_contents_section::after {
    content: '';
    width: 100%;
    height: 200px;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    bottom: -100px;
    left: 0;
  }
  
  .recruit_contents_inner {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
  }
  
  .recruit_contents_image {
    width: 40%;
    height: auto;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    position: -webkit-sticky;
    position: sticky;
    align-self: flex-start;
    position: sticky;
    top: 200px; /* 固定する位置 */
    align-self: flex-start;
  }
  
  .recruit_contents_image img {
    border-radius: 0 48px 0 48px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .recruit_contents_image img.rs_View{ display: none; }
  
  .recruit_contents_area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  
  .recruit_contents_block {
    margin: 0 auto;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
  }
  .recruit_contents_block.even{
    margin-bottom: 0;
  }
  
  .recruit_scroll_area {
    flex: 1;
    padding-right: 16px;
  }
  
  .recruit_scroll_area::-webkit-scrollbar {
    width: 6px;
  }
  .recruit_scroll_area::-webkit-scrollbar-thumb {
    background-color: rgba(25, 118, 210, 0.4);
    border-radius: 3px;
  }
  
  .section_title {
    font-size: 24px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 12px;
    flex-shrink: 0;
  }
  
  .recruit_lead {
    color: #000;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 36px;
    line-height: 1.4;
  }
  
  .recruit_text p {
    font-size: 16px;
    line-height: 2.6rem;
    color: #333;
    margin-bottom: 48px;
  }

  @media (min-width: 769px) {
    .recruit_text p { padding-right: 48px; }
  }


  .recruit_eng_heading {
    position: absolute;
    top: -64px;
    left: 12px;
    font-size: 64px;
    mix-blend-mode: color-dodge;
    font-weight: 800;
    color: #fff;
    z-index: 100;
    transform: rotate(90deg);
    transform-origin: left;
    transition: .3s;
  }
  .recruit_eng_heading.rs_View{ display: none; }
  
  /*.viewmore_cont{
    margin: 36px auto 0;
    text-align: right;
  }*/

  
  
  /* SP */
  @media (max-width: 768px) {

    .recruit_contents_section{ padding: 90px 24px 200px; }

    .recruit_contents_inner { flex-direction: column; }
    .recruit_contents_image { max-width: 480px; margin: 0 auto; position: relative; top: auto; flex: none; width: 100%; }

    .recruit_contents_area { gap: 24px; }
    .recruit_contents_area .site_util_button{ margin: 0 auto; max-width: 280px; }

    .recruit_eng_heading{ font-size: 48px; }
    .recruit_eng_heading.rs_View,
    .recruit_contents_image img.rs_View{ display:block; }
  
    .recruit_contents_block { margin-bottom: 25%; padding: 0; max-height: none; overflow: visible; }

    .recruit_lead{ font-size: 28px; }
  
    .recruit_scroll_area { max-height: none; overflow: visible; padding-right: 0; }

  }




/* 採用情報下層ページ イメージ画像 */
  .recruit_contents_image .msg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .recruit_contents_image .msg_img_01 {
    opacity: 1;
    z-index: 1;
  }
  
  .recruit_contents_image.active .msg_img_01 {
    opacity: 0;
  }
  
  .recruit_contents_image.active .msg_img_02 {
    opacity: 1;
    z-index: 2;
  }





/* 採用情報FAQ */
.recruit_qa_section{
  background: #fff;
}

.recruit_qa_section .qa_list{
  max-width: 1024px;
  margin: 0 auto;
  padding: 100px 12px 160px;
}

.recruit_qa_section .qa_list h2{
  color: #1976D2;
  font-size: 90px;
  font-weight: 600;
  margin-bottom: 36px;
}
.recruit_qa_section .qa_list h2 span{
  color: #000;
  font-size: 28px;
  padding-left: 1rem;
}

.recruit_qa_section .qa_list h3{
  background: #1976D2;
  padding: 24px 32px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 12px;
}
.recruit_qa_section .qa_list h3.even{
  margin-top: 48px;
}
  
  .qa_item {
    border: 1px solid #1976D2;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
  }
  
  .qa_question {
    background: #fff;
    color: #0b4b93;
    font-weight: 600;
    width: 100%;
    padding: 16px 20px 16px 76px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    text-align: left;
    position: relative;
  }
  
  .qa_question i.fa-q {
    width: 60px;
    height: 100%;
    background: #1976D2;
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    margin-right: 8px;
  }
  
  .qa_icon {
    transition: transform 0.3s ease;
  }
  .qa_item.open .qa_icon {
    transform: rotate(90deg);
  }
  
  .qa_answer {
    max-height: 0;
    overflow: hidden;
    background: #f4f8ff;
    padding: 0 20px;
    transition: max-height 0.4s ease;
  }
  
  .qa_item.open .qa_answer {
    /* max-height はJSで設定されるため、ここは不要 */
    padding: 16px 20px;
  }
  
  .qa_answer p {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 16px;
    line-height: 2rem;
    position: relative;
  }
  .qa_answer i.fa-a {
    color: #1976D2;
    position: absolute;
    top: 6px;
    left: 0;
  }
  

  .qa_answer {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    background: #f4f8ff;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  }
  
  
  .qa_item.open .qa_answer {
    opacity: 1;
    padding: 16px 20px;
    border-top: 1px solid #1976D2;
  }


  /* SP */
  @media (max-width: 480px) {

    .recruit_qa_section .qa_list h2{ font-size: 70px; }
    .recruit_qa_section .qa_list h2 span{ font-size: 22px; }

    .recruit_qa_section .qa_list h3{ font-size: 20px; padding: 18px; }
    .qa_question{ font-size: 16px; }
    
  }





  .department_haed{
    max-width: 1024px;
    color: #1976D2;
    font-size: 70px;
    font-weight: 600;
    line-height: 35px;
    margin: 0 auto;
  }
  .department_haed span {
    color: #000;
    font-size: 28px;
    padding-left: 1rem;
  }

  .recruit_department_section {
    background: #f5f7fc;
    padding: 60px 0;
    overflow: hidden;
  }
  
  .department_card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.06);
    box-sizing: border-box;
    overflow: hidden;
  }
  .department_card.swiper-slide{
    height: auto;
  }
  
  .department_card img {
    width: 100%;
    display: block;
    border-radius: 8px 8px 0 0;
  }
  
  .text_cont {
    padding: 16px;
  }
  
  .department {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    background: #1976D2;
    border-radius: 6px;
    padding: 6px;
    margin-right: 6px;
  }
  
  .slogan {
    color: #003893;
    font-weight: 600;
    font-size: 18px;
    margin: 12px 0;
  }
  
  .summary {
    font-size: 14px;
    line-height: 2;
  }
  
  /* 見切れ表現用 */
  .department_swiper {
    padding: 0 5%;
  }

  
  /* SP対応 */
  @media (max-width: 768px) {

    .department_haed{ font-size: 52px; padding: 0 12px; }
    .department_haed span{ font-size: 22px; }

    .department{ font-size: 12px; margin-bottom: 4px; }

  }
  




  .recruitSubpage_link_section {
    position: relative;
    width: 100%;
    padding: 64px 24px;
    overflow: hidden;
    z-index: 0;
  }
  
  .recruitSubpage_link_section .subpage_bg_blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/recruit/recruit_mv02.jpg) no-repeat center/cover;
    background-attachment: fixed;
    filter: blur(12px);
    z-index: -1;
    opacity: 0.6;
  }
  
  .recruitSubpage_link_section .subpage_link_grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .subpage_link_card {
    flex: 1 1 calc(50% - 12px);
    display: flex;
    gap: 24px;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-width: 0;
  }
  
  .subpage_image {
    flex: 1;
    position: relative;
  }
  .subpage_image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .subpage_text {
    flex: 1;
    padding: 24px;
  }
  .subpage_title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #1976D2;
  }
  .more_link_btn {
    display: inline-block;
    border: 2px solid #1976D2;
    color: #1976D2;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
  }
  .more_link_btn::after {
    content: '\f061'; /* Font Awesome right arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 12px;
    transition: 0.3s;
  }

  
  @media (hover: hover) {

    .more_link_btn, .more_link_btn::after{ transition: .3s; }

    .more_link_btn:hover { background: #1976D2; color: #fff; }
    .more_link_btn:hover::after { transform: translateX(4px); color: #fff; }

  }

  
  /* SP対応 */
  @media (max-width: 768px) {

    .recruitSubpage_link_section{ padding: 48px 18px; }
    .recruitSubpage_link_section .subpage_bg_blur{ background-attachment: scroll; }

    .recruitSubpage_link_section .subpage_link_grid { flex-direction: column; gap: 16px; }

    .subpage_link_card{ gap: 4px; }
    .subpage_text { padding: 16px; }
    .subpage_title { font-size: 14px; margin-bottom: 16px; }

    .more_link_btn{ padding: 8px; }

  }




  .recruit_entry_section {
    background: #338fec;
    padding: 90px 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
  }
  .recruit_entry_section::after{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/recruit/latticePattern.png);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    z-index: -1;
  }
  
  .recruit_entry_inner {
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .entry_heading {
    font-size: 32px;
    letter-spacing: .2em;
    font-weight: bold;
    color: #fff;
    line-height: 1.6;
    text-align: center;
  }
  
  .recruit_entry_btnCont {
    width: 720px;
    margin: 36px auto 0;
    padding: 12px;
    background: #fff;
    border-radius: 100px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    box-shadow: 0 0px 24px rgba(0, 0, 0, 0.1);
  }
  .recruit_entry_btnCont .site_util_button{
    margin-bottom: 0;
  }
  
  .entry_contact_text {
    font-size: 16px;
    margin-bottom: 24px;
    color: #333;
  }
  
  
  /* SP対応 */
  @media (max-width: 768px) {

    .recruit_entry_section{ padding: 60px 0; }

    .recruit_entry_inner { flex-direction: column; text-align: center; }
    .recruit_entry_btnCont{ 
      width: 90%;
      flex-direction: column;
      gap: 8px;
      border-radius: 34px;
      padding: 8px;
    }

    .entry_heading { font-size: 24px; }
  }
  
  
  





  .strength_heading_section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 640px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #f5f7fc;
  }
  
  .heading_text_block {
    width: 45%;
    padding-left: 6%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }


  .recruit_subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
  }
  
  .recruit_title {
    color: #1976D2;
    font-size: 60px;
    font-weight: 600;
  }
  
  .heading_image_block {
    width: 55%;
    height: 100%;
    z-index: 1;
  }
  .heading_image_block.strength{
    background: url(../images/recruit/32031596_m_2.jpg)no-repeat right 15%;
    background-size: cover;
  }
  .heading_image_block.future{
    background: url(../images/recruit/digital_img.jpg)no-repeat center;
    background-size: cover;
  }
  
  
  
  .heading_image_block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  
  /*.heading_gradient {
    position: absolute;
    left: 50%;
    top: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, #f5f7fc 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
  }*/
  .heading_gradient {
    background: #f5f7fc;
    border-radius: 50%;
    content: "";
    display: block;
    height: 300%;
    left: -50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
  }

  
  @media (max-width: 768px) {

    .strength_heading_section { flex-direction: column; height: auto; }

    .heading_text_block{
      background: rgba(255, 255, 255, 0.85);
      width: 100%; 
      height: 100%;
      padding: 24px; 
      position: absolute;
      top: 0; 
      left: 0;
     }

    .heading_image_block { width: 100%; height: 300px; padding: 24px; }

    .heading_gradient { display: none; }
    .recruit_title { font-size: 32px; }

  }
  







  .recruit_page_section{
    margin: 90px auto;
    position: relative;
  }
  .recruit_page_section .inner{
    max-width: 1366px;
    margin: 0 auto 64px;
  }

  .recruit_content_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
  }
  .recruit_page_section .inner .recruit_content_flex {
    margin-top: 64px;
   }
  

  .recruit_content_image {
    width: 30%;
    position: relative;
  }
  
  .recruit_content_image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 48px 0 48px 0;
  }
  .img_caption {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
  }
  .recruit_content_text {
    width: 65%;
  }

  .recruit_content_image_normal{
    width: 90%;
    max-width: 645px;
    margin: 0 auto;
    padding-top: 36px;
  }
  .recruit_content_image_normal img{
    margin: 0 auto;
    border-radius: 8px;
  }

  .recruit_content_image_3column {
    width: 90%;
    margin: 0 auto;
    padding-top: 36px;
    display: flex;
    gap: 4px;
  }
  .recruit_image_wrap {
    flex: 1;
    aspect-ratio: 4/3; /* 比率固定（任意） */
    overflow: hidden;
    border-radius: 8px;
  }
  .recruit_image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  

  .recruit_page_section h2{
    font-size: 36px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 24px;
  }
  .recruit_page_section h2 span{
    font-size: 20px;
    color: #000;
    display: block;
  }
  .recruit_page_section p{
    font-size: 16px;
    line-height: 2.4rem;
    padding-left: 1rem;
    margin-bottom: 1rem;
  }

  .recruit_page_section p.img_caption{
    padding-left: 0;
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.4rem;
    font-size: 14px;
    text-align: center;
  }


  
  /* ul */
  .recruit_page_section ul.list {
    margin: 24px auto;
    padding: 1.4rem;
    background: #f4f8ff;
    border-radius: 12px;
  }
  
  .recruit_page_section ul.list li {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
  }
  
  .recruit_page_section ul.list > li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 16px;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
  }
  .recruit_page_section ul.list > li:last-child{
    margin-bottom: 0;
  }
  
  .recruit_page_section ul.list > li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: #1976D2; /* 青色 */
    font-size: 12px;
    line-height: 1.8;
  }
  

  
  @media (max-width: 768px) {

    .recruit_page_section .inner{ padding: 0 24px; }

    .recruit_content_flex { flex-direction: column; gap: 24px; }
  
    .recruit_content_image,
    .recruit_content_text { width: 100%; }
  
    .recruit_page_section h2 { font-size: 20px; }
    .recruit_page_section h2 span{ font-size: 15px; }
  
    .recruit_page_section p { font-size: 14px; line-height: 1.8rem; padding-left: 0; }
    .recruit_page_section p.img_caption{ font-size: 12px; }

    .recruit_page_section ul.list{ padding: 1.2rem; }
    .recruit_page_section ul.list > li{ font-size: 14px; margin-bottom: 8px; }

    .recruit_content_image_3column{ flex-direction: column; }
    
  }






  .about_conduct {
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }


  .about_conduct_image img {
    width: 100%;
    max-width: 520px;
    border-radius: 8px;
  }
  /* scroll animation */
  .about_conduct_image img.zoom-target {
    opacity: 0;
    transform: scale(0.6) rotate(45deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .about_conduct_image img.zoom-target.inview {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  @media (min-width: 769px) {
    .about_conduct_image img.zoom-target.inview {
      transition-delay: 0.3s;
    }

    .about_conduct_image img {
      width: 27.083333333333332vw;
      max-width: initial;
    }

  }


  .about_conduct_text {
    flex: 1;
  }

  .about_conduct_text p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #444;
  }
  

  .about_conduct_text h3{
    font-size: 28px;
    color: #1976D2;
    padding-bottom: 24px;
  }
  
  .conduct_list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 1rem;
  }
  
  .conduct_list li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #444;
  }
  
  .conduct_en {
    width: 152px;
    display: inline-block;
    font-weight: bold;
    font-size: 24px;
    color: #0b4b93;
  }
  
  .c_head {
    font-size: 42px;
    color: #0b4b93;
  }
  
  .conduct_jp {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1rem;
    color: #1976D2;
    padding-left: 60px;
    margin-left: 18px;
    margin-right: 8px;
    position: relative;
  }
  .conduct_jp::before{
    content: '';
    background: url(../images/company/dots.svg)no-repeat;
    width: 46.5px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
  }
  
  .conduct_desc {
    padding-left: 18px;
    margin-top: 4px;
    font-size: 16px;
    text-align: right;
    color: #444;
  }


  /* SP対応 */
  @media (max-width: 768px) {

    .about_mission{ margin-bottom: 0; }
    .about_mission .about_text,
    .about_mission .about_text .bText{ font-size: 16px; }

    .about_conduct { flex-direction: column; gap: 18px; }
    .about_conduct_text { text-align: center; }
    .about_conduct_text h3{ font-size: 24px; padding-bottom: 12px; }

    .conduct_list{ margin: 0 auto; }
    .conduct_desc{ padding-left: 0; display: block; font-size: 14px; text-align: center; }

    .circle_border_b, .circle_border_p, .circle_par_p, .circle_dots_p { display: none; }

  }
  

