@charset "UTF-8";

/* L1 ########################################  ######################################## */
/* L2 ****************************************  **************************************** */
/* L3 ========================================  ======================================== */
/* L4 ----------------------------------------  ---------------------------------------- */

/* L1 ######################################## 汎用アイコンリンク ######################################## */


nav.link {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-inline: auto;
}

nav.link ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.4em;
}

nav.link ul li {
	color: #ffffff;
	text-align: center;
	line-height: 1.0;
	background: #008ccf;
	border-radius: 50%;
}

nav.link ul li.official {
	font-size: 85%;
}

nav.link ul li.instagram {
	font-size: 115%;
}

nav.link a {
	display: flex;
	justify-content: center;
	align-items: center;
	inline-size: 100%;
	block-size: 100%;
	color: #ffffff !important;
	text-decoration: none;
	border-radius: 50%;
}

/* L1 ######################################## ロゴ ######################################## */

#logo {
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	inset-block-start: 0;
	inset-inline-start: 0;
	inline-size: 100%;
	min-block-size: 100vh;
	text-align: center;
	
	/*
	animation: moveUp linear both;
	animation-timeline: scroll();
	*/
}

@keyframes moveUp {
	from {
		inset-block-start: 0;
	}
	
	to {
		inset-block-start: -20vh;
	}
}

/* L2 **************************************** メインロゴ **************************************** */

#logo h1 img {
	inline-size: auto;
	max-inline-size: 90%;
	block-size: calc(80vh - 50px);
	object-fit: contain;
	animation: logoBound 0.65s linear 0s 1;
}

@media (orientation: portrait) {
	#logo img {
		inline-size: 90%;
		block-size: auto;
		object-fit: fill;
	}
}

@keyframes logoBound {
	0%   { transform: scale(0.8, 1.4) translate(0%, -100%); }
	10%  { transform: scale(0.8, 1.4) translate(0%, -15%); }
	20%  { transform: scale(1.4, 0.6) translate(0%, 30%); }
	30%  { transform: scale(0.9, 1.1) translate(0%, -10%); }
	40%  { transform: scale(0.95, 1.2) translate(0%, -30%); }
	50%  { transform: scale(0.95, 1.2) translate(0%, -10%); }
	60%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
	70%  { transform: scale(1.0, 1.0) translate(0%, 0%); }
	100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}

/* L2 **************************************** スクロールダウン **************************************** */

#scroll {
	position: fixed;
	top: 0;
	right: 10px;
	inline-size: fit-content;
	block-size: 100%;
	/*
	animation: fadeOut linear both;
	animation-timeline: view();
	animation-range: contain 10% cover 75%;
	*/
}

#scroll.hidden {
	display: none;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}

#scroll p {
	position: absolute;
	inset-inline-end: 0;
	inset-block-end: 70px;
	inline-size: fit-content;
	margin: auto;
	color: #444444;
	font-family: "Poppins", "Ubuntu Condensed", sans-serif;
	font-size: 90%;
	white-space: nowrap;
	letter-spacing: 0.01em;
}

#scroll::after {
	content: "";
	position: absolute;
	inset-inline-end: 10%;
	inset-block-start: calc(100% - 70px);
	block-size: 0;
	inline-size: 1px;
	margin: auto;
	background: #444444;
	animation: lineMove 2.2s cubic-bezier(0.76, 0, 0.3, 1) infinite;
}

@keyframes lineMove {
	0% {
		block-size: 0;
		inset-block-start: calc(100% - 70px);
	}
	50%{
		block-size: 60px;
		inset-block-start: calc(100% - 70px);
	}
	90%{
		block-size: 0;
		inset-block-start: calc(100% - 10px);
	}
}

/* L2 **************************************** テイチクロゴ **************************************** */


p.teichiku {
	position: relative;
	margin: 1em;
}

p.teichiku img {
	width: 18%;
	min-inline-size: 200px;
	height: auto;
	object-fit: contain;
}

/* L1 ######################################## イントロ ######################################## */

