@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
            scroll-behavior: smooth;
        }

body {
    font-family: 'Noto Sans JP';
    line-height: 33px;
    color: #333;
    background-color: #fff;
	font-size: 16px;
}

.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #0060B5;
    /*border-radius: 50%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
	text-decoration: none;
}

.pagetop__arrow {
	color: #0060B5;
	font-size: 1.5em;
}


.main-header {
    background-color: #fff;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 90px;
}

.main-header-border {
	border-bottom: 1px solid #B9B9B9;
	padding-top: 15px;
}

.main-footer {
	background-color: #0060B5;
	color: #fff;
	font-size: 12px;
	text-align: center;
	padding: 30px 0;
}



.header-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.current {
    color: #0060B5;
	border-bottom: 1px #0060B5 solid;
	padding-bottom: 5px;
}

/* ハンバーガーアイコンをPCでは非表示に */
.main-nav .menu-toggle {
  display: none;
}

/* --- スマホ版（768px以下） --- */
@media (max-width: 768px) {
	.main-header {
		padding: 0;
		height: 60px;
	}
	
	.logo {
		transform: scale(0.7);
  transform-origin: left;
	}
	
	.header-content {
		    padding: 0 1rem;
	}
	
	
  /* ハンバーガーアイコンを表示 */
  .main-nav .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
  }
  
  .hamburger-icon,
  .hamburger-icon::before,
  .hamburger-icon::after {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger-icon::before {
    content: '';
    transform: translateY(-8px);
  }
  
  .hamburger-icon::after {
    content: '';
    transform: translateY(5px);
  }

  /* ナビゲーションメニューをスマホでは縦並びにし、初期状態は非表示 */
  .main-nav .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 30%;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%); /* 画面右外に隠す */
    transition: transform 0.3s ease-in-out;
    z-index: 99;
  }
  
  /* メニューが開いた時のスタイル */
  .main-nav .nav-list.is-open {
    transform: translateX(0); /* 画面内に表示 */
  }
}




.main-content {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.main-image-container {
  position: relative;
  height: 531px;
  background-image: url(images/main-image.png);
      background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: calc(50% - 50vw);
    width: calc(50vw + 720px);
    border-radius: 0 40px 40px 0;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #BAD1E9; /* 乗算したい色 */
  mix-blend-mode: multiply; /* 乗算モードを適用 */
  opacity: 0.7; 
    border-radius: 0 40px 40px 0;
}

.hero-content {
  position: absolute;
  top: 67%;
  left: 41.5%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 10;
  white-space: nowrap;
}

.hero-content h1 {
  font-size: 7em;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: Arial, Helvetica, 'sans-serif';
  line-height: 1.2;
}

.hero-content p {
  font-size: 2em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  /* スマホ表示では画像幅を調整 */
  .main-image-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
	
.main-image-container {
  position: relative;
  height: 300px;
  background-image: url(images/main-image.png);
	}
	
.hero-content {
  top: 50%;
  left: 20%;
}

.hero-content h1 {
  font-size: 2em;
}

.hero-content p {
  font-size: 0.8em;
        line-height: 1.5;
        margin-top: 1em;
}
	
}


.page-header {
    background-color: #f7fafc;
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #4299e1;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #718096;
}

.content-container {
    padding: 3rem 0rem 0px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pillars-section {
    margin: 4rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.icon-circle.environment {
    background-color: #c6f6d5;
    color: #22543d;
}

.icon-circle.social {
    background-color: #bee3f8;
    color: #2c5282;
}

.icon-circle.governance {
    background-color: #e9d8fd;
    color: #553c9a;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.pillar-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pillar-link {
    display: inline-block;
    background-color: #4299e1;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.pillar-link:hover {
    background-color: #3182ce;
}

/* コミットメントセクション */
.commitment-section {
    margin: 4rem 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-item {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #4299e1;
}

.commitment-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.commitment-text {
    color: #4a5568;
    line-height: 1.6;
}

#initiatives {
	padding: 110px 20px;
}

.initiatives-section {
    margin: 4rem 0;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.initiative-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-3px);
}

.initiative-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.initiative-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.initiative-description {
    color: #4a5568;
    line-height: 1.6;
}


.goals-section {
    margin: 4rem 0;
}

.goals-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.goal-item {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #48bb78;
}

.goal-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.goal-description {
    color: #4a5568;
    font-size: 1.1rem;
}

.areas-section {
    margin: 4rem 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.area-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.area-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.area-list {
    list-style: none;
}

.area-list li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.area-list li:last-child {
    border-bottom: none;
}

.activities-section {
    margin: 4rem 0;
}

.activities-timeline {
    margin-top: 3rem;
}

.activity-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.activity-year {
    background-color: #4299e1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-right: 2rem;
    min-width: 80px;
    text-align: center;
}

.activity-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.activity-description {
    color: #4a5568;
}

.governance-structure {
    margin: 4rem 0;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.structure-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.structure-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.structure-description {
    color: #4a5568;
    line-height: 1.6;
}

.compliance-section {
    margin: 4rem 0;
}

.compliance-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-item {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-top: 4px solid #ed8936;
}

.compliance-title {
    font-size: 1.2rem
}

/* ナビゲーション全体のコンテナ */
.menu-container {
  max-width: 1225px;
  margin: 0 auto;
  padding: 25px;
  margin-top: -64px;
  position: relative;
}

/* ナビゲーションメニュー */
.nav-menu {
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 96, 181, 0.3);
}

/* リストのコンテナ（横並びと折り返しを制御） */
.nav-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* リスト項目 */
.nav-item {
  flex-grow: 1;
  text-align: center;
  position: relative;
  padding: 5px 10px;
  line-height: 1.2;
}

/* リンク間の区切り線 */
.nav-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background-color: #0060B5;
}

.nav-item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  padding: 15px 5px;
  white-space: nowrap;
  font-size: 16px;
  height: 100%;
}

.nav-item a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: #0060B5;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin-right: 8px;
}

.nav-item a:hover {
  background-color: #f0f0f0;
}

/* レスポンシブ対応: 768px未満の画面幅 */
@media (max-width: 768px) {
  .menu-container {
    padding: 10px;
    margin-top: -30px;
  }

  .nav-menu {
    padding: 0;
  }

  /* リストのFlexbox設定を修正 */
  .nav-list {
    flex-wrap: wrap; /* 👈 ここで折り返しを有効化 */
    justify-content: flex-start; /* 👈 左寄せにする */
    padding: 0px; /* 内側の余白 */
  }

  /* 各リスト項目の設定を修正 */
  .nav-item {
    flex-basis: 100%; /* 👈 項目が親要素の50%の幅を占めるように設定 */
    flex-grow: 0; /* 👈 余ったスペースを均等に伸ばさない */
    flex-shrink: 0; /* 👈 縮まない */
    padding: 5px;
    background-color: #fff;
    border: 1px #f3f3f3 solid;
    height: 55px;
  }

  /* リンク間の区切り線は不要 */
  .nav-item:not(:last-child)::after {
    display: none;
  }

  /* リンク間の区切り線（2段組用） */
  .nav-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
  }

  /* リンクテキストの調整 */
  .nav-item a {
    padding: 10px 15px;
    font-size: 14px;
    white-space: normal; /* 折り返しを許可 */
  }
	
	.nav-item a br {
		display: none;
	}
	
.nav-item a::before {
    display: none;
}	
}



.two_column ul {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 10px; 
  list-style: none;
  padding: 0;
  margin: 0;
}

.two_column li {
  padding: 10px; 
	
}


/*トップメッセージ*/
.top-message {
  max-width: 1440px; 
  margin: 40px auto;
  padding: 0 20px;
}

.message-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1440px; /* 必要に応じて調整 */
  margin: 40px 20px;
  padding: 0 20px;
}

.main-title {
  color: #0060B5;
  font-size: 2.6em; /* フォントサイズ */
  font-weight: bold;
  margin: 0;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 5px;
  font-family: 'Helvetica'
}

/* 青い下線と左の棒線を作成 */
.main-title::before {
  content: '';
  position: absolute;
  left: -200px; 
  bottom: 20px; 
  width: 180px;
  height: 1px;
  background-color: #0060B5;
}

.sub-title {
  font-size: 24px;
  color: #333333;
  font-weight: 500;
}

.message-content {
  display: flex;
  flex-direction: column;
  align-items: center;
	    padding: 0 20px;
}

.photo-area {
  margin-bottom: 20px;
  width: 70%;
}

.photo-area img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0 20px 20px 0;
}

.text-area {
  text-align: left;
}

.text-area p {
	font-size: 16px;
	line-height: 33px;
	color: #333333;
	margin-bottom: 0.5em;
}

.signature {
  text-align: right;
  margin-top: 20px;
  font-weight: bold;
}

