@charset "utf-8";
@import url("./reset.css");

@font-face {
	font-family: 'GothamBook';
	src: url('./Fonts/GothamBook.woff2') format('woff2');
	font-weight: normal;
  	font-style: normal;
	/* 縦メトリクスを安定化（Chromeでの“上ズレ”を抑える） */
	ascent-override: 86%;
	descent-override: 14%;
	line-gap-override: 0%;
}

/* 下向き矢印用 */
:root {
	--header-h: 100px;
	--line-width: 40px;
	--arrow-height: 20px;
	--arrow-join: 0; /* 三角の底辺を線に重ねるか（0.5〜2で微調整可） */
}
@media (max-width: 1050px){
  	:root {
		--header-h: 80px;
	}
}

/* 横スクロールを根本的に無効化（clip が使えないブラウザは hidden を使用） */
html {
	overflow-x: hidden;
}
/* clip に対応しているブラウザではより安全な clip に上書き */
@supports (overflow-x: clip) or (overflow: clip) {
  html, body { overflow-x: clip; }
}

/* デスクトップで縦スクロールバーの有無による横幅ブレを防ぐ */
html {
	scrollbar-gutter: stable;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	background-color: #fff;
	color: #333;
}
html, body {
	height: 100%;
	margin: 0;
}

header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: var(--header-h);
	display: flex;
	align-items: center;
	padding: 0 30px;
	background-color: rgba(255,255,255,.9);
	z-index: 3000;
}

body{
	padding-top: var(--header-h);
}
html{
	scroll-padding-top: var(--header-h);
}

.id {
	flex: 0 1 345px;
	min-width: 230px;
	margin: 0 30px 0 0;
}
.id img {
	width:100%;
	height:auto;
}
.header-spacer {
	flex: 1 1 auto;   /* 余白を吸収 */
}
.header-nav {
	display: flex;
	justify-content: flex-end;	
	flex-wrap: nowrap;
  	min-width: 0;    /* 子が縮む余地 */
}
.header-nav > ul {
	display: flex;
	gap: 5px;
	min-width: 0;     /* 子が縮む余地 */
}
.header-nav > ul > li {
	position: relative;
	flex: 0 1 auto;
	width: clamp(110px, 10vw, 130px);
	height: 40px;
}
.header-nav > ul > li:nth-of-type(2),
.header-nav > ul > li:nth-of-type(3),
.header-nav > ul > li:nth-of-type(5) {
	width: clamp(170px, 12vw, 200px);
}
.header-nav > ul > li > a {
	display: grid;
	place-items: center;
	width: 100%;
	height: 40px;
	border: 1px solid #888;
	border-radius: 20px;
	background: #fff;
	text-decoration: none;
	color: #333;
	font-family: 'GothamBook', "Noto Sans JP", sans-serif;
	font-size: calc(15 / 16 * 1rem);
	transition: background .22s ease, color .22s ease, border-color .22s ease;
	position: relative;
	z-index: 30; /* ドロップダウンより上 */
}
.header-nav > ul > li > a .label,
.header-nav > ul > li > a {
	white-space: nowrap;
	overflow: visible;
	text-overflow: ellipsis;
}
/* Safari 14以下で文字の位置を調整するための対応 */
@supports not (aspect-ratio: 1 / 1) {
  .header-nav li > a .label {
    /* display: flex/grid の中央揃えを解除して、padding-topを効かせる */
    align-self: start;
    padding-top: 10px;
  }
}
.header-nav > ul > li:last-child a {
	background: #ee869a;
	color: #fff;
	border-color: #ee869a;
}
.header-nav > ul > li:hover > a,
.header-nav > ul > li:last-child:hover a,
.header-nav > ul > li:focus-within > a {
	background-color: #08509b;
	border-color: #08509b;
	color: #fff;
}

