@charset "UTF-8";

/* # =================================================================
# ress css
# ================================================================= */
html {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	word-break: normal;
	-moz-tab-size: 4;
	tab-size: 4;
}

*,
::before,
::after {
	background-repeat: no-repeat;
	box-sizing: inherit;
}

::before,
::after {
	text-decoration: inherit;
	vertical-align: inherit;
}

* {
	padding: 0;
	margin: 0;
}

/* #=================================================================
# General elements
# ================================================================= */
hr {
	overflow: visible;
	/* Show the overflow in Edge and IE */
	height: 0;
	/* Add the correct box sizing in Firefox */
}

details,
main {
	display: block;
	/* Render the `main` element consistently in IE. */
}

summary {
	display: list-item;
	/* Add the correct display in all browsers */
}

small {
	font-size: 80%;
	/* Set font-size to 80% in `small` elements */
}

[hidden] {
	display: none;
	/* Add the correct display in IE */
}

abbr[title] {
	border-bottom: none;
	/* Remove the bottom border in Chrome 57 */
	text-decoration: underline;
	text-decoration: underline dotted;
}

a {
	background-color: transparent;
	/* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
	outline-width: 0;
	/* Remove the outline when hovering in all browsers */
}

/* # =================================================================
# Specify media element style
# ================================================================= */
img {
	border-style: none;
}

progress {
	vertical-align: baseline;
}

svg:not([fill]) {
	fill: currentColor;
}

/* # =================================================================
# Accessibility
# ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
	[hidden~="screen"] {
		display: inherit;
	}

	[hidden~="screen"]:not(:active):not(:focus):not(:target) {
		position: absolute !important;
		clip: rect(0 0 0 0) !important;
	}
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
	cursor: progress;
}

[aria-controls] {
	cursor: pointer;
}

[aria-disabled] {
	cursor: default;
}

/* 追記 */
ul,
li {
	list-style-type: none;
}

li {
	box-sizing: border-box;
}

button:focus {
	outline: 0;
}

/* =======================================================================================
	レイアウト
======================================================================================= */
* {
	box-sizing: border-box;
}

html {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	color: #fff;
	font-weight: 400;
	line-height: 1.8;
	overflow: hidden;
	overflow-y: scroll;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	min-width: 1120px;
	max-width: 1920px;
	margin: 0 auto;
	overflow-x: hidden;
	position: relative;
	-webkit-text-size-adjust: 100%;
	background-color: #111;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: linear-gradient(to right,
			rgba(255, 255, 255, 0.08) 0px, rgba(255, 255, 255, 0.08) 1px,
			transparent 1px, transparent 279px,
			rgba(255, 255, 255, 0.08) 279px, rgba(255, 255, 255, 0.08) 280px,
			transparent 280px, transparent 559px,
			rgba(255, 255, 255, 0.08) 559px, rgba(255, 255, 255, 0.08) 560px,
			transparent 560px, transparent 839px,
			rgba(255, 255, 255, 0.08) 839px, rgba(255, 255, 255, 0.08) 840px,
			transparent 840px, transparent 1119px,
			rgba(255, 255, 255, 0.08) 1119px, rgba(255, 255, 255, 0.08) 1120px);
	background-size: 1120px 100%;
	background-position: center top;
	background-repeat: no-repeat;
	pointer-events: none;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

body,
p,
li,
dt,
dd,
tr,
th {
	font-size: 16px;
	line-break: strict;
	word-break: break-all;
	word-wrap: break-word;
}

p {
	line-height: 2;
}

h1,
h2,
h3,
h4,
h5 {
	line-height: 150%;
}

a {
	text-decoration: none;
}

@font-face {
	font-display: swap;
	font-family: 'Barlow Condensed';
	font-style: normal;
	font-weight: 400;
	src: url('../../assets/fonts/barlow-condensed-v13-latin-regular.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Barlow Condensed';
	font-style: normal;
	font-weight: 600;
	src: url('../../assets/fonts/barlow-condensed-v13-latin-600.woff2') format('woff2');
}

/* roboto-regular */
@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../../assets/fonts/roboto-v51-latin-regular.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 600;
	src: url('../../assets/fonts/roboto-v51-latin-600.woff2') format('woff2');
}

/* TB */
@media screen and (max-width: 1119px) {
	body {
		min-width: auto;
		font-size: 14px
	}

	body,
	p,
	li,
	dt,
	dd,
	tr,
	th {
		font-size: 14px;
	}
}

@media screen and (max-width: 767px) {
	body {
		font-size: 14px;
		min-width: 429px;
	}

	body,
	p,
	li,
	dt,
	dd,
	tr,
	th {
		font-size: 14px;
	}

	img {
		width: 100%;
	}
}

/* =======================================================================================
	main
======================================================================================= */
/* レイアウト
====================================================== */
.inner {
	width: 1120px;
	margin: 0 auto;
}

@media screen and (max-width: 1119px) {
	.inner {
		width: calc(100% - 60px);
		margin: 0 auto;
	}
}

@media screen and (max-width: 919px) {
	.inner {
		width: calc(100% - 20px);
		margin: 0 auto;
	}

	.sp-new-line {
		display: block;
	}
}

/* color
====================================================== */
:root {
	--color-main: #9600FF;
	--color-sub: #4B34BE;
	--color-black: #000;
	--color-dark: #111;
	--color-gray: #333;
	--color-white: #fff;
	--gladent: linear-gradient(to top right, #9600FF 0%, #CC00FF 47%, #ED00FF 81%, #FA00FF 100%);
}

/* header
====================================================== */
.echack-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: background 0.3s;
}

.echack-header-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1120px;
	margin: 0 auto;
}

/* ロゴ */
.echack-logo {
	display: flex;
	align-items: center;
	padding: 25px 0px 0;
	flex-shrink: 0;
	transition: padding 0.3s;
}

