
/* PC ではストアバッジリンクを非表示 */
@media (min-width: 861px) {
	#top .store,
	#price .store,
	.footer-dl-container .store {
		display: none;
	}
}

/* モバイル全体: height:auto で gap = padding-bottom(390) - 端末画像(360) = 30px 一定 */
@media (max-width: 860px) {
	#top {
		height: auto;
		min-height: 700px;
	}
	.top-container {
		height: auto;
		padding-bottom: 390px;
	}
}

/* 360px以下でストアボタン画像が横にはみ出す問題を修正 */
@media (max-width: 374px) {
	#top .store img {
		max-width: 100%;
		height: auto;
	}
}

#about {
	padding: 40px 80px;
	background-image: url(../img/lp/about-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top
}
@media(max-width: 860px) {
	#about {
		padding: 32px 24px
	}
}
.about-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 80px;
	margin-top: 80px
}
@media(max-width: 860px) {
	.about-container {
		gap: 64px;
		margin-top: 0
	}
}
.about-box {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	width: 100%;
	height: 400px;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-box.show {
  opacity: 1;
  transform: translateY(0);
}
.about-box:nth-child(2n) {
	flex-direction: row-reverse
}
@media(max-width: 860px) {
	.about-box {
		flex-direction: column;
		gap: 16px;
		max-width: 400px;
		height: auto
	}
	.about-box:nth-child(2n) {
		flex-direction: column
	}
}
.about-text-box {
	width: 100%;
	max-width: 1080px;
	flex-shrink: 0
}
@media(min-width: 861px) {
	.about-text-box {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(320px, 544px);
		column-gap: 40px;
		align-items: center;
	}

	.about-text-box > .about-text:first-child {
		grid-column: 1;
	}

	.about-text-box > .about-img-box {
		grid-column: 2;
		margin: 0;
	}

	.about-text-box > .about-text:not(:first-child) {
		grid-column: 1 / -1;
	}
}
@media(max-width: 860px) {
	.about-text-box {
		width: 100%
	}
}
.about-text {
	margin-top: 24px;
	font-size: 16px;
	line-height: 1.6
}
@media(max-width: 860px) {
	.about-text {
		margin-top: 16px
	}
}
.about-img {
	width: 100%;
	max-width: 544px;
	height: auto
}
.note-ai {
	color: #888fa9;
	line-height: 1.6
}
@media(max-width: 860px) {
	.note-ai {
		margin-top: 64px
	}
}
.faq-container {
	padding: 40px 80px;
	background-color: #131313
}
@media(max-width: 768px) {
	.faq-container {
		padding: 32px 24px
	}
}
.faq-items {
	display: flex;
	flex-direction: column;
	margin: 50px 0 40px;
	max-width: 1080px;
	width: 100%;
	border-bottom: 1px solid #676c79
}
@media(max-width: 768px) {
	.faq-items {
		margin-bottom: 34px
	}
}
.question {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 22px 24px 22px 40px;
	border-top: 1px solid #676c79;
	background-image: url(../img/lp/ic-plus.svg);
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: right 24px center;
	cursor: pointer
}
@media(max-width: 768px) {
	.question {
		gap: 8px;
		padding: 22px 0;
		background-position: right 16px center
	}
}
.question.is-open {
	background-image: url(../img/lp/ic-minus.svg)
}
.question-title {
	font-size: 32px;
	color: #9da3ff;
	font-weight: bold;
	line-height: 1.4
}
.question-text {
	flex: 1;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4
}
@media(max-width: 768px) {
	.question-text {
		padding-right: 48px
	}
}
.answer {
	display: flex;
	gap: 16px;
	height: 0;
	padding: 0 64px;
	border-top: 1px solid #676c79;
	opacity: 0;
	transition: line-height .4s, padding .4s, opacity .4s
}
@media(max-width: 768px) {
	.answer {
		gap: 8px;
		padding: 0 16px 0 0
	}
}
.answer.is-open {
	padding: 24px 64px;
	opacity: 1;
	height: auto
}
@media(max-width: 768px) {
	.answer.is-open {
		padding: 24px 16px 24px 0
	}
}
.answer-title {
	font-size: 32px;
	color: #abaeb5;
	font-weight: bold;
	line-height: 1.4
}
.answer-text {
	flex: 1;
	font-size: 16px;
	line-height: 1.6
}
.note {
	display: inline-block;
	margin-top: 16px;
	font-size: 14px;
	line-height: 1.4;
	color: #e8eaed
}
@media(max-width: 1023px) {
	.faq-btn-box {
		display: flex;
		justify-content: center
	}
}
.faq-btn {
	display: flex;
	width: 275px;
	padding: 16px 24px 16px 40px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 32px;
	color: #0f0f10;
	background-color: #9da3ff;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4
}
.icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0
}
@media(max-width: 1023px) {
	.register-box {
		display: flex;
		justify-content: center
	}
}
.register-box {
	text-align: center
}
.register-btn {
	display: block;
	width: 275px;
	padding: 16px 24px;
	border-radius: 32px;
	color: #fff;
	background-color: #30313B;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4
}
.login-link {
	display: block;
	width: 275px;
	padding: 16px 24px;
	color: #9da3ff;
	font-size: 16px;
	line-height: 1.4
}

.modal {
  display: none; /* 初期は非表示 */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	width: 96%;
	max-width: 96%;
	max-height: 95vh;
	pointer-events: none;
}

.modal-inner img {
	width: 100%;
  max-width: 100%;
	max-height: 95vh;
  object-fit: contain; /* ←はみ出防止 */
  display: block;
	pointer-events: auto;
}