/* has-dropdown 用 */
.has-dropdown {
	position: relative;
}
.has-dropdown > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	overflow: visible;
	width: 100%;
	height: 40px;
}
.has-dropdown > a .label {
	flex: 1;               /* 残りスペースいっぱい */
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.has-dropdown > a .nav-icon-wrap {
	width: 30px;
	height: 100%;
	border-left: 1px solid #888;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 30px;        /* ← 縮まない＋幅を固定 */
}
.has-dropdown .icon svg {
  width: 18px;
  height: 18px;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #888;
}
.header-nav > ul > li:hover > a .icon svg,
.header-nav > ul > li:focus-within > a .icon svg {
	transform: rotate(315deg);
	color: #fff;
}
.header-nav > ul > li:hover > a .nav-icon-wrap {
	border-left: 1px solid #fff;
}
.header-nav > ul > li > .dropdown {
	display: flex;  /* 必須：高さ制御を効かせるため常に存在させる */
	flex-direction: column;
	position: absolute;
	top: 50%; /* 親メニューの下に少し余白 */
	left: 0;
	width: 100%;
	background: #d8e4ef;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	padding: 25px 0 10px;
	overflow: hidden;  /* max-height でスライドさせるため必須 */
	max-height: 0;
	opacity: 0;
	pointer-events: none;  /* 非表示時はクリック不可 */
	transform: translateY(20px);
	transition: max-height .32s cubic-bezier(.2,.9,.2,1), opacity .18s ease, transform .28s ease;
	box-sizing: border-box;
	z-index: 10;
}
.header-nav > ul > li > .dropdown li {
	width:100%;
}
.header-nav > ul > li > .dropdown a {
	display: block;
	width: 100%;
	padding: 5px 14px;
	text-align: center;
	color: #333;
	text-decoration: none;
	font-size: calc(12 / 16 * 1rem);
}
.header-nav > ul > li > .dropdown a:hover {
	color: #08509b;
}
.header-nav > ul > li.has-dropdown:hover > .dropdown,
.header-nav > ul > li.has-dropdown:focus-within > .dropdown {
	max-height: 400px;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.header-nav-sp {
	display: none;
}


/* ハンバーガーメニュー */
.hamburger {
	flex: 0 0 auto; /* メニューアイコンが正方形で固定されるように */
	display: none;
	width: 48px;
	height: 48px;
	background: #08509b;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 3000;
	position: relative;
}
.hamburger span {
	display: block;
	width: 28px;
	height: 2px;
	background: #fff;
	margin: 4px 0;
	transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

/* スマホメニュー背景レイヤー */
.nav-bg-sp {
	position: fixed;
	top: var(--header-h);
	left: 0;
	width: 100%;
	height: calc(100% - var(--header-h));
	background: #4c4948;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1400;
	pointer-events: none;
}
.nav-bg-sp.active {
	opacity: 1;
	pointer-events: auto;
}

/* スマホメニュー */
.header-nav-sp {
	position: fixed;
	top: var(--header-h);
	left: 0;
	width: 100%;
	height: calc(100% - var(--header-h));
	padding: 0 20px;
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	z-index: 2000;
	pointer-events: none;
	transition: opacity 0.4s ease, transform 0.5s ease;
}
.header-nav-sp.active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.header-nav-sp > ul {
	border-radius: 0;
	width: 100%;
	padding: 0 20px 40px;
}
.header-nav-sp li {
	margin-bottom: 10px;
}
.header-nav-sp > ul > li > a {
	color: #fff;
	font-size: 1.5625rem;
	display: inline-flex;
	justify-content: center;
	gap: 5px;
	text-decoration: none;
	font-family: 'GothamBook', "Noto Sans JP", sans-serif;
	position: relative;
	width: auto; /* 横幅はテキスト＋アイコンのみ */
}
.header-nav-sp > ul > li:last-child a {
	font-size: 1.125rem;
	background: #ee869a;
	padding: 8px 30px;
	border-radius: 20px;
	margin: 20px 0 0;
}

/* サブメニュー */
.header-nav-sp .dropdown {
	background: #4c4948;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.4s ease;
	border-radius: 0;
	position: relative;
	padding: 0;
}
.header-nav-sp li.open .dropdown {
	max-height: 300px;
	opacity: 1;
	transform: translateY(0);
	padding:10px 0 0;
}
.header-nav-sp .dropdown li {
	margin-bottom: 13px;
}
.header-nav-sp .dropdown a {
	font-size: 0.875rem;
	color: #fff;
	text-decoration: none;
	font-family: 'GothamBook', "Noto Sans JP", sans-serif;
}

/* SVGアイコン */
.header-nav-sp .icon {
	width: 20px;
	height: 20px;
	display: inline-flex;
	transition: transform 0.3s ease;
	color: #fff;
	margin-left: 5px;
}
.header-nav-sp .has-dropdown > a .label {
	display: inline-block;
}
.header-nav-sp .has-dropdown > a .icon {
	display: inline-flex;
	margin-left: 5px;
	flex-shrink: 0;
}
.header-nav-sp .has-dropdown .icon svg line {
	stroke: #fff;
  	transition: none;
}
.header-nav-sp .icon .cross {
	transform-origin: 12px 12px; /* SVGの中心 */
	transition: transform 0.3s ease;
}
.header-nav-sp li.open .icon .cross {
  	transform: rotate(315deg);
}
/* メニューオープン中はスクロール禁止 */
body.menu-active {
	overflow: hidden;
	height: 100%;
}
/* スマホ版表示 */
@media screen and (max-width: 1050px) {
	header {
		height: 80px;
	}
	.header-nav {
    	display: none;
  	}
  	.hamburger {
    	display: flex;
  	}
	.header-nav-sp {
		display: block;
		padding: 40px 20px 0;
	}
	.header-nav-sp.active {
		opacity: 1;
		pointer-events: auto;
	}
	.header-nav-sp li.open > .dropdown {
		max-height:400px;
		opacity:1;
		transform:translateY(0);
		pointer-events:auto;
	}
}
@media screen and (max-width: 1050px) {
	header {
		padding: 10px 20px;
	}
}


/* ナビボタン内テキスト天地センター処置
------------------------------------------------------------------------------ */
/* 単純ボタン（About / News / Contact など） */
.header-nav > ul > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	line-height: 1;					/* 行高の影響を排除 */
	border: 1px solid #888;
	border-radius: 20px;
	background: #fff;
	text-decoration: none;
	color: #333;
	font-family: 'GothamBook', "Noto Sans JP", sans-serif;
	font-size: calc(15 / 16 * 1rem);
	transition: background .22s ease, color .22s ease, border-color .22s ease;
	position: relative;
	z-index: 30;
}

/* SVGが行ボックスを押し上げないように */
.has-dropdown .icon svg {
	display: block;
}

/* dropdown内リンク：元の間隔に戻す（liにmarginは付けない） */
.header-nav > ul > li > .dropdown li {
	margin: 0;
}
.header-nav > ul > li > .dropdown a {
	display: block;
	width: 100%;
	padding: 5px 14px;				/* 元の指定 */
	text-align: center;
	color: #333;
	text-decoration: none;
	font-size: calc(12 / 16 * 1rem);
	line-height: 1.4;				/* 自然な高さ */
}
.header-nav > ul > li > .dropdown a:hover {
	color: #08509b;
}


/* メイン
------------------------------------------------------- */
main {
	padding: 40px 25px;
}
@media screen and (max-width: 1050px) {
	main {
		padding: 40px 30px 40px;
	}
}


/* フッター
------------------------------------------------------- */
footer {
	background: #d8d8d8;
	padding: 26px 20px 20px;;
	font-size: calc(12 / 16 * 1rem);
}
footer nav {
	margin: 0 0 15px;
}
footer nav ul {
	display: flex;
	column-gap: 20px;
}
footer nav ul a {
	display: inline-block;
	color: #08509b;
	margin: 0 0 5px;
}
footer nav ul a::before {
	content: "\25B6";
	margin:0 3px 0 0;
}
.footer-logo {
	padding: 10px 15px 10px 20px;
	border-radius: 12px;
	background: #fff;
	margin-left: auto;
	width: 100%;
	max-width: 350px;
}
.copyright {
	text-align: center;
	font-size: calc(11 / 16 * 1rem);
}
@media screen and (max-width:1159px) {
	.footer-logo {
		margin: 0 auto 20px;
	}
}
@media screen and (max-width:460px) {
	footer nav ul {
		display: block;
	}
}


/* ロゴアニメーション
------------------------------------------------------- */
.top-animation {
	position: relative;
	width: 100vw;
	overflow: hidden;
	background: #fff;
}
/* Lottie が挿入する <svg> / <canvas> を全域にフィット */
.top-animation > svg, 
.top-animation > * {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* 低速環境やユーザー設定でアニメーションを止めたい場合の配慮 */
@media (prefers-reduced-motion: reduce) {
	.top-animation { background: #000; }
}

@media (max-width: 640px){
	.top-animation > svg {
		transform: scale(1.3);
		transform-origin: 50% 50%;
		/* スクロールでガタつく場合は下行を有効化
		backface-visibility: hidden;
		*/
	}
}


/* トップページブルーブロック（About Us）
---------------------------------------------------------------------- */
.blue-block {
	background: #0054a7 !important;
	color: #fff;
	border-radius: 30px;
	padding: 80px 20px;
	position: relative;
  	overflow: visible;
	z-index: 1;
}
.blue-block h1 {
	font-family: 'GothamBook', "Noto Sans JP", sans-serif;
	font-size: clamp(2.375rem, 0.645rem + 8.14vw, 6.75rem);
	font-weight: 400;
	text-align: center;
	line-height: 1;
	margin: 0 0 40px;
}
/*Safariで文字が切れることの対応*/
_::-webkit-full-page-media, _:future, :root .blue-block h1 {
  padding-top: 25px;
}

.blue-block h1 span {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
	font-weight: 700;
	margin-top: .6em;
}
.blue-block div.p-sp {
	display: none;
}
.blue-block p {
	margin: 0 0 3em;
	text-align: center;
	line-height: 3;
	font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
	letter-spacing: 0.08em;
}
.blue-block .bnr_siteLogo {
	width: 100%;
	max-width: 360px;
	margin: 0 auto 40px;
	background: #fff;
	border-radius: 16px;
	padding: 20px 25px;
}
.btn_viewmore {
	display: inline-flex;
	width: auto;
	justify-content: center;
	align-items: center;
	min-width: 120px;
	min-height: 40px;
	overflow: visible;
	position: relative;
	isolation: isolate;
	z-index: 0;
	--arrow-amp: 10px;
  	--arrow-overhang: -2px;/* ← 最高到達時でも 2px は必ず潜る（=離れない） */
}
/* ブルーのセクション内だけ中央寄せ（幅は shrink-wrap のまま） */
.blue-block .btn_viewmore{
	display: block;
	width: fit-content;
  	margin-inline: auto;
}
.btn_viewmore::before{
	content:"";
	position:absolute;
	inset: 0;/* 親のちょうどサイズでピルを引く */
	border-radius: 30px;
	background:#fff;
	border:1px solid #0054a7;
	z-index: 1;                 /* 矢印(0)より前、テキスト(2)より後ろ */
}
.btn_viewmore a {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1rem;
	padding: 12px 24px;
	border-radius: 30px;
	background: transparent;
	color: #0054a7;
	border: none;
	text-decoration: none;
	font-family: sans-serif;
	cursor: pointer;
}
.btn_viewmore .btn-r-arrow {
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	margin-left: calc(-1 * var(--arrow-amp) + var(--arrow-overhang));
	pointer-events: none;
	overflow: visible;
	width: 60px;
	height: 40px;
	z-index: 0;
}
.btn_viewmore svg {
	display: block;
	width: 60px;
	height: 40px;
	overflow: visible;
	animation: arrow-move 1.5s infinite ease-in-out;
}
.btn_viewmore .btn-r-arrow svg line,
.btn_viewmore .btn-r-arrow svg polyline {
  stroke: #fff;
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 60 60;     /* お好みで 40 20 でもOK */
  stroke-dashoffset: 0;
  animation: arrow-dash 1.5s linear infinite;
}
.btn_viewmore,
.btn_viewmore .btn-r-arrow,
.btn_viewmore svg {
  overflow: visible !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

@keyframes arrow-move {
	0%   { transform: translateX(0); }
	50%  { transform: translateX(10px); }
	100% { transform: translateX(0); }
}

@media screen and (max-width: 480px) {
	.blue-block div.p-sp {
		display: block;
	}
	.blue-block div.p-pc {
		display: none;
	}
}

.spacer {
	height: 40px;
	background: #fff;
	position: relative;
	z-index: -1;
	pointer-events: none;
}
.pink-block {
	background: #ee869a;
	color: #fff;
	position: relative;
	border-radius: 30px;
	padding: 80px 20px 160px;
	overflow: hidden;
}
.arrow-line-container {
	position: absolute;
	left: 50%;
	top:calc(100% - var(--arrow-height)); /* 青の下端基準で少し食い込む */
	transform:translateX(-50%);
	width: var(--line-width);
	overflow: visible;
	z-index: 3;
	pointer-events: none;
}
#blue-arrow-svg {
	display: block;
	width: var(--line-width);
	height: auto;
	overflow: visible;
}
#blue-arrow-line {
	stroke: #0054a7;
	stroke-width: var(--line-width);
	stroke-linecap: butt;
	vector-effect: non-scaling-stroke;
}
#blue-arrow-head {
	fill: #0054a7;
}

@media screen and (max-width: 787px) {
	:root{
    	--line-width: 30px;
		--arrow-height: 15px;
  	}
	/* ラインの中心を viewport 左端から 40px に */
	.arrow-line-container{
		left: 30px;
		transform: none; /* 中央寄せ解除 */
	}
}
@media screen and (max-width: 480px) {
	.blue-block {
		padding: 80px 15px;
	}
	.blue-block p {
		font-size: clamp(0.815rem, 0.729rem + 0.36vw, 1rem);
		letter-spacing: -0.07em;
	}
}


/* トップページピンクブロック（Our Solutions）
---------------------------------------------------------------------- */
:root{
	/* 数字画像の高さ：1000px幅あたり最大220、やや小さめ最小180に */
	--num-h: clamp(180px, 22vw, 220px);

	/* アイテム高さ（段ズラしの基準にも） */
	--item-h: clamp(300px, 38vw, 340px);

	/* カード幅 */
	--card-w: clamp(260px, 33vw, 330px);

	/* アイコン（h3::before）幅 */
	--icon-w: clamp(90px, 14.6vw, 146px);

	/* 位置・段ズラし */
	--anchor-y: 0px;
	--icon-overlap: -2px;
	--stagger: calc(var(--item-h) * 0.8);
}

.pink-block .content {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	padding: 80px 0;
	text-align: center;
}
.pink-block h2 {
	font-family: 'GothamBook', "Noto Sans JP", sans-serif;
	font-size: clamp(2.375rem, 0.645rem + 8.14vw, 6.75rem);
	font-weight: 400;
	white-space: nowrap;
	text-align: center;
	line-height: 1;
	margin: 0 0 40px;
}
.pink-block h2 span {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	margin-top: .6em;
}
.pink-block .btn_viewmore {
  	--arrow-amp: 10px;
  	--arrow-overhang: -18px;
}

/* レイアウト：PC基準（2列＋段ズラし） */
.pink-block .container-solution {
	width: min(960px, calc(100% - 40px));
  	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 0 120px; 
	justify-content: center;
	padding: 200px 0 0;
}
.solution-item {
	width: 400px;
	height: var(--item-h);
	display: flex;
	justify-content:flex-end;
	align-items: flex-start;
	background-repeat: no-repeat;
	background-position: left var(--anchor-y);
	background-size: auto var(--num-h);
}
.solution-item:nth-of-type(1){ background-image: url("images/num-din-01.png"); }
.solution-item:nth-of-type(2){ background-image: url("images/num-din-02.png"); }
.solution-item:nth-of-type(3){ background-image: url("images/num-din-03.png"); }
.solution-item:nth-of-type(4){ background-image: url("images/num-din-04.png"); }

/* ★段ズラし（上マージンだけで 0, s, 2s, 3s 配置） */
.solution-item:nth-of-type(1){ margin-top: 0; }
.solution-item:nth-of-type(2){ margin-top: var(--stagger); }
.solution-item:nth-of-type(3){ margin-top: calc(var(--stagger) - var(--item-h)); }
.solution-item:nth-of-type(4){ margin-top: calc(var(--stagger) * 2 - var(--item-h)); }

.solution-item.slidein {
	opacity: 0;
    transform: translate(0,0);
    transition: all 1.0s;
	will-change: transform, opacity;
}
.solution-item.slidein-bottom {
	transform: translate(0,70%);
}
.solution-item.scrollin {
	transform: translate(0, 0)!important;
    opacity: 1!important;
}
/* カード */
.solution-card{
	width: var(--card-w);
	position: relative;
	overflow: hidden;
	text-align: center;
	color: #fff;
	font-family: "Hiragino Kaku Gothic ProN","Yu Gothic","Noto Sans JP",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}
.solution-card h3{
	font-size: clamp(1.25rem, 1.114rem + 0.68vw, 1.625rem);
	line-height: 1.2;
	font-weight: 700;
	margin: 0 0 14px;
	position: relative;
}
.solution-card h3::before{
	content: "";
	display: block;
	width: var(--icon-w);
	aspect-ratio: 146 / 168;
	margin: var(--anchor-y) auto var(--icon-overlap);
	background: no-repeat center top / contain;
	pointer-events: none;
}
.pink-block .solution-card br.sp-br {
		display: none;
	}
.solution-item:nth-of-type(1) h3::before { background-image: url("images/icn-solutions-01.png"); }
.solution-item:nth-of-type(2) h3::before { background-image: url("images/icn-solutions-02.png"); }
.solution-item:nth-of-type(3) h3::before { background-image: url("images/icn-solutions-03.png"); }
.solution-item:nth-of-type(4) h3::before { background-image: url("images/icn-solutions-04.png"); }

.solution-card .lead {
	font-size: clamp(0.813rem, 0.786rem + 0.12vw, 0.875rem);
	line-height: 2;
	margin: 0 0 22px;
}

/* ボタンの色は既存どおり */
.pink-block .btn_viewmore .btn-r-arrow svg line,
.pink-block .btn_viewmore .btn-r-arrow svg polyline { stroke: #fff; stroke-width: 1; fill: none;}
.pink-block .btn_viewmore a { transition: all .3s ease;}
.pink-block .btn_viewmore a:hover{ background: #0054a7; color: #fff;}
.pink-block .btn_viewmore .btn-r-arrow svg line,
.pink-block .btn_viewmore .btn-r-arrow svg polyline { stroke: #0054a7;}


@media screen and (max-width: 1159px) and (min-width: 788px){
  .pink-block{
    --content-w: min(960px, calc(100% - 40px));
    --num-h: clamp(160px, 18vw, 200px);
    --card-w: clamp(240px, 31vw, 300px);
  }

  .pink-block .container-solution{
    width: var(--content-w);
    margin-inline: auto;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 100px;
    row-gap: 0;
    justify-items: center;
    padding: 200px 0 0;
  }
  .pink-block .container-solution > .solution-item{
    width: auto !important;
    min-width: 0;
    background-size: auto var(--num-h);
    box-sizing: border-box;
  }
  .pink-block .solution-card{
    width: var(--card-w);
    box-sizing: border-box;
    padding-inline: 16px;
  }
  .pink-block .solution-card h3,
  .pink-block .solution-card .lead{
    overflow-wrap: anywhere;
    word-break: normal;
  }
}


@media screen and (max-width: 787px) {
	:root{
		--num-h: clamp(120px, 40vw, 190px);
		--item-h: 300px;
		--card-w: 260px;
		--icon-w: clamp(100px, 22vw, 130px);
		--stagger: calc(var(--item-h) * 0.8);
	}
	.pink-block {
		padding: 80px 20px;
	}
	.pink-block .container-solution{
		display: grid !important;
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 80px 0 !important;
		width: auto;
	}

	.pink-block .container-solution > .solution-item{
		--item-w-sp: clamp(280px, calc(100vw - 40px), 400px);
		width: var(--item-w-sp) !important;
		height: auto !important;
		margin: 0 !important;
		box-sizing: border-box;
		padding: 0 20px;
		position: relative;
		background: none !important;
	}
	.pink-block .container-solution > .solution-item::before{
		content: "";
		position: absolute;
		top: var(--anchor-y);
		left: 20px;
		height: var(--num-h);
		aspect-ratio: 146 / 168;
		background-repeat: no-repeat;
		background-size: contain;
		background-position: left top;
		pointer-events: none;
		z-index: 0;
	}
	.pink-block .container-solution > .solution-item:nth-of-type(1)::before{ background-image: url("images/num-din-01.png"); }
	.pink-block .container-solution > .solution-item:nth-of-type(2)::before{ background-image: url("images/num-din-02.png"); }
	.pink-block .container-solution > .solution-item:nth-of-type(3)::before{ background-image: url("images/num-din-03.png"); }
	.pink-block .container-solution > .solution-item:nth-of-type(4)::before{ background-image: url("images/num-din-04.png"); }

	.pink-block .solution-card {
		position: relative;
		z-index: 1;
		/* 右マージンを10pxだけ削る＝右へ10px寄る */
		margin-right: max(
			0px,
			calc(
				clamp(0px, calc((var(--item-w-sp) - 40px) - var(--card-w) - 2px), 30px)
				- 15px
			)
		) !important;
		margin-left: 0 !important;
	}
	.pink-block .solution-card br {
		display: none;
	}
	.pink-block .solution-card br.sp-br {
		display: block;
	}

	.pink-block .solution-item:nth-of-type(2),
	.pink-block .solution-item:nth-of-type(3),
	.pink-block .solution-item:nth-of-type(4){
		margin-top: 0 !important;
	}
}
@media screen and (max-width: 480px) {
	.pink-block .container-solution > .solution-item {
		margin-left: 40px !important;
	}
}


/* ニュースブロック
---------------------------------------------------------------------- */
.news .content {
	padding: 80px 0;
	width: 100%;
}
.news h3 {
	font-family: 'GothamBook', "Noto Sans JP", sans-serif;
	font-size: clamp(2.5rem, 0.955rem + 7.73vw, 6.75rem);
	font-weight: 400;
	color:#0054a7;
	white-space: nowrap;
	text-align: center;
	line-height: 1;
	padding: 0 0 40px;
	position: relative;
}
.news h3 span {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	color: #333;
	margin-top: .6em;
}
.news .news-more{
	position: absolute;
	/* ▼横位置：中央600pxカラムの“右端”に揃える（はみ出し防止） */
	right: max(calc((100% - 600px) / 2), 0px);
	bottom: 20px;
	display: inline-grid; /* mac safariでのズレ対応 */
	place-items: center;
	padding-inline: 1em;
	padding-block: .5em;
	font-size: 1rem;
	line-height: 1;
	border: 1px solid #0054a7;
	color: #0054a7;
	border-radius: 999px;
	text-decoration: none;
	background: transparent;
	white-space: nowrap;

	/* ホバー変化 + なめらかに */
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.news .content h3 .news-more:hover{
	background: #0054a7;
	color: #fff;
	border-color: #0054a7;
}
.news dl {
	max-width: 600px;
	margin: 0 auto;
	padding: 2em 0;
	display: flex;
	align-items: flex-start;
	border-top: 1px solid #0054a7;
	font-size: calc(14 / 16 * 1rem);
}
.news dl:last-of-type {
	border-bottom: 1px solid #0054a7;
}
.news dt {
	flex: 0 0 8em;
	background: #fce7eb;
	padding: 2px 0;
	text-align: center;
	border-radius: 8px;
}
.news dd {
	padding: 0 0 0 1em;
	white-space: normal;
}
.news dd > a {
	display: block;
	color: inherit;
	text-decoration: none;
}
.news dd > a > span {
	display: block;
}
.news dd > a > span:last-child { 
	margin-top: 0.4lh; 
	line-height: inherit;
	display: block;
}
.news dl.is-dd-1line dd > a > span:last-child {
  	margin-top: 1.4lh; 
}
.news dd > a > span:last-child > span {
	color: #0054a7;
}
/* アンカー無しの行（dd 直下の span を改行） */
.news dd > span{
	display: block;
}
.news dd > span:last-child{
	margin-top: 0.4lh;
	line-height: inherit;
}
/* ニュースリンク先がpdfの場合、アイコンをつける */
.news dd a:is([href$=".pdf" i],[href*=".pdf?" i],[href*=".pdf#" i]) .dd-main::after {
	content: "";
	display: inline-block;
	height: 14px;
	width: calc(14px * 129 / 116);/* 元画像 129×116 の比率で横幅を自動算出 ≒15.6px */
	margin-left: 0;
	vertical-align: middle; /* ベースライン揃え */
	background: no-repeat center / contain url("images/icn-pdf.png");
	/* 微調整したい場合は↓を少し触る（例: -1px 〜 +1px） */
	transform: translateY(-1px);
}
@media screen and (max-width: 480px) {
	.news .news-more {
		left: auto;
		right: 0;
		bottom: 15px;
		font-size: .8125rem;
	}
	.news dl {
		display: block;
	}
	.news dt {
		display: inline-block;
		flex: none;
		width: auto;
		padding: .25em 2em; 
		margin: 0 0 1em;
	}
	.news dd {
		padding: 0;
	}
}


/* About Usページ
---------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
	 .about-us-main{
		padding: 0 0 40px;
	}
}
.page-wrap {
	padding: 40px 30px 40px;
}
.aboutus {
	background: #0054a7;
	color: #fff;
	border-radius: 30px;
	padding: clamp(48px,6vw,80px) 30px;
	position: relative;
	overflow: hidden;
}
.aboutus-container {
	max-width: 1100px;
	margin: 0 auto;
}
.aboutus h1 {
  	font-family: 'GothamBook',"Noto Sans JP",sans-serif;
  	font-size: clamp(2.125rem, -0.018rem + 9.02vw, 6.75rem);
  	font-weight: 400;
	text-align: center;
	line-height: 1;
	margin: 0 0 40px;
}
.aboutus h1 span {
  	display: block;
	font-family: "Noto Sans JP",sans-serif;
  	font-size: clamp(0.813rem, 0.552rem + 1.1vw, 1.375rem);
  	font-weight: 700;
	margin-top: .6em;
	letter-spacing: .06em;
}
.aboutus-lead {
	position: relative;
}
.aboutus-lead .lead-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: clamp(16px, 4vw, 56px);
	margin-bottom: 60px;
	isolation: isolate;           /* stacking文脈を分離（念のため） */
}
.aboutus-lead .lead-inner::before{
	content: "";
	position: absolute;
	inset: 0 auto auto 50%;
	transform: translateX(-50%);
	top: 0;
	width: clamp(520px, 62vw, 680px);
	height: auto;
	aspect-ratio: 1280 / 720;
	background: url(images/bg-aboutus-headphone.png) no-repeat center top / contain;
	pointer-events: none;
	z-index: 0;                        /* テキストの背面に */
	/* 画像高さ分だけ領域を作る（テキストと重なってOKなら不要） */
}
.aboutus-lead .lead-h2 {
	text-align: center;
  	font-size: clamp(1rem, 0.363rem + 2.68vw, 2.375rem);
	margin: 30px 0 0;
	line-height: 1.8;
}
.aboutus-lead .lead-h2 br.sp-br {
	display: none;
}
.aboutus-lead .lead-h2, .aboutus-lead .lead-row {
	position: relative; z-index: 1;
}
.aboutus-lead .lead-text br.sp-br {
	display: none;
}
@media (min-width: 769px) {
	.aboutus-lead .lead-inner {
		row-gap: 32px;
	}
	.aboutus-lead .lead-row {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		column-gap: 20px;
	}
}
@media (max-width: 768px) {
	.aboutus-lead .lead-h2 br {
		display: none;
	}
	.aboutus-lead .lead-h2 br.sp-br {
		display: block;
	}
	.aboutus-lead .lead-text br {
		display: none;
	}
	.aboutus-lead .lead-text br.sp-br {
		display: block;
	}
}
.aboutus-lead .lead-text {
	max-width: 520px;
}
.aboutus-lead p {
	line-height: 2.8;
  	font-size: clamp(0.875rem, 0.788rem + 0.37vw, 1.063rem);
  	letter-spacing: .08em;
}
.aboutus-lead .lead-illust {
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.aboutus-lead .lead-illust img {
	width: min(240px, 24vw);
	height: auto;
	display: block;
}

@media (max-width:768px) {
	.aboutus-lead {
		background-position: center 10%;
		background-size: min(520px,88%);
	}
	.aboutus-lead .lead-inner::before{
		width: clamp(360px, 96vw, 520px);
		top: 0;
	}
	.aboutus-lead .lead-row {
		flex-direction: column;
		align-items: center;
		row-gap: 2.2em;
	}
	.aboutus-lead .lead-text {
		text-align: center;
		margin: 0 0 2em;
	}
	.aboutus-lead p {
		line-height: 2.2;
	}
	.aboutus-lead .lead-illust img {
		width: min(210px, 70vw);
	}
}

@media (max-width: 480px) {
	.page-wrap {
		padding: 0;
	}
	.aboutus {
		border-radius: 0;
		padding: 60px 25px 44px;
	}
	.aboutus h1 {
		margin: 0 0 20px;
	}
	.aboutus-lead .lead-inner{
		margin-bottom: 60px;
	}
	.aboutus-lead .lead-inner::before{
		width: clamp(125vw, calc(60vw + 312px), 140vw);
		top: 2%;
	}
	.aboutus-lead .lead-h2 {
		margin: 60px 0 0;
	}
	.aboutus-lead .lead-text {
		margin: 0 0 3.5em;
	}
	.aboutus-lead p {
		line-height: 2;
	}
}

.intro-contactcenter {
	width: 100%;
	max-width: 940px;
	margin: 36px auto 0;
	padding: 28px 44px 26px;
	box-sizing: border-box;
	background: linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
	border-radius: 18px;
	box-shadow: 0 10px 22px rgba(0,0,0,.16);
}
.intro-contactcenter > p {
	margin: 0 0 1em;
	text-align: center;
	line-height: 1.8;
	color: #0054a7;
	font-size: clamp(0.875rem, 0.701rem + 0.73vw, 1.25rem);
	letter-spacing: .04em;
}
.intro-contactcenter p br.sp-br {
	display: none;
}
.contactcenter-items {
	border-top: 1px solid #0054a7;
	padding-top: 20px;    
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(8px, 1.2vw, 18px);;
	flex-wrap: nowrap;
}
.contactcenter-items > div{
	flex: 1 1 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
}
.contactcenter-items img {
	display: block;
	height: clamp(44px, 6.8vw, 76px);
	width: auto;
	object-fit: contain;
	image-rendering: -webkit-optimize-contrast;
	/* 余白調整（上下の見え方を微修正したい場合の微差） */
	transform: translateY(0);
}
/* 角丸の中でロゴが触れないよう一応の保険 */
.contactcenter-items > div {
  	flex: 0 0 auto;
}
@media (max-width: 768px){
	.intro-contactcenter {
		padding: 28px 20px 26px;
	}
	.intro-contactcenter > p {
		font-weight: 700;
	}
	.intro-contactcenter p br.sp-br {
		display: block;
	}
	.contactcenter-items{
		flex-wrap: wrap;
		justify-content: center;
		column-gap: 14px;
		row-gap: 12px;
		padding-top: 18px;
	}
	.contactcenter-items > div{
		flex: 0 1 calc((100% - 2 * 14px) / 3);   /* 3カラム */
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 0;
	}
	.contactcenter-items img{
		height: clamp(44px, 12vw, 76px);
		width: auto;
    	object-fit: contain;
    	image-rendering: -webkit-optimize-contrast;
	}
}

.ope-contactcenter,
.security-certification {
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	padding: 120px 0 0;
}
.ope-contactcenter section {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 40px;
	margin-bottom: 40px;
}
.ope-contactcenter section > div,
.ope-contactcenter section > figure {
	flex: 0 0 calc(50% - 20px);
	max-width: calc(50% - 20px);
}
.ope-contactcenter section > div {
	min-width: 0; /* テキストのはみ出し防止 */
}
.ope-contactcenter h3,
.security-certification h4 {
	position: relative;
	color: #ffff96;
	font-size: clamp(1.125rem, 0.951rem + 0.73vw, 1.5rem);
	font-weight: 700;
	line-height: 1.7;
	margin: 0 0 1em;
	padding-left: 20px;
}
.ope-contactcenter h3::before,
.security-certification h4::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.20em;   /* 上端の食い込み（調整可） */
	bottom: 0.20em;/* 下端の食い込み */
	width: 6px;
	background: #ffff96;
}
.ope-contactcenter section h3 span {
	font-size: 0.8125rem;
	color: #fff;
	margin: 0 0 0 1rem;
}
.ope-contactcenter section p {
	font-size: 1rem;
	line-height: 2.2;
	margin: 0 0 0 20px;
	letter-spacing: -0.02em;
}
.ope-contactcenter section figure img,
.ope-contactcenter > figure img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 15px;
	margin: 0 auto;
}


/* ========= About Us：Ope画像ブロック（整理版） ========= */
.ope-contactcenter{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:40px;
	align-items:start;
	overflow:visible; /* 念のため */
}
.ope-contactcenter > .ops-title{
	grid-column:1 / -1;
	color:#ffff96;
	font-size:clamp(1.125rem,0.951rem + 0.73vw,1.5rem);
	font-weight:700;
	line-height:1.7;
	margin:0;
	padding-left:20px;
	position:relative;
}
.ope-contactcenter > .ops-title::before{
	content:"";
	position:absolute;
	left:0;
	top:.20em;
	bottom:.20em;
	width:6px;
	background:#ffff96;
}
.ope-contactcenter > .ops-title span{
	font-size:.8125rem;
	color:#fff;
	margin-left:1rem;
}
.ope-contactcenter .ops-2col{
	grid-column:1 / -1;
	display:grid;
	grid-template-columns:1fr 1fr; /* 左=本文 / 右=女性画像 */
	gap:40px;
	align-items:start;
}
.ope-contactcenter .ops-text{ min-width:0; }
.ope-contactcenter .ops-text p{
	font-size:1rem;
	line-height:2.2;
	margin:0 0 0 20px;
	letter-spacing:-0.02em;
}
.ope-contactcenter .ops-main img,
.ope-contactcenter .ops-sub img,
.ope-contactcenter .ops-office img{
	display:block;
	width:100%;
	height:auto;
	border-radius:15px;
}
.ope-contactcenter .ops-main{
	margin-top: 3rem;
}
.ope-contactcenter .ops-sub{
	grid-column:1 / 2;
	margin-top: -11rem;
}
.ope-contactcenter .ops-office{
	grid-column:1 / -1;
}

@media (max-width:768px){
	.ope-contactcenter{ 
		display:block;
	}
	.ope-contactcenter .ops-2col{ 
		display:block;
	}
	.ope-contactcenter .ops-title{
		margin-bottom:20px;
	}
	.ope-contactcenter .ops-text p{
		margin:0 0 20px;
	}
	.ope-contactcenter .ops-main{
		margin-top:0;
		margin-bottom:20px;
	}
	.ope-contactcenter .ops-sub{
		margin-top:0;
		margin-bottom:20px;
	}
	.ope-contactcenter .ops-office{
		margin-top:0;
	}
}






.security-certification {
	display: flex;
	gap: 40px;
}
.security-certification > div {
	flex: 0 0 calc(40% - 20px);
	max-width: calc(40% - 20px);
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.security-certification > div img {
	width: 100%;
	height: auto;
	max-width: 520px;
	display: block;
}
.security-certification > section {
	flex: 0 0 calc(60% - 20px);
	max-width: calc(60% - 20px);
	min-width: 0;
}
.security-certification > section > p {
	font-size: 1rem;
	line-height: 1.8;
	margin: 0 0 1.5em 20px;
}
.security-certification > section > p br.sp-br {
	display: none;
}
.security-certification > section > div {
	background: #fff;
	border-radius: 15px;
	padding: 20px 10px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-left: 20px;
}
.security-certification > section > div figure,
.security-certification > section > div p {
	flex: 1 1 50%;
	margin: 0;
}
.security-certification > section > div figure img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}
.security-certification > section > div p {
	font-size: 0.875rem;
	color: #333;
	line-height: 1.4;
}
.security-certification > section > div p span {
	font-size: 0.8125rem;
}
.security-certification > section > .sc-hero--sp { 
  display: none !important;
}

@media (min-width: 769px) and (max-width: 960px){
	.ope-contactcenter section {
		align-items: flex-start;
	}
	.ope-contactcenter section > figure,
	.ope-contactcenter section > div {
		align-self: flex-start;
	}
}
@media (max-width: 768px){
	.ope-contactcenter {
		padding: 60px 0 0;
	}
	.security-certification {
		padding: 40px 0 0;
	}
	.ope-contactcenter section {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		margin-bottom: 20px;
	}
	.ope-contactcenter section > div,
	.ope-contactcenter section > figure {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}
	.ope-contactcenter h3 {
		line-height: 1.75;
		padding-left: 14px;   /* 左ボーダー分のインデント */
	}
	.ope-contactcenter h3::before {
		width: 4px;
		top: .2em; bottom: .2em;
	}
	.ope-contactcenter section h3 span {
		display: block; font-size: .75rem; margin-top: .3em;
	}
	.ope-contactcenter section p {
		font-size: .8125rem;
		line-height: 1.9;
		padding-left: 14px;
		margin: 0 0 1em 0;
		letter-spacing: -0.08em;
	}
	.ope-contactcenter section figure img,
	.ope-contactcenter > figure img {
		width: 100%;
		height: auto;
		display: block;
		border-radius: 12px;
	}
	.security-certification {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.security-certification > section { order: 1; }
	.security-certification > div { order: 2; }

	/* 子要素は親いっぱいに */
	.security-certification > div,
	.security-certification > section {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}
	.security-certification h4 {
		line-height: 1.7;
		padding-left: 14px;
	}
	.security-certification h4::before {
		width: 4px; top:.2em; bottom:.2em;
	}
	.security-certification > section > p {
		font-size: .875rem;
		line-height: 1.8;
		margin-bottom: 14px;
		margin-left: 14px;
		letter-spacing: -0.04em;
	}
	.security-certification > section > p br.sp-br {
		display: block;
	}
	.security-certification > section > div {
		background: #fff;
		border-radius: 12px;
		padding: 14px;
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin-left: 14px;
	}
	.security-certification > section > div figure {
		width: 80%;
		margin: 0 auto;
	}
	.security-certification > section > div figure img {
		width: 100%;
		border-radius: 8px;
		display: block;
	}
	.security-certification > section > div p {
		font-size: .875rem; line-height: 1.5;
	}
	.security-certification > section > div p span {
		font-size: .8125rem;
	}
	.security-certification > div img{
		width: 100%;
		height: auto;
		display: block;
	}
	.security-certification > div {
		display: none;
	}
	.security-certification > section > .sc-hero--sp {
		display: block !important;
		background: transparent !important;
		padding: 0 !important;
		margin: 8px 0 12px !important;
	}
	.security-certification > section > .sc-hero--sp img {
		width: 100%;
		height: auto;
		display: block;
	}
}

/* HOMEに移動ボタン */
.btn_viewmore.backhome {
	display:flex;
	justify-content:center;
	align-items:center;
	width:fit-content;
	margin:40px auto 0;
	position:relative;
	isolation:isolate;
	overflow:visible;
	--arrow-overhang: 10px;
}
.btn_viewmore.backhome::before {
	content:"";
	position:absolute;
	inset:0;
	border-radius:30px;
	background:#fff;
	border:1px solid #0054a7;
	z-index:2 !important;
	transition: all .3s ease;
}
.btn_viewmore.backhome a {
	position:relative;
	color:#0054a7;
	z-index:3 !important;
	transition: color .3s ease;
}
.btn_viewmore.backhome .btn-r-arrow {
	position:absolute;
	top:50%;
	left:100%;
	transform:translateY(-50%);
	width:60px;
	height:40px;
	pointer-events:none;
	overflow:visible;
	z-index:1 !important;
	margin-left: calc(-1 * var(--arrow-amp) + var(--arrow-overhang) - 10px) !important;
}
.btn_viewmore.backhome .btn-r-arrow svg line,
.btn_viewmore.backhome .btn-r-arrow svg polyline {
	stroke:#0054a7;
	stroke-width:1;
	fill:none;
}
.btn_viewmore.backhome:hover::before {
	background: #0054a7;
	border-color: #0054a7;
}
.btn_viewmore.backhome:hover a {
  	color: #fff;
}


/* コンタクトセンター運営ページ
---------------------------------------------------------------------- */
/* our solution共通 .page-container, content-lead */
.page-container {
	color: #fff;
	border-radius: 30px;
	--solutions-num-h: 200px;
	padding: clamp(48px,6vw,60px) 30px;
	overflow: hidden;
}
.page-container h1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain !important;
	min-height: var(--solutions-num-h);
	font-family:'GothamBook',"Noto Sans JP",sans-serif;
  	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
	line-height: 1;
	margin: 0 0 32px;
	padding: 0 16px;
}
.page-container h1 span {
	display:block;
	font-family:"Noto Sans JP",sans-serif;
	font-size: 1.6875rem;
	font-weight: 700;
	margin-top:.6em;
	letter-spacing:.06em;
}

.cc-container{
	background: #4c9ace;
}
.cc-container h1 {
	background-image: url("images/our-solutions-num-01.png");
}

.content-lead {
	max-width: 860px;
	margin: 0 auto 60px;
}
.content-lead.content-lead--cc {
	max-width: 860px;
	margin: 0 auto 60px;
}
.content-lead .lead-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
.content-lead .lead-h2 {
	order:1;
	flex: 1 1 auto;
	min-width: 0;
	margin: 10px 0 0;
	text-align: left;
	font-size: clamp(1.5rem, 1.268rem + 0.98vw, 2rem);
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: .02em;
}
.content-lead.content-lead--cc p span {
	font-weight: 700;
}
.content-lead .lead-illust {
	order: 2;
	flex: 0 1 360px;
	margin-left: 40px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.content-lead .lead-illust img {
	width: 100%;
	max-width: 360px;
	height: auto;
	display: block;
	filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
}
.content-lead .lead-inner > p {
	order: 3;
	flex: 0 0 100%;
	text-align: center;
	margin: 0 auto 0;
	line-height: 2.2;
	font-size: clamp(0.875rem, 0.821rem + 0.24vw, 1rem);
}
.content-lead--cc p br.sp-br {
		display: none;
	}

@media (min-width:769px) {
	.content-lead {
		--lead-gap: 20px;
		--illust-w: clamp(260px, 36%, 360px); /* 240～340で可変（改行防止に有利） */
	}
	.content-lead .lead-h2 {
		flex: 1 0 calc(100% - var(--illust-w) - var(--lead-gap));
		max-width: calc(100% - var(--illust-w) - var(--lead-gap));
		overflow-wrap: anywhere;
	}
	.content-lead .lead-illust {
		flex: 0 0 var(--illust-w);
		width: var(--illust-w);
		min-width: var(--illust-w);
		margin-left: var(--lead-gap);
	}
}

@media (max-width: 768px) {
	.page-container {
		--solutions-num-h: 150px;
		padding: 48px 25px;
	}
	.page-container h1 {
		font-size: clamp(1.125rem, 0.758rem + 1.55vw, 1.5rem);
		margin: 0 0 25px;
	}
	.page-container h1 span {
		font-size: clamp(1.25rem, 0.822rem + 1.8vw, 1.688rem);
	}
	.content-lead {
		max-width: 640px;
		margin: 0 auto 20px;
	}
	.content-lead .lead-inner {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;
	}
	.content-lead .lead-h2 {
		order: 1;
		width: 100%;
		margin: 10px 0 0;
		font-size: clamp(1.313rem, 0.884rem + 1.8vw, 1.75rem);
		text-align: left;
	}
	.content-lead .lead-illust {
		order: 2;
		flex: 0 0 auto !important; /*  360px のflex-basisを打ち消す */
		align-self: center;  /* 横位置を明示（親の align-items に依存しない） */
   	 	min-height: 0;             /* 念のため */
		margin: 20px 0 40px;
		width: auto;
	}
	.content-lead .lead-illust img {
		width: clamp(220px, 76vw, 320px);
		max-width: none;
		height: auto;
	}
	.content-lead .lead-inner > p {
		order: 3;
		margin: 28px auto 0;
		text-align: center;
		line-height: 2.0;
	}
}
@media (max-width: 480px) {
	.page-container {
		border-radius: 0;
	}
	.contactcenter-lead .lead-inner {
		justify-content: flex-start !important;
		row-gap: 0;
	}
	.contactcenter-lead .lead-illust {
		line-height: 0;
		flex: 0 0 auto !important; /* 念押し */
	}
	.contactcenter-lead .lead-illust img {
		display: block;
		width: 240px;
		max-width: 240px;
		height: auto;
	}
	.contactcenter-lead .lead-inner > p {
		margin-top: 12px;
	}
	.content-lead--cc p {
		letter-spacing: -0.06em;
	}
	.content-lead--cc p br {
		display: none;
	}
	.content-lead--cc  p br.sp-br {
		display: block;
	}
}


.headline-tab {
  display: flex;
  justify-content: center;
  background: transparent;
  padding: 30px 30px 20px;
  position: relative;
  overflow: hidden;
  margin-left: -35px;
  margin-right: -35px;
}
.headline-tab h3 {
  display: block;
  width: min(480px, calc(100% - 2rem));
  text-align: center;
  padding: 1em 0 0;
  color: #fff;
  font-size: clamp(1rem, 0.884rem + 0.49vw, 1.25rem);
  font-weight: 700;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  background: transparent;
  position: relative;
  z-index:1;
}
.headline-tab h3::before,
.headline-tab h3::after {
	content: "";
	position: absolute;
	top: 100%;
	transform: translateY(-1px);
	height: 2px;
	background: #fff;
	width: 100vmax;
	pointer-events: none;
}
.headline-tab h3::before {
	right: 100%;
}
.headline-tab h3::after {
	left: 100%;
}
.headline-tab + span {
	display: block;
	font-size: 0.75rem;
	text-align: center;
	color: #333;
}
@media (max-width:480px){
  .headline-tab {
	padding: 30px 20px 10px;
}
  .headline-tab h3 {
    font-size: 1rem;
    border-radius: 14px 14px 0 0;
    padding: .7em 0 0;
    /* width:min(...) はそのまま有効なので全タブ同じ幅のまま */
  }
}

.heptagon-stage {
	--s: 1;
	width: calc(720px * var(--s));
	height: calc(720px * var(--s));
}
.heptagon-scale{
	width: 720px;
	height: 720px;
	transform-origin: top left;
	transform: scale(var(--s));
}
.heptagon-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px auto 40px;
}
.heptagon-container {
	position: relative;
	width: 720px;
	height: 720px;
}
.heptagon-container svg.heptagon {
	position: absolute;
	top: 0;
	left: 0;
	width: 720px;
	height: 720px;
}
.heptagon-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
}
.heptagon-content img {
	width: 64px;
	height: auto;
	display: block;
	margin: 0 auto 16px;
}
.heptagon-content p {
	font-size: 1.1875rem;
	font-weight: 200;
	line-height: 1.6;
	margin: 0;
}
.circle-list {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.circle-list li {
	width: 190px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: #eee;
	display: flex;
	flex-direction: column;
	justify-content: center; /* テキストを中央揃え */
	align-items: center;
	text-align: center;
	font-size: 1.1875rem;
	line-height: 1.4;
	font-family: sans-serif;
	font-weight: 700;
	color: #187dc0;
	padding: 0.7em;
	box-sizing: border-box;
	position: absolute;
	background-image: var(--num-img), linear-gradient(124deg, #e3e3e3 0%, #ffffff 100%);
	background-repeat: no-repeat, no-repeat;
	background-position: center 40%, center;
	background-size: 40% auto, 100% 100%;
	box-shadow:0 30px 30px rgba(0,0,0,.18);
}
  .circle-list li:nth-child(1){ --num-img: url("images/contactcenter-paleblue-num-01.png"); }
  .circle-list li:nth-child(2){ --num-img: url("images/contactcenter-paleblue-num-02.png"); }
  .circle-list li:nth-child(3){ --num-img: url("images/contactcenter-paleblue-num-03.png"); }
  .circle-list li:nth-child(4){ --num-img: url("images/contactcenter-paleblue-num-04.png"); }
  .circle-list li:nth-child(5){ --num-img: url("images/contactcenter-paleblue-num-05.png"); }
  .circle-list li:nth-child(6){ --num-img: url("images/contactcenter-paleblue-num-06.png"); }
  .circle-list li:nth-child(7){ --num-img: url("images/contactcenter-paleblue-num-07.png"); }

.circle-list li a{
	position: absolute;
	bottom: 2em;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	font-size: 0.75rem;
	font-weight: 400;
	color: #0073e6; 
	text-decoration: none;
}
.circle-list li a:hover {
	color: #005bb5;
}
.circle-list li .icon-wrap{
	position: relative;
	width: 14px;
	height: 14px;
	margin-left: 4px;
	flex: 0 0 14px;
}
.circle-list li .icon-wrap svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	shape-rendering: geometricPrecision;
	transition: transform .25s ease, opacity .2s ease;
}
.circle-list li .icon-wrap svg *{
	vector-effect: non-scaling-stroke;
}
.circle-list li .icon-wrap .icon--hover{
  transform-box: view-box;
  transform-origin: 6.5 6.5;
}
.icon--default {
	opacity: 1;
	stroke: currentColor;
	fill: none;
	stroke-width: 1;
}
.icon--hover {
	opacity: 0;
}
.circle-list li a:hover .icon--default {
	opacity: 0;
}
.circle-list li a:hover .icon--hover {
	opacity: 1;
	transform: rotate(315deg);
}
  /* 正七角形頂点に配置 */
.heptagon-container li:nth-child(1){ left: calc(400px * .9 - 95px); top: calc(111px * .9 - 95px); }
.heptagon-container li:nth-child(2){ left: calc(623.3px * .9 - 95px); top: calc(222.9px * .9 - 95px); }
.heptagon-container li:nth-child(3){ left: calc(678.2px * .9 - 95px); top: calc(467.1px * .9 - 95px); }
.heptagon-container li:nth-child(4){ left: calc(525.1px * .9 - 95px); top: calc(666.1px * .9 - 95px); }
.heptagon-container li:nth-child(5){ left: calc(274.9px * .9 - 95px); top: calc(666.1px * .9 - 95px); }
.heptagon-container li:nth-child(6){ left: calc(121.8px * .9 - 95px); top: calc(467.1px * .9 - 95px); }
.heptagon-container li:nth-child(7){ left: calc(176.7px * .9 - 95px); top: calc(222.9px * .9 - 95px); }

/* ポップアップ（1だけ） */
.cc-popup {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	z-index: 3;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .28s ease, visibility .28s ease;
}
.cc-popup.is-open{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.cc-popup-inner {
	position: relative;
	width: min(280px, 62%);
	aspect-ratio: 1 / 1;
	box-sizing: border-box;
	padding: 28px 32px;
	border-radius: 16px;
	background: rgba(255,255,255,.9);
	translate: 0 20px;
	color: #187dc0;
	overflow: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	opacity: 0;
	scale: .96;
	transition: opacity .28s ease, scale .28s ease;
}
.cc-popup.is-open .cc-popup-inner {
	opacity: 1;
	scale: 1;
}
/* 左上の“紺バツ”ボタン */
.cc-popup-close {
	position: absolute;
	left: 16px;
	top: 16px;
	width: 12px;
	height: 12px;
	display: grid;
	place-items: center;
	color: #1a5087;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
}
.cc-popup-close svg {
	width: 100%;
	height: 100%;
	transform: rotate(315deg);
	display: block;
}
.cc-popup-ttl {
	font-size: 1.125rem;
	text-align: center;
	margin: 0;
}
.cc-popup-content {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #333;
	margin: 0;
}
.circle-list li a.active .icon--default {
	opacity:0;
}
.circle-list li a.active .icon--hover {
	opacity: 1;
	transform: rotate(315deg);
}
.heptagon-container svg.heptagon { z-index: 0; }
.heptagon-content { z-index: 1; }
.circle-list li { z-index: 2; }
.cc-popup { z-index: 3; }

@media only screen and (max-width: 640px) {
	.heptagon-stage {
		width: 100%;
		height: auto;
  	}
	.heptagon-scale{
		width: 100%;
		height: auto;
		transform: none;
	}
	.heptagon-container{
		width: 100%;
		max-width: 520px;
		height: auto;
		margin: 0 auto;
		padding: 50px 14px 20px;
		background: linear-gradient(180deg,#2b86c1 0%, #1e73b0 100%);
		border-radius: 14px;
		position: relative;
		overflow: visible;
	}
	.heptagon-container svg.heptagon {
		display: none;
	}
	.heptagon-content {
		position: static;
		transform: none;
		margin: 0 auto 30px;
		text-align: center;
		color: #fff;
	}
	.heptagon-content img {
		width: 60px;
		height: auto;
		opacity: .95;
	}
	.heptagon-content p {
		margin: 6px 0 0;
		font-size: 1.125rem;
		line-height: 1.7;
		opacity: .9;
	}
	.circle-list{
		position: static;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 36px;
		margin: 0;
		padding: 8px 0 40px;
		list-style: none;
		height: auto;
		overflow: visible;
	}
	.circle-list li{
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		transform: none;
		margin: 0;

		width: 210px;
		aspect-ratio: 1 / 1;
		border-radius: 50%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		padding: 0.7em;

		color: #187dc0;
		background-image: var(--num-img), linear-gradient(124deg, #e3e3e3 0%, #ffffff 100%);
		background-repeat: no-repeat, no-repeat;
		background-position: center 40%, center;
		background-size: 40% auto, 100% 100%;
		box-shadow: 0 30px 30px rgba(0,0,0,.18);
	}
	.heptagon-container li:nth-child(1),
	.heptagon-container li:nth-child(2),
	.heptagon-container li:nth-child(3),
	.heptagon-container li:nth-child(4),
	.heptagon-container li:nth-child(5),
	.heptagon-container li:nth-child(6),
	.heptagon-container li:nth-child(7) {
			left: auto;
			top:  auto;
	}

	.circle-list li a {
		position: absolute;
		left: 50%;
    	transform: translateX(-50%);
		bottom: 30px;
		font-size: 0.75rem;  /* 指示値 */
		white-space: nowrap;
		color: #0073e6;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 4px;
	}
	.circle-list li a:hover {
		color: #005bb5;
	}
	.circle-list li .icon-wrap {
		position: relative;
		width: 16px;
		height: 16px;
		margin-left: 4px;
		flex: 0 0 16px;
	}
	.circle-list li .icon-wrap svg {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		display: block;
		transition: transform .25s ease, opacity .2s ease;
	}
	.cc-popup{
		position: fixed;
		inset: 0;
		z-index: 10000;
		background: rgba(0,0,0,.4);
		backdrop-filter: blur(2px);
		overscroll-behavior: contain;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity .28s ease, visibility .28s ease;
		height: 100vh;
		height: 100dvh;
		height: 100svh;
		padding: max(env(safe-area-inset-top), 12px) 16px max(env(safe-area-inset-bottom), 16px);
	}
	.cc-popup.is-open{
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.cc-popup-inner{
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: min(88vw, 88vh);
		max-width: 460px;
		aspect-ratio: 1 / 1;
		box-sizing: border-box;
		padding: 28px 32px;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
}
/* ポップアップ中は背面スクロール抑止 */
body.cc-popup-open{
	overflow: hidden;
	touch-action: none;
}


/*  CASE-OPERATION: PC共通  */
.case-operation {
	padding: 40px 0;
	text-align: center;
}
.case-operation h4 {
	font-size: 1.125rem;
	color: #fff;
	margin: 0 0 1em;
}
.case-operation p {
	color: #333;
	line-height: 2;
}
.case-operation p br.sp-br {
		display: none;
	}
.case-operation picture {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 0;
}
.case-operation picture.img-pc {
	display: block; /* PCは従来画像を表示 */
}
.cc-sp {
	display: none;
}

@media screen and (max-width:640px) {
	.contactcenter {
		overflow-x: hidden;
	}
	.case-operation {
		padding: 40px 0 40px;
		text-align: center;
	}
	.case-operation h4 {
		font-size: 1rem;
		color: #fff;
		margin: 0 0 1em;
	}
	.case-operation p {
		color: #333;
		line-height: 1.8;
		font-size: 0.875rem;
	}
	.case-operation p br {
		display: none;
	}
	.case-operation p br.sp-br {
		display: block;
	}
	.case-operation picture {
		max-width: 100%;
		margin: 0 auto;
		padding: 20px 0;
	}
	.case-operation picture.img-pc {
		display: none;
	}
	.cc-sp {
		display: block;
		position: relative;
		width: 100%;
		max-width: 640px;
		margin: 0 auto;
		overflow: hidden;
	}
	.cc-fixed {
		width: 100%;
		margin: 0 auto;
		text-align: center;
		position: relative;
		z-index: 1;
	}
	.cc-fixed img {
		width: 100%;
		height: auto;
		display: block;
	}
	.cc-fixed.cc-over {
		position: relative;
		width: 100%;
		transform: scale(0.8);
		transform-origin: center top;
		margin: 0 auto;
		z-index: 3;
		pointer-events: none;
		margin-bottom: 0;
	}
	.cc-slider {
		position: relative;
		width: 122%;
		left: 50%;
		transform: translateX(-50%);
		margin-top: -9%;
		margin-bottom: 10px;
		overflow: hidden;
		z-index: 2;
		max-width: none;
	}
	.cc-track {
		position: relative;
		width: 165%;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		justify-content: center;
		align-items: center;
		transition: transform 0.6s ease;
	}
	.cc-track img {
		width: 100%;
		height: auto;
		max-width: none;
		display: block;
		user-select: none;
		pointer-events: none;
	}
	.cc-prev,
	.cc-next {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		background: rgba(0, 0, 0, 0.35);
		color: #fff;
		border: none;
		padding: 3px 6px;
		border-radius: 3px;
		cursor: pointer;
		z-index: 10;
		font-size: 0.9rem;
	}
	.cc-prev { left: 44px; }
	.cc-next { right: 44px; }
	.cc-sp .cc-fixed:first-of-type {
		margin-bottom: 10px;
	}
	.cc-sp .cc-fixed:last-of-type {
		margin-top: 10px;
	}
}


.cc-content-flow {
	max-width: 900px;
	margin: 40px auto;
}
@media screen and (max-width:640px) {
	.cc-content-flow {
		margin: 20px auto;
	}
}

/* 問い合わせボタン */
.btn_contact {
	text-align: center;
	margin: 80px 0 40px;
}
.btn_contact a {
	display: inline-flex;
	align-items: center;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	color: #000;
	text-decoration: none;
	border: 1px solid #7d7d7d;
	border-radius: 9999px;
	padding: 0.8em 1.9em;
	transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn_contact .chevrons {
	display: inline-flex;
	align-items: center;
	margin-left: 10px;
	line-height: 1;
	position: relative;
}
.btn_contact .chevrons i {
	display: block;
	width: 10px;
	height: 10px;
	border-right: 1px solid #7d7d7d;
	border-top: 1px solid #7d7d7d;
	transform: rotate(45deg);
	position: relative;
}
.btn_contact .chevrons i + i {
  	margin-left: -5px;
}
.btn_contact a:hover {
	background: #0071bc;
	color: #fff;
	border-color: #0071bc;
}
.btn_contact a:hover .chevrons i {
  	border-color: #fff;
}
@media screen and (max-width:640px) {
	.btn_contact {
		margin: 40px 0;
	}
}


/*  分析サービスページ
---------------------------------------------------------------- */
.as-container {
	background: #f6ad48;
}
.as-container h1 {
	background-image: url("images/our-solutions-num-02.png");
}
.as-container .lead-h2 {
	font-size: clamp(1.25rem, 1.036rem + 0.95vw, 1.75rem);
}

.data-analysis {
	width: 100%;
	max-width: 900px; 
	margin: 60px auto;
	padding: 0 20px;
	box-sizing: border-box;
	text-align: center;
}
.data-analysis .img-pc {
	display: flex;
	flex-direction: column;	
	align-items: center;	
}
.data-analysis .img-pc img {
	width: 100%;
	height: auto;
}
.data-analysis .img-sp {
  	display: none;
}
.as-content-flow {
	max-width: 900px;
	margin: 40px auto;
}

@media (max-width: 640px) {
	.as-container .lead-h2 {
		font-size: clamp(1.25rem, 1.036rem + 0.95vw, 1.75rem);
		letter-spacing: -0.05em;
	}
	.data-analysis {
		margin: 40px auto;
	}
	.data-analysis .img-pc {
		display: none;
	}
	.data-analysis .img-sp {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.data-analysis .img-sp img {
		width: 100%;
		height: auto;
	}
	.as-content-flow {
		margin: 40px auto 20px;
	}
}


/*  カスハラ対策支援サービスページ
---------------------------------------------------------------- */
.ch-container {
	background: #8cc648;
	overflow: visible
}
.ch-container h1 {
	background-image: url("images/our-solutions-num-03.png");
	margin: 0;
}

.content-lead.content-lead--kasuhara {
	max-width: 860px;
	margin: 0 auto 60px;
	position: relative;
}
.content-lead.content-lead--kasuhara .lead-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	grid-template-rows: 40px auto auto; /* h2/p を40px下げる */
	column-gap: 12px;
	align-items: start;
	justify-content: stretch;
}

.content-lead.content-lead--kasuhara .lead-h2 {
	grid-column: 1;
	grid-row: 2;
	margin: 0 0 8px;
	text-align: left;
	font-size: clamp(1.5rem, 1.268rem + 0.98vw, 2rem);
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: .02em;
	white-space: nowrap;
	word-break: normal;
	overflow-wrap: normal;
}

.content-lead.content-lead--kasuhara .lead-illust {
	grid-column: 2;
	grid-row: 1 / span 3;
	justify-self: end;
	margin: 0;
	transform: none;
	position: relative;
	z-index: 1;
}
.content-lead.content-lead--kasuhara .lead-illust img {
	width: 100%;
	max-width: 320px;
	height: auto;
	display: block;
	filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
}
.content-lead.content-lead--kasuhara .lead-inner > p {
	grid-column: 1;
	grid-row: 3;
	margin: 12px 0 0;
	text-align: left;
	line-height: 2;
	color: #fff;
	font-size: clamp(0.818rem, 0.766rem + 0.23vw, 0.938rem);
	font-weight: 800;
	white-space: nowrap;
	word-break: normal;
	overflow-wrap: normal;
	z-index: 2;
}
.ch-container h1 { margin-bottom: 0; }
.ch-container h1 + .content-lead.content-lead--kasuhara {
	margin-top: 0;
	padding-top: 0;
}

@media (max-width: 768px) {

	/* “潜り”量をここで調整（スクショより +30px 深く：合計 58px） */
	.content-lead.content-lead--kasuhara {
		margin: 0 auto 20px;
		--sp-overlap: 58px;
		overflow: visible; /* 見切れ防止 */
	}

	.content-lead.content-lead--kasuhara .lead-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	/* 見出しは前面 */
	.content-lead.content-lead--kasuhara .lead-h2 {
		order: 1;
		margin: 10px 0 18px;
		white-space: normal;
		position: relative;
		z-index: 2;
	}

	/* イラストを見出しの下に潜らせる */
	.content-lead.content-lead--kasuhara .lead-illust {
		order: 2;
		position: relative;
		z-index: 1;
		margin: 20px 0 24px;
		margin-top: calc(-1 * var(--sp-overlap));
	}
	.content-lead.content-lead--kasuhara .lead-illust img {
		max-width: clamp(260px, 80vw, 360px);
		height: auto;
	}

	/* 本文は幅いっぱい＆少し詰める */
	.content-lead.content-lead--kasuhara .lead-inner > p {
		order: 3;
		width: 100%;
		margin: 0;
		margin-top: clamp(10px, 3vw, 14px);
		white-space: normal;
	}
}

.ch-container .content-wrap:nth-of-type(1) .pic-content {
	margin: 60px auto 80px;
	max-width: 900px;
}
.ch-container .content-wrap:nth-of-type(2) .pic-content {
	margin: 60px auto 80px
}
.ch-container .content-wrap:nth-of-type(2) .pic-content h4 {
	font-size: 1.25rem;
	margin: 0 0 1.5em;
	text-align: center;
}
.ch-container .content-wrap:nth-of-type(2) .pic-content h4 br.sp-br {
	display: none;
}
.ch-container .content-wrap:nth-of-type(2) picture {
	margin: 20px auto 40px;
	max-width: 900px;
}
.ch-container .content-wrap:nth-of-type(2) .pic-content p {
	font-size: 1.25rem;
	margin: 0 0 1.5em;
	text-align: center;
	font-weight: 700;
	line-height: 2;
}
.ch-container .content-wrap:nth-of-type(2) .pic-content p br.sp-br {
	display: none;
}
.ch-container .content-wrap:nth-of-type(3) h4 {
	text-align: center;
	font-size: 1.25rem;
	margin: 40px 0 0;
}
.ch-container .content-wrap:nth-of-type(3) p:last-of-type {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 100px;
}
.ch-container .content-wrap:nth-of-type(3) p:last-of-type br.sp-br {
	display: none;
}
.ch-container .content-wrap:nth-of-type(3) .pic-content {
	max-width: 900px;
	margin: 20px auto 30px;
}
.ch-container .content-wrap:nth-of-type(3) .headline-tab + p {
	text-align: center;
	color: #231815;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 2;
	margin-top: 40px;
}
.ch-container .content-wrap:nth-of-type(3) p br.sp-br {
	display: none;
}
.ch-container .content-wrap:nth-of-type(4) picture {
	max-width: 900px;
	margin: 60px auto 40px;
}
@media (max-width: 640px) {
	.ch-container .content-wrap:nth-of-type(1) .pic-content {
		margin: 30px auto 40px;
	}
	.ch-container .content-wrap:nth-of-type(2) .pic-content {
		margin: 30px auto 40px
	}
	.ch-container .content-wrap:nth-of-type(2) .pic-content h4 {
		font-size: 1.125rem;
	}
	.ch-container .content-wrap:nth-of-type(2) .pic-content h4 br.sp-br {
		display: block;
	}
	.ch-container .content-wrap:nth-of-type(2) picture {
		margin: 20px auto 20px;
	}
	.ch-container .content-wrap:nth-of-type(2) .pic-content p {
		font-size: 0.9375rem;
	}
	.ch-container .content-wrap:nth-of-type(2) .pic-content p br.sp-br {
		display: block;
	}
	.ch-container .content-wrap:nth-of-type(3) .headline-tab + p {
		margin-top: 20px;
		letter-spacing: -0.02em;
	}
	.ch-container .content-wrap:nth-of-type(3) p br {
		display: none;
	}
	.ch-container .content-wrap:nth-of-type(3) p br.sp-br {
		display: block;
	}
	.ch-container .content-wrap:nth-of-type(3) h4 {
		font-size: 1.0625rem;
	}
	.ch-container .content-wrap:nth-of-type(3) p:last-of-type {
		font-size: 1.0625rem;
		margin: 0 0 40px;
	}
	.ch-container .page-content .content-wrap:nth-of-type(3) p:last-of-type br.sp-br {
		display: block;
	}
	.ch-container .content-wrap:nth-of-type(4) picture {
		margin: 40px auto 20px;
	}
}


/*  生成AIパッケージページ
---------------------------------------------------------------- */
.ai-pkg-container {
	background: #b996cd;
	overflow: visible;
}
.ai-pkg-container h1 {
	background-image: url("images/our-solutions-num-04.png");
	margin: 0;
}
.content-lead.content-lead--ai {
	max-width: 860px;
	margin: 0 auto 20px;
}
.content-lead--ai .lead-grid--ai {
	display: grid;
	grid-template-columns: minmax(0, 1fr) clamp(300px, 34%, 360px);
	align-items: start;
	column-gap: 8px;
	row-gap: 0;
}
.content-lead--ai .lead-h2 {
	margin: 45px 0 0;
	line-height: 1.8;
	white-space: nowrap;
	word-break: keep-all;
	overflow-wrap: normal;
	text-align: left;
}
.content-lead--ai .lead-illust {
	margin: 0;
	justify-self: end;
	position: static;
	margin-top: calc(-1 * var(--solutions-num-h) * 0.32);
	z-index: 1;
}
.content-lead--ai .lead-illust img {
	width: clamp(280px, 34vw, 360px);
	height: auto;
	display: block;
	filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
	transform: scale(1.1);
	transform-origin: center bottom;
}
.content-lead--ai > p {
	margin-top: 12px;
	line-height: 2.1;
	text-align: center;
	font-weight: 600;
}
.content-lead--ai > p br.sp-br {
	display: none;
}
.lead-logo--ai {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.lead-logo--ai p {
	font-size: 0.75rem;
	color: #333;
}
.lead-logo--ai p br.sp-br {
	display: none;
}
.lead-logo--ai > div {
	width: 260px;
	padding-top: 30px;
}
.page-content--ai .headline-tab:first-of-type {
	padding: 10px 20px 10px;
}
.page-content--ai .content-wrap:nth-of-type(1) picture {
	max-width: 900px;
	margin: 60px auto 120px;
}
.page-content--ai .content-wrap:nth-of-type(2) picture:nth-of-type(1) {
	max-width: 900px;
	margin: 60px auto 20px;
}
.page-content--ai .content-wrap:nth-of-type(2) picture:nth-of-type(1) + p br.sp-br {
	display: none;
}
.page-content--ai picture:nth-of-type(2) {
	max-width: 900px;
	margin: 30px auto 20px;
}
.page-content--ai picture:nth-of-type(3) {
	max-width: 900px;
	margin: 30px auto 30px;
}
.page-content--ai p {
	color: #333;
	text-align: center;
}
.page-content--ai .content-wrap:nth-of-type(2) picture:nth-of-type(3) + p {
	color: #fff;
	font-weight: 700;
}

.note--ai-01 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: 50px auto 0;
	padding: .8em 1.4em;
	border-radius: 9999px;
	background: #fff;
	font-size: clamp(0.813rem, 0.759rem + 0.24vw, 0.938rem);
	line-height: 1;
}
.note-sp--ai {
	display: none;
}
/*「要約前」のラベル指定*/
.page-content--ai picture.has-label {
	position: relative;
	display: block;
	max-width: 500px;
}
.page-content--ai picture.has-label::after {
	content: "要約前";
	position: absolute;
	top: 10px;
	right: 10px;
	background: #823c9b;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	padding: .35em .8em .5em;
	line-height: 1;
	white-space: nowrap;
	z-index: 3; /* 最前面に固定 */
	pointer-events: none;
}
.page-content--ai picture.has-popup {
	position: relative;
	display: block;
	touch-action: manipulation;
}
.page-content--ai picture.has-popup::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff url("images/ai-pkg-img-04.png") center / contain no-repeat;
	opacity: 0;
	transform: scale(.985);
	transition: opacity .28s ease, transform .28s ease;
	pointer-events: none;
	z-index: 2;
}

@media (hover: hover) {
	.page-content--ai picture.has-popup:hover::before {
		opacity: 1;
		transform: scale(1);
	}
	.page-content--ai picture.has-popup:hover.has-label::after {
		content: "要約後";
	}
}
.page-content--ai picture.has-popup.is-open::before {
	opacity: 1;
	transform: scale(1);
}
.page-content--ai picture.has-popup.is-open.has-label::after {
	content: "要約後";
}
.page-content--ai .content-wrap:nth-of-type(2) picture:nth-of-type(4) {
	max-width: 900px;
	margin: 30px auto 120px;
}
.page-content--ai .content-wrap:nth-of-type(2) picture:nth-of-type(5) {
	margin: 30px auto 80px;
}
.page-content--ai .content-wrap:nth-of-type(2) picture:nth-of-type(4) + p {
	font-weight: 700;
	color: #fff
}
.page-content--ai .content-wrap:nth-of-type(3) h4 {
	max-width: 900px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin: 40px auto 18px;
	padding: .2em 0;
	color: #fff;
	font-weight: 700;
	font-size: clamp(0.9375rem, 2.2vw, 1.25rem);
	text-align: center;
}

.page-content--ai .content-wrap:nth-of-type(3) h4::before,
.page-content--ai .content-wrap:nth-of-type(3) h4::after {
	content: "";
	flex: 1 1 0;
	height: 10px;
	background-image: repeating-linear-gradient(
		90deg,
		#fff 0 1px,
		transparent 1px 6px		/* ピッチ＝6px（1px線＋5px間隔） */
	);
	align-self: center;        /* 念のため自身で中央に */
	position: relative;
	transform: translateY(2px);
}
.page-content--ai .content-wrap:nth-of-type(3) picture {
	max-width: 900px;
	margin: 40px auto 60px;
}
.page-content--ai .content-wrap:nth-of-type(4) picture {
	margin: 60px auto 40px;
}


@media (max-width: 768px) {
	.content-lead.content-lead--ai {
		margin: 0 auto;
	}
	.content-lead--ai .lead-grid--ai {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		row-gap: 0;
	}
	.content-lead--ai .lead-h2 {
		margin: 16px 0 0;
		white-space: nowrap;
		word-break: keep-all;
		overflow-wrap: normal;
		text-align: left;
		width: 100%;
	}
	.content-lead--ai .lead-illust {
		order: 2;
		position: static;
		top: auto;
		margin-top: 12px;
		margin-bottom: 0;
		width: 60%;
		align-self: center;
	}
	.content-lead--ai .lead-illust img {
		width: 100%;
		height: auto;
		transform: none;
		transform-origin: center bottom;
	}
	.content-lead--ai > p {
		margin-top: 40px;
		font-size: 0.875rem;
	}
	.content-lead--ai > p br.sp-br {
		display: block;
	}
	.lead-logo--ai {
		display: block;
		margin-top: 20px;
	}
	.lead-logo--ai p {
		font-size: 0.8125rem;
		text-align: center;
	}
	.lead-logo--ai > div {
		width: 100%;
		margin: 15px 0 0 15px;
		padding: 0;
	}

	/* page-content */
	.page-content--ai .content-wrap:nth-of-type(1) picture {
		margin: 40px auto 60px;
	}
	.page-content--ai .content-wrap:nth-of-type(2) picture:nth-of-type(1) {
		margin: 40px auto 20px;
	}
	.page-content--ai .content-wrap:nth-of-type(2) picture:nth-of-type(1) + p {
		font-size: 0.875rem;
	}
	.page-content--ai .content-wrap:nth-of-type(2) picture:nth-of-type(1) + p br.sp-br {
		display: block;
	}
	.note-sp--ai {
		display: block;
	}
	.note-pc--ai {
		display: none;
	}
	.note--ai-01 {
		width: 100%;
		margin: 30px auto 0;
		padding: .8em 0;
	}
	.page-content--ai .content-wrap:nth-of-type(2) picture:nth-of-type(4) {
		margin: 15px auto 80px;
	}
	.page-content--ai .content-wrap:nth-of-type(3) picture:nth-of-type(1) {
		margin: 30px auto 40px;
		padding: 0 20px;
	}
	.page-content--ai .content-wrap:nth-of-type(3) h4 {
		gap: .5rem;
		margin: 40px auto 0;
	}
	.page-content--ai .content-wrap:nth-of-type(3) h4::before,
	.page-content--ai .content-wrap:nth-of-type(3) h4::after {
		height: 7px;
		background-image: repeating-linear-gradient(
			90deg,
			#fff 0 1px,
			transparent 1px 5px		/* ピッチ＝5px */
		);
		flex-basis: 56px;
	}
	.page-content--ai .content-wrap:nth-of-type(4) picture {
		margin: 60px auto 20px;
	}
}

/* 生成AIパッケージページだけクリップして横スクロールを抑止 */
.ai-pkg-container{
  overflow: clip; /* 対応外ブラウザ用のフォールバックも付ける */
}
@supports not (overflow: clip){
  .ai-pkg-container{ overflow: hidden; }
}


/* フッターリンクページcss
-------------------------------------------------------------- */
.footlink-main {
	position: relative;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto 40px;
	padding: 40px 25px 0;
}
.footlink-ttl {
	position: relative;
	width: 100%;
	height: 120px;
	background: #fbecee;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footlink-ttl h1 {
	font-size: clamp(1.063rem, 0.976rem + 0.37vw, 1.25rem);
	color: #0054a7;
	font-weight: 700;
	letter-spacing: 0.06em;
}
.footlink-ttl > div {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 80px;
}
.footlink-ttl > div img {
	width: 100%;
	height: auto;
	display: block;
}
.footlink-actions {
	width: 100%;
	max-width: 1080px;
	margin: 20px auto 0;
	display: flex;
	justify-content: flex-end;
}
.btn-print {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #0054a7;
	color: #fff;
	font-weight: 600;
	font-size: 0.8125rem;
	border-radius: 10px;
	padding: 10px 10px 10px 40px; /* 左はアイコン分 */
	cursor: pointer;
}
.btn-print::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: url("images/icn-print.png") no-repeat center / contain;
}
.footlink-container {
	width: 100%;
	max-width: 860px;
	padding: 40px 0 20px;
	font-size: 0.9375rem;
	margin: 0 auto;
}
.footlink-container > span:first-of-type {
	display: block;
	text-align: right;
	line-height: 1.7;
	margin: 0 0 50px;
}
.footlink-container p {
	letter-spacing: -0.03em;
}
.footlink-container p a {
	color: #0072bc;
}
.footlink-container dl {
	margin: 30px 0 40px;
}
.footlink-container dl > dt {
	margin: 0 0 .3em;
	font-weight: 600;
}
.footlink-container dl > dd {
	margin: 0 0 1.4em;
}
.footlink-container > dl > dd:last-of-type {
	margin: 0;
}
.footlink-container dl dl {
	margin: 30px 0 20px;
}
.footlink-container .other-footlink {
	color: #0072bc;
	font-size: 0.8125rem;
	margin: 40px 0 0;
}
.footlink-container .other-footlink a {
	line-height: 2;
	text-decoration: underline;
}
.footlink-container .mb-20 {
	margin-bottom: 2em!important;
}
.footlink-container dl > dd > p {
	margin: 1.8em 0 0;
}

.footlink-container section h1 {
	color: #0054a7;
	font-size: 1rem;
}
.footlink-container section > dl > dt {
	font-weight: 700;
}
.footlink-container section h3 {
	font-size: 1rem;
	margin-top: 1.5rem;
	font-weight: normal;
}
.footlink-container section dl dl {
	margin: 0 0 20px;
}
.footlink-container section dl > dt {
	margin: 0;
}
.footlink-container section dl > dd {
	margin: 0;
}
.footlink-container section dl > dd ol{
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}
.footlink-container section dl > dd ol ul {
	margin: 0 0 0 2rem
}
.footlink-container {
	font-feature-settings: "palt";
}
.footlink-container section > dl {
	margin: 20px 0 30px;
}
.footlink-container span.amendment-date {
	text-align: left
}
.footlink-container .isms-certification {
	display: flex;
}
.footlink-container .isms-certification div {
	width: 230px;
	margin: 0 10px 0 0;
}
.footlink-container .isms-certification span {
	font-size: 0.8125rem;
}
.footlink-container.info-sec dl:first-of-type dl dd {
	margin: 0 0 1.2rem;
}

@media (max-width: 768px) {
	.footlink-ttl {
		height: 90px;
		border-radius: 12px;
	}
	.footlink-ttl > div {
		right: 10px;
		top: 50%;
		width: 60px;
	}
	.footlink-actions {
		margin: 15px auto 0;
	}
	.btn-print {
		font-size: 0.75rem;
		padding: 8px 8px 8px 36px;
		cursor: pointer;
	}
	.btn-print::before {
		left: 8px;
		width: 22px;
		height: 22px;
	}
	.footlink-container {
		padding: 20px 0 20px;
		font-size: 0.9375rem;
		margin: 0 auto;
		font-size: 0.875rem;
	}
	.footlink-container .isms-certification {
		display: block;
	}
	.footlink-container .isms-certification div {
		width: 100%;
		margin: 0 0 5px 0;
	}
	.footlink-container .isms-certification p br {
		display: none;
	}
	.footlink-container .isms-certification p br.sp-br {
		display: block;
	}
}

/* ページトップボタン配置 */
.gotop-wrap {
	width: 100%;
	max-width: 1080px;
	margin: 40px auto 0;
	display: flex;
	justify-content: flex-end;
}
.gotop {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: #0054a7;
	font-weight: 600;
	font-size: 0.875rem;
	border: 1px solid #0054a7;
	border-radius: 30px;
	padding: 6px 16px;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}
.gotop::before,
.gotop::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 12px;
	height: 12px;
	border-left: 1px solid #0054a7;
	border-top: 1px solid #0054a7;
	transform: translateX(-50%) rotate(45deg);
}
.gotop::before {
	top: -19px;
}
.gotop::after {
	top: -13px;
}
.gotop:hover {
	background: #0054a7;
	color: #fff;
}


/* Contactページ
-----------------------------------------------------------------------*/
.contact-mainbox {
  background-color: #fbecee;
  padding: 60px 20px;
  border-radius: 30px;
}
.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #333;
}
.contact-title {
  font-size: 20px;
  color: #0054a7;
  margin-bottom: 40px;
  line-height: 1.6;
  font-family: 'GothamBook', "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.contact-title span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #0054a7;
  margin-top: 4px;
  font-weight: 600;
}
.contact-mainbox .contactBox {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}
.contact-mainbox .contactBox > div {
	display: flex;
	min-width: 0;
}
.contact-mainbox .contactBox > div > a {
	--blue: #0054a7;
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	min-height: 10rem;
	padding: 65px 76px 65px 30px;
	border-radius: 18px;
	background: #fff;
	color: var(--blue);
	text-align: left;
	font-weight: 700;
	font-size: clamp(0.875rem, 0.768rem + 0.48vw, 1.125rem);
	line-height: 1.6;
	transition: background-color .25s ease, color .25s ease;
	height: 100%;
}
.contact-mainbox .contactBox > div > a .circle {
	--chev-size: 11px;
	--chev-gap: 3px;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--blue);
	color: #fff;
	pointer-events: none;
}
.contact-mainbox .contactBox > div > a .circle::before,
.contact-mainbox .contactBox > div > a .circle::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: var(--chev-size);
	height: var(--chev-size);
	border-right: 1px solid currentColor;
	border-top: 1px solid currentColor;
	transform: translate(calc(-50% - var(--chev-gap)), -50%) rotate(45deg);
}
.contact-mainbox .contactBox > div > a .circle::before{
	transform: translate(calc(-50% - var(--chev-gap) - 2px), -50%) rotate(45deg);
}
.contact-mainbox .contactBox > div > a .circle::after{
	transform: translate(calc(-50% + var(--chev-gap) - 2px), -50%) rotate(45deg);
}
.contact-mainbox .contactBox > div > a:hover,
.contact-mainbox .contactBox > div > a:focus-visible {
	background: var(--blue);
	color: #fff;
	outline: none;
}
.contact-mainbox .contactBox > div > a:hover .circle,
.contact-mainbox .contactBox > div > a:focus-visible .circle {
	background: #fff;
	color: var(--blue);
}
.contact-mainbox .contactBox > div > a:focus-visible {
	box-shadow:
		0 0 0 3px #fff,
		0 0 0 6px rgba(0,84,167,.35);
}
.contact-illust{
	display: block;
	margin: 60px auto 0;
	width: 100%;
	max-width: 600px;
	height: auto;
}
@media (max-width: 960px) {
	.contact-mainbox .contactBox {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}
@media (max-width: 640px) {
	.contact-mainbox .contactBox {
		grid-template-columns: 1fr;
	}
	.contact-mainbox .contactBox > div > a br {
		display: none;
	}
	.contact-mainbox .contactBox > div > a {
		min-height: 0;
		padding-top: 36px;
		padding-bottom: 36px;
		padding-left: 25px;
	}
	.contact-mainbox .contactBox > div > a .circle {
		right: 25px;
		width: 32px;
		height: 32px;
		--chev-size: 9px;
		--chev-gap: 3px;
	}
	.contact-illust{
		margin-top: 40px;
		max-width: 480px;
	}
}
@media (max-width: 480px) {
	main.contact-main {
		padding: 0;
	}
	.contact-mainbox {
		border-radius: 0;
	}
}


/* Site mapページ
-----------------------------------------------------------------------*/
.sitemapBox{
	text-align: left;
	margin-top: 10px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 45px 35px;
	justify-items: stretch;
	align-items: stretch;
}
.sitemap {
	justify-self: stretch;
	width: 100%;
	min-width: 0;
}
.sitemap.home{
	grid-column: 1 / -1;
}
.sitemap-ttl{
	font-size: 1.375rem;
	color: #0054a7;
	font-family: 'GothamBook', "Noto Sans JP", sans-serif;
	font-weight: 600;
	padding-left: 13px;
	padding-bottom: 3px;
	border-bottom: 1px solid #0054a7;
	position: relative;
}
.sitemap-ttl::before{
	content: "";
	position: absolute;
	left: 0;
	top: .3em;
	bottom: 0;
	width: 1px;
	background: #0054a7;
}
.sitemap-head{
	font-size: 20px;
	line-height: 1.6;
	color: #0054a7;
	font-family: 'GothamBook', "Noto Sans JP", sans-serif;
	font-weight: 600;
	padding-bottom: 3px;
	padding-left: 13px;
	border-bottom: 1px solid #0054a7;
	position: relative;
}
.sitemap-head::before{
	content: "";
	position: absolute;
	left: 0;
	top: .3em;
	bottom: 0;
	width: 1px;
	background: #0054a7;
}
.sitemap-list{
	margin-top: 13px;
	display: grid;
	gap: 4px;
	font-size: clamp(0.813rem, 0.785rem + 0.13vw, 0.875rem);
	line-height: 1.9;
	color: #333;
	list-style: none;
	padding-left: 13px;
}
.sitemap-list li {
	line-height: 1.3;
	margin-bottom: .3rem;
}
.sitemap.col.policy {
	grid-column: span 2;
	justify-self: stretch;
	border-right: 0;
	padding-right: 0;
	align-self: stretch;
}
.sitemap.col.policy .sitemap-list{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 18px;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
	padding: 0 12px;
	border-left: 1px solid #0054a7;
	border-right: 1px solid #0054a7;
	align-content: center;
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
	height: 100%;
}
.sitemap.col.policy .sitemap-list li{
	break-inside: auto;
	white-space: normal;
	word-break: normal;
	overflow-wrap: anywhere;
}
.sitemap.col.policy .sitemap-list li:nth-child(1){ grid-column:1; grid-row:1; }
.sitemap.col.policy .sitemap-list li:nth-child(2){ grid-column:1; grid-row:2; }
.sitemap.col.policy .sitemap-list li:nth-child(3){ grid-column:2; grid-row:1; }
.sitemap.col.policy .sitemap-list li:nth-child(4){ grid-column:2; grid-row:2; }

@media (max-width: 768px){
	.sitemapBox{
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.sitemap.col.policy{
		grid-column: auto;
		border-right: none;
		padding-right: 0;
	}
	.sitemap-head{
		font-size: 18px;
	}
	.sitemap-ttl{
		font-size: 20px;
	}
	.sitemap.col.policy .sitemap-list{
		display: block;
		width: 100%;
		padding: 0 12px;
		margin-top: 14px;
		border-right: none;
		border-left: none;
		position: relative;
		line-height: 1.9; 
	}
	.sitemap.col.policy .sitemap-list::before{
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 1px;
		background: #0054a7;
	}
	.sitemap.col.policy .sitemap-list li + li{
		margin-top: 10px;
	}
	.sitemap.col.policy .sitemap-list li{
		word-break: normal;
		white-space: normal;
		overflow-wrap: anywhere;
	}
}

/* Safari 17以前にのみ適用されるスタイル */
body.safari-17-or-earlier .header-nav > ul > li > a .label {
  position: relative;
  top: 5px;
}

body.safari-17-or-earlier .header-nav-sp .has-dropdown > a .label {
  padding-top: 6px;
}

body.safari-17-or-earlier .header-nav-sp > ul > li:last-child a {
  padding: 13px 30px 3px;
}