.echack-logo img {
	width: 170px;
	transition: width 0.3s;
}

/* スクロール後：背景＋ロゴ縮小 */
.echack-header.is-scrolled {
	background: var(--gladent);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.echack-header.is-scrolled .echack-logo {
	padding: 6px 20px 6px 5px;
}

.echack-header.is-scrolled .echack-logo img {
	width: 126px;
}

/* ナビリスト */
.echack-header-nav-list {
	display: flex;
	align-items: center;
	list-style: none;
	background: rgba(0, 0, 0, 1);
	padding: 0 4px;
	gap: 4px;
	margin-left: auto;
	border-radius: 5px;
}

.echack-header-nav-item a {
	display: block;
	width: 150px;
	padding: 8px 8px;
	margin: 4px 0;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
	transition: color 0.2s;
}

@media (hover: hover) {
	.echack-header-nav-item a:hover {
		background: #fff;
		color: #111;
		border-radius: 4px;
	}
}

/* ドロップダウン */
.echack-header-nav-item.has-dropdown {
	position: relative;
}

/* トグルボタン（PC非表示） */
.echack-dropdown-toggle {
	display: none;
}

.echack-header-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 150px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
	list-style: none;
	padding: 6px 6px;
	z-index: 200;
	white-space: nowrap;
}

@media (hover: hover) and (min-width: 1130px) {
	.echack-header-nav-item.has-dropdown:hover .echack-header-dropdown {
		display: block;
	}
}

.echack-header-dropdown li a {
	display: block;
	width: auto;
	padding: 5px 10px 5px 2px;
	margin: 0;
	color: #111;
	font-size: 13px;
	font-weight: 500;
	text-align: left;
	border-radius: 0;
	background: none;
	transition: background 0.15s;
}

.echack-header-dropdown li a::before {
	content: '・';
	font-size: 12px;
}

.echack-header-dropdown li a:hover {
	background: #000;
	color: #fff;
	border-radius: 0;
}

/* ハンバーガーボタン（PC非表示） */
.echack-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: none;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	margin: auto 5px;
}

.echack-hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

/* ハンバーガー × アニメーション */
.echack-hamburger.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.echack-hamburger.is-open span:nth-child(2) {
	opacity: 0;
}