/* レスポンシブ対応: 768px未満の画面幅 */
@media (max-width: 768px) {
	
	.content-container {
		padding: 0em 0;
	}
	
.main-title {
  color: #0060B5;
  font-size: 2em; /* フォントサイズ */
	}
	
.sub-title {
  font-size: 1em;
	}
	
.photo-area {
    width: 100%;
}
	
.photo-area img {
  max-width: 100%;
  border-radius: 0 0px 0px 0;
}
	
.text-area p {
    font-size: 14px;
    line-height: 28px;
	}
	

}


@media (min-width: 768px) {
	
		
  .message-content {
    flex-direction: row; 
    align-items: flex-start;
    gap: 80px;
  }

  .photo-container {
    width: 35%; 
    flex-shrink: 0;
    margin-bottom: 0;
  }
  
  .text-container {
    width: 65%; 
  }
}

#sustainability-policy {
  position: relative;
  width: 100%;
  height: 637px; 
  background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('images/sustainability-policy.png');
  background-size: cover; 
  background-position: center; 
  display: flex; 
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin: 110px calc(50% - 50vw);
  margin-bottom: 0px!important;
}

.sustainability-content {
  max-width: 960px;
    height: 405px;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 50px;
    text-align: center;
}

.section-description {
	font-size: 18px;
}
.section-description-right {
	font-size: 16px;
	text-align: right;
}

.sustainability-content h3 {
  color: #0060B5;
  font-size: 24px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.sustainability-content h3::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: #0060B5;
}

.sustainability-content p {
	font-size:20px;
	line-height: 49px;
	font-weight: bold;
	color: #333333;
	margin-top: 50px;
}

/* レスポンシブ対応: 768px未満の画面幅 */
@media (max-width: 768px) {

#sustainability-policy {
  height: 470px; 
  margin: 60px calc(50% - 50vw);
}

.sustainability-content {
    padding: 52px 18px;
	width: 85%;
	}

.sustainability-content h3 {
	font-size: 22px;
	}
	
.sustainability-content p {
    font-size: 15px;
    line-height: 30px;
    font-weight: bold;
    color: #333333;
    margin-top: 30px;
}
	
.section-description-right {
	font-size: 14px;
	text-align: right;
}
	
	
}



.initiatives-section {
  max-width: 1200px; 
  margin: 40px auto;
  box-shadow: 0px 0px 20px 1px rgba(217, 217, 217, 1);
  background-color: #fff;
}

.initiatives-content-wrapper {
  display: flex;
  flex-direction: column; /* スマートフォン表示では縦並び */
}


.initiatives-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.initiatives-text-wrapper {
  padding: 20px;
}

.initiatives-category {
  font-size: 32px;
  font-weight: normal;
}

.initiatives-title {
  font-size: 16px;
  font-weight: normal;
  color: #0060B5;
  margin-top: 5px;
}

.initiatives-link-list {
  display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 30px 70px 0 0px;
    margin: 0;
    gap: 15px 80px;
}

.initiatives-link-list a {
  display: flex; /* 矢印とテキストを横並びにするためFlexboxを適用 */
  align-items: center; /* 垂直方向の中央に揃えます */
  text-decoration: none;
  color: #333;
}

.initiatives-link-list a::after {
    content: '';
    margin-left: 5px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #0060B5;
}

@media (max-width: 768px) {

#initiatives {
    padding: 50px 22px;
}
	
.initiatives-category {
    font-size: 24px;
	}
	
.initiatives-link-list {
    padding: 30px 0;
	font-size: 14px;
}
	
}


@media (min-width: 768px) {
.initiatives-content-wrapper {
  flex-direction: row; /* PC表示では横並び */
}

  .initiatives-image-wrapper {
    width: 37%; 
  }

  .initiatives-text-wrapper {
    width: 63%;
	padding: 40px;
  }
  
 
  .initiatives-section.reverse .initiatives-content-wrapper {
    flex-direction: row-reverse;
  }
}


#promotion-system {
  background-color: #EBF5FF;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 110px 20px;
}

.promotion-system-box {
	max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.promotion-system-box p {
	font-size: 18px;
	line-height: 33px;
}

.promotion-system-box figure img {
	padding: 50px;
	width: 100%;
}


.role-container {
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid #0060B5;
  padding: 30px;
  background-color: #fff;
}

.role-container h3 {
  color: #0060B5;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: normal;
}

.dotted-line {
  border: none;
  border-top: 1px dashed #0060B5;
  margin: 20px 0;
  font-size: 24px;
}

.role-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  column-count: 1;
}

.role-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  line-height: 1.5;
  break-inside: avoid-column;
  counter-increment: item;
  width: 100%;
}

.role-list li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  color: #0060B5;
}

@media (max-width: 768px) {

#promotion-system {
    margin-top: -30px;
    padding: 55px 20px;
}
	
.promotion-system-box {
    margin: 20px auto 0;
	}
	
.promotion-system-box p {
    font-size: 14px;
	}

.promotion-system-box figure img {
	padding: 30px 0;
	}
	
.role-container {
    padding: 20px;
	}
	
.role-container h3 {
    font-size: 20px;
	}
	
.role-list {
	font-size: 14px;
	}
	
}

@media (min-width: 768px) {
  .role-list {
    height: auto;
    gap: 0 20px;
    column-count: 2;
	margin-bottom: 20px;
  }

  .role-list li {
    width: 100%;
  }
}



#evaluation {
	padding: 110px 20px;
}


.banner-list-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

.banner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  list-style: none;
  padding: 0;
  margin: 0 -10px; 
}

.banner-item {
  position: relative;
  width: calc(33.333% - 10px);
  margin: 45px 0 0 0;
}

.banner-category {
  position: absolute;
  top: -35px;
  left: 10px;
  padding: 4px 21px;
  font-size: 18px;
  color: white;
  font-family: 'Raleway';
  border-radius: 100vw;
}

.banner-item-box {
  margin: 10px;
  overflow: hidden;
  text-align: center;
}



.banner-category.environment {
  background-color: #5cb85c;
}

.banner-category.social {
  background-color: #337ab7;
}

.banner-link {
  display: block;
  text-decoration: none;
  color: #333;
}

.banner-image-wrapper {
  padding: 20px;
  border: 1px solid #B9B9B9;
}

.banner-image-wrapper img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

.banner-text {
  padding: 10px;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow {
  margin: 8px 5px 0px 5px;
}

@media (max-width: 767px) {

#evaluation {
    padding: 50px 20px;
}	
	
.banner-item {
    width: calc(50% - 20px); 
    margin-bottom: 20px;
  }
	
.banner-list {
  display: flex;
}

.banner-item {
  width: 100%;
  margin: 45px 0 0 0;
}

.banner-item:first-child {
		margin: 0;
	}
	
.banner-image-wrapper img {
    height: 151px;
}
	
	
}

/* マテリアリティ */
#materiality {
	background-color: #EBF5FF;
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        padding: 110px 20px;
	
}
	
#materiality::before {
  content:'';
  display: block;
  padding-top: 120px;
  margin-top: -120px;
}


.materiality_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
	


.materiality-header {
  display: flex;
  align-items: flex-end; 
  justify-content: space-between;
  margin-bottom: 20px;
}

.materiality-contents {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}

	
	
.header-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}


.header-sdgs-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center; /* 横方向に中央寄せします */
  align-items: center; /* 縦方向に中央寄せします */
  margin-bottom: 70px;
}

.header-sdgs-icons img {
  height: 113px;
  margin: 0 10px; /* 画像間の余白 */
	}

.section-description {
  margin-bottom: 40px;
}

.contribution-section {
		
	}	
	
	.contribution-section h3 {
		
	}
	

	
.contribution-item {
  padding: 30px;
  margin-bottom: 30px;
  background-color: #fff;
}

.contribution-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

.contribution-header .icon {
  font-size: 2em;
  margin-right: 10px;
}

.contribution-title {
  font-size: 24px;
  color: #0060B5;
}

.contribution-item {
  gap: 20px;
}
	
.contribution-item-header {
		display: flex;
	   justify-content: space-between;
	margin-bottom: 10px;
	}

.contribution-item-header h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0060B5;
}

.sub-heading {
  font-size: 14px;
  font-weight: bold;
  border-bottom:1px solid #0060B5;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.item-sdgs-icons {
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.item-sdgs-icons img {
  height: 57px; 
}

.one-column-list {
  list-style:none;
  padding: 0 3px;
}

.one-column-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
}

.one-column-list li::before {
  content: '・';
  position: absolute;
  left: -3px;
}


.two-column-list {
  gap: 20px;
  list-style: none;
  padding: 0 3px;
}

.two-column-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
}

.two-column-list li::before {
  content: '・';
  position: absolute;
  left: -3px;
}

.two-column-list li ul {
	margin-top: 5px;
}

.two-column-list li ul li {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight:normal;
  list-style-type: none;
  padding-left: inherit;
}
.two-column-list li ul li::before {
  content: '';
  position: absolute;
  left: -3px;
}

@media (max-width: 768px) {
	#materiality {
		padding-bottom: 50px;
	}
	.materiality_box {
		padding: 0;
	}

.materiality-contents {
	padding: 0 10px;
	margin: 0px auto;
	}
	