@media(min-width: 1024px) {
	.modal-inner {
		width: auto;
		max-width: min(88vw, 1100px);
	}

	.modal-inner img {
		width: auto;
		max-width: min(88vw, 1100px);
		height: auto;
	}
}

.sns-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;

  background: transparent;
  border-radius: 16px;
	padding: 8px 24px 0;

  width: 100%;
  margin: 0;
}

.sns-links a {
  display: block;
}

.sns-links img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.highlight {
  font-weight: bold;
  font-size: 1.5em;
}

.sns-links img {
  display: block;
}

.sns-links img[src*="x.svg"] {
  width: 60px;
  height: 60px;
}

.sns-links img[src*="Instagram"] {
  width: 60px;
  height: 60px;
}

.sns-links img[src*="TikTok"] {
  width: 60px;
  height: 60px;
}

.sns-links img[src*="youtube"] {
  width: 60px;
  height: 60px;
}


.about-title {
  /* color: #E59EDD; */
  color: #9da3ff;
  font-size: 16px;
  line-height: 1.6;
}

.content-shortcut-nav {
	margin-top: 20px;
	padding: 0;
	background-color: transparent;
	border: 0;
	border-radius: 0;
}

.content-shortcut-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.content-shortcut-link {
	font-size: inherit;
	font-weight: normal;
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media(max-width: 860px) {
	.content-shortcut-nav {
		margin-top: 16px;
		padding: 0;
	}

	.content-shortcut-list {
		gap: 4px 10px;
	}

	.content-shortcut-link {
		font-size: 14px;
	}
}

html {
	background-color: #131313;
	background-image: linear-gradient(rgba(19, 19, 19, 0.52), rgba(19, 19, 19, 0.52)), url(../img/lp/top-bg02.png) !important;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	background-attachment: scroll;
	min-height: 100%;
}

body {
	background-color: transparent !important;
	background-image: none !important;
}

section,
.faq-container,
#content,
#price,
#faq {
	background-color: transparent !important;
	background-image: none !important;
}

#about {
	background-color: transparent !important;
	background-image: none !important;
}

#top {
	position: relative;
	overflow: hidden;
	background-image: none !important;
}

@media(min-width: 1024px) {
	html {
		background-image: linear-gradient(rgba(19, 19, 19, 0.52), rgba(19, 19, 19, 0.52)), url(../img/lp/top-bg02-no-transparent.png) !important;
		background-position: 240px top;
		background-size: calc(100% - 240px) auto;
	}
}

#top::after {
	display: none;
}

@media(max-width: 860px) {
	#top::after {
		display: none;
	}
}

#content,
#price,
#about,
#faq,
.footer {
	background-color: transparent !important;
	background-image: none !important;
}

#price .highlight {
	font-size: inherit !important;
	font-weight: inherit !important;
}

.sns-links {
	justify-content: flex-start !important;
  width: 100% !important;
  margin: 0 !important;
}

#content,
#price {
	padding: 40px 80px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top
}

#content > *,
#price > *,
#about > * {
	width: 100%;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto
}

@media(max-width: 860px) {
	#content,
	#price {
		padding-top: 32px;
		padding-bottom: 32px;
		padding-left: 24px;
		padding-right: 24px;
	}

	#price {
		background-image: url(../img/lp/about-bg.png);
	}
}
.content-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 80px;
	margin-top: 80px
}

.monthly-content-container {
	gap: 50px;
}

.monthly-content-heading {
	align-self: flex-start;
}

#monthly-anchor {
	scroll-margin-top: 16px;
}

#usage-anchor {
	scroll-margin-top: 16px;
}

@media(max-width: 860px) {
	#monthly-anchor {
		scroll-margin-top: 16px;
	}

	#usage-anchor {
		scroll-margin-top: 16px;
	}
}

@media(max-width: 860px) {
	.middle-heading-text {
		font-size: clamp(22px, 6vw, 30px);
		line-height: 1.3;
	}

	.monthly-content-title {
		display: inline-block;
		white-space: nowrap;
	}
}

@media(max-width: 860px) {
	.content-container {
		gap: 64px;
		margin-top: 0
	}

	.monthly-content-container {
		gap: 34px;
	}
}
.content-box {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	width: 100%;
	height: 400px;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.content-box.show {
  opacity: 1;
  transform: translateY(0);
}
.content-box:nth-child(2n) {
	flex-direction: row-reverse
}
@media(max-width: 860px) {
	.content-box {
		flex-direction: column;
		gap: 16px;
		max-width: 400px;
		height: auto
	}
	.content-box:nth-child(2n) {
		flex-direction: column
	}
}
.content-text-box {
	width: 100%;
	max-width: 1080px;
	flex-shrink: 0
}

#price .content-text-box,
#usage-anchor + .content-text-box {
	margin-top: 24px
}

@media(max-width: 860px) {
	.content-text-box {
		width: 100%
	}

	#price .content-text-box,
	#usage-anchor + .content-text-box {
		margin-top: 16px
	}
}

.content-text-box > .content-text:first-child,
.about-text-box > .about-text:first-child {
	margin-top: 0
}
.content-text {
	margin-top: 24px;
	font-size: 16px;
	line-height: 1.6
}

@media(min-width: 1024px) {
	.header {
		width: 240px;
	}

	.main {
		padding-left: 240px;
	}

	.footer {
		padding-left: 320px;
	}

	.menu-list-link {
		white-space: nowrap;
	}
}
@media(max-width: 860px) {
	.content-text {
		margin-top: 16px
	}
}
.content-img {
	width: 100%;
	max-width: 544px;
	height: auto
}