

/* ========================================================================================== */
/* news list */


.newslistArticle_section{
    padding: 48px 0;
}
  
  .news-container,
  .newslistArticle_section .inner{
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  
  .news-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .news-list li {
    margin: 12px auto;
    opacity: 1;
  }
  
  /* aタグ全体をブロック要素にし、クリック範囲を広げる */
  .news-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    padding: 18px;
    background: #fff;
    border: 2px solid transparent;
    border-bottom: 2px solid #eef3fe;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
  }
  .news-list li a::after{
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #1976D2;
    z-index: 10;
    transition: 0.3s;
  }
  
  @media (min-width: 769px) and (hover: hover) {
  
    .news-list li a:hover {
      border: 2px solid #1976D2;
      transform: scale(1.02);
    }
    .news-list li a:hover::after{
      right: 12px;
    }
    
  }
  
  .news-date {
    min-width: 80px;
    color: #989898;
  }
  
  .news-label {
    width: 140px;
    padding: 8px 12px;
    border-radius: 4px;
    color: #fff;
    border: 2px solid #1976d2;
    text-align: center;
    font-size: 14px;
  }
  .news-label.new {
    background: #1976d2;
  }

  .news-label.group {
    background: #fff;
    font-weight: 600;
    color: #0b4b93;
    border-color: #0b4b93;
  }
  
  
  .news-label.pachinko {
      background: #1976d2;
      font-weight: 600;
      color: #fff;
      border-color: #1976d2;
  }
  
  
  .news-label.pachislot{
      background: #7C19D2;
      font-weight: 600;
      color: #fff;
      border-color: #7C19D2;
  }
  

  .news-text {
    flex: 1;
    color: #444;
    min-width: 200px;
  }
  
  .news-viewmore{
    margin-top: 36px;
    text-align: right;
  }
  

  
  /* media query rs */
  @media (max-width: 768px) {

    .newslistArticle_section{ padding: 0; }
    
    .news-section{ border-radius: 0 0 24px 24px; padding-bottom: 36px; }
    .news-section::before{ border-radius: 0 0 24px 24px; top: -4%; }
  
    .news-section .headTitle{ padding: 0 24px; margin-bottom: 0; }
  
    .news-list{ padding: 24px 24px 0; }
    .news-list li{ margin-bottom: 8px; }
    .news-list li a::after{ right: 7px; }
    .news-list li a{ padding: 12px; padding-right: 18px; justify-content: flex-start; gap: 8px; }
    .news-label{ font-size: 12px; width: 80px; padding: 2px 4px; }
    .news-text{ font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .news-viewmore{ padding: 0 24px; margin-top: 0; }
  
  }
  


  .newslistArticle_section p.data{
    color: #989898;
    padding-bottom: 6px;
  }
  .newslistArticle_section h2.title{
    font-weight: 600;
    color: #0b4b93;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #0b4b93;
  }



/* ========================================================================================== */
/* privacy policy */



  .privacy_section .inner{
    width: 95%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 36px 0 0;
  }

.privacy_section .section_title {
  font-size: 32px;
  color: #1976D2;
  margin-bottom: 24px;
  text-align: left;
}

.privacy_section h3 {
  font-size: 20px;
  color: #0b4b93;
  font-weight: bold;
  margin-top: 36px;
  margin-bottom: 12px;
  border-bottom: 1px solid #1976d2;
  padding-bottom: 12px;
}
.privacy_section h3 .section_num {
  font-size: 28px;
  font-weight: bold;
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid #e3e3e3;
}

.privacy_section h4 {
  font-size: 16px;
  color: #1976D2;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 8px;
}

.privacy_section p {
  font-size: 16px;
  color: #444;
  line-height: 2;
  margin-bottom: 16px;
}


.privacy_section ol {
  padding-left: 1em;
  margin-bottom: 24px;
  counter-reset: item;
}

.privacy_section ol > li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 1.5em;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

.privacy_section ol > li::before {
  content: counter(item, decimal);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  color: #1976D2; /* 青色 */
  font-size: 20px;
  font-weight: bold;
}

/* プライバシーポリシー ul 青い● */
.privacy_section ul {
  margin-top: 12px;
  margin-bottom: 16px;
}

.privacy_section ul li {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 8px;
}

.privacy_section ul > li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

.privacy_section ul > li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0;
  color: #1976D2; /* 青色 */
  font-size: 12px;
  line-height: 1.8;
}




.address_section .section_title {
  font-size: 28px;
  color: #1976D2;
  margin-bottom: 24px;
  border-bottom: 2px solid #1976D2;
  padding-bottom: 8px;
}