.section-description {
    font-size: 14px;
    padding: 0 10px;
}
	
.header-sdgs-icons img {
    height: 70px;
    margin: 0;
}
	
.contribution-item {
	padding: 17px;
	}
	
	.contribution-title {
    font-size: 20px;
    color: #0060B5;
}
	
	.contribution-item-header {
		display: block;
		margin-bottom: 20px;
	}
	
.contribution-item-header h4 {
	font-size: 15px;
        line-height: 28px;
        margin-bottom: 20px;
	}
	
	.contribution-item-header h4 br {
		display: none;
	}
	.sub-heading {
		font-size: 12px;
	}
	
.one-column-list li {
    font-size: 14px;
	line-height: 22px;
	}
.two-column-list li {
    font-size: 14px;
	line-height: 22px;
	}
.two-column-list li ul li {
    font-size: 13px;
		line-height: 22px;

	}
	
.two-column-list li ul li.sp_none {
	display: none;
	}
	
.item-sdgs-icons img {
    width: 18.7%;
    height: auto;
}	

}


@media (min-width: 768px) {
  .materiality-header {
    flex-direction: row;
    align-items: flex-end;
  }
  
.two-column-list {
  column-count: 2;
  }
}


/*SOCIAL*/

.main-contents-title {
	padding: 48px;
	display: flex;
	align-items: center;
	align-content: center;
}

.main-contents-title h1 {
	font-size: 64px;
	font-family: 'Helvetica';
	margin-right: 48px;
}

.main-contents-title h1.social {
	color: #0060B5;
}


.main-contents-title p {
	font-size: 20px;
	line-height: 36px;
}

.main-image-social {
  position: relative;
  height: 531px;
  background-image: url("images/main-social.png");
      background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: calc(50% - 50vw);
    width: calc(50vw + 720px);
    border-radius: 0 40px 40px 0;
	    margin-top: 15px;
}


@media (max-width: 767px) {
	
.main-contents-title {
	padding: 20px;
	display: block;
	}
	
.main-contents-title h1 {
	font-size: 32px;
	margin-bottom: 10px;
}

.main-contents-title p {
	font-size: 14px;
	line-height: 25px;
}
	
.main-contents-title p br {
		display: none;
	}	


	
.main-image-social {
  position: relative;
  height: 300px;
  background-image: url(images/main-social.png);
	}

}

.accordion-container {
  max-width: 960px;
  margin: 40px auto;
  border-top: 1px solid #0060B5;
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #0060B5;
  list-style: none; /* デフォルトの矢印アイコンを非表示にする */
  padding: 0;
  margin: 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  cursor: pointer;
  -webkit-user-select: none; /* テキストの選択を無効化 */
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}

.accordion-title {
  font-size: 24px;
  font-weight: normal;
  margin: 0;
  color: #333;
  width: calc(100% - 45px);
}

.accordion-icon {
  flex-shrink: 0;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0060B5;
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.accordion-content {
  overflow: hidden;
  height: 0;
  padding: 0 20px;
  transition: height 0.4s ease;
}

/* 項目が開いた時のスタイル */

.accordion-item[open] .accordion-content {
  height: auto; /* 開いた時にコンテンツの高さに合わせて広がる */
  padding-bottom: 20px;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(180deg);
	background-color: #fff;
    border: #0060B5 solid 1px;
}

.accordion-item[open] .accordion-icon::before {
  top: 45%;
  left: 50%;
  border-right: 2px solid #0060B5;
  border-bottom: 2px solid #0060B5;
}

/* ボタンコンテナは初期状態では非表示 */
.close-button-container {
  display: none;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

/* 閉じるボタン*/

.close-button {
  flex-shrink: 0;
  position: relative;
  height: 20px;
  border: none;
  transition: transform 0.3s ease;
  background-color: #fff;
}

.close-button .close-icon {
  flex-shrink: 0;
  position: relative;
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.close-button .close-icon::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-right: 2px solid #0060B5;
  border-bottom: 2px solid #0060B5;
  transform: translate(-50%, -50%) rotate(-135deg);
}


/* 閉じるボタン 
.close-button {
  flex-shrink: 0;
  position: relative;
  height:45px;
	width:45px;
  border: none;
  transition: transform 0.3s ease;
  background-color: #fff;
	border: 1px solid #0060B5;
border-radius:50%;
}

.close-button .close-icon {
  flex-shrink: 0;
  position: relative;
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.close-button .close-icon::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  width: 15px;
  height: 15px;
  border-right: 2px solid #0060B5;
  border-bottom: 2px solid #0060B5;
  transform: translate(-50%, -50%) rotate(-135deg);
}
*/

/* --- 開いた時のスタイル --- */
.accordion-item[open] .close-button-container {
  display: flex; /* コンテンツが開いた時にボタンを表示 */
}

/* その他のスタイル */
.accordion-content {
  overflow: hidden;
  height: 0;
  padding: 0 20px;
  transition: height 0.4s ease;
}


/* その他のスタイル */
.content-inner {
  padding: 20px 0;
}

.content-inner h4 {
  font-size: 1.5em;
  color: #0060B5;
  border-left: 4px solid #0060B5;
  padding-left: 10px;
  margin: 30px 0;
}

.content-inner h4.list-title {
  font-size: 1.2em!important;
  font-weight: 500;
  margin: 0 0 10px 0;
  border:none!important;
  color: #333!important;
  padding-left: 28px;
}


.content-inner h5 {
  font-size: 20px;
  margin: 20px 0;
  font-weight: 600;
  border-bottom: 1px solid #333333;
  padding: 5px 0;
  
}

.content-inner h5 span {
  color: #0060B5;
  margin-right: 10px;
}

.content-inner p {
  line-height: 33px;
  font-size: 1em;
  color: #333;
}

.content-inner ul {
  list-style-type: none;
  padding: 0;
  margin: 10px 0;
}

.content-inner ul li {
  position: relative;
  padding-left: 15px;
  line-height: 33px;
  font-size: 1em;
}

.content-inner ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #0060B5;
  font-size: 0.8em;
  top: 0;
}

.numbered-list-container {
  max-width: 960px;
  margin: 40px auto;
}

.circle-numbered-list {
  list-style: none; /* デフォルトの数字を非表示にする */
  padding: 0;
  margin: 0;
  counter-reset: my-list-counter; /* カウンターを初期化 */
}

.circle-numbered-list li {
  position: relative;
  margin-bottom: 25px;
}

.circle-numbered-list li::before {
  content: counter(my-list-counter); /* カウンターの値を表示 */
  counter-increment: my-list-counter; /* カウンターを1増やす */
  position: absolute;
  top: 5px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px; /* 丸の幅 */
  height: 20px; /* 丸の高さ */
  border: 1px solid #000;
  border-radius: 50%; /* 完全な丸にする */
  font-size: 14px;
  font-weight: bold;
}


.circle-numbered-list p {
  line-height: 1.6;
  color: #555;
}


@media (max-width: 768px) {

.accordion-title {
    font-size: 20px;
	}
	
.accordion-content {
    padding: 0px;	
	}
	
.content-inner h4 {
    font-size: 18px!important;
	}
	
.content-inner h4.list-title {
    font-size: 16px!important;
    margin: 20px 0 10px;
	}
	
.content-inner h5 {
    font-size: 16px!important;
	}
	
.content-inner p {
    line-height: 28px;
    font-size: 14px;
	}
	
.content-inner ul li {
    line-height: 28px;
    font-size: 14px;
}
	
.numbered-list-container {
    margin: 30px auto;
    padding: 0px;
}	
	

.accordion-container {
  margin: 20px auto;
}



}



/* 健康経営　目標と実践・課題 */
#healthy {
	background-color: #EBF5FF;
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        margin-top: 48px;
        padding: 100px 20px;
}

#health-management {
	padding-top: 120px;    /* ヘッダーの高さ分、上側に余白を追加 */
  margin-top: -120px;   /* 追加した余白を打ち消して、見た目の位置を元に戻す */
}
	
.healthy_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
	


.healthy-header {
  display: flex;
  align-items: flex-end; 
  justify-content: space-between;
  margin-bottom: 20px;
}

.healthy-contents {
  max-width: 960px;
  width:100%;
  margin: 40px auto 0;
  padding: 0;
}

.healthy-contents h3 {
  font-size: 1.5em;
  color: #333333;
  border-left: 4px solid #0060B5;
  padding-left: 10px;
  margin: 20px 0;
  font-weight:500;
}

.healthy-container {
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid #0060B5;
  padding: 30px;
  background-color: #fff;
}

.healthy-container h4 {
  color: #0060B5;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  border-left:none;
}

.healthy-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.healthy-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  line-height: 1.5;
  break-inside: avoid-column;
  counter-increment: item;
  width: 100%;
}

.healthy-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #0060B5;
}


@media (max-width: 768px) {

.healthy-container {
    padding: 20px;
	}
	
.healthy-container h3 {
    font-size: 20px;
	}
	
.healthy-list {
	font-size: 14px;
	}
	
	
	
}