#intro {
	position: relative;
	padding-block: min(6%, 2.5em) min(4%, 2.0em);
	padding-inline: 4%;
	background: #ffffff;
	filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}

#intro::before,
#intro::after {
	overflow: hidden;
	content: "";
	display: block;
	position: absolute;
	inset-inline: 0;
	inline-size: 100%;
	block-size: min(6vw, 40px);
	background-size: min(6vw, 40px) 100%;
	background-position: 0 0;
}

#intro::before {
	inset-block-start: max(-6vw, -40px);
	background-image: linear-gradient(45deg, #ffffff 25%, transparent 25%), linear-gradient(-45deg, #ffffff 25%, transparent 25%);
	animation: moveGizaGizaLR 1s linear infinite;
}

#intro::after {
	inset-block-start: 100%;
	z-index: 1;
	background-image: linear-gradient(135deg, #ffffff 25%, transparent 25%), linear-gradient(225deg, #ffffff 25%, transparent 25%);
	animation: moveGizaGizaRL 1s linear infinite;
}

@keyframes moveGizaGizaLR {
	0% {
		background-position: 0 0;
	}
	
	100% {
		background-position: min(6vw, 40px) 0;
	}
}

@keyframes moveGizaGizaRL {
	0% {
		background-position: 0 0;
	}
	
	100% {
		background-position: max(-6vw, -40px) 0;
	}
}

#intro div.inner {
	max-inline-size: 1200px;
	margin-inline: auto;
}

/* L2 **************************************** テキスト要素 **************************************** */


#intro h1 {
	position: relative;
	margin-block-end: 1em;
	padding-block: 0.5em;
	color: #c8161d;
	font-family: "Zen Maru Gothic";
	font-size: 140%;
	font-weight: bold;
	line-height: 1.0;
}

#intro h1::after {
	content: '';
	position: absolute;
	inset-block-end: 0;
	inset-inline-start: 0;
	inline-size: 100%;
	block-size: 7px;
	background-image: repeating-linear-gradient(-45deg, #444444, #444444 1px, transparent 2px, transparent 5px);
	background-size: 7px 7px;
}

#intro div.inner > p {
	line-height: 2.0;
}

/* L2 **************************************** オフィシャルリンク **************************************** */

#official-link {
	margin-block-start: 2em;
}

/* L2 **************************************** 催促テキスト **************************************** */

#official-link p.prompt {
	position: relative;
	inline-size: fit-content;
	margin-block-end: 1.5em;
	margin-inline: auto;
	padding: 12px 16px;
	color: #000000;
	font-size: 85%;
	text-align: center;
	word-break: keep-all;
	overflow-wrap: break-word;
	border: 2px solid #444444;
	background-color: #ffffff;
}

#official-link p.prompt::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: -2;
	inline-size: 100%;
	block-size: 100%;
	box-sizing: border-box;
	border: 2px solid #333333;
	background-color: #ffffff;
}

#official-link p.prompt::after {
	content: "";
	position: absolute;
	inset-block-start: calc(100% + 10px);
	inset-inline-start: calc(50% - 10px);
	z-index: -1;
	inline-size: 20px;
	block-size: 2px;
	transform: rotate(50deg);
	background-color: #333333;
	box-sizing: border-box;
	box-shadow: 0 2px 0 #ffffff, 0 -2px 0 #ffffff;
}

/* L2 **************************************** オフィシャルSNS **************************************** */

#official-link nav.link {
	margin-block: 1em;
}

#official-link nav.link ul {
	font-size: clamp(1.5rem, 1.027rem + 2.36vw, 2.8rem);
}


#official-link nav.link ul li {
	inline-size: clamp(3rem, 2.273rem + 3.64vw, 5rem);
	block-size: clamp(3rem, 2.273rem + 3.64vw, 5rem);
}

/* L1 ######################################## ラインナップ ######################################## */

#line-up {
	/* max-inline-size: 1200px; */
	margin-block: 2.5em 1em;
	margin-inline: auto;
	padding-inline: 4%;
	box-sizing: content-box;
}

#line-up:target {
	scroll-margin-top: 5em;
}