.echack-hamburger.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media only screen and (max-width: 1129px) {
	.echack-logo {
		padding: 10px 10px 0;
	}

	/* ハンバーガー表示 */
	.echack-hamburger {
		display: flex;
		margin-top: 5px;
	}

	/* ナビリストをドロワーに */
	.echack-header-nav-list {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
		background: #000;
	}

	.echack-header-nav-list.is-open {
		display: flex;
		min-height: 100vh;
		overflow-y: auto;
	}

	.echack-header-nav-item a {
		width: 100%;
		margin: auto;
		padding: 16px 24px;
		text-align: left;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		font-size: 15px;
	}

	.echack-header-nav-item:first-child a {
		background: none;
		color: #fff;
		border-radius: 0;
	}

	.echack-header-nav-item:first-child a:hover {
		color: #CC00FF;
	}

	/* モバイル：has-dropdownのaを右にスペース確保 */
	.echack-header-nav-item.has-dropdown {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.echack-header-nav-item.has-dropdown>a {
		flex: 1;
		border-bottom: none;
	}

	/* トグルボタン表示 */
	.echack-dropdown-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 48px;
		background: none;
		border: none;
		color: #fff;
		font-size: 20px;
		cursor: pointer;
		flex-shrink: 0;
		transition: transform 0.2s;
	}

	.echack-header-nav-item.has-dropdown.is-open .echack-dropdown-toggle {
		transform: rotate(45deg);
	}

	/* モバイルのドロップダウン：デフォルト非表示、is-openで展開 */
	.echack-header-dropdown {
		display: none;
		width: 100%;
		position: static;
		transform: none;
		min-width: auto;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 0;
		box-shadow: none;
		padding: 0;
	}

	.echack-header-nav-item.has-dropdown.is-open .echack-header-dropdown {
		display: block;
	}

	.echack-header-dropdown::before {
		display: none;
	}

	.echack-header-dropdown li a {
		color: #ccc;
		padding: 12px 24px 12px 40px;
		font-size: 14px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	.echack-header-dropdown li a::before {
		content: '・';
	}

	.echack-header-dropdown li a:hover {
		background: rgba(204, 0, 255, 0.15);
		color: #CC00FF;
	}
}

@media (max-width: 767px) {
	.echack-logo img {
		width: 140px;
	}

	.echack-header.is-scrolled .echack-logo img {
		width: 100px;
	}
}

/* fv
====================================================== */
.fv {
	padding: 150px 0 100px;
	position: relative;
	color: #fff;
	background: url('../../assets/img/commerce_hack/fv.png') no-repeat center/cover;
}

.fv-content {
	width: 100%;
	max-width: 850px;
}

.fv-text-area {
	display: flex;
	align-items: center;
	gap: 40px;
}

.fv-ttl-area {
	flex: 1;
}

.fv-logo {
	flex-shrink: 0;
	width: 286px;
	display: block;
}

.fv-logo img {
	width: 100%;
}

.fv-ttl {
	text-align: left;
	font-size: 33px;
}

.fv-text {
	font-size: 30px;
	font-weight: 600;
	font-family: "Barlow Condensed", sans-serif;
}

@media (max-width: 919px) {
	.fv-text-area {
		gap: 20px;
		flex-direction: column;
	}

	.fv-ttl {
		font-size: 22px;
	}

	.fv-text {
		font-size: 22px;
	}

	.fv-content {
		width: calc(100% - 40px);
	}
}

/* 共通
====================================================== */
/* 余白 */
.read,
.top-contents,
.media {
	padding: 70px 0;
}

/* 改行 */
.pc-new-line {
	display: block;
}

/* ボタン　*/
.cmn-btn {
	display: inline-block;
	width: 100%;
	max-width: 170px;
	padding: 5px 20px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	background: var(--color-main);
	border-radius: 50px;
	position: relative;
}

.cmn-btn::before {
	content: '';
	width: 8px;
	height: 8px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.cmn-btn.attend {
	width: 100%;
	max-width: 250px;
	font-size: 16px;
}

.cmn-btn.attend::before {
	width: 10px;
	height: 10px;
	right: 15px;
}

@media only screen and (max-width: 991px) {

	.read,
	.top-contents,
	.media {
		padding: 50px 0;
	}
}

/* Pic UP
====================================================== */
.bg-section {
	background: #000;
	position: relative;
}

.pickup-content-area {
	display: grid;
	grid-template-columns: 1fr 550px;
	grid-template-areas:
		"ttl  img"
		"text img"
		"info img"
		"btn  img";
	gap: 15px 15px;
	margin-bottom: 50px;
}

.pickup-ttl-area {
	grid-area: ttl;
}

.pickup-content-text-area {
	grid-area: text;
}

.pickup-info-area {
	grid-area: info;
	align-self: start;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 2px;
	background: var(--color-gray);
	border-radius: 4px;
	overflow: hidden;
}

.cmn-btn.attend {
	grid-area: btn;
	align-self: start;
}

.pickup-img-area {
	grid-area: img;
	width: 550px;
	height: 310px;
	margin: 0;
}

.pickup-img-area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.pickup-ttl {
	padding: 10px 15px;
	font-size: 26px;
	font-weight: 600;
	color: var(--color-white);
	background: var(--color-gray);
	border-radius: 5px;
}

.pickup-ttl-ps {
	font-size: 20px;
}

.pickup-catch {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.8;
}

.pickup-desc {
	font-size: 14px;
	line-height: 1.6;
}

.pickup-info-ttl {
	padding: 4px 10px;
	background: var(--color-black);
	font-size: 18px;
	font-weight: normal;
	border-radius: 4px;
	color: var(--color-white);
}

.pickup-date {
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--color-white);
}

.pickup-fee {
	padding: 2px 10px;
	font-size: 14px;
	background: #1235B9;
	border-radius: 3px;
}

@media only screen and (max-width: 1119px) {
	.pickup-content-area {
		grid-template-columns: 1fr 450px;
	}

	.pickup-img-area {
		width: 450px;
		height: 250px;
	}

	.pickup-info-area {
		justify-content: center;
	}

	.pickup-date {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1029px) {
	.pickup-content-area {
		grid-template-columns: 1fr 390px;
	}

	.pickup-img-area {
		width: 390px;
		height: 220px;
	}
}

@media only screen and (max-width: 991px) {
	.pickup-content-area {
		display: flex;
		flex-direction: column;
	}

	.pickup-ttl-area {
		order: 0;
	}

	.pickup-ttl {
		text-align: center;
		font-size: 26px;
	}

	.pickup-ttl-ps {
		font-size: 20px;
	}

	.pickup-content-text-area {
		order: 1;
	}

	.pickup-catch {
		margin-bottom: 10px;
		font-size: 18px;
	}

	.pickup-desc {
		font-size: 14px;
	}

	.pickup-img-area {
		order: 2;
		width: 100%;
		height: auto;
	}

	.pickup-img-area img {
		height: auto;
	}

	.pickup-info-area {
		width: 100%;
		order: 3;
		gap: 10px;
	}

	.pickup-info-ttl {
		padding: 5px 2px;
		font-size: 10px;
	}

	.pickup-fee {
		padding: 2px 2px;
		font-size: 12px;
	}

	.pickup-date {
		font-size: 16px;
	}

	.cmn-btn.attend {
		order: 4;
		margin: auto;
	}
}

/* 近日の開催予定
====================================================== */
.schedule-content {
	padding: 30px 15px 15px;
	background: #111;
}

.schedule-ttl-area {
	margin-bottom: 24px;
}

.schedule-ttl {
	display: inline-block;
	padding: 5px 50px;
	font-size: 20px;
	font-weight: 600;
	color: var(--color-white);
	border-radius: 4px;
	background: #000;
}

.schedule-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.schedule-item {
	display: grid;
	grid-template-columns: 300px 1fr;
	grid-template-areas:
		"img body"
		"img btn";
	gap: 10px 10px;
	align-items: start;
}

.schedule-img-area {
	grid-area: img;
	width: 300px;
	height: 170px;
	margin: 0;
}

.schedule-img-area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
	display: block;
}

.schedule-item-body {
	grid-area: body;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

.schedule-item-catch {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
}

.schedule-info-area {
	padding: 5px;
	background: var(--color-gray);
	border-radius: 4px;
	overflow: hidden;
}

.schedule-info-ttl {
	padding: 4px 12px;
	background: var(--color-black);
	font-size: 11px;
	font-weight: normal;
	text-align: center;
	margin: 0 0 5px;
	color: var(--color-white);
}

.schedule-date {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	text-align: center;
	color: var(--color-white);
}

.schedule-item .cmn-btn {
	grid-area: btn;
	align-self: start;
	justify-self: start;
	font-size: 14px;
	max-width: 100%;
}

/* 少し狭いPC・タブレット */
@media only screen and (max-width: 1119px) {
	.schedule-img-area {
		width: 270px;
		height: 150px;
	}

	.schedule-list {
		grid-template-columns: 1fr;
	}
}

/* スマホ */
@media only screen and (max-width: 919px) {
	.schedule-content {
		padding: 20px 10px 20px;
	}

	.schedule-ttl {
		width: 100%;
		padding: 4px 0;
		text-align: center;
		font-size: 18px;
	}

	.schedule-item {
		grid-template-columns: 178px 1fr;
		grid-template-areas:
			"img body"
			"btn btn";
		gap: 10px 5px;
		align-items: end;
		margin-bottom: 15px;
	}

	.schedule-img-area {
		width: 178px;
		height: 100px;
	}

	.schedule-info-ttl {
		padding: 2px 10px;
		font-size: 9px;
	}

	.schedule-item-body {
		gap: 5px;
	}

	.schedule-date {
		text-align: center;
		font-size: 10px;
		line-height: 1;
	}

	.schedule-item .cmn-btn {
		justify-self: center;
		margin-top: 5px;
	}
}

/* コンテンツ配信　＆　テックメディア
====================================================== */
.top-contents-ttl-area {
	text-align: center;
	margin-bottom: 32px;
}

.top-contents-ttl {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 16px;
}

.top-contents-text {
	display: inline-block;
	font-size: 14px;
	line-height: 1.8;
}

.top-contents-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px 24px;
	padding: 0 6px;
	list-style: none;
}

.top-contents-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.top-contents-cat a {
	display: block;
	padding: 0 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	background: var(--color-sub);
	border-radius: 4px;
}

.top-contents-img {
	margin: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.top-contents-img img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	object-fit: cover;
}

.top-contents-catch {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	flex: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
}

.cmn-btn.watch {
	max-width: 170px;
	margin: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-weight: normal;
	text-align: center;
}

.cmn-btn .circle {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	position: relative;
}

.cmn-btn .circle::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	color: #000;
	line-height: 1;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent;
	border-width: 6px 8px;
	border-left-color: currentColor;
	border-right: 0;
	position: absolute;
	left: 7px;
	top: 4px;
}