/* テーブルのコンテナ */
.health-tbl-wrapper {
  max-width: 100%;
  overflow-x: auto; /* 横スクロールを有効化 */
  -webkit-overflow-scrolling: touch;
}

.health-data-table-ttl {
	font-size: 18px;
	color: #333;
	margin:50px 0 12px;
}

.health-data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 768px; /* スマホでも見やすいように最低幅を設定 */
  font-size: 1em;
  line-height: 22px;
}

/* ヘッダーのスタイル */
.health-data-table thead th {
  background-color: #0060B5;
  color: white;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #ccc;
  white-space: nowrap;
  font-weight: normal;
  line-height: 19px;
	position: relative;
}

.health-data-table thead th sup {
      position: absolute;
    top: 22px;
    scale: 80%;
    display: inline-block;
}

.health-data-table thead th:not(:last-child) {
  border-right: none;
}

/* ボディのスタイル */
.health-data-table tbody td {
  padding: 13px 10px;
  text-align: center;
  border: 1px solid #ccc;
  background-color: #fff;
}

.health-data-table tbody td:nth-child(4),
.health-data-table tbody td:nth-child(5),
.health-data-table tbody td:nth-child(6),
.health-data-table tbody td:nth-child(7)
{
	border-right: 1px solid #EEEDED;
}


.health-data-table tbody tr:nth-child(odd) td {
  background-color: #EEEDED;
}

.health-data-table tbody tr:nth-child(odd) td:first-child {
	background-color: #ABCFF2;
	border: 1px solid #fff;
    padding: 10px 25px;
}

.health-data-table tbody td:first-child {
	background-color: #fff;
}

.health-data-table tbody tr:nth-child(odd) td:nth-child(2){
	text-align: left;
	padding: 10px 30px;
}

.health-data-table tbody tr:nth-child(even) td:nth-child(2),
.health-data-table tbody tr:nth-child(even) td:nth-child(3),
.health-data-table tbody tr:nth-child(even) td:nth-child(4),
.health-data-table tbody tr:nth-child(even) td:nth-child(5)
{
	border-right: 1px solid #fff;
}
.health-data-table tbody tr:nth-child(even) td:nth-child(6)
{
	border-right: 1px solid #CCC;
}



/* 「生活習慣病リスク保有基準」の項目を固定 */

/* 1列目を固定 */
.fixed-column,
.health-data-table th:first-child {
  left: 0;
  background-color: #fff;
  z-index: 20;
  min-width: 120px;
  background-color: #0060B5;
}

.health-data-table th:nth-child(2) {
  background-color: #0060B5;
  z-index: 20;
  white-space: nowrap;
  padding: 10px 30px;
}
/* 固定列の背景色を交互に変える */
.health-data-table tbody tr:nth-child(odd) .fixed-column {
  background-color: #fff;
}

/* 目標値のセルを青くする */
.target-value {
  color: #0060B5;
  font-weight: bold;
}

.target-value-2 {
  color: #0060B5;
  font-weight: bold;
  background-color: #EBF5FF!important;
}



/* 最後の列（健保組合平均値）のスタイル */
.health-data-table tbody tr td:last-child {
  font-weight: normal;
  background-color: #fff;
      padding: 0 25px;
}

/* キャプションのスタイル */
.table-caption {
  font-size: 1em;
  margin-top: 10px;
  margin-bottom: 70px;
  padding-left: 1em;
  text-indent: -1em;
}

/* 縦の罫線を削除 */
.health-data-table td:nth-child(2),
.health-data-table th:nth-child(2) {
  border-right: none;
}

@media (max-width: 768px) {
	
#healthy {
	padding: 50px 0;
	}
	
.healthy-contents h3 {
	font-size: 18px;
	}
	
.healthy-container h4 {
    font-size: 18px;
	}
.health-data-table-ttl {
    font-size: 15px!important;
	}
	
.health-data-table {
		font-size: 13px!important;
	}	
.health-data-table tbody tr:nth-child(odd) td:first-child {
    padding: 5px 7px;
}	

.health-data-table tbody tr:nth-child(odd) td:nth-child(2) {
    padding: 5px 7px;
}

.table-caption {
	font-size: 10px;
    margin-top: 0px;
}

}

@media (min-width: 768px) {
	
  .healthy-list {
    height: auto;
	margin-bottom: 20px;
  }

  .healthy-list li {
    width: 100%;
  }
	
.healthy-list li br {
	display: none;
}
}









/* PCとスマホ共通のスタイル */
.feature-section {
  max-width: 960px;
  margin: 50px auto 30px;
}

.feature-item {
  display: flex;
  flex-direction: row; /* デフォルトはPCの横並び */
  align-items: top;
  margin-bottom: 40px;
}

.feature-image-wrapper {
  flex-shrink: 0;
  width: 50%; /* PCでは画像の幅を50%に */
  padding-right: 20px;
}

.feature-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text-content {
  width: 50%; /* PCではテキストの幅を50%に */
}

h3.feature-title {
  color: #0060B5;
  font-size: 24px;
  font-weight: bold;
  padding: 0;
  margin-top: 0;
  border: none;
}

.feature-description {
  color: #555;
  line-height:33px;
  font-size: 18px;
}

/* スマホ対応 (768px未満) */
@media (max-width: 768px) {
	
h3.feature-title {
  font-size: 18px;
  margin: 0 0 10px;
	}
	
.feature-description {
    line-height: 28px;
    font-size: 14px;
	}
	
  .feature-item {
    flex-direction: column; /* 縦並びに変更 */
  }

  .feature-image-wrapper,
  .feature-text-content {
    width: 100%; /* スマホでは幅を100%に */
    padding-right: 0;
  }
  
  .feature-image-wrapper {
    margin-bottom: 15px; /* 画像の下に余白を追加 */
  }
}

.certification-item {
  display: flex;
  flex-direction: column; /* スマホでは縦並び */
  align-items: center;
　width:100%;
  max-width: 960px;
  margin: 20px auto;
}

.certification-image-wrapper {
  width: 100%;
    padding-right: 0;
    margin-top: 20px;
    order: 2;
    background-color: #fff;
    border: 1px solid #ccc;
}

.certification-image-wrapper img {
  max-width: 100%;
  height: auto;
	border: 1px solid #ccc;
}

.certification-content {
  width: 100%;
  order: 1; /* スマホではテキストが上にくるように */
}

.certification-content h3  {
	margin: 0 0 30px;
 }

.certification-description {
  color: #333;
}

@media (max-width: 769px) {
.certification-image-wrapper img {
    margin: 0 auto;
	display: block;
	border: none;
}
}

@media (min-width: 769px) {
  .certification-item {
    flex-direction: row; /* PCでは横並びに */
    align-items: flex-start; /* コンテンツを上揃えに */
    margin-top: 70px;
  }
  
  .certification-image-wrapper {
    width: 25%;
    padding-right: 30px;
    margin-top: 0;
    order: 1; /* PCでは画像が左にくるように */
	background: none;
    border: none;
  }
	
  .certification-content {
    width: 75%;
    order: 2; /* PCではテキストが右にくるように */
  }
}

#workstyle {
	padding: 110px 20px;
}

.workstyle_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
	

.workstyle-header {
  display: flex;
  align-items: flex-end; 
  justify-content: space-between;
  margin-bottom: 20px;
}

.workstyle-contents {
  max-width: 960px;
  width:100%;
  margin: 40px auto 0;
  padding: 0;
}

.workstyle-contents p.blue {
	font-size: 20px;
	font-weight: bold;
	color: #0060B5;
	margin: 30px 0 20px;
}

.workstyle-contents h3 {
  font-size: 1.5em;
  color: #333333;
  border-left: 4px solid #0060B5;
  padding-left: 10px;
  margin: 50px 0 20px;
  font-weight: 500;
}

.workstyle-container {
  max-width: 960px;
  margin: 30px auto;
  padding: 30px;
  background-color: #EBF5FF;
}

.workstyle-container p.objective {
	font-size: 20px;
	font-weight: bold;
	color: #0060B5;
	margin: 25px 0;
}

.workstyle-container ol {
	margin: 0;
}

.workstyle-container ol li {
	color: #0060B5;
	font-size: 20px;
	line-height: 33px;
	font-weight: bold;
	margin-bottom: 10px;
	list-style-type: none;
}

.workstyle-container ol li span {
	color: #333;
	font-size: 16px;
	font-weight: normal;
}


.workstyle-container h4 {
  color: #0060B5;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  border-left:none;
}


/* テーブルのコンテナ */
.workstyle-tbl-wrapper {
  max-width: 100%;
  overflow-x: auto; /* 横スクロールを有効化 */
  -webkit-overflow-scrolling: touch;
  margin: 50px 0 0 0;
}

.workstyle-data-table-ttl {
	font-size: 18px;
	color: #333;
	    margin-bottom: 12px;
}

.workstyle-data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 768px; /* スマホでも見やすいように最低幅を設定 */
  font-size: 1em;
  line-height: 22px;
}