#line-up div.grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(335px, 1fr));
	gap: 50px 15px;
	box-sizing: border-box;
	
	opacity: 1;
	transition: opacity 0.2s linear;
}

/* L2 **************************************** タイトル **************************************** */

#line-up h1 {
	display: none;
}


/* L2 **************************************** アイテム **************************************** */

#line-up div.item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 6;
	gap: 0;
	position: relative;
	padding: 10px;
	font-size: clamp(1rem, 0.964rem + 0.18vw, 1.1rem);
	border-radius: 0 30px 0 30px;
	background: rgba(240, 240, 240, 0.95);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#line-up div.item::before {
	content: "";
	position: absolute;
	z-index: 0;
	inset: 0;
	border: 10px solid transparent;
	border-radius: 0 30px 0 30px;
	background: linear-gradient(0, #ff6600, #c8161d) border-box;
	
	mask-image: linear-gradient(white, white), linear-gradient(white, white);
	mask-clip: padding-box, border-box;
	mask-composite: exclude;
}

/* L3 ======================================== カバー  ======================================== */

#line-up div.cover {
	border-radius: 0 30px 0 30px;
}

#line-up div.cover img {
	inline-size: 100%;
}

/* L3 ======================================== タイトル・カテゴリー  ======================================== */

#line-up div.music {
	position: relative;
	z-index: 1;
	padding-block: 0.8em 0;
}

#line-up div.music p.title {
	color: #cc0000;
	margin-inline: 4%;
	padding-block-end: 0.2em;
	font-size: 150%;
	line-height: 1.4;
	border-bottom: 1px dotted #666666;
}

div.item div.music p.artist {
	margin-inline: 4%;
	color: #333333;
	font-size: 120%;
}

#line-up div.music p.artist::before {
	content: "covered by";
	position: relative;
	margin-inline-end: 0.5em;
	font-size: 50%;
}

#line-up div.music p.artist a {
	color: #333333 !important;
}

/* L3 ======================================== アーティスト関連リンク ======================================== */

#line-up nav.link {
	padding-block: 0.5em;
}

#line-up nav.link ul {
	font-size: clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
}


#line-up nav.link ul li {
	inline-size: clamp(2.6rem, 2.455rem + 0.73vw, 3rem);
	block-size: clamp(2.6rem, 2.455rem + 0.73vw, 3rem);
	background: #444444;
}

/* L3 ======================================== インフォ ======================================== */

#line-up div.item p.info {
	margin: 0.5em 4%;
}

/* L3 ======================================== 配信リンク一覧 ======================================== */

#line-up div.service-link {
	margin-block: 0.5em 0;
	margin-inline: -20px -10px;
}

#line-up div.service-link p {
	position: relative;
	z-index: 1;
	text-align: center;
	border-radius: 5px 0 0 0;
    background: rgb(110,110,30);
	background-image: linear-gradient(45deg, transparent 0%, transparent 45%, rgba(255, 255, 255, 0.6) 50%, transparent 55%, transparent 100%);
	background-size: 1200% 400%;
	animation: gradient-link 10s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99) both;
}

#line-up div.service-link p::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	border: none;
	border-bottom: solid 15px transparent;
	border-right: solid 10px rgb(100, 100, 28);
}

@keyframes gradient-link {
  0% {
    background-position: 0% 50%;
  }
  
  20% {
    background-position: 0% 50%;
  }
  
  70% {
    background-position: 100% 50%;
  }
  
  100% {
    background-position: 100% 50%;
  }
}

#line-up div.service-link p a {
	position: relative;
	z-index: 3;
    display: block;
    padding-block: 0.8em;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
    transition: color 0.3s linear;
}

#line-up div.service-link p a::before {
	content: "\f0c1";
	display: inline-block;
	position: relative;
	margin-inline-end: 0.3em;
	font-family: "FontAwesome";
}
#line-up div.service-link p a::after {
	content: "";
	position: absolute;
	inset-block-start: 0;
	inset-inline-start: 0;
	z-index: 2;
	inline-size: 100%;
	block-size: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.0) 50%, rgba(0, 0, 0, 0) 100%);
}

