
/* Hero Container */
.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 20px;
}

/* Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
}
.cho_product-box a{
	text-decoration: underline;
}
/* Content */
.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
}

/* Title */
.hero-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 1.6px;
}

/* Tablet Small (640px and up) */
@media (min-width: 640px) {
    .hero-container {
        min-height: 500px;
        padding: 64px 32px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 56px;
        letter-spacing: 2px;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .hero-container {
        padding: 80px 64px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 64px;
        letter-spacing: 2.4px;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .hero-container {
        min-height: 600px;
        padding: 96px 96px;
    }

    .hero-title {
        font-size: 58.989px;
        line-height: 80px;
        letter-spacing: 2.9494px;
    }
}

/* Desktop XL (1280px and up) */
@media (min-width: 1280px) {
    .hero-container {
        padding: 96px 162px;
    }
}

	/* コンテナ */
	.why_container {
	  width: 100%;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  padding: 90px 0 80px 0;
	  gap: 40px;
	}

	.why_content-wrapper {
	  width: 1106px;
	  max-width: 100%;
	  display: flex;
	  flex-direction: column;
	  gap: 40px;
	}

	/* 説明文セクション */
	.why_description-section {
	  font-family: 'Noto Sans JP', sans-serif;
	  font-weight: 500;
	  color: #333;
	  letter-spacing: 0.8px;
	}

	.why_main-title {
	  font-family: 'Noto Sans JP', sans-serif;
	  font-weight: 700;
	  font-size: 32px;
	  line-height: 50px;
	  color: #22448b;
	  margin-bottom: 0;
	}

	.why_spacer {
	  font-size: 24px;
	  line-height: 40px;
	  margin-bottom: 0;
	}

	.why_description-text {
	  font-size: 20px;
	  line-height: 40px;
	  margin-bottom: 0;
	}

	/* 競合比較表セクション */
	.why_comparison-section {
	  display: flex;
	  flex-direction: column;
	  gap: 10px;
	}

	.why_section-title {
	  font-family: 'Noto Sans JP', sans-serif;
	  font-weight: 700;
	  font-size: 24px;
	  line-height: 40px;
	  letter-spacing: 0.8px;
	  color: #000;
	  margin: 0;
	}

	/* テーブルラッパー */
	.why_table-wrapper {
	  background-color: white;
	  border: 1px solid #dce9fc;
	  position: relative;
	}

	.why_comparison-table {
	  display: flex;
	  flex-direction: column;
	  width: 100%;
	}

	/* テーブル行 */
	.why_table-row {
	  display: flex;
	  width: 100%;
	}

	.why_table-row:not(:last-child) {
	  border-bottom: 1px solid #f0f0f0;
	}

	/* テーブルセル */
	.why_table-cell {
	  position: relative;
	  flex: 1;
	  min-width: 0;
	}

	.why_table-cell:not(:last-child) {
	  border-right: 1px solid #f0f0f0;
	}

	/* タイトルセル（空の左上セル） */
	.why_title-cell {
	  flex: 0 0 205px;
	  width: 205px;
	  background-color: #22448b;
	  height: 62px;
	}

	/* ヘッダーセル */
	.why_header-cell {
	  background-color: #22448b;
	  height: 62px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 16px 20px;
	  font-family: 'Inter', 'Noto Sans JP', sans-serif;
	  font-weight: 700;
	  font-size: 22px;
	  color: white;
	  text-align: center;
	}

	/* カテゴリセル（左列） */
	.why_category-cell {
	  flex: 0 0 205px;
	  width: 205px;
	  background: linear-gradient(90deg, #f0f0f0 0%, #f0f0f0 100%);
	  height: 120px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 20px 0;
	}

	.why_category-cell.why_tall-cell {
	  height: 140px;
	}

	.why_category-cell .why_cell-content {
	  padding: 0 16px;
	  width: 100%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}

	.why_category-text {
	  font-family: 'Inter', 'Noto Sans JP', sans-serif;
	  font-weight: 700;
	  font-size: 18px;
	  line-height: normal;
	  color: rgba(0, 0, 0, 0.88);
	  text-align: center;
	  margin: 0;
	}

	/* データセル */
	.why_data-cell {
	  background-color: white;
	  height: 120px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 20px 0;
	}

	.why_data-cell.why_tall-cell {
	  height: 141px;
	}

	/* 弊社列の背景色 */
	.why_table-row:not(.why_header-row) .why_table-cell:nth-child(1) {
	  background-color: #dce9fc;
	}

	/* セルコンテンツ */
	.why_cell-content {
	  width: 100%;
	  height: 100%;
	  display: flex;
	  flex-direction: column;
	  align-items: flex-start;
	  justify-content: center;
	}

	.why_cell-content.why_centered {
	  align-items: center;
	  padding: 0 16px;
	  gap: 0;
	}

	/* アイコン */
	.why_check-icon {
	  width: 55px;
	  height: 55px;
	  flex-shrink: 0;
	  margin-bottom: 0;
	}

	.why_check-icon svg {
	  display: block;
	  width: 100%;
	  height: 100%;
	}

	.why_warning-icon {
	  width: 41px;
	  height: 35px;
	  flex-shrink: 0;
	  margin-bottom: 8px;
	}

	.why_warning-icon svg {
	  display: block;
	  width: 100%;
	  height: 100%;
	}

	/* データテキスト */
	.why_data-text {
	  font-family: 'Inter', 'Noto Sans JP', sans-serif;
	  font-weight: 400;
	  font-size: 16px;
	  line-height: normal;
	  color: rgba(0, 0, 0, 0.88);
	  text-align: center;
	  margin: 0;
	  width: 100%;
	}

	.why_data-text.why_single-line {
	  line-height: 18px;
	}

	/* レスポンシブデザイン */
	@media (max-width: 1200px) {
	  .why_content-wrapper {
		width: 95%;
		padding: 0 20px;
	  }
	}

	@media (max-width: 768px) {
	  .why_container {
		padding: 40px 0;
	  }

	  .why_main-title {
		font-size: 24px;
		line-height: 38px;
	  }

	  .why_description-text {
		font-size: 16px;
		line-height: 32px;
	  }

	  .why_section-title {
		font-size: 20px;
	  }

	  .why_comparison-table {
		overflow-x: auto;
	  }

	  .why_table-row {
		min-width: 800px;
	  }

	  .why_title-cell,
	  .why_category-cell {
		flex: 0 0 150px;
		width: 150px;
	  }

	  .why_header-cell {
		font-size: 18px;
		padding: 12px 16px;
	  }

	  .why_category-text {
		font-size: 16px;
	  }

	  .why_data-text {
		font-size: 14px;
	  }

	  .why_check-icon {
		width: 45px;
		height: 45px;
	  }

	  .why_warning-icon {
		width: 35px;
		height: 30px;
	  }
	}


/* Container */
.cho_container {
    max-width: 1116px;
    margin: 0 auto;
    padding: 0 20px;
}



	/* Hero Section - ティー・アイ・トレーディングの強み */
	.cho_hero-section {
		background-color: #22448b;
		padding: 90px 0;
	}

	.cho_hero-title {
		font-size: 40px;
		font-weight: 700;
		color: #f4f8ff;
		text-align: center;
		letter-spacing: 2px;
		margin-bottom: 80px;
	}

	/* Cards Grid */
	.cho_cards-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}

	.cho_card {
		background-color: white;
		border: 1px solid #1a73e8;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-bottom: 27px;
		min-height: 362px;
	}

	.cho_card-icon {
		width: 90px;
		height: 90px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 27px;
		margin-bottom: 10px;
	}

	.cho_card-icon svg {
		width: 100%;
		height: 100%;
	}

	.cho_card-content {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: top;
		padding: 0 40px;
		text-align: center;
	}

	.cho_card-title {
		font-size: 20px;
		font-weight: 700;
		line-height: 32px;
		color: #111;
		margin-bottom: 10px;
	}

	.cho_card-text {
		font-size: 15px;
		font-weight: 400;
		line-height: 28px;
		color: #333;
	}

	/* Safety Standard Section */
	.cho_safety-standard-section {
		padding: 110px 0;
		background-color: #fff;
	}

	.cho_section-title {
		font-size: 40px;
		font-weight: 700;
		color: #22448b;
		text-align: center;
		letter-spacing: 2px;
		margin-bottom: 80px;
	}

	.cho_intro-text {
		margin-bottom: 60px;
	}

	.cho_intro-text p {
		font-size: 20px;
		font-weight: 400;
		line-height: 30px;
		color: #000;
		margin-bottom: 20px;
	}

	.cho_highlight-text {
		font-size: 22px;
		font-weight: 700;
		line-height: 40px;
	}

	/* Button Group */
	.cho_button-group {
		display: flex;
		gap: 23px;
		margin: 60px 0;
		justify-content: center;
	}

	.cho_btn {
		padding: 22px;
		border-radius: 4px;
		font-size: 18px;
		font-weight: 600;
		letter-spacing: 0.8px;
		color: white;
		display: inline-block;
		transition: opacity 0.3s;
	}

	.cho_btn:hover {
		opacity: 0.9;
	}

	.cho_btn-primary {
		background-color: #da401c;
		padding: 22px 71px;
	}

	.cho_btn-secondary {
		background-color: #e56a23;
		padding: 22px 53px;
	}

	/* Table Wrapper */
	.cho_table-wrapper {
		position: relative;
		margin: 97px 0;
	}

	.cho_table-main-title {
		font-size: 24px;
		font-weight: 700;
		color: #000;
		text-align: center;
		letter-spacing: 0.8px;
		line-height: 40px;
		margin-bottom: 110px;
	}

	.cho_table-container {
		position: relative;
		border: 1px solid #dce9fc;
		overflow-x: auto;
	}

	/* Standards Table */
	.cho_standards-table {
		width: 100%;
		border-collapse: collapse;
		background-color: white;
	}

	.cho_standards-table th,
	.cho_standards-table td {
		border-right: 1px solid #f0f0f0;
		border-bottom: 1px solid #f0f0f0;
		text-align: center;
		vertical-align: middle;
	}

	.cho_header-cell {
		background-color: #22448b;
		color: white;
		height: 62px;
		font-size: 18px;
		font-weight: 700;
		padding: 16px;
	}

	.cho_header-company {
		font-size: 22px;
	}

	.cho_label-cell {
		background-color:#22448b;
		height: 120px;
		font-size: 18px;
		font-weight: 700;
		color: #FFF;
		padding: 20px 16px;
		width: 205px;
	}

	.cho_data-cell {
		background-color: white;
		height: 120px;
		font-size: 16px;
		font-weight: 400;
		color: rgba(0, 0, 0, 0.88);
		padding: 20px 16px;
		line-height: normal;
	}

	.cho_cert-logo {
		margin: 0 auto;
		max-height: 88px;
	}

	/* Table Overlay Boxes */
	.cho_table-overlay-box {
		position: absolute;
		pointer-events: none;
	}

	.cho_table-overlay-red {
		border: 6px solid #da401c;
		top: 68px;
		left: calc(20% - 12px);
		width: calc(60% - 8px);
		height:576px;
	}

	.cho_table-overlay-orange {
		border: 6px solid #e56a23;
		top: 68px;
		right: 0;
		width: 234px;
		height:576px;
	}

	/* Table Labels */
	.cho_table-label {
		position: absolute;
		font-size: 20px;
		font-weight: 700;
		letter-spacing: 0.8px;
		line-height: 40px;
	}

	.cho_table-label-red {
		color: #da401c;
		top: 110px;
		left: 50%;
		transform: translate(-50%, -50%);
		white-space: nowrap;
	}

	.cho_table-label-orange {
		color: #e56a23;
		top: 90px;
		right: 0;
		width: 228px;
		text-align: center;
		line-height: 24px;
	}

	/* Standards Details */
	.cho_standards-details {
		display: flex;
		flex-direction: column;
		gap: 21px;
	}

	.cho_standard-section {
		display: flex;
		flex-direction: column;
		gap: 20px;
		padding-top: 20px;
	}

	.cho_standard-title {
		font-size: 24px;
		font-weight: 700;
		line-height: 30px;
		color: #000;
	}

	.cho_divider-line {
		width: 100%;
		height: 1px;
		background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyMCIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgMTkyMCA4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjgiIGZpbGw9IiNkZGQiLz48L3N2Zz4=') repeat-x;
		background-size: contain;
	}

	.cho_standard-text p {
		font-size: 18px;
		font-weight: 400;
		line-height: 30px;
		color: #000;
		margin-bottom: 15px;
	}

	/* Product Box */
	.cho_product-box {
		background-color: #eef3ff;
		padding: 20px;
	}

	.cho_product-title {
		font-size: 18px;
		font-weight: 700;
		color: #22448b;
		line-height: 28px;
		letter-spacing: 0.9px;
		margin-bottom: 10px;
	}

	.cho_product-box p {
		font-size: 18px;
		font-weight: 400;
		line-height: 32px;
		color: #000;
		margin: 0;
	}

	.cho_note-text {
		font-size: 20px;
		line-height: 30px;
		color: #000;
		margin-top: 22px;
	}

	.cho_note-text a {
		color: #000;
		text-decoration: underline;
	}

	/* CTA Section */
	.cho_cta-section {
		background-color: #22448b;
		padding: 80px 0;
	}

	.cho_cta-content {
		text-align: center;
		color: white;
	}

	.cho_cta-title {
		font-size: 24px;
		font-weight: 700;
		line-height: 30px;
		margin-bottom: 20px;
		color: #FFF !important;
	}
main h3::after{
	display: none !important;
}
	.cho_cta-text {
		font-size: 20px;
		font-weight: 400;
		line-height: 30px;
		margin-bottom: 30px;
	}

	.cho_btn-cta {
		display: inline-flex;
		align-items: center;
		gap: 14px;
		background-color: #da401c;
		color: white;
		padding: 22px 71px;
		border-radius: 4px;
		font-size: 18px;
		font-weight: 600;
		letter-spacing: 0.8px;
		transition: opacity 0.3s;
	}

	.cho_btn-cta:hover {
		opacity: 0.9;
	}

	.cho_mail-icon {
		width: 22px;
		height: 22px;
	}

	/* Responsive Design */
	@media (max-width: 1200px) {
		.cho_container {
			max-width: 960px;
		}
		
		.cho_table-overlay-red {
			left: calc(18% + 20px);
			width: 60%;
		}
		
		.cho_table-overlay-orange {
			width: 20%;
		}
	}

	@media (max-width: 992px) {
		.cho_container {
			max-width: 720px;
		}
		
		.cho_hero-title {
			font-size: 32px;
			margin-bottom: 60px;
		}
		
		.cho_cards-grid {
			grid-template-columns: 1fr;
			gap: 30px;
		}
		
		.cho_card {
			max-width: 500px;
			margin: 0 auto;
		}
		
		.cho_section-title {
			font-size: 32px;
			margin-bottom: 60px;
		}
		
		.cho_intro-text p {
			font-size: 18px;
		}
		
		.cho_highlight-text {
			font-size: 20px;
		}
		
		.cho_button-group {
			flex-direction: column;
			align-items: center;
			gap: 20px;
		}
		
		.cho_btn-primary,
		.cho_btn-secondary {
			width: 100%;
			max-width: 400px;
			text-align: center;
		}
		
		.cho_table-container {
			overflow-x: scroll;
		}
		
		.cho_standards-table {
			min-width: 800px;
		}
		
		.cho_table-overlay-red,
		.cho_table-overlay-orange {
			display: none;
		}
		.cho_table-label-red{
			padding-top: 20px;
		}
		.cho_table-label-red,
		.cho_table-label-orange {
			position: static;
			transform: none;
			width: 100%;
			text-align: center;
			margin: 0 0 20px;
			font-size: 16px;
			line-height: 1;
		}
		tr .cho_header-company{
			background-color: #e56a23;
		}
		tr .cho_header-company:last-of-type{
			background-color: #da401c;
		}
		.cho_standard-text p {
			font-size: 16px;
		}
		
		.cho_cta-title {
			font-size: 20px;
		}
		
		.cho_cta-text {
			font-size: 18px;
		}
	}

	@media (max-width: 768px) {
		.cho_container {
			max-width: 540px;
		}
		
		.cho_hero-section {
			padding: 60px 0;
		}
		
		.cho_hero-title {
			font-size: 28px;
			margin-bottom: 40px;
			letter-spacing: 1px;
		}
		
		.cho_card {
			padding-bottom: 20px;
			min-height: auto;
		}
		
		.cho_card-icon {
			width: 70px;
			height: 70px;
			margin-top: 20px;
		}
		
		.cho_card-content {
			padding: 0 30px;
		}
		
		.cho_card-title {
			font-size: 18px;
			line-height: 28px;
		}
		
		.cho_card-text {
			font-size: 14px;
			line-height: 24px;
		}
		
		.cho_safety-standard-section {
			padding: 80px 0;
		}
		
		.cho_section-title {
			font-size: 28px;
			margin-bottom: 40px;
			letter-spacing: 1px;
		}
		
		.cho_intro-text {
			margin-bottom: 40px;
		}
		
		.cho_intro-text p {
			font-size: 16px;
			line-height: 26px;
		}
		
		.cho_highlight-text {
			font-size: 18px;
			line-height: 32px;
		}
		
		.cho_button-group {
			margin: 40px 0;
		}
		
		.cho_btn {
			font-size: 16px;
			padding: 18px 40px;
		}
		
		.cho_table-wrapper {
			margin: 60px 0;
		}
		
		.cho_table-main-title {
			font-size: 20px;
			margin-bottom: 0px;
			line-height: 32px;
		}
		
		.cho_standards-table {
			font-size: 14px;
		}
		
		.cho_header-cell {
			font-size: 16px;
			padding: 12px 8px;
		}
		
		.cho_header-company {
			font-size: 18px;
		}
		
		.cho_label-cell {
			font-size: 16px;
			padding: 15px 12px;
		}
		
		.cho_data-cell {
			font-size: 14px;
			padding: 15px 12px;
		}
		
		.cho_standard-title {
			font-size: 20px;
		}
		
		.cho_standard-text p {
			font-size: 15px;
			line-height: 26px;
		}
		
		.cho_product-box {
			padding: 15px;
		}
		
		.cho_product-title {
			font-size: 16px;
			line-height: 24px;
		}
		
		.cho_product-box p {
			font-size: 15px;
			line-height: 26px;
		}
		
		.cho_note-text {
			font-size: 16px;
			line-height: 26px;
		}
		
		.cho_cta-section {
			padding: 60px 0;
		}
		
		.cho_cta-title {
			font-size: 18px;
			line-height: 26px;
		}
		
		.cho_cta-text {
			font-size: 16px;
			line-height: 26px;
		}
		
		.cho_btn-cta {
			padding: 18px 40px;
			font-size: 16px;
		}
	}

	@media (max-width: 576px) {
		.cho_container {
			padding: 0 15px;
		}
		
		.cho_hero-title {
			font-size: 24px;
			line-height: 1.4;
		}
		
		.cho_cards-grid {
			gap: 20px;
		}
		
		.cho_card-content {
			padding: 0 20px;
		}
		
		.cho_section-title {
			font-size: 24px;
			line-height: 1.4;
		}
		
		.cho_intro-text p {
			font-size: 14px;
			line-height: 24px;
		}
		
		.cho_highlight-text {
			font-size: 16px;
			line-height: 28px;
		}
		
		.cho_btn-primary,
		.cho_btn-secondary {
			padding: 16px 30px;
			font-size: 14px;
		}
		
		.cho_table-main-title {
			font-size: 18px;
			line-height: 28px;
			margin-bottom: 30px;
		}
		
		.cho_standards-table {
			min-width: 700px;
			font-size: 12px;
		}
		
		.cho_header-cell {
			font-size: 14px;
			height: 50px;
		}
		
		.cho_header-company {
			font-size: 16px;
		}
		
		.cho_label-cell {
			font-size: 14px;
			height: 100px;
			width: 160px;
		}
		
		.cho_data-cell {
			font-size: 12px;
			height: 100px;
		}
		
		.cho_cert-logo {
			max-height: 60px;
			max-width: 80px;
		}
		
		.cho_standard-title {
			font-size: 18px;
			line-height: 26px;
		}
		
		.cho_standard-text p {
			font-size: 14px;
			line-height: 24px;
		}
		
		.cho_product-title {
			font-size: 15px;
		}
		
		.cho_product-box p {
			font-size: 13px;
			line-height: 22px;
			word-break: break-all;
		}
		
		.cho_note-text {
			font-size: 14px;
			line-height: 22px;
			word-break: break-all;
		}
		
		.cho_cta-title {
			font-size: 16px;
			line-height: 24px;
		}
		
		.cho_cta-text {
			font-size: 14px;
			line-height: 24px;
		}
		
		.cho_btn-cta {
			padding: 16px 30px;
			font-size: 14px;
			gap: 10px;
		}
		
		.cho_mail-icon {
			width: 18px;
			height: 18px;
		}
	}