/* ヘッダーのスタイル */
.workstyle-data-table thead th {
  background-color: #0060B5;
  color: white;
  padding: 13px 10px;
  text-align: center;
  border: 1px solid #ccc;
  white-space: nowrap;
  font-weight: normal;
  line-height: 19px;
	position: relative;
}

/* ボディのスタイル */
.workstyle-data-table tbody td {
  padding: 13px 10px;
  text-align: center;
  border: 1px solid #ccc;
  background-color: #fff;
  width: 33.3%;
}

.workstyle-data-table tbody td:first-child {
	background-color: #EBF5FF;
}

.workstyle-data-table-txt {
	text-align: right;
	font-size:18px;
}

.workstyle-box {
  max-width: 960px;
  margin: 0 auto;
}

.workstyle-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.workstyle-item.reverse {
  flex-direction: row-reverse;
}

.workstyle-image-wrapper {
  flex-shrink: 0;
  width: 50%;
  padding: 0 20px;
}

.workstyle-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.workstyle-text-content {
  width: 50%;
  padding: 0 20px;
}

.workstyle-title {
  font-size: 1.5em;
  color: #0060B5;
}

.workstyle-description {
  line-height: 1.6;
  color: #555;
}

/* スマホ対応（768px未満） */
@media (max-width: 768px) {
	
#workstyle {
	padding: 50px 0px;
}
	
.workstyle-item {
    flex-direction: column;
    margin-bottom: 20px;
  }

.workstyle-item.reverse {
    flex-direction: column; /* スマホでは反転させない */
  }

.workstyle-image-wrapper,
.workstyle-text-content {
    width: 100%;
    padding: 0;
  }
	
.workstyle-contents {
	margin: 0px auto 0;	
	}
	
.workstyle-contents p.blue {
		font-size: 18px;
	}
	
.workstyle-contents p {
    font-size: 14px;
	line-height: 28px;
	}
  
.workstyle-image-wrapper {
    margin-bottom: 15px;
  }
	
.workstyle-contents h3 {
    font-size: 18px;
	}
	
.workstyle-container {
    padding: 14px;
	}

.workstyle-container ol li {
    font-size: 16px;
    line-height: 28px;
	}

.workstyle-container ol li span {
    font-size: 14px;
	}
	
.workstyle-data-table {
	min-width: 100%;
	font-size: 13px;
	}
	
.workstyle-container p.objective {
	font-size: 16px;
	}

}

.workstyle-table-container {
  max-width: 960px;
  margin: 3px auto 20px;
  border: 1px solid #B9B9B9;
  border-radius: 4px;
  overflow: hidden;
}

.workstyle-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.workstyle-table caption {
	text-align: left;
}

.workstyle-table tr {
  display: flex; /* Flexboxで行を横並びに */
  border-bottom: 1px solid #B9B9B9;
}

.workstyle-table tr:last-child {
  border-bottom: none; /* 最後の行の下線を削除 */
}

.workstyle-table th,
.workstyle-table td {
  padding: 12px;
  text-align: left;
  line-height: 1.6;
}

.workstyle-table th {
  background-color: #EEEDED;
  font-weight: bold;
  color: #333;
  min-width: 150px;
  flex-shrink: 0;
  border-right: 1px solid #B9B9B9;
  text-align: center;
}

.workstyle-table td {
  color: #555;
  flex-grow: 1;
	background-color: #fff;
}

/* スマホ対応（768px未満） */
@media (max-width: 768px) {
  .workstyle-table tr {
    flex-direction: column; /* スマホでは縦並びに */
    border: none; /* スマホではflexboxで境界線を作成 */
    border-bottom: 1px solid #B9B9B9;
  }
  
  .workstyle-table tr:last-child {
    border-bottom: none;
  }
  
  .workstyle-table th,
  .workstyle-table td {
            padding: 10px 15px;
        width: 100%;
        font-size: 13px;
  }

  .workstyle-table th {
    min-width: auto;
	border-right: none;
  }
}

#kurumin {
	padding-top: 120px;    /* ヘッダーの高さ分、上側に余白を追加 */
  margin-top: -120px;   /* 追加した余白を打ち消して、見た目の位置を元に戻す */
}

.kurumin-item {
  display: flex;
  flex-direction: column; /* スマホでは縦並び */
  align-items: center;
　width:100%;
  max-width: 960px;
  margin: 20px auto;
}

.kurumin-image-wrapper {
  width: 100%;
  padding-right: 0;
  margin-top: 20px; /* スマホではテキストと画像の間隔を空ける */
  order: 2; /* スマホでは画像が下にくるように */
  
}

.kurumin-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc;
}

.kurumin-content {
  width: 100%;
  order: 1; /* スマホではテキストが上にくるように */
}

.kurumin-content h3  {
	margin: 0 0 30px;
 }

.kurumin-description {
  color: #333;
}


@media (max-width: 769px) {
.kurumin-image-wrapper {
  border: 1px solid #ccc;
}

.kurumin-image-wrapper img {
  border: none;
  margin: 0 auto;
}
}


/* PCのレイアウト（画面幅769px以上） */
@media (min-width: 769px) {
  .kurumin-item {
    flex-direction: row; /* PCでは横並びに */
    align-items: flex-start; /* コンテンツを上揃えに */
    margin-top: 70px;
  }
  
  .kurumin-image-wrapper {
    width: 25%;
    padding-right: 30px;
    margin-top: 0;
    order: 1; /* PCでは画像が左にくるように */
  }
  
  .kurumin-content {
    width: 75%;
    order: 2; /* PCではテキストが右にくるように */
  }
}

#certification {
  background-color: #EBF5FF;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 110px 20px;
}

.certification-box {
	max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.certification-box p {
	font-size: 18px;
	line-height: 33px;
}

.certification figure img {
	padding: 50px;
	width: 100%;
}
@media (max-width: 768px) {

#certification {
    margin-top: -30px;
    padding: 55px 20px;
}
	
.certification-box {
    margin: 20px auto 0;
	}
	
.certification-box p {
    font-size: 14px;
	}

.certification-box figure img {
	padding: 30px 0;
	}
}


.iso9001-item {
  display: flex;
  flex-direction: column; /* スマホでは縦並び */
  align-items: center;
　width:100%;
  max-width: 960px;
  margin: 20px auto;
}

.iso9001-image-wrapper {
  width: 100%;
  padding-right: 0;
  margin-top: 20px; /* スマホではテキストと画像の間隔を空ける */
  order: 2; /* スマホでは画像が下にくるように */
}

.iso9001-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc;
}

.iso9001-content {
  width: 100%;
  order: 1; /* スマホではテキストが上にくるように */
}

.iso9001-content h3  {
	margin: 0 0 30px;
 }

.iso9001-description {
  color: #333;
}

@media (max-width: 769px) {
	
.iso9001-image-wrapper {
  border: 1px solid #ccc;
  background-color: #fff;
}

.iso9001-image-wrapper img {
  border: none;
  margin: 0 auto;
}
	
.iso9001-description {
  font-size: 14px;
	 line-height: 28px;
}

}

/* PCのレイアウト（画面幅769px以上） */
@media (min-width: 769px) {
  .iso9001-item {
    flex-direction: row; /* PCでは横並びに */
    align-items: flex-start; /* コンテンツを上揃えに */
    margin-top: 70px;
  }
  
  .iso9001-image-wrapper {
    width: 37%;
    padding-right: 30px;
    margin-top: 0;
    order: 1; /* PCでは画像が左にくるように */
  }
  
  .iso9001-content {
    width: 63%;
    order: 2; /* PCではテキストが右にくるように */
  }
}

.initiatives-container {
  max-width: 960px;
  margin: 3px auto 20px;
  border: 1px solid #B9B9B9;
  border-radius: 4px;
  overflow: hidden;
}

.initiatives-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.initiatives-table caption {
	text-align: left;
}

.initiatives-table tr {
  display: flex; /* Flexboxで行を横並びに */
  border-bottom: 1px solid #B9B9B9;
}

.initiatives-table tr:last-child {
  border-bottom: none; /* 最後の行の下線を削除 */
}

.initiatives-table th {
	background-color: #EEEDED;
}


.initiatives-table th,
.initiatives-table td {
  padding: 12px;
  text-align: left;
  line-height: 1.6;
}

.initiatives-table th {
  background-color: #EBF5FF;
  font-weight: bold;
  color: #333;
  min-width: 150px;
  flex-shrink: 0;
  border-right: 1px solid #B9B9B9;
  text-align: center;
      display: flex;
    align-items: center;
    justify-content: center;
}

.initiatives-table td {
  color: #555;
  flex-grow: 1;
	background-color: #fff;
}

/* スマホ対応（768px未満） */
@media (max-width: 768px) {
  .initiatives-table tr {
    flex-direction: column; /* スマホでは縦並びに */
    border: none; /* スマホではflexboxで境界線を作成 */
    border-bottom: 1px solid #B9B9B9;
  }
  
  .initiatives-table tr:last-child {
    border-bottom: none;
  }
  
  .initiatives-table th,
  .initiatives-table td {
            padding: 10px 15px;
        width: 100%;
        font-size: 13px;
  }

  .initiatives-table th {
    min-width: auto;
	border-right: none;
  }
}



