@charset "utf-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background-size: 100% auto;
	background-color: #000!important;
	font-size: 1rem;
	font-family: "Yusei Magic", system-ui;
	font-weight: 600;
	font-style: normal;
	line-height: 1.5;
	overflow-x: hidden;
	text-align: center;
}

/* ···÷¦÷·······÷¦÷······÷ ÷····
　TEXT
···÷¦÷·······÷¦÷······÷ ÷···· */
h1 {
	width: 90%;
	margin: 0 auto;
	margin-top: 24px;
	position: relative;
	color: white;
	background: linear-gradient(135deg, #2c4a8a 0%, #4b2985 100%);
	line-height: 1.4;
	padding: 0.5em 0.5em;
	border-radius: 48px 0 48px 0;
}

h2.subtitle {
	color: #2F2F2F;
	font-size: 28px;
	margin: 20px 0;
	text-shadow: 0 0 8px rgba(255,255,255,0.6);
}
.subtitle span.small{
	font-size: 24px;
	display: inline-block;
}
.subtitle span{
	display: inline-block;
}
h3{
	max-width: 90%;
	color: #2F2F2F;
	font-size: 1.4em;
	margin: 0 auto;
	text-shadow:
  0 0 6px rgba(255,255,255,1),
  0 0 8px rgba(255,255,255,1),
  0 0 10px rgba(255,255,255,1),
  0 0 20px rgba(255,255,255,1);
}
h3 span{
	display: inline-block;
}
.y{
	color: #AD8908;
}
.b{
	color: #07B19F;
}
.r{
	color: #AC0E22;
}
.cta-section .y {
	color: #A7923D
}
.cta-section .b {
	color: #5099D7
}
.cta-section .r {
	color: #C5445C
}
span.marker{
	display: inline;
	background: linear-gradient(transparent 60%, #ffeb3b 60%);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.item-container {
	font-family:'メイリオ', 'Meiryo', sans-serif;
	font-weight: bold;
	display: flex;
	align-items: center;
	text-align: left;
	margin: 40px 2.5%;
}
.item-container span{
	display: inline-block;
}
.diamond {
	width: 84px;
	height: 84px;
	transform: rotate(45deg);
	position: relative;
	margin-left: 20px;
	margin-right: 25px;
}
.diamond-text {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	transform: translate(-50%, -50%) rotate(-45deg);
	font-size: 18px;
	text-align: center;
}
.content {
	color: #2F2F2F;
	font-size: 24px;
}

/* ···÷¦÷·······÷¦÷······÷ ÷····
　CTA
···÷¦÷·······÷¦÷······÷ ÷···· */
.cta-section {
	background: url('../public_html/nippori-tdc.nightlp.com/img/bg2.jpg') top center;
	background-size: 100% auto;
	margin-top: 64px;
	padding: 40px 20px;
}
.cta-section h2 {
	color: #333;
	font-size: 28px;
	margin-bottom: 20px;
}
.cta-section a {
	width: 90%;
	font-family:'メイリオ', 'Meiryo', sans-serif;
	font-weight: bold;
	font-size: 24px;
	text-decoration: none;
	display: inline-block;
	padding: 18px 48px;
	background-color: #00c300;
	color: white;
	border-radius: 48px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.cta-section p{
	margin-top: 12px;
	font-family:'メイリオ', 'Meiryo', sans-serif;
	font-weight: 400;
}
.cta-section span{
	display: inline-block;
}
@media (min-width: 768px) {
.cta-section a {
	width: auto;
}
}

/* ···÷¦÷·······÷¦÷······÷ ÷····
　LINE_look
···÷¦÷·······÷¦÷······÷ ÷···· */
:root{--bg:#7fa0c6;--left-bg:#ffffff;--left-border:#e3e7ee;--right-bg:#c8f7a1;--text:#1b1f27}
*{box-sizing:border-box}

.chat{
	font-family:'メイリオ', 'Meiryo', sans-serif;
	font-weight: 400;
	max-width: 720px;
	margin: 0 auto;
	padding: 24px 16px;
}

.msg{
	text-align: left;
	display: flex;
	gap: 8px;
	align-items: flex-end;
	margin: 10px 0;
}
.msg.left{justify-content: flex-start}
.msg.right{justify-content: flex-end}

.avatar{
	width: 72px;
	height: 72px;
	border-radius: 50%;
	flex: 0 0 auto;
}
@media (min-width: 768px) {
.avatar{
	width: 48px;
	height: 48px;
	}
}

.bubble{
	position: relative;
	max-width: 70%;
	padding: 10px 14px;
	border-radius: 18px;
	word-wrap: break-word;
	color: var(--text);
	background: var(--left-bg);
	border: 1px solid var(--left-border);
}
.left .bubble{background:var(--left-bg);border-color:var(--left-border)}
.right .bubble{background:var(--right-bg);border-color:transparent}

.left .bubble::after,.right .bubble::after{
	content: "";
	position: absolute;
	bottom: 3px;
	width: 14px;
	height: 12px;
	background: inherit;
}
.left .bubble::after{
	left: -8px;
	border-bottom-left-radius: 12px;
	transform: rotate(-35deg);
}
.right .bubble::after{
	right: -8px;
	border-bottom-right-radius: 10px;transform:rotate(35deg);
}

@media (min-width: 768px) {
  .bubble{max-width:82%}
}

/* ···÷¦÷·······÷¦÷······÷ ÷····
　barometer
···÷¦÷·······÷¦÷······÷ ÷···· */
.barometer {
	width: 90%;
	max-width: 600px;
	margin: 20px auto;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
}
.bar-track {
	position: relative;
	width: 100%;
	height: 8px;
	background: #e5e5e5;
	border-radius: 10px;
	margin-bottom: 10px;
}
.bar-thumb {
	position: absolute;
	top: 50%;
	left: var(--pos, 0%);
	transform: translate(-50%, -50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.bar-labels {
	width: 100%;
	display: flex;
	justify-content: space-between;
	font-size: 18px;
	color: #555;
	margin: 0 auto;
}


/* ···÷¦÷·······÷¦÷······÷ ÷····
　IMG
···÷¦÷·······÷¦÷······÷ ÷···· */
.img-block {
	margin: 0;
	width: 100%;
	text-align: center;
	font-size: 0;
}
.border-wrap:first-child{
	position: fixed;
	z-index: 99;
}
.container > .img-block:first-child {
	margin-top: 40px;
}
@media (min-width: 768px) {
.container > .img-block:first-child {
	margin-top: 64px;
}
}
@media (min-width: 768px) {
.img-hero{
	width: 100%;
	position: absolute;
	z-index: -99;
}
}
.img-hero {
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -99;
}
.img-hero img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.img-block img{
	width: 100vw;
	height: auto;
	display: block;
	vertical-align: bottom;
}
.img-block img{
	width: 100vw;
	display: inline-block;
}

.border-wrap{
	margin: 0;
	position : relative;
}
.border-wrap img {
	display: block;
	width: 100vw;
	max-width: none;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%) scale(2);
	transform-origin: center top;
}
.ue{
	position: absolute;
	margin-top: 64px;
}
.ue.footer{
	margin-top: 64px;
}
.ue img {
	transform: translateX(-50%) scale(2, -2);
	transform-origin: center top;
	overflow: hidden;
}
@media (min-width: 768px) {
.img-block.border-wrap img{
	width: 100vw;
}
.border-wrap img {
	left: 0%;
	transform: translateX(0%) scale(1);
}
.ue img {
	position: absolute;
	transform: translateX(0%) scale(1, -1);
	transform-origin: center top;
}
}
/* ···÷¦÷·······÷¦÷······÷ ÷····
　PC表示
···÷¦÷·······÷¦÷······÷ ÷···· */
@media (min-width: 768px) {
	.item-container {
		width: 60%;
		margin: 40px auto;
	}
	.img-block img {
		width: auto;
		max-width: 100%;
		display: inline-block;
	}
}