.cmn-btn.watch::before {
	content: none;
}

.top-contents.media {
	background: #000;
	position: relative;
}

.top-contents.media .cmn-btn {
	margin: auto;
}

.btn-wrap {
	margin-top: 60px;
	text-align: center;
}

.cmn-btn.diff {
	display: inline-block;
	width: 100%;
	max-width: 250px;
	margin: auto;
	background: #000;
	border: solid 1px #fff;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	position: relative;
}

.cmn-btn.diff::before {
	width: 12px;
	height: 12px;
}

@media only screen and (max-width: 991px) {
	.top-contents-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px 24px;
	}

	.under-fv .cmn-btn.watch {
		display: flex;
	}

	.btn-wrap {
		margin-top: 40px;
	}
}

/* =======================================================================================
	下層 カテゴリーページ
=======================================================================================
/* 下層fv
====================================================== */
.under-fv {
	padding: 150px 0 100px;
	position: relative;
	color: #fff;
	background: url('../../assets/img/commerce_hack/fv_under.png') no-repeat center/cover;
}

.under-fv-text-area {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
	grid-template-areas:
		"heading video"
		"body video";
	align-items: start;
	gap: 10px 30px;
}

.under-fv-heading {
	grid-area: heading;
}

.under-fv-body {
	grid-area: body;
}

.under-fv-video {
	grid-area: video;
	width: 100%;
	max-width: 500px;
}

.under-fv-video video {
	width: 100%;
	aspect-ratio: 500 / 280;
	height: auto;
	object-fit: cover;
	display: block;
}

.under-fv-ttl {
	font-size: 40px;
}

.under-fv-ttl-sub {
	display: inline-block;
	margin-bottom: 10px;
	padding: 2px 10px;
	background: #000;
	color: #fff;
}

.under-fv-text {
	font-size: 18px;
	font-weight: 600;
}

.under-fv-desc {
	margin-bottom: 20px;
	font-size: 14px;
}

.under-fv .cmn-btn.watch {
	max-width: 210px;
	font-size: 17px;
}

@media only screen and (max-width: 1119px) {
	.under-fv-text-area {
		gap: 20px 15px;
	}
}

@media (max-width: 991px) {
	.under-fv {
		padding: 100px 0 70px;
	}

	.under-fv-text-area {
		grid-template-columns: 1fr;
		grid-template-areas:
			"heading"
			"video"
			"body";
		gap: 20px;
	}

	.under-fv-video {
		max-width: 100%;
	}

	.under-fv-ttl {
		font-size: 30px;
	}
}

/* 下層コンテンツ
====================================================== /* 

/* カテゴリページ
====================================================== */
.under-contents {
	padding: 70px 0;
	position: relative;
}

.under-contents-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 40px;
	padding: 0 6px;
}

.under-contents-item {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.under-contents-item h2 {
	font-size: 14px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}

.under-contents-desc {
	font-size: 12px;
	line-height: 1.6;
	flex: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
}

.under-contents-item figure {
	width: 100%;
	aspect-ratio: 350 / 194;
}

.under-contents-item img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	object-fit: cover;
	display: block;
}

.under-contents-btn {
	text-align: center;
}

/* ページャー */
.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin: 40px 0 0;
	list-style: none;
}

.page-numbers li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.page-numbers a.page-numbers,
.page-numbers span.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: 0.3s;
	color: rgba(255, 255, 255, 0.5);
}

/* 現在ページ */
.page-numbers span.page-numbers.current {
	color: #fff;
}

/* … の部分 */
.page-numbers .dots {
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	min-width: auto;
	padding: 0 4px;
}

@media only screen and (max-width: 1119px) {
	.under-contents-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 991px) {
	.under-contents {
		padding: 40px 0;
	}

	.under-contents-list {
		gap: 40px 20px;
	}

	.page-numbers {
		margin: 30px 0 0;
	}
}

/* テックメディアページ
====================================================== */
.media-fv {
	padding: 150px 0 100px;
	position: relative;
	color: #fff;
	background: url('../../assets/img/commerce_hack/fv_media.png') no-repeat center/cover;
}

.media-fv-ttl {
	font-size: 45px;
	text-align: center;
}

.media-fv-text {
	font-size: 18px;
	text-align: center;
}

/* テックメディア 一覧 */
.media-contents {
	background: #0a0a0a;
	color: #fff;
}

