body {
  font-family: "游ゴシック", "ヒラギノ角ゴシック", "Noto Sans", "メイリオ", Meiryo;
  font-weight: bold;
}

/* 見出しの共通スタイル */
h1, h2, h3, h4, h5, h6 {
  font-family: "游ゴシック", "ヒラギノ角ゴシック", "Noto Sans", "メイリオ", Meiryo;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #333;
}

/* 各レベルのサイズ（clampでレスポンシブ対応） */
h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h1.section-title {
  background:linear-gradient(to right, #0099FF,#4458CB);
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.9rem;
}

/* 線 */
.thick-hr {
  height: 4px;
  border: none;
}

.title-container {
  background-color: #E0F0F0;
  max-width: 100vw;
  height: 10vw;
  overflow: visible;
}

.title-box-EN {
  position: relative;

  color: #04183B;
  text-align: center;
  font-size: clamp(10px, 3vw, 50px);
  font-weight: bold;
  
  opacity: 0;
  transform: translate(0%, 40%);
  animation: floatUp 1.2s ease-out forwards;
  animation-delay: 0.3s; /* 遅延をつけて自然な湧き出し感 */
}

.title-box-JP {
  position: relative;

  color: #04183B;
  text-align: center;
  font-size: clamp(6px, 2vw, 20px);
  font-weight:bold
  
  transform: translate(0%, 40%);
  opacity: 0;
  animation: floatUp 1.2s ease-out forwards;
  animation-delay: 0.3s; /* 遅延をつけて自然な湧き出し感 */
}

@keyframes floatUp {
  0% {
    opacity: 0;
  transform: translate(0%, 80%);
  }
  100% {
    opacity: 1;
  transform: translate(0%, 40%);
  }
}

.sub-title-container {
  background-color: none;
  max-width: 100vw;
  height: 7vw;
  margin-bottom: 1vw;
}

.sub-title-box-EN {
  position: relative;
  transform: translate(0%, 50%);
  color: #04183B;
  text-align: center;
  font-size: clamp(10px, 3vw, 30px);
  font-weight: bold;
}

.sub-title-box-JP {
  position: relative;
  transform: translate(0%, 50%);
  color: #04183B;
  text-align: center;
  font-size: clamp(6px, 2vw, 30px);
  font-weight:bold
}


.title-overay-path {
  position:relative;
  transform: translate(20%, 100%);
  color: #04183B;
  text-align: left;
  font-size: clamp(6px, 2vw, 10px);
  font-weight:bold
}

.contents-container {
  position:relative;
  /* -- border: 1px solid #CCC; */
  left: 20vw;
  max-width: 60vw;
  height: auto;
}

.contents-title-box {
  position:relative;
  color: #04183B;
  text-align: left;
  height: auto;
  font-size: clamp(8px, 2vw, 30px);
}

.contents-text-box {
  position:relative;
  color: #04183B;
  text-align: left;
  height: auto;
  font-size: clamp(8px, 2vw, 30px);
}



.image-container1 {  
  position: relative;
  width: 100%; /* 画像の幅に合わせて調整 */
  transition: filter 0.3s ease; /* スムーズな変化 */
}

.company-summary-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  /* 必要なら中央揃え */
}

.company-summary-box {
  background-color: none;
  padding-top:0.5vm;
  padding-bottom: 0.5vm;
  font-size: clamp(4px, 2vw, 30px);
  border: none none;
}

.company-summary-box.left {
  flex: 0 0 calc(30% - 1rem);  /* 2列に分ける */
  text-align: center;
}

.company-summary-box.right {
  flex: 0 0 calc(60% - 1rem);  /* 2列に分ける */
  text-align: center;
}

.statement-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap:0; padding:0; margin:0 auto;
  width: 60vw;
  justify-content: center;  /* 必要なら中央揃え */
  align-items: stretch; /* 子要素の高さを親に合わせる */
}

.statement-box {
  gap:0; padding:0; margin:0;
  width: 57vw;
  text-align: left;
  font-size: clamp(0.7vw, 1.4vw, 2.5vw);
}
.statement-box.preface {
  width: 60vw;
}

.statement-box.num {
  width: 3vw;
}