/* 左上のセルに角丸を適用 */
.rounded-top-left {
  border-top-left-radius: 8px;
}

/* 右上のセルに角丸を適用 */
.rounded-top-right {
  border-top-right-radius: 8px;
}


/*□□□□□□□□□□□□□□□□□ガバナンスページ□□□□□□□□□□□□□□□□□*/

/*GOVERNANCE*/
.main-contents-title h1.governance {
	color: #F5A200;
}

.main-image-governance {
  position: relative;
  height: 531px;
  background-image: url("images/main-governance.png");
      background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: calc(50% - 50vw);
    width: calc(50vw + 720px);
    border-radius: 0 40px 40px 0;
	    margin-top: 15px;
}

#governance, #ethics, #internal, #antisocial {
	width: 100vw;
    margin: 0 calc(50% - 50vw);
/*    margin-top: 48px;*/
    padding: 100px 20px;
	padding-top: 100px;
}

#governance {
	padding-top: 0px;
}

#ethics, #antisocial {
	background-color: #EBF5FF;
}

#ethics, #internal {
	padding-bottom: 0;
}

.content_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1440px;
    margin: 0px auto;
    padding: 0px 20px;
}

.governance-header {
	display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.governance-content {
    max-width: 960px;
    width: 100%;
    margin: 40px auto 0;
    padding: 0;
}

.governance-content.mt0 {
    margin-top: 0;
}

.governance-content h3 {
    font-size: 1.5em;
    color: #333333;
    border-left: 4px solid #0060B5;
    padding-left: 10px;
    margin: 20px 0;
    font-weight: 500;
}

.governance_btn {
	display: flex;
	column-gap: 15px;
	margin-bottom: 50px;
	margin-top: -20px;
}

.governance_btn a {
	border: 1px solid #0060B5;
	border-radius: 10rem;
	color: #0060B5;
	padding: 10px;
	padding-inline: 20px;
	padding-left: 50px;
	position: relative;
	text-decoration: none;
	line-height: 1.7;
}

.governance_btn a::before {
	content: "";
	width: 25px;
	height: 25px;
	margin-left: -30px;
	position: absolute;
	top: calc(50% - 12.5px);
}

.governance_btn a.link-out::before {
	background-image: url("images/akar-icons_link-out.svg");
}

.governance_btn a.file-pdf::before {
	background-image: url("images/codicon_file-pdf.svg");
}

.governanse_group {
    text-align: center;
}

.governanse_group img {
    width: 100%;
	max-width: 800px;
}

.dropdown-container {
    margin-bottom: 100px;
}

/* --- ボタンのスタイル --- */
.dropdown-button {
	background-color: #0060B5;
    color: white;
    border: none;
    padding: 10px 15px 10px 25px;
    border-radius: 10rem;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 220px;
    transition: background-color 0.3s ease;
    position: relative;
}

/* ボタンがアクティブになった時の色 */
.dropdown-button.active {
    background-color: #BCD7F0; 
	color: #0060B5; 
}

/* ボタンのテキスト部分がアクティブになった時 */
.dropdown-button.active .button-text {
    /* ボタンの color プロパティが全体に適用されますが、
       明示的に上書きしたい場合はこちらに記述します。 */
    color: #0060B5; /* ボタン全体の色を白に戻すため、ここでは白に戻します */
}

.arrow-circle {
    /* 正円のサイズを定義 */
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px; /* テキストとの間隔 */
    flex-shrink: 0; /* 縮まないようにする */
}

/* --- 矢印アイコンのスタイル --- */
.dropdown-arrow {
    /* 矢印の色を青にする */
    color: #004d99; 
    font-size: 20px;
    /* 回転アニメーションの速度を維持 */
    transition: transform 0.3s ease;
    margin-left: 0; /* 親要素が中央揃えなのでマージンをリセット */
}

/* アクティブになった時の矢印の回転 */
.dropdown-button.active .dropdown-arrow {
	transform: rotate(180deg);
    /* 2. 矢印の色を白に変更 */
    color: white; 
}

.dropdown-button.active .arrow-circle {
	background-color: #0060B5;
}

/* --- 展開するコンテンツのスタイル（省略 - 変更なし） --- */
.dropdown-full-width-content {
    max-height: 0;
    overflow: hidden;
    /*background-color: #EEEDED; */
    transition: max-height 0.4s ease-in-out;
    width: 100vw; 
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
	top: -50px;
}

/* コンテンツが表示される状態 */
.dropdown-full-width-content.show {
    /* コンテンツの高さに合わせて、十分大きな値に設定 */
    max-height: 10000px; 
}

/* 展開コンテンツ内の実際のテキストや要素 (コンテンツ幅に収める) */
.dropdown-inner-text {
    max-width: 960px;
    margin: 10px auto;
    padding: 30px 40px;
    background-color: #fff;
    /* border-radius: 5px; */
    box-shadow: 0px 0px 10px 1px rgb(179 179 179 / 15%);
}

/* .dropdown-inner-text 内のリストやテキストの調整 */
.dropdown-inner-text ul {
    list-style: none;
    padding-left: 20px;
}

.basic-principles-list {
    list-style: none; /* デフォルトの番号を非表示にする */
    padding: 0;
    margin: 0;
}

/* --- 各リスト項目 (li) のスタイル --- */
.list-item {
    padding: 15px 0; /* 上下のパディングで間隔を作る */
}

.item-title {
	border-bottom: 1px solid #333;
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
	padding-bottom: 10px;
}

.item-title span {
	color: #0060B5;
}

/* --- スクロールアップインジケーター（上矢印） --- */
.scroll-up-indicator {
    text-align: center;
    padding: 20px 0 10px;
    font-size: 1.5em;
    color: #ccc; /* 薄いグレーの矢印 */
    cursor: pointer;
}

/* --- アコーディオンフッターのスタイル --- */
.accordion-footer {
    text-align: center;
    padding: 10px 0 20px;
}

/* 上向き矢印アイコンのスタイル */
.close-accordion-button {
    font-size: 2.5em; 
    color: #B9B9B9;;
    cursor: pointer; 
    padding: 10px; 
    transition: color 0.2s ease;
}

.close-accordion-button:hover {
    color: #0060B5; /* ホバー時の色 */
}

ol.bold {
	font-weight: 500;
}

.dropdown-inner-text .rule_list {
    margin-bottom: 10px;
}


/* 1. クラス icsp_ol を持つ <ol> 要素の設定 */
ol.icsp_ol {
    /* リスト内の要素を数えるためのカウンターをリセットし、名前を 'custom-counter' とする */
    counter-reset: custom-counter;
    /* デフォルトのマーカーを非表示にする */
    list-style-type: none; 
    /* デフォルトマーカー分の余白を除去（リストの左端を揃える） */
    padding-left: 10px;
}

/* 2. <ol class="icsp_ol"> 内の各 <li> 要素の設定 */
ol.icsp_ol li {
    /* 各 <li> 要素でカウンターをインクリメント（1ずつ増やす） */
    counter-increment: custom-counter;
    /* カスタムマーカー分のスペースを確保し、折り返し時のインデントを調整 */
    padding-left: 2em; /* マーカーとテキストのスペースに応じて調整 */
    text-indent: -2em; /* マーカーの位置を調整 */
	font-weight: 500;
}

ol.icsp_ol li span.normal {
	font-weight: normal;
}

/* 3. 擬似要素 ::before を使ってカスタムマーカーを作成 */
ol.icsp_ol li::before {
    content: "(" counter(custom-counter, decimal) ")"; 
    /* フォント設定を追加。多くの日本語フォントで効果があるとは限らない */
    font-feature-settings: "fwid"; /* Full Width Digits を試みる */
    display: inline-block;
    width: 2em; /* マーカー分の幅を固定 */
    text-align: right;
	font-weight: 500;
}	

ol.icsp_ol li ul li {
	list-style-type: none;
}





@media (max-width: 768px) {
	
	.main-image-governance {
        position: relative;
        height: 300px;
    }
	
    #governance, #ethics, #internal, #antisocial {
        padding: 50px 0px;
    }
	
	#governance {
	padding-top: 0px;
	}
	
	#ethics, #internal {
	padding-bottom: 0;
	}
	
	
	.governance_btn {
		flex-wrap: wrap;
	}
	
	.governance_btn a {
		font-size: 14px;
		padding-block: 5px;
	}
	
	.governance_btn a:first-child {
		margin-bottom: 10px;
	}
	
	.dropdown-button {
		padding: 10px 10px 10px 25px;
		font-size: 16px;
	}
	
	.arrow-circle {
		width: 30px;
		height: 30px;
	}
	
	.dropdown-arrow {
		font-size: 16px;
	}
	
	.dropdown-container {
		margin-bottom: 50px;
	}
	
	.dropdown-inner-text {
		padding: 18px;
	}
	
	.dropdown-inner-text .item-description {
		font-size: 14px;
}
	
	.dropdown-inner-text .item-title {
		font-size: 16px;
	}
	