.address_list {
  max-width: 1080px;
  margin: 36px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.address_card {
  flex: 0 1 calc(50% - 8px); /* 2列表示 */
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  background: #f9f9f9;
}

.address_card p {
  margin: 4px 0;
  font-size: 16px;
  color: #333;
}

.address_card .address_company {
  font-weight: bold;
  font-size: 18px;
  color: #1976D2;
}

.address_card .address_president {
  font-weight: bold;
}

.address_card .address_address {
  font-size: 16px;
}

.p_caption{
  margin: 0 auto;
}


@media (max-width: 768px) {

  .address_list{ flex-direction: column; }
  .address_card{ padding: 12px; }

}



/* ========================================================================================== */
/* sdgs */



/* span */
span.R{ color: #00C7B5; font-weight: 800; }
.attempt_list span.mini{ font-size: 80%; }


.circle_border_b{ top: 4vw; }
.circle_border_p{ top: 14vw; }
.circle_dots_p{ top: 2vw; }


.sdgs_section_01{
    margin: 0 auto;
    padding: 36px 0 64px;
}


img.logo_70th{
    display: block;
    margin: 0 auto;
}
img.sdgs_wheel{
    display: block;
    margin: 64px auto 32px;
}


.sdgs_section_01 h2{
    color: #003E85;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 24px auto;
}

.sdgs_section_01 p{
    line-height: 2rem;
    text-align: center;
    margin-top: 0;
}


.sdgs_color_txt{
    display: inline-flex;
    font-weight: 800;
    letter-spacing: .1;
}
.sdgs_color_txt span:first-child{ color: #EA3D61; }
.sdgs_color_txt span:nth-child(2){ color: #F8BD00; }
.sdgs_color_txt span:nth-child(3){ color: #2C94D6; }
.sdgs_color_txt span:nth-child(4){ color: #00C7B5; }



.sdgs_detail_cont{
    width: 85%;
    display: flex;
    justify-content: baseline;
    margin: 0 auto;
}
.sdgs_detail_cont dt{
    width: 180px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    border-right: 4px solid #003E85;
}
.sdgs_detail_cont dd{
    flex: 1;
}

.sdgs_detail_cont .sdgs_color_txt{
    font-size: 28px;
}



/* ========================================================================================== */



.sdgs_section_02{
    box-sizing: border-box;
    width: 100%;
    background: #f5f7fc;
    border-radius: 0 0 24px 24px;
    padding: 60px 0 120px 0;
    position: relative;
}
.sdgs_section_02::before {
    content: '';
    width: 100%;
    height: 320px;
    border-radius: 100%;
    background: #f5f7fc;
    position: absolute;
    top: -160px;
    left: 0;
    z-index: -1;
}

.sdgs_section_02 .sdgs_detail_cont{
    margin-top: 48px;
    max-width: 1180px;
    gap: 24px;
}

.sdgs_detail_cont dd{
    flex: 1;
    line-height: 2rem;
    color: #444;
}




.sdgs_section_03{
    max-width: 1366px;
    margin: 120px auto 0;
    padding: 36px 0 0;
}

.sdgs_section_03 h2{
    font-size: 24px;
    font-weight: 600;
    color: #003E85;
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    position: relative;
}
.sdgs_section_03 h2::after{
    content: '';
    height: 4px;
    width: 50%;
    max-width: 90px;
    border-radius: 2px;
    background: #003E85;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}



.attempt_cont{
    width: 100%;
    display: flex;
    gap: 36px;
    align-items: center;
    margin-bottom: 24px;
}
.attempt_cont.even{ flex-direction: row-reverse; }

.attempt_imgCont{ position: relative; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1); }
.attempt_imgCont img{ position: relative; z-index: 5; }
/*.attempt_imgCont::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #003E85;
    border-radius: 12px;
    position: absolute;
    bottom: -4px;
    right: -8px;
    z-index: 1;
}*/

.attempt_textCont{ width: 50%; padding: 24px; padding-left: 42px; flex: 1; }
.attempt_textCont img.sdgs_attempt{ display: block; margin: 24px auto 0; }



dl.attempt_head{
    display: flex;
    font-weight: 600;
    margin-bottom: 24px;
}

dl.attempt_head dt{
    font-size: 64px;
    line-height: 64px;
    padding-right: 36px;
    border-right: 4px solid #EA3D61;
}

dl.attempt_head dd{
    font-size: 48px;
    padding-left: 36px;
}
dl.attempt_head dd span.mini{
    display: block;
    font-size: 30%;
    line-height: 0;
}



.attempt_list{
    counter-reset: number;
    list-style-type: none !important;
    padding: 0;
    margin: 24px auto 36px;
    box-sizing: border-box;
}

.attempt_list li{
    position: relative;
    padding-left: 30px;
    line-height: 1.5em;
    padding: 0 6px 0 30px;
    margin-bottom: .2em;
}
.attempt_list li:before {
    position: absolute;
    content: '';
    display: inline-block;
    background: #FF2D83;
    color: white;
    font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 15px;
    border-radius: 50%;
    top: 12px;
    left: 8px;
    width: 10px;
    height: 10px;
    line-height: 25px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}



.environment dl.attempt_head{ color: #EA3D61; }

.employee dl.attempt_head{ color: #F8BD00; }
.employee dl.attempt_head dt{ border-right: 4px solid #F8BD00; }
.employee .attempt_list li:before{ background: #F8BD00; }

.organization dl.attempt_head{ color: #2C94D6; }
.organization dl.attempt_head dt{ border-right: 4px solid #2C94D6; }
.organization .attempt_list li:before{ background: #2C94D6; }



/* 大一商会の「4R」 */
.R_cont{
    padding: 18px;
    border: 2px solid #00C7B5;
    border-radius: 12px;
}

.R_cont h4{
    margin-bottom: 12px;
    font-size: 20px;
    padding-left: 18px;
    border-left: 4px solid #00C7B5;
}

.R_list{
    counter-reset: number;
    list-style-type: none !important;
    padding: 0;
    margin: 6px 0 0;
    box-sizing: border-box;
}

.R_list li{
    position: relative;
    padding-left: 30px;
    line-height: 1.5em;
    padding: 0 6px 0 30px;
    margin-bottom: 6px;
}
.R_list li::first-letter{
    font-weight: 800;
    color: #00C7B5;
}

.R_list li:before {
    position: absolute;
    content: '';
    display: inline-block;
    background: #00C7B5;
    color: white;
    font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 15px;
    border-radius: 50%;
    top: 50%;
    left: 8px;
    width: 10px;
    height: 10px;
    line-height: 25px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}



/* コンプライアンス宣言 */
.compliance_cont{
    margin-top: 24px;
    padding: 18px;
    border: 2px solid #2C94D6;
    border-radius: 12px;
}

.compliance_cont h4{
    font-size: 20px;
    margin: 0;
    padding-left: 12px;
    border-left: 4px solid #2C94D6;
}

.compliance_cont p{ margin: 6px 0 0; }



/* ====================================================================================================================== */


@media screen and (min-width: 769px){

  .attempt_cont{ padding: 0 24px; }

}



@media screen and (max-width: 768px){

    .circle_border_b,
    .circle_border_p,
    .circle_dots_p{ display: none; }


    .br-pc{ display: none; }

    .inner{ width: 90%; }

    .sdgs_section_01,
    .sdgs_section_02,
    .sdgs_section_03{ margin-top: 60px; padding: 24px; }

    .sdgs_section_02{ padding-bottom: 60px; margin-top: 0; }
    .sdgs_section_02::before { height: 100px; top: -50px; }

    .sdgs_section_03{ padding-bottom: 0; }

    .sdgs_section_01 h2, .sdgs_section_03 h2{ font-size: 20px; margin-bottom: 48px; }
    .sdgs_section_03 h2::after{ width: 20%; }

    .sdgs_section_02 .sdgs_detail_cont{ width: 100%; flex-direction: column; gap: 12px; }
    .sdgs_detail_cont dt{ width: auto; padding-left: 0; margin-bottom: 6px; border-right: 0; }
    .sdgs_detail_cont dt h3{ margin: 0; }
    .sdgs_detail_cont dd{ margin-left: 0; }

    dl.attempt_head{ margin-bottom: 6px; }
    dl.attempt_head dt{ font-size: 42px; line-height: 42px; padding-right: 24px; }
    dl.attempt_head dd{ font-size: 32px; }

    .attempt_cont{ margin-bottom: 80px; }
    .attempt_cont:last-child{ margin-bottom: 0; }
    .attempt_cont, .attempt_cont.even{ flex-direction: column-reverse; }
    .attempt_textCont{ width: 100%; padding: 0; margin-bottom: 24px; }
    .attempt_textCont img.sdgs_attempt{ margin-top: 12px; }
    .attempt_cont h3{ margin-top: 18px; font-size: 16px; line-height: 2rem; }

    .attempt_list li{ font-size: 14px; }

    .attempt_cont.fade_rl.inview{ opacity: 1; transform: translateX(0); }

    .R_cont{ margin-top: 12px; }
    .compliance_cont{ margin-top: 12px; }

}