#line-up div.service-link p a:hover {
    color: #ffff00;
}

#line-up div.service-link p a:not([href]) {
	color: rgba(255, 255, 255, 0.5) !important;
	text-decoration: none;
	text-shadow: none;
	transition: none;
}

#line-up div.service-link p a:not([href])::before {
	content: "準備中";
	position: relative;
	inset-block-start: -0.1em;
	margin-inline-end: 0.5em;
	padding: 0.4em;
	color: #ffffff;
	font-size: 80%;
	line-height: 1.0;
	border-radius: 5px;
	background: #ff6600;
}

/* L3 ======================================== YouTube埋め込み ======================================== */

#line-up div.youtube {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	border-block-start: 10px solid #ee4e09;
	background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.05) 5px, rgba(0, 0, 0, 0.05) 10px);
}

#line-up div.youtube:not(:has(iframe))::after {
	content: "Music Video in the Works...";
	color: #999999;
	font-family: "Poppins", "Ubuntu Condensed", sans-serif;
}

#line-up div.youtube iframe {
	inline-size: 100%;
	block-size: auto;
	aspect-ratio: 16/9;
}


/* L3 ======================================== 発売日（右下） ======================================== */

#line-up div.release {
	position: relative;
	z-index: 1;
	padding-block: 0.6em 0.2em;
	padding-inline: 2%;
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	line-height: 1.0;
	text-align: right;
	background: #ff6600;
}

#line-up div.release::before {
	position: relative;
	inset-block-start: -0.08em;
	content: "RELEASE";
	margin-inline-end: 0.2em;
	padding-inline: 0.5em;
	color: #ffffff;
	font-size: 80%;
	vertical-align: middle;
	background: #444444;
	border-radius: 5px;
}

/* L3 ======================================== 発売日（左上） ======================================== */

#line-up div.release-day {
	position: absolute;
	inset-block-start: -1em;
	inset-inline-start: 4%;
	padding: 0.5em;
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	text-align: center;
	line-height: 1.0;
	border-radius: 10px;
	background: #c8161d;
}

#line-up div.release-day span {
	display: block;
}

#line-up div.release-day span.y {
	padding-block-end: 0.2em;
}

#line-up div.release-day span.md {
	padding-block-start: 0.2em;
	font-size: 135%;
	border-block-start: 2px dotted #ffffff;
}

/* L1 ######################################## トピックス ######################################## */

#topics {
	position: relative;
	margin-block-start: 3em;
	padding-block: min(6%, 2.5em) min(4%, 2.0em);
	padding-inline: 4%;
	font-size: 90%;
	background: #ffffff;
	filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}

#topics::before,
#topics::after {
	overflow: hidden;
	content: "";
	display: block;
	position: absolute;
	inset-inline: 0;
	inline-size: 100%;
	block-size: min(6vw, 40px);
	background-size: min(6vw, 40px) 100%;
	background-position: 0 0;
}

#topics::before {
	inset-block-start: max(-6vw, -40px);
	background-image: linear-gradient(45deg, #ffffff 25%, transparent 25%), linear-gradient(-45deg, #ffffff 25%, transparent 25%);
	animation: moveGizaGizaLR 1s linear infinite;
}

/*
#topics::after {
	inset-block-start: 100%;
	z-index: 1;
	background-image: linear-gradient(135deg, #ffffff 25%, transparent 25%), linear-gradient(225deg, #ffffff 25%, transparent 25%);
	animation: moveGizaGizaRL 1s linear infinite;
}
*/

#topics p.title {
	font-size: 110%;
}

#topics time {
	display: block;
	margin-block: 0.5em;
	text-align: right;
}

#topics time::before {
	content: "\f017";
	display: inline-block;
	position: relative;
	margin-inline-end: 0.3em;
	font-family: "FontAwesome";
}

#topics p.section-L1 {
	margin-block: 1em;
	padding: 0.5em calc(1em + 5px);
	color: #cc6600;
	font-weight: bold;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.5);
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
}