/* 厳選セレクション */
.media-pickup-slider {
	background: #000;
	padding: 20px 0 50px;
	width: 1200px;
	margin: 0 auto;
}

.media-pickup {
	padding: 50px 0 60px;
	overflow: hidden;
}

.media-pickup-header {
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 1280px;
	margin: 0 auto 24px;
	padding: 0 60px;
}

.media-pickup-ttl {
	font-size: 22px;
	font-weight: 600;
}

.media-pickup .cmn-btn {
	display: flex;
	justify-content: center;
	margin: auto;
	font-size: 17px;
}

.media-pickup-arrows {
	display: flex;
	gap: 8px;
	margin-left: auto;
}

.media-pickup-prev,
.media-pickup-next {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--color-main);
	background: #fff;
	cursor: pointer;
	position: relative;
	transition: background 0.2s;
}

.media-pickup-prev:hover,
.media-pickup-next:hover {
	background: #333;
}

.media-pickup-prev::before,
.media-pickup-next::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--color-main);
	border-right: 2px solid var(--color-main);
	position: absolute;
	top: 50%;
	left: 50%;
}

.media-pickup-prev::before {
	transform: translate(-30%, -50%) rotate(-135deg);
}

.media-pickup-next::before {
	transform: translate(-70%, -50%) rotate(45deg);
}

.media-pickup-slide {
	display: flex !important;
	gap: 32px;
	align-items: center;
	margin: 0 30px;
	padding: 24px;
	background: #000;
	border: solid 2px var(--color-sub);
	outline: none;
	transition: opacity 0.3s;
	opacity: 0.4;
}

.media-pickup-slide.slick-current {
	opacity: 1;
}

.slick-dots li.slick-active button:before {
	color: #fff !important;
}

.media-pickup-img {
	flex-shrink: 0;
	width: 380px;
	aspect-ratio: 16 / 9;
	margin: 0;
	overflow: hidden;
	border-radius: 6px;
}

.media-pickup-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-pickup-body {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.media-pickup-catch {
	height: 90px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
}

.media-pickup-text {
	height: 50px;
	font-size: 14px;
	line-height: 1.8;
	color: #ccc;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}

/* slick dots */
.media-pickup-slider .slick-dots {
	bottom: 15px;
}

.media-pickup-slider .slick-dots li button::before {
	color: #fff;
	font-size: 10px;
}

/* slick arrows */
.media-pickup-slider-wrap .slick-prev,
.media-pickup-slider-wrap .slick-next {
	z-index: 1;
	width: 36px;
	height: 36px;
}

.media-pickup-slider-wrap .slick-prev {
	left: -48px;
}

.media-pickup-slider-wrap .slick-next {
	right: -48px;
}

/* カテゴリナビ */
.media-cat-nav {
	position: sticky;
	top: 60px;
	/* ヘッダー高さに合わせて調整 */
	z-index: 100;
}

.media-cat-nav-list {
	display: flex;
	justify-content: space-around;
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: solid 1px var(--color-main);
	border-bottom: solid 1px var(--color-main);
}

.media-cat-nav-item a {
	display: block;
	padding: 16px 24px;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s;
	border-bottom: 3px solid transparent;
	position: relative;
}

.media-cat-nav-item a::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--color-main);
	border-right: 2px solid var(--color-main);
	position: absolute;
	top: 43%;
	right: 0;
	transform: translate(0, -50%) rotate(135deg);
}

.media-cat-nav-item a:hover,
.media-cat-nav-item a.is-active {
	color: #fff;
}

.media-cat-nav-arrow {
	font-size: 10px;
	margin-left: 4px;
}

/* カテゴリセクション */
.media-cat-section {
	padding: 60px 0;
}

.media-cat-section.diff-bg {
	background: #000;
	position: relative;
}

.media-cat-header {
	margin-bottom: 28px;
}

.media-cat-header-bottom {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
}

.media-cat-desc {
	flex: 1;
	font-size: 14px;
	line-height: 1.6;
}

.media-cat-ttl {
	font-size: 25px;
	font-weight: 700;
}

.media-cat-slider-wrap {
	margin-left: min(max(30px, calc((100vw - 1120px) / 2)), 400px);
	padding: 0 6px;
	overflow: hidden;
}

.media-cat-slider {
	width: 1120px;
}

.media-cat-slider .media-card {
	display: flex !important;
	flex-direction: column;
	gap: 10px;
	padding-right: 20px;
	outline: none;
}

.media-cat-arrows {
	display: flex;
	gap: 8px;
	margin-left: auto;
}

.media-cat-prev,
.media-cat-next {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--color-main);
	background: #fff;
	cursor: pointer;
	position: relative;
	transition: background 0.2s;
	flex-shrink: 0;
}

.media-cat-prev:hover,
.media-cat-next:hover {
	background: #333;
}

.media-cat-prev::before,
.media-cat-next::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--color-main);
	border-right: 2px solid var(--color-main);
	position: absolute;
	top: 50%;
	left: 50%;
}

.media-cat-prev::before {
	transform: translate(-30%, -50%) rotate(-135deg);
}