.dropdown-full-width-content {
    top: -10px;
    padding: 0 20px;
}

ol.icsp_ol {
	font-size: 14px;
	}
	
	
}

/*□□□□□□□□□□□□□□□□□環境ページ□□□□□□□□□□□□□□□□□*/

.main-contents-title h1.environment {
    color: #28A838;
}

.main-image-environment {
	position: relative;
	height: 531px;
	background-image: url("images/main-environment.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: calc(50% - 50vw);
	width: calc(50vw + 720px);
	border-radius: 0 40px 40px 0;
	margin-top: 15px;
}

section::before {
  content:'';
  display: block;
  padding-top: 120px;
  margin-top: -120px;
}


#envi-policy .message-content {
	margin-bottom: 100px;
}

#envi-policy .photo-area {
    width: 70%;
    margin-bottom: 20px;
    max-width: 425px;
}

#envi-policy .text-area p {
	margin-bottom: 40px;
}

.environment-content {
	margin-top: 30px;
}


.environment-content h3 {
    font-size: 1.5em;
    color: #333333;
    border-left: 4px solid #0060B5;
    padding-left: 10px;
    margin: 20px 0;
    font-weight: 500;
}

#envi-policy ::marker {
    color: #0060B5;
}

#envi-policy .dropdown-inner-text ol {
	margin-bottom: 20px;
}

#envi-policy .dropdown-inner-text ol li {
    margin-left: 1rem;
}

#envi-policy .dropdown-inner-text .section-description {
    font-size: 16px;
}

#goals {
background-color: #EBF5FF;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 110px 20px;
}

#goals .section-description {
	padding: 0;
}

.goals_table_wrap {
	max-width: 100%;
    overflow-x: auto;
}

.goals_table {
	height: 177px;	
}

.goals_table th {
    width: 25%;
	padding: 15px !important;
}

.goals_table tbody tr:nth-child(odd) td {
    background-color: #fff;
	border-right: 1px solid #ccc;
}

.goals_table tbody td:first-child {
    background-color: #EBF5FF;
}

.goals_table tbody tr:nth-child(odd) td:first-child {
    background-color: #EBF5FF;
    border: 1px solid #ccc;
}

.goals_table tbody tr:nth-child(even) td:nth-child(2), .goals_table tbody tr:nth-child(even) td:nth-child(3), .goals-table tbody tr:nth-child(even) td:nth-child(4) {
	border-right: 1px solid #ccc;
}

.goals_table tbody tr:nth-child(even) td:nth-child(4) {
	border-right: 1px solid #ccc;
}

.goals_table tbody tr:nth-child(odd) td:nth-child(2) {
    text-align: center;
}

.goals_table tbody tr:nth-child(1) td:nth-child(3), .goals_table tbody tr:nth-child(1) td:nth-child(4), .goals_table tbody tr:nth-child(2) td:nth-child(3), .goals_table tbody tr:nth-child(2) td:nth-child(4)  {
    color: #0060B5; 
    font-weight: 500; 
}

.goals_table tbody tr:nth-child(1) td:nth-child(1), .goals_table tbody tr:nth-child(2) td:nth-child(1) {
    font-weight: 500; 
}

.goals_table tbody tr td:nth-child(3) {
	font-weight: bold!important;
}



.goals_table tbody tr td:nth-child(4) {
	text-align: left;
	font-weight: bold!important;
}



@media (max-width: 769px) {
	
#goals {
    padding: 50px 5px;
}

	
	.main-image-environment {
		position: relative;
        height: 300px;
	}

	
#envi-policy .photo-area {
    width: 100%;
	}
	
#envi-policy .dropdown-inner-text .section-description {
    font-size: 14px;
	line-height: 28px;
	padding: 10px;
	margin-bottom: 10px;
}

#envi-policy .dropdown-inner-text ol {
    font-size: 14px;
	line-height: 28px;
	padding: 10px;
}

	#envi-policy .message-content {
    margin-bottom: 0px;
}
	
}


#overview {
	padding: 110px 20px;
}

.overview_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
	

.overview-header {
  display: flex;
  align-items: flex-end; 
  justify-content: space-between;
  margin-bottom: 20px;
}

.overview-contents {
  max-width: 960px;
  width:100%;
  margin: 40px auto 0;
  padding: 0;
}

.overview-contents p.blue {
	font-size: 20px;
	font-weight: bold;
	color: #0060B5;
	margin: 30px 0 20px;
}

.overview-contents h3 {
  font-size: 1.5em;
  color: #333333;
  border-left: 4px solid #0060B5;
  padding-left: 10px;
  margin: 50px 0 20px;
  font-weight: 500;
}

.overview-container {
  max-width: 960px;
  margin: 30px auto;
  padding: 30px;
  background-color: #EBF5FF;
}

.overview-container p.objective {
	font-size: 20px;
	font-weight: bold;
	color: #0060B5;
	margin: 25px 0;
}



.overview-container h4 {
  color: #0060B5;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  border-left:none;
}


/* テーブルのコンテナ */
.overview-tbl-wrapper {
  max-width: 100%;
  overflow-x: auto; /* 横スクロールを有効化 */
  -webkit-overflow-scrolling: touch;
  margin: 50px 0 0 0;
}

.overview-data-table-ttl {
	font-size: 18px;
	color: #333;
	    margin-bottom: 12px;
}

.overview-data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 768px; /* スマホでも見やすいように最低幅を設定 */
  font-size: 1em;
  line-height: 22px;
}

/* ヘッダーのスタイル */
.overview-data-table thead th {
  background-color: #0060B5;
  color: white;
  padding: 13px 10px;
  text-align: center;
  border: 1px solid #ccc;
  white-space: nowrap;
  font-weight: normal;
  line-height: 19px;
	position: relative;
}

/* ボディのスタイル */
.overview-data-table tbody td {
  padding: 13px 10px;
  text-align: center;
  border: 1px solid #ccc;
  background-color: #fff;
  width: 16.5%;
}

.overview-data-table tbody td:first-child {
	background-color: #EBF5FF;
}

.overview-data-table tbody td img {
	vertical-align: middle;
	margin-right: 4px;
}

.overview-data-table-txt {
	text-align: right;
	font-size:18px;
}

.overview-box {
  max-width: 960px;
  margin: 0 auto;
}

.overview-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.overview-item.reverse {
  flex-direction: row-reverse;
}

.overview-image-wrapper {
  flex-shrink: 0;
  width: 50%;
  padding: 0 20px;
}

.overview-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.overview-text-content {
  width: 50%;
  padding: 0 20px;
}

.overview-title {
  font-size: 1.5em;
  color: #0060B5;
}

.overview-description {
  line-height: 1.6;
  color: #555;
}

.environment_graph img {
	margin: 0 auto;
    display: block;
    margin-top: 40px;
}

/* スマホ対応（768px未満） */
@media (max-width: 768px) {
	
#overview {
	padding: 50px 0px;
}
	
.overview-item {
    flex-direction: column;
    margin-bottom: 20px;
  }

.overview-item.reverse {
    flex-direction: column; /* スマホでは反転させない */
  }

.overview-image-wrapper,
.overview-text-content {
    width: 100%;
    padding: 0;
  }
	
.overview-contents {
	margin: 0px auto 0;	
	}
	
.overview-contents p.blue {
		font-size: 18px;
	}
	
.overview-contents p {
    font-size: 14px;
	line-height: 28px;
	}
  
.overview-image-wrapper {
    margin-bottom: 15px;
  }
	
.overview-contents h3 {
    font-size: 18px;
	}
	
.overview-container {
    padding: 14px;
	}

	
.overview-data-table {
	min-width: 100%;
	font-size: 13px;
	}
	
.overview-container p.objective {
	font-size: 16px;
	}
	
.overview-data-table thead th {
  padding: 8px 5px;
	}
	
.overview-data-table tbody td {
  padding: 8px 5px;
  height: 60px;
	}
	
.environment_graph img {
	width: 100%;
}


}


#activities {
	background-color: #EBF5FF;
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        margin-top: 48px;
        padding: 100px 20px;
}
	
.activities_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
	


.activities-header {
  display: flex;
  align-items: flex-end; 
  justify-content: space-between;
  margin-bottom: 20px;
}

.activities-contents {
  max-width: 960px;
  width:100%;
  margin: 40px auto 0;
  padding: 0;
}

.activities-contents h3 {
  font-size: 1.5em;
  color: #333333;
  border-left: 4px solid #0060B5;
  padding-left: 10px;
  font-weight:500;
}

.activities-container {
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid #0060B5;
  padding: 30px;
  background-color: #fff;
}

.activities-container h4 {
  color: #0060B5;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  border-left:none;
}

.activities-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.activities-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 0px;
  line-height: 1.5;
  break-inside: avoid-column;
  counter-increment: item;
  width: 100%;
}