#topics p.section-L2 {
	margin-block: 1em;
	padding: 0.2em 1em;
	color: #333333;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
	border-inline-start: 5px solid #cccccc;
	border-block-end: 1px solid #cccccc;
}

#topics p.section-L3 {
	margin-block: 1em;
	padding: 0.2em 0;
	color: #333333;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
	border-block-end: 1px dotted #cccccc;
}

#topics p.info,
#topics p.memo {
	margin-block: 1em;
	text-align: center;
}

#topics p.info::before {
	content: "\f075";
	margin-inline-end: 0.3em;
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
}

#topics p.memo::before {
	content: "\f249";
	margin-inline-end: 0.3em;
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
}


#topics .en {
	font-family: "Ubuntu Condensed", sans-serif;
}

#topics *[data-auto-show] {
	display: none !important;
}

#topics .ta-l { text-align: left; }
#topics .ta-r { text-align: right; }
#topics .ta-c { text-align: center; }

#topics ul, ol {
	padding-inline-start: 1.51em;
}

#topics ul {
	margin-block: 1em;
	list-style-type: "\23f5";
}

#topics ul.star {
	list-style-type: "★";
}

#topics ul.circle {
	list-style-type: circle;
}

#topics ul:not(.circle) li {
	padding-inline-start: 0.3em;
}

#topics li p.note {
	color: #666666;
	font-size: 85%;
}

#topics li p.note::before {
	content: "\f044";
	margin-inline-end: 0.3em;
	font-family: "Font Awesome 6 Free";
	font-weight: 800;
}

#topics div.box {
	margin-block: 1.5em;
	padding-block: 0.5em;
	padding-inline: 3%;
	background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01) 2px, transparent 2px, transparent 4px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01) 2px, transparent 2px, transparent 4px);
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#topics .link {
	display: block;
	inline-size: fit-content;
	margin-block: 1.5em;
	margin-inline: auto;
	padding: 0.5em 2em;
	color: #336699;
	border-radius: 20px;
	background: #ffffff;
	background-image: linear-gradient(0, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.05) 100%);
	box-shadow: inset -4px -4px 12px rgba(0, 0, 0, 0.06);
}

#topics .link::before {
	content: "\f0c1";
	margin-inline-end: 0.3em;
	font-family: "Font Awesome 6 Free";
	font-weight: 800;
}

#topics .link a {
	color: #336699;
	font-weight: bold;
}

/* L1 ######################################## キャンペーン情報ポップアップ ######################################## */

/* L2 **************************************** キャンペーンボタン **************************************** */

/* ボタン配置エリア */
#line-up div.item .campaign-trigger {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 10;
	width: auto;
	height: auto;
}

/* ボタン本体 */
#line-up div.item .btn-campaign {
	display: inline-block;
	padding: 0.4em 0.8em;
	color: #ffffff;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	font-size: 0.85rem;
	line-height: 1.2;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	background: #e60033;
	background: linear-gradient(135deg, #ff6600 0%, #c8161d 100%);
	border: 2px solid #ffffff;
	
	/* デザインはピル型を維持 */
	border-radius: 50px;
	
	box-shadow: 0 4px 6px rgba(0,0,0,0.2);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	appearance: none;
}

#line-up div.item .btn-campaign i {
	margin-right: 0.3em;
}

#line-up div.item .btn-campaign:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}

#line-up div.item .btn-campaign:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
	#line-up div.item .btn-campaign {
		padding: 0.6em 1em;
		font-size: 0.9rem;
	}
}

/* L2 **************************************** モーダルウィンドウ **************************************** */

#campaign-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	opacity: 1;
	transition: opacity 0.3s ease;
}

#campaign-modal.hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

/* 背景 */
#campaign-modal .modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(3px);
}

/* コンテナ */
#campaign-modal .modal-container {
	position: relative;
	width: 100%;
	max-width: 600px;
	max-height: 90vh;
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
	from { transform: scale(0.9) translateY(20px); opacity: 0; }
	to { transform: scale(1) translateY(0); opacity: 1; }
}