.media-cat-next::before {
	transform: translate(-70%, -50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
	.media-cat-header-bottom {
		margin: 15px auto;
	}
	.media-cat-desc {
		text-align: center;
	}
}

/* テックメディア カテゴリページ
====================================================== */
.media-category .media-category-btn {
	width: 100%;
}
.media-category .cmn-btn {
	background: #FA00FF;
	font-size: 17px;
	max-width: 210px;
	color: #fff;
}

.media-category .under-fv-ttl {
	font-size: 25px;
}

.category-name {
	font-size: 40px;
}

/* レスポンシブ */
@media only screen and (max-width: 1119px) {
	.media-pickup-slider {
		width: 1000px;
	}

	.media-pickup-img {
		width: 310px;
	}
}

@media only screen and (max-width: 991px) {
	.media-pickup {
		padding: 30px 0;
	}

	.media-pickup-slider {
		width: 100vw;
		min-width: 430px;
	}

	.media-pickup-slide {
		flex-direction: column;
		gap: 15px;
		margin: 0 10px;
		padding: 15px;
	}

	.media-pickup-img {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.media-pickup-body {
		gap: 5px;
	}

	.media-pickup-header {
		padding: 0 20px;
	}

	.media-cat-section {
		padding: 30px 0;
	}


	.media-pickup-catch {
		height: 40px;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		font-size: 12px;
	}

	.media-pickup-text {
		height: 30px;
		font-size: 9px;
	}

	.media-pickup-slider {
		padding: 15px 0 15px;
	}

	.media-pickup .cmn-btn {
		display: none;
	}

	.media-cat-nav-item a {
		padding: 12px 16px;
		font-size: 13px;
	}

	.media-cat-header {
		flex-direction: column;
		gap: 8px;
	}

	.media-pickup-slider .slick-dots {
		bottom: -30px;
	}

	.media-cat-slider-wrap {
		margin-left: 20px;
	}

	.media-cat-slider {
		width: auto;
	}

	.media-cat-ttl {
		text-align: center;
	}

	.media-cat-arrows {
		display: none;
	}

	.media-cat-section .cmn-btn {
		display: block;
		margin: auto;
	}

	.cmn-btn.diff {
		font-size: 14px;
	}
}
@media screen and (max-width: 767px) {
	.media-fv {
		padding: 100px 0 30px;
	}
	.media-category .media-category-btn {
		text-align: center;
	}
}

/* =======================================================================================
	共通
=======================================================================================
/* 資料ダウンロード
====================================================== */
.data-dl-ttl-area {
	text-align: center;
}

.data-dl-ttl {
	padding: 10px 0;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	background: var(--color-gray);
	position: relative;
}

.data-dl-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	padding: 0 6px;
	margin: 40px 0;
	list-style: none;
}

.data-dl-item {
	display: flex;
	gap: 20px;
	align-items: center;
}

.data-dl-img {
	flex-shrink: 0;
	width: 300px;
	height: 170px;
	position: relative;
	margin: 0;
}

.data-dl-img img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	object-fit: cover;
}