.activities-list li span {
  color: #0060B5;
  padding-right: 1em;
}

.activities-contents h3.other_ttl {
	border-bottom: 1px solid #0060B5;
    font-weight: 500;
    border-left: none;
    padding-left: 0px;
    padding-bottom: 5px;
	margin-top: 45px;
}


@media (max-width: 768px) {

.activities-container {
    padding: 20px;
	}
	
.activities-container h3 {
    font-size: 20px;
	}
	
.activities-list {
	font-size: 14px;
	}
	
	
	
}

/* テーブルのコンテナ */
.activities-tbl-wrapper {
  max-width: 100%;
  overflow-x: auto; /* 横スクロールを有効化 */
  -webkit-overflow-scrolling: touch;
}

.activities-data-table-ttl {
	font-size: 18px;
	color: #333;
	margin:50px 0 12px;
}

.activities-data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 768px; /* スマホでも見やすいように最低幅を設定 */
  font-size: 1em;
  line-height: 22px;
}

/* ヘッダーのスタイル */
.activities-data-table thead th {
  background-color: #0060B5;
  color: white;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #ccc;
  white-space: nowrap;
  font-weight: normal;
  line-height: 19px;
	position: relative;
}

.activities-data-table thead th sup {
      position: absolute;
    top: 22px;
    scale: 80%;
    display: inline-block;
}

.activities-data-table thead th:not(:last-child) {
  border-right: none;
}

/* ボディのスタイル */
.activities-data-table tbody td {
  padding: 13px 10px;
  text-align: center;
  border: 1px solid #ccc;
  background-color: #fff;
}

.activities-data-table tbody td:nth-child(4),
.activities-data-table tbody td:nth-child(5),
.activities-data-table tbody td:nth-child(6),
.activities-data-table tbody td:nth-child(7)
{
	border-right: 1px solid #EEEDED;
}


.activities-data-table tbody tr:nth-child(odd) td {
  background-color: #EEEDED;
}

.activities-data-table tbody tr:nth-child(odd) td:first-child {
	background-color: #ABCFF2;
	border: 1px solid #fff;
    padding: 10px 25px;
}

.activities-data-table tbody td:first-child {
	background-color: #fff;
}

.activities-data-table tbody tr:nth-child(odd) td:nth-child(2){
	text-align: left;
	padding: 10px 30px;
}

.activities-data-table tbody tr:nth-child(even) td:nth-child(2),
.activities-data-table tbody tr:nth-child(even) td:nth-child(3),
.activities-data-table tbody tr:nth-child(even) td:nth-child(4),
.activities-data-table tbody tr:nth-child(even) td:nth-child(5)
{
	border-right: 1px solid #fff;
}
.activities-data-table tbody tr:nth-child(even) td:nth-child(6)
{
	border-right: 1px solid #CCC;
}



/* 「生活習慣病リスク保有基準」の項目を固定 */

/* 1列目を固定 */
.fixed-column,
.activities-data-table th:first-child {
  left: 0;
  background-color: #fff;
  z-index: 20;
  min-width: 120px;
  background-color: #0060B5;
}

.activities-data-table th:nth-child(2) {
  background-color: #0060B5;
  z-index: 20;
  white-space: nowrap;
  padding: 10px 30px;
}
/* 固定列の背景色を交互に変える */
.activities-data-table tbody tr:nth-child(odd) .fixed-column {
  background-color: #fff;
}

/* 目標値のセルを青くする */
.target-value {
  color: #0060B5;
  font-weight: bold;
}

.target-value-2 {
  color: #0060B5;
  font-weight: bold;
  background-color: #EBF5FF!important;
}



/* 最後の列（健保組合平均値）のスタイル */
.activities-data-table tbody tr td:last-child {
  font-weight: normal;
  background-color: #fff;
      padding: 0 25px;
}

/* 縦の罫線を削除 */
.activities-data-table td:nth-child(2),
.activities-data-table th:nth-child(2) {
  border-right: none;
}

@media (max-width: 768px) {
	
#activities {
	padding: 50px 10px;
	}
	
div.certification-item .mt0 {
	margin: 0 0 40px;
	}
	
.activities-contents h3 {
	font-size: 18px;
	}
	
.activities-container h4 {
    font-size: 18px;
	}
.activities-data-table-ttl {
    font-size: 15px!important;
	}
	
.activities-data-table {
		font-size: 13px!important;
	}	
.activities-data-table tbody tr:nth-child(odd) td:first-child {
    padding: 5px 7px;
}	

.activities-data-table tbody tr:nth-child(odd) td:nth-child(2) {
    padding: 5px 7px;
}
	


}

@media (min-width: 768px) {
	
  .activities-list {
    height: auto;
	margin-bottom: 20px;
  }

  .activities-list li {
    width: 100%;
  }
	
.activities-list li br {
	display: none;
}
}



/* PCとスマホ共通のスタイル */
.activities-feature-section {
  max-width: 960px;
  margin: 50px auto 30px;
}

.activities-feature-item {
  display: flex;
  flex-direction: row; /* デフォルトはPCの横並び */
  align-items: top;
  margin-bottom: 40px;
}

.activities-feature-image-wrapper {
  flex-shrink: 0;
  width: 50%; /* PCでは画像の幅を50%に */
  padding-right: 20px;
}

.activities-feature-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.activities-feature-text-content {
  width: 50%; /* PCではテキストの幅を50%に */
}

h3.activities-feature-title {
  color: #0060B5;
  font-size: 24px;
  font-weight: bold;
  padding: 0;
  margin-top: 0;
  border: none;
}

.activities-feature-description {
  color: #555;
  line-height:33px;
  font-size: 18px;
  margin-top: 1em;
}

/* スマホ対応 (768px未満) */
@media (max-width: 768px) {
	
h3.activities-eature-title {
  font-size: 18px;
  margin: 0 0 10px;
	}
	
.activities-feature-description {
    line-height: 28px;
    font-size: 14px;
	}
	
  .activities-feature-item {
    flex-direction: column; /* 縦並びに変更 */
  }

  .activities-feature-image-wrapper,
  .activities-feature-text-content {
    width: 100%; /* スマホでは幅を100%に */
    padding-right: 0;
  }
  
  .activities-feature-image-wrapper {
    margin-bottom: 15px; /* 画像の下に余白を追加 */
  }
	
h3.activities-feature-title {
  font-size: 18px;
	}
	
}


.activities-certification-item {
  display: flex;
  flex-direction: column; /* スマホでは縦並び */
  align-items: center;
　width:100%;
  max-width: 960px;
  margin: 20px auto;
}

.activities-certification-image-wrapper {
  width: 100%;
    padding-right: 0;
    margin-top: 20px;
    order: 2;
    background-color: #fff;
    border: 1px solid #ccc;
}

.activities-certification-image-wrapper img {
  max-width: 100%;
  height: auto;
	border: 1px solid #ccc;
	width:188px;
}

.activities-certification-content {
  width: 100%;
  order: 1; /* スマホではテキストが上にくるように */
}

.activities-certification-content h3  {
	margin: 0 0 30px;
 }

.activities-certification-description {
  color: #333;
}

@media (max-width: 769px) {
.activities-certification-image-wrapper img {
    margin: 10px auto;
	display: block;
	border: none;
}
}

@media (min-width: 769px) {
  .activities-certification-item {
    flex-direction: row; /* PCでは横並びに */
    align-items: flex-start; /* コンテンツを上揃えに */
	margin-bottom: 40px;
  }
  
  .activities-certification-image-wrapper {
    width: 25%;
    padding-right: 30px;
    margin-top: 0;
    order: 1; /* PCでは画像が左にくるように */
	background: none;
    border: none;
  }
	
  .activities-certification-content {
    width: 75%;
    order: 2; /* PCではテキストが右にくるように */
  }
}


#status {
	padding: 110px 20px;
}

@media (max-width: 768px) {
	
#status {
	padding: 50px 20px;
	}
	
}


.environment-message {
	max-width: 960px;
    width: 100%;
    margin: 40px auto 0;
    padding: 0;
}


#envi-policy-2 .environment-message {
	margin-bottom: 0px;
}

#envi-policy-2 .photo-area {
    width: 100%;
    margin-bottom: 20px;
    max-width: 425px;
}

#envi-policy-2 .text-area p {
	font-size: 18px;
}

.environment-message {
	margin-top: 30px;
	display: flex;
    gap: 50px;
}


.environment-message h3 {
    font-size: 1.5em;
    color: #333333;
    border-left: 4px solid #0060B5;
    padding-left: 10px;
    margin: 20px 0;
    font-weight: 500;
}

#envi-policy-2 ::marker {
    color: #0060B5;
}

#envi-policy-2 .dropdown-inner-text ol {
	margin-bottom: 20px;
}

#envi-policy-2 .dropdown-inner-text ol li {
    margin-left: 1rem;
}

#envi-policy-2 .dropdown-inner-text .section-description {
    font-size: 16px;
}