/* 閉じるボタン */
#campaign-modal .modal-close {
	position: absolute;
	top: -15px;
	right: -15px;
	z-index: 11;
	width: 45px;
	height: 45px;
	color: #ffffff;
	font-size: 1.8rem;
	background: #c8161d;
	border: 3px solid #ffffff;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

#campaign-modal .modal-close:hover {
	background: #e60033;
	transform: scale(1.05);
}

/* コンテンツエリア */
#campaign-modal .modal-content {
	padding: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	border-radius: 15px;
	scrollbar-width: thin;
	scrollbar-color: #ccc transparent;
}

#campaign-modal .modal-content::-webkit-scrollbar {
	width: 6px;
}
#campaign-modal .modal-content::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 3px;
}

/* L2 **************************************** トピックスデザイン（モーダル内） **************************************** */

.topics-style {
	position: relative;
	padding-block: 2em;
	padding-inline: 4%;
	font-size: 80%;
	line-height: 1.6;
	background: #ffffff;
	color: #444444;
}

.topics-style p.title {
	font-size: 110%;
}

.topics-style time {
	display: block;
	margin-block: 0.5em;
	text-align: right;
	color: #666666;
}

.topics-style time::before {
	content: "\f017";
	display: inline-block;
	position: relative;
	margin-inline-end: 0.3em;
	font-family: "FontAwesome";
}

.topics-style p.section-L1 {
	margin-block: 1em;
	padding: 0.5em calc(1em + 5px);
	color: #cc6600;
	font-weight: bold;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.5);
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
}

.topics-style p.section-L2 {
	margin-block: 1em;
	padding: 0.2em 1em;
	color: #333333;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
	border-inline-start: 5px solid #cccccc;
	border-block-end: 1px solid #cccccc;
}

.topics-style p.section-L3 {
	margin-block: 1em;
	padding: 0.2em 0;
	color: #333333;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
	border-block-end: 1px dotted #cccccc;
}

.topics-style p.info,
.topics-style p.memo {
	margin-block: 1em;
	text-align: center;
}

.topics-style p.info::before {
	content: "\f075";
	margin-inline-end: 0.3em;
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
}

.topics-style p.memo::before {
	content: "\f249";
	margin-inline-end: 0.3em;
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
}

.topics-style .en {
	font-family: "Ubuntu Condensed", sans-serif;
}

.topics-style *[data-auto-show] {
	display: none !important;
}

.topics-style .ta-l { text-align: left; }
.topics-style .ta-r { text-align: right; }
.topics-style .ta-c { text-align: center; }

.topics-style ul, .topics-style ol {
	padding-inline-start: 1.51em;
}

.topics-style ul {
	margin-block: 1em;
	list-style-type: "\23f5";
}

.topics-style ul.star {
	list-style-type: "★";
}

.topics-style ul.circle {
	list-style-type: circle;
}

.topics-style ul:not(.circle) li {
	padding-inline-start: 0.3em;
}

.topics-style li p.note {
	color: #666666;
	font-size: 85%;
}

.topics-style li p.note::before {
	content: "\f044";
	margin-inline-end: 0.3em;
	font-family: "Font Awesome 6 Free";
	font-weight: 800;
}

.topics-style div.box {
	margin-block: 1.5em;
	padding-block: 0.5em;
	padding-inline: 3%;
	background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01) 2px, transparent 2px, transparent 4px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01) 2px, transparent 2px, transparent 4px);
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.topics-style .link {
	display: block;
	inline-size: fit-content;
	margin-block: 1.5em;
	margin-inline: auto;
	padding: 0.5em 2em;
	color: #336699;
	border-radius: 20px;
	background: #ffffff;
	background-image: linear-gradient(0, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.05) 100%);
	box-shadow: inset -4px -4px 12px rgba(0, 0, 0, 0.06);
}

.topics-style .link::before {
	content: "\f0c1";
	margin-inline-end: 0.3em;
	font-family: "Font Awesome 6 Free";
	font-weight: 800;
}

.topics-style .link a {
	color: #336699;
	font-weight: bold;
}