.data-dl-img-caption {
	position: absolute;
	bottom: 12px;
	left: 12px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.data-dl-body {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.data-dl-desc {
	font-size: 13px;
	line-height: 1.8;
}

.cmn-btn.dl {
	max-width: 200px;
	font-size: 12px;
}

@media only screen and (max-width: 1119px) {
	.data-dl-item {
		gap: 10px;
		flex-direction: column;
	}

	.cmn-btn.dl {
		margin: auto;
	}
}

@media only screen and (max-width: 991px) {
	.data-dl-img {
		width: 100%;
		height: auto;
	}
}

@media only screen and (max-width: 599px) {
	.data-dl-list {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* cv
====================================================== */
.cv {
	background: var(--gladent);
	position: relative;
}

.cv-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	padding: 40px 0;
}

.cv-text {
	font-size: 24px;
	font-weight: 600;
	color: #fff;
}

.cv-btn {
	display: inline-block;
	padding: 10px 70px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	background: #000;
	border-radius: 50px;
	border: 1px solid #fff;
	transition: opacity 0.2s;
}

.cv-btn:hover {
	opacity: 0.8;
}

@media only screen and (max-width: 991px) {
	.cv-content {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}

/* footer
====================================================== */
.echack-footer {
	background: #000;
	border-top: 2px solid;
	border-image: var(--gladent) 1;
	position: relative;
}

.echack-footer-content {
	display: flex;
	align-items: flex-start;
	gap: 60px;
	padding: 40px 0 24px;
}

.echack-footer-left {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.echack-footer-catch {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.8;
	color: #fff;
}

.echack-footer-logo {
	display: block;
	width: 160px;
}

.echack-footer-logo img {
	width: 100%;
}

.echack-footer-nav {
	display: flex;
	gap: 60px;
	flex: 1;
	justify-content: flex-end;
}

.echack-footer-nav-col {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.echack-footer-nav-col a {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s;
}

.echack-footer-nav-col a:hover {
	color: #CC00FF;
}

.echack-footer-nav-child a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

.echack-footer-bottom {
	padding: 16px 0;
	text-align: right;
}

.echack-footer-copy {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 991px) {
	.echack-footer-content {
		flex-direction: column;
		gap: 32px;
	}

	.echack-footer-nav {
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 32px;
	}

	.echack-footer-nav-col {
		width: 100%;
	}

	.echack-footer-left {
		flex-direction: column;
		align-items: flex-start;
	}
}





/* =======================================================================================
	追加css 固定ページ
======================================================================================= */

/* about FV：背景画像を上部固定 */
.fv--about {
	background-position: top center;
}

.about-read-desc {
	padding: 50px 0 50px;
	background: linear-gradient(90deg,
			#9600FF,
			#CC00FF,
			#ED00FF,
			#FA00FF);
	position: relative;
	z-index: 1;
	margin-top: -15px;
}

.about-read-desc-content {
	text-align: center;
	margin-bottom: 100px;
}

.about-read-desc-ttl {
	font-size: 30px;
	font-weight: bolder;
	margin-bottom: 30px;
}

.about-section-ttl {
	padding: 30px 0 20px;
	margin-bottom: 50px;
	background: #000;
	text-align: center;
	font-size: 30px;
	font-weight: bolder;
	position: relative;
	z-index: 1;
}

/* 運営会社 */
.about-intro {
	display: flex;
	padding: 80px 100px 70px;
	justify-content: center;
	border-radius: 10px;
	background: url(../../assets/img/commerce_hack/about_bg.png) no-repeat center center / cover;
	position: relative;
	z-index: 1;
}

.about-intro-logo {
	max-width: 254px;
	width: 100%;
	margin-left: 30px;
	text-align: center;
}

.about-intro-logo img {
	width: clamp(127px, 20vw, 254px);
	height: auto;
}

.about-intro-text {
	color: #333;
}

.about-intro-ttl {
	margin-bottom: 30px;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.3;
	font-size: clamp(28px, 2vw, 48px);
}

.about-intro-desc {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
	font-size: clamp(18px, 2vw, 20px);
}

/* REASON セクション */
.about-reason {
	padding: 80px 0;
}

.about-reason-head {
	margin-bottom: 70px;
}

.about-reason-label {
	display: inline-block;
	padding: 0 20px 0 1px;
	background: #0E5CCC;
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
	font-family: 'Barlow Condensed', sans-serif;
	margin-bottom: 20px;
	color: #fff;
	position: relative;
	z-index: 1;
}

.about-reason-ttl {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.5;
	position: relative;
	isolation: isolate;
}

.about-reason-ttl::before {
	content: 'Reason.1';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(90deg,
			#5A25BA 2%,
			#5440C9 11%,
			#0E5CCC 25%,
			#133EC2 36%,
			#1C13A3 54%,
			#0E5CCC 73%,
			#0096F2 84%,
			#00F9EC 95%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 150px;
	font-weight: 500;
	opacity: 0.05;
	z-index: -1;
}

.about-reason--r1 .about-reason-ttl::before {
	content: 'Reason.1';
}

.about-reason--r2 .about-reason-ttl::before {
	content: 'Reason.2';
}

.about-reason--r3 .about-reason-ttl::before {
	content: 'Reason.3';
}

.about-reason--r4 .about-reason-ttl::before {
	content: 'Reason.4';
}

/* 2カラムレイアウト */
.about-reason-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-reason-catch {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.7;
	margin-bottom: 60px;
}

.about-reason-img {
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
}

.about-reason-img img {
	border-radius: 8px;
}


/* レスポンシブ */
@media only screen and (max-width: 1119px) {
	.about-reason-ttl {
		font-size: 22px;
	}

	.about-reason-body {
		gap: 40px;
	}

	.about-data-num {
		font-size: 19px;
	}
}

@media only screen and (max-width: 919px) {
	.about-intro {
		padding: 40px 50px 35px;
	}

	.about-reason {
		padding: 60px 0;
	}

	.about-reason-ttl {
		font-size: 20px;
	}

	.about-reason-body {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	/* REASON4：モバイルでは画像を後ろに */
	.about-reason-body--img-left .about-reason-img {
		order: 2;
	}

	.about-reason-body--img-left .about-reason-text {
		order: 1;
	}

	.about-reason-catch {
		font-size: 16px;
	}

	.about-data-num {
		font-size: 18px;
	}
}

@media only screen and (max-width: 767px) {
	.about-read-desc-content {
		margin-bottom: 50px;
	}

	.about-intro {
		flex-direction: column;
		text-align: center;
		padding: 40px 20px 35px;
	}

	.about-intro-logo {
		max-width: 100%;
	}

	.about-intro-logo {
		margin: 20px 0 0 0;
	}

	.about-reason {
		padding: 40px 0;
	}

	.about-reason-head {
		margin-bottom: 32px;
	}

	.about-reason-ttl {
		font-size: 18px;
	}

	.about-reason-catch {
		margin-bottom: 30px;
	}
}

/* ======================================================
   single-commerce_hack — .under-content 以下
   app.css から移植（HTML・クラス名は変更しない）
====================================================== */
.media-fv.media-category {
	z-index: -1;
}
main .media-fv.media-category ~ .under-content .under-def {
	padding: 80px 0 0;
	text-align: left;
}

main .media-fv.media-category ~ .under-content .under-def__inner-xs {
	width: 800px;
	max-width: calc(100% - 40px);
	margin: 0 auto;
}

main .media-fv.media-category ~ .under-content .under-def.page-detail {
	color: #fff;
}

main .media-fv.media-category ~ .under-content .under-def.page-detail a,
main .media-fv.media-category ~ .under-content .under-def.page-detail a:link,
main .media-fv.media-category ~ .under-content .under-def.page-detail a:visited {
	color: #fff;
}

main .media-fv.media-category ~ .under-content .page-detail .article__box {
	color: #333;
}

main .media-fv.media-category ~ .under-content .page-detail__content {
	margin-top: -160px;
}

main .media-fv.media-category ~ .under-content .page-detail__content strong {
	font-weight: bold !important;
}

main .media-fv.media-category ~ .under-content .page-detail__mv {
	display: block;
}

main .media-fv.media-category ~ .under-content .page-detail__mv > img {
	display: block;
	width: 100%;
	height: auto;
}

main .media-fv.media-category ~ .under-content .page-detail__inner {
	padding-top: 32px;
}

main .media-fv.media-category ~ .under-content .page-detail__info-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

main .media-fv.media-category ~ .under-content .page-detail__date {
	font-size: 16px;
	font-weight: bold;
}

main .media-fv.media-category ~ .under-content .page-detail__icn-wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

main .media-fv.media-category ~ .under-content .page-detail__icn-wrapper > .news__card-icon {
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	padding: 4px 8px;
	border: #333 solid 1px;
}

main .media-fv.media-category ~ .under-content .u-title__detail {
	font-size: 24px !important;
	font-weight: bold !important;
	line-height: 1.6 !important;
	padding-top: 32px !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	color: #fff !important;
}

main .media-fv.media-category ~ .under-content .u-pt__base {
	padding-top: 24px;
}

main .media-fv.media-category ~ .under-content .u-pt__lg {
	padding-top: 32px;
}

main .media-fv.media-category ~ .under-content .u-pt__2xl {
	padding-top: 10px;
}

main .media-fv.media-category ~ .under-content .archive-video {
	width: 100%;
}

main .media-fv.media-category ~ .under-content .archive-video iframe {
	width: 100%;
	height: 100%;
}

main .media-fv.media-category ~ .under-content .page-detail h2,
main .media-fv.media-category ~ .under-content .page-detail .article__title {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 16px;
}

main .media-fv.media-category ~ .under-content .page-detail h3 {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 16px;
}

main .media-fv.media-category ~ .under-content .page-detail .article__sub-heading {
	font-size: 18px !important;
	font-weight: bold;
	padding-bottom: 16px;
}

main .media-fv.media-category ~ .under-content .page-detail .article__index {
	font-weight: bold;
	line-height: 1.4;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

main .media-fv.media-category ~ .under-content .page-detail .article__index > .item {
	padding-bottom: 16px;
}

main .media-fv.media-category ~ .under-content .page-detail .article__index > .item:last-child {
	padding-bottom: 0;
}

main .media-fv.media-category ~ .under-content .page-detail .article__index > .item a,
main .media-fv.media-category ~ .under-content .page-detail .article__index > .item a:link,
main .media-fv.media-category ~ .under-content .page-detail .article__index > .item a:visited {
	color: #333;
}

main .media-fv.media-category ~ .under-content .page-detail [class*="lazyblock-box"] {
	margin-bottom: 32px;
	padding: 24px;
	border-radius: 16px;
	background: #fff;
	margin-top: 15px;
	color: #333;
}

main .media-fv.media-category ~ .under-content .page-detail .article__box > p {
	padding: 0;
}

main .media-fv.media-category ~ .under-content .page-detail .article__company-wrapper {
	display: flex;
	gap: 32px;
	align-items: center;
	flex-wrap: wrap;
}

main .media-fv.media-category ~ .under-content .page-detail .article__company-wrapper .thumb {
	display: flex;
	padding: 24px;
	flex-basis: 240px;
	align-items: center;
	justify-content: center;
}

main .media-fv.media-category ~ .under-content .page-detail .article__company-wrapper .thumb img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

main .media-fv.media-category ~ .under-content .page-detail .article__company-content {
	flex: 1;
}

main .media-fv.media-category ~ .under-content .page-detail .article__company-name {
	font-size: 18px;
	font-weight: bold;
}

.page-detail__form-content:has(iframe) {
	display: flex;
	flex-direction: column;
	/* padding-bottom: 64px; */
	background: #fff;
	align-items: center;
}
.form__sub-heading {
	text-align: center;
	font-size: 18px;
	display: none;
}
.page-detail__form-content:has(iframe) .form__sub-heading {
	display: block;
	font-size: 18px;
	font-weight: bold;
	padding: 20px 0;
	color: #fff;
	width: 100%;
	text-align: center;
	background: var(--gladent);
}

.page-detail__form-content .form__content {
	margin: 100px auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.page-detail__form-content .form__content a {
	text-decoration: underline;
	color: #fff;
}

.page-detail__form-content:has(iframe) .form__content {
	margin: 60px auto 0;
}

.page-detail__form-content:has(iframe) .form__content > iframe {
	width: 720px;
}

main .media-fv.media-category ~ .under-content .page-detail__form-txt {
	width: 580px;
	padding-top: 24px;
	border-top: solid 1px #ddd;
}

main .media-fv.media-category ~ .under-content .page-detail__form-txt a {
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.media-fv.media-category {
		padding-bottom: 100px;
	}

	main .media-fv.media-category ~ .under-content .under-def {
		padding: 64px 0 0;
	}

	main .media-fv.media-category ~ .under-content .under-def__inner-xs {
		width: 100%;
	}

	main .media-fv.media-category ~ .under-content .page-detail__inner {
		padding: 24px 24px 0;
	}

	main .media-fv.media-category ~ .under-content .page-detail__date {
		font-size: 12px;
	}

	main .media-fv.media-category ~ .under-content .page-detail__icn-wrapper > .news__card-icon {
		font-size: 12px;
	}

	main .media-fv.media-category ~ .under-content .u-title__detail {
		font-size: 20px !important;
		padding-top: 5.6074766355vw !important;
	}

	main .media-fv.media-category ~ .under-content .u-pt__2xl {
		padding-top: 10px;
	}

	main .media-fv.media-category ~ .under-content .page-detail h2,
	main .media-fv.media-category ~ .under-content .page-detail .article__title {
		font-size: 4.6728971963vw;
		padding-bottom: 3.738317757vw;
	}

	main .media-fv.media-category ~ .under-content .page-detail h3 {
		font-size: 4.2056074766vw;
		padding-bottom: 3.738317757vw;
	}

	main .media-fv.media-category ~ .under-content .page-detail .article__sub-heading {
		font-size: 4.2056074766vw !important;
		padding-bottom: 3.738317757vw;
	}

	main .media-fv.media-category ~ .under-content .page-detail .article__box,
	main .media-fv.media-category ~ .under-content .page-detail [class*="lazyblock-box"] {
		margin-bottom: 7.476635514vw;
		padding: 3.738317757vw;
		border-radius: 8px;
	}

	main .media-fv.media-category ~ .under-content .page-detail .article__company-wrapper {
		display: block;
	}

	main .media-fv.media-category ~ .under-content .page-detail .article__company-content {
		padding-top: 1.8691588785vw;
		text-align: center;
		border-top: solid 1px #ddd;
	}

	.page-detail__form-content .form__content {
		margin: 45px auto;
		width: calc(100% - 40px);
	}

	.page-detail__form-content .form__content {
		margin: 45px auto;
	}

	.page-detail__form-content:has(iframe) .form__content {
		margin: 30px auto 0;
	}

	.page-detail__form-content:has(iframe) .form__content > iframe {
		width: 100%;
	}

	main .media-fv.media-category ~ .under-content .page-detail__form-txt {
		width: 100%;
		padding: 5.6074766355vw 3.738317757vw 0;
	}
}