@charset "UTF-8";
/* Body */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*::-webkit-scrollbar {
	display: none;
}

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

html {
	font-size: 62.5%;
}

body {
	font-family: tbudrgothic-std, sans-serif;
	font-weight: 400;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	opacity: 0;
	animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

a {
	text-decoration: none;
	transition: color 0.3s;
}

a:hover{
	color: #B30B0E;
}

.fade-slide-up {
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s ease-out;
}

.fade-slide-up.in-view {
	opacity: 1;
	transform: translateY(0);
}

/* Header */

header {
	width: 100%;
	height: 5.0rem;
	position: fixed;
	top: 0;
	z-index: 100;
	background-color: rgba(0,0,0,0);
}

.head_inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.head {
	font-size: 2.5rem;
	position: relative;
	top: 0;
	margin: 0 2.0rem 0 2.0rem;
	padding: 0 4.0rem 0 4.0rem;
	letter-spacing: -0.1rem;
	font-family: futura-pt;
	line-height: 5.0rem;
	color: #fff;
}

.head a {
	color: #E568AF;
}

.head a:hover {
	color: #000;
}

.head::before {
	content: "";
	display: inline-block;
	width: 3.0rem;
	height: 3.0rem;
	background-image: url('../images/yumesuki.png');
	background-position: center;
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.container {
	width: 100%;
	height: 100%;
	background-color: #FBFAFF;
}


.bg {
	width: 100%;
	height: 100%;
	background-image: url("../images/background.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right 20% center;
	background-attachment: scroll;
}

.box1 {
	width: 100%;
	height: 100vh;
	position: relative;
}

.index {
	width: 50%;
	height: 50%;
	text-align: center;
	line-height: 5.5rem;
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 0 auto;
	left: 30%;
	top: 50%;
}

.contents {
	font-size: 3.0rem;
	width: 100%;
	font-family: tbudrgothic-std, sans-serif;
	font-weight: 600;
	letter-spacing: 0.2rem;
	margin: 0 auto;
	text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);
}

.contents strong {
	margin-right: 0.3rem;
	margin-left: 0.3rem;
	position: relative;
	letter-spacing: 0.2rem;
	font-size: 3.8rem;
	font-family: tbudrgothic-std, sans-serif;
	font-weight: 700;
}

.contents strong::after {
	content: '';
	width: 100%;
	height: 4px;
	display: inline-block;
	background-image: linear-gradient(90deg, rgba(77, 84, 224, 1), rgba(228, 81, 154, 1) 50%, rgba(252, 144, 121, 1));
	position: absolute;
	bottom: -0.5rem;
	left: 0;
}

.access {
	margin-top: 3.0rem;
	text-align: center;
}

.btn {
	width: 220px;
	text-align: center;
	font-size: 2.5rem;
	line-height: 5.0rem;
	position: relative;
	display: inline-block;
	transition: 0.3s;
	text-decoration: none;
	border-radius: 2.5rem;
	background-image: linear-gradient(90deg, rgba(77, 84, 224, 1), rgba(228, 81, 154, 1) 50%, rgba(252, 144, 121, 1));
	color: #fff;
	font-family: zen-maru-gothic, sans-serif;
	font-style: normal;
	font-weight: 600;
}

.btn p {
	margin: 0;
	letter-spacing: 0.5rem;
	color: #fff;
}

.btn:hover {
	transform: translate(0, 5px);
	background-image: linear-gradient(90deg, rgba(77, 84, 224, 1), rgba(228, 81, 154, 1) 50%, rgba(252, 144, 121, 1));
}

@media (max-width: 730px){

	.bg {
		background-position: right 20% center;
	}

	.index {
		line-height: 4.5rem;
		left: 30%;
		top: 50%;
	}

	.contents {
		font-size: 2.5rem;
		letter-spacing: 0.1rem;
	}

	.contents strong {
		margin-right: 0.2rem;
		margin-left: 0.2rem;
		letter-spacing: 0.1rem;
		font-size: 3.2rem;
	}

	.contents strong::after {
		height: 2px;
		bottom: -0.2rem;
	}

	.btn {
		width: 180px;
		font-size: 2.0rem;
		line-height: 4.0rem;
	}

	.btn p {
		letter-spacing: 0.3rem;
	}

}

@media (max-width: 590px){
		
	.bg {
		background-position: center top 20%;
	}
	
	.index {
		width: 80%;
		left: 0%;
	}
}

@media (max-width: 400px){
	
	.bg {
		background-position: 60% 60%;
	}
	
	.index {
		width: 80%;
		line-height: 3.5rem;
		left: 0%;
	}

	.contents {
		font-size: 2.0rem;
		letter-spacing: 0rem;
	}

	.contents strong {
		margin-right: 0rem;
		margin-left: 0rem;
		letter-spacing: 0.1rem;
		font-size: 3.0rem;
	}

	.contents strong::after {
		height: 2px;
		bottom: 0;
	}

	.btn {
		width: 150px;
		font-size: 1.8rem;
		line-height: 3.5rem;
	}

	.btn p {
		letter-spacing: 0.2rem;
	}

}

@media (max-width: 330px){
	.index {
		width: 90%;
	}

	.contents {
		font-size: 1.8rem;
	}

	.contents strong {
		font-size: 2.5rem;
	}

	.btn {
		width: 120px;
		font-size: 1.5rem;
	}

}

.box2 {
	width: 100%;
	height: auto;
	background-color: #FBFAFF;
	font-size: 2.0rem;
	text-align: center;
	letter-spacing: 0.2rem;
	font-family: yu-gothic-pr6n, sans-serif;
	font-weight: 700;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}

.what {
	padding: 20.0rem 0 0 10%;
	text-align: left;
	position: relative;
	width: 100%;
	height: 90.0rem;
}

.what::after {
	content: "";
	display: inline-block;
	width: 30.0rem;
	height: 600px;
	background-image: url('../images/iPhone-12-PRO-yumesuki.net.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 20.0rem;
	transform: translateY(-50%);
	left: 65%;
	transform: rotate(15deg);
}

h1 {
	font-size: 4.0rem;
	margin-bottom: 2.0rem;
	margin-left: -5.0rem;
	font-weight: 500;
	font-family: rera, sans-serif;
	display: block;
}

.box2 p {
	padding: 0.1rem 0;
}

.what a {
	color: #000;
	position: relative;
}

.what h1 img {
	height: 5.5rem;
	margin-bottom: -1.0rem;
	transform: rotate(-20deg);
}

.what .intro img {
	filter: invert(98%) sepia(58%) saturate(3245%) hue-rotate(15deg) brightness(95%) contrast(60%);
	height: 6.0rem;
	margin-bottom: -0.7rem;
	position: relative;
	display: inline-block;
	margin-left: 3.0rem;
	margin-right: 3.0rem;
}

.what .intro::after {
	content: "© 2025 syuilo and Misskey Project";
	position: absolute;
	width: 100%;
	top: 31.0rem;
	left: 10%;
	display: inline-block;
	height: 5.0rem;
	padding: 0rem 1.0rem;
	font-size: 1.2rem;
}

mark {
	padding: 0.3rem 1.5rem;
	background-image: linear-gradient(90deg, rgba(77, 84, 224, 1), rgba(228, 81, 154, 1) 50%, rgba(252, 144, 121, 1));
	color: #fff;
}

.what a::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	display: inline-block;
	background-color: #E568AF;
	bottom: -0.5rem;
	left: 0;
}

.guideline {
	color: hsla(238,78%,70%,1.00);
}

.what a:hover {
	color: #E568AF;
}

@media (max-width: 820px){
	.box2 {
		font-size: 1.7rem;
		letter-spacing: 0.2rem;
	}

	.what {
		padding: 20.0rem 0 0 10%;
		height: 90.0rem;
	}

	.what::after {
		width: 20.0rem;
		height: 500px;
		top: 40.0rem;
		left: 60%;
	}

	h1 {
		font-size: 3.0rem;
		margin-bottom: 4.0rem;
	}

	.box2 p {
		padding: 0.1rem 0;
	}

	.what h1 img {
		height: 4.5rem;
		margin-bottom: -1.2rem;
	}

	.what .intro img {
		height: 4.5rem;
		margin-bottom: -0.5rem;
		margin-left: 2.0rem;
		margin-right: 2.0rem;
	}

	.what .intro::after {
		top: 30.5rem;
		font-size: 1.2rem;
		letter-spacing: 0rem;
	}

	mark {
		padding: 0.3rem 1.0rem;
	}

}

@media (max-width: 550px){
	.box2 {
		font-size: 1.5rem;
		letter-spacing: 0rem;
	}

	.what {
		padding: 20.0rem 0 0 10%;
		height: 90.0rem;
	}

	.what::after {
		top: 30.0rem;
		width: 18.0rem;
		left: 65%;
	}

	h1 {
		font-size: 2.5rem;
		margin-bottom: 4.0rem;
	}

	.box2 p {
		padding: 0rem 0;
	}

	.what h1 img {
		height: 3.5rem;
		margin-bottom: -0.8rem;
		margin-left: 4.0rem;
	}

	.what .intro img {
		height: 3.5rem;
		margin-bottom: -0.5rem;
		margin-left: 1.5rem;
		margin-right: 1.5em;
	}

	.what .intro::after {
		top: 29.0rem;
		font-size: 1.1rem;
		letter-spacing: -0.05rem;
		left: 8%;
	}

	mark {
		padding: 0.3rem 1.0rem;
	}

}

@media (max-width: 450px){
	.box2 {
		font-size: 1.4rem;
		letter-spacing: 0.1rem;
	}

	.what {
		padding: 15.0rem 0 0 5%;
		height: 90.0rem;
	}

	.what::after {
		top: 28.0rem;
		width: 17.0rem;
		left: 70%;
	}

	h1 {
		font-size: 2.3rem;
		margin-bottom: 4.0rem;
	}

	.what h1 img {
		height: 3.3rem;
		margin-bottom: -0.8rem;
		margin-left: 4.0rem;
	}

	.what .intro img {
		height: 3.4rem;
		margin-bottom: -0.5rem;
		margin-left: 1.5rem;
		margin-right: 1.5em;
	}

	.what .intro::after {
		top: 23.5rem;
		font-size: 1.0rem;
		letter-spacing: -0.05rem;
		left: 4%;
	}

	mark {
		padding: 0.3rem 0.5rem;
	}

}


.yumesousaku {
	text-align: center;
	display: inline-block;
	height: auto;
}

.yumesousaku::before {
	content: "";
	display: inline-block;
	width: 50.0rem;
	height: 50.0rem;
	background-image: url('../images/question.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 10.0rem;
	left: 10%;
}

.yumesousaku::after {
	content: "";
	display: inline-block;
	width: 32.0rem;
	height: 32.0rem;
	background-image: url('../images/ok.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 25.0rem;
	right: 10%;
	z-index: -1;
}


.yumesousaku a {
	margin: 2.0rem 0;
	--arrow-color: #000;
	position: relative;
	border: 2px solid var(--arrow-color);
	color: var(--arrow-color);
	text-decoration: none;
	padding: 8px 30px;
	display: inline-block;
	text-align: center;
	transition: all .2s linear;
	font-size: 2.5rem;
	margin: 0 auto;
}

.yumesousaku a:hover {
	background: #E568AF;
	color: #fff;
}

.yumesousaku a::before {
	border-bottom: 2px solid var(--arrow-color);
	border-right: 3px solid var(--arrow-color);
	content: '';
	height: 10px;
	position: absolute;
	top: calc(50% - 10px);
	right: -20px;
	transform: skewX(50deg);
	width: 40px;
	transition: all .3s;
}

.yumesousaku a:hover::before {
	right: -25px;
}

.fukidashi {
	position: relative;
	width: fit-content;
	padding: 12px 16px;
	border: 2px solid #333333;
	background-color: #ffffff;
	margin: 6.0rem 0;
	font-size: 2.8rem;
	font-weight: 500;
	font-family: tbudrgothic-std, sans-serif;
	transform: rotate(-5deg);
	z-index: 1;
}

.fukidashi::after {
	content: "";
	position: absolute;
	top: calc(100% + 5px);
	left: 50%;
	width: 30px;
	height: 2px;
	transform: rotate(-50deg);
	box-sizing: border-box;
	background-color: #333333;
	box-shadow: 0 2px 0 #ffffff, 0 -2px 0 #ffffff;
	z-index: -1;
}

.fukidashi:nth-child(1) {
	left: 0;
	margin-bottom: 40.0rem;
}

.fukidashi:nth-child(2) {
	left: 40%;
	margin-bottom: 10.0rem;
}

.fukidashi:nth-child(2)::after {
	transform: rotate(50deg);
}

.yumesousaku p {
}

.tsumari {
	padding-top: 17.0rem;
	margin-bottom: 5%;
	font-size: 2.5rem;
	font-family: rera, sans-serif;
	font-weight: 200;
	line-height: 4.5rem;
}

.tsumari span {
	font-size: 4.5rem;
	display: inline-block;
	line-height: 6.5rem;
	margin-top: 2.0rem;
}

.teigi {
}

@media (max-width: 850px){
	
	.yumesousaku::before {
		width: 40.0rem;
		height: 40.0rem;
		top: 6.0rem;
		right: 0;
	}

	.yumesousaku::after {
		width: 28.0rem;
		height: 28.0rem;
		bottom: 25.0rem;
		left: 50%;
	}

	.fukidashi {
		padding: 10px 16px;
		margin: 4.0rem 0;
		font-size: 2.5rem;
	}

	.fukidashi:nth-child(1) {
		left: 10%;
		margin-bottom: 30.0rem;
	}
	
	.fukidashi:nth-child(2) {
		left: 10%;
	}

	.tsumari {
		padding-top: 13.0rem;
		font-size: 2.3rem;
		line-height: 4.0rem;
	}

	.tsumari span {
		font-size: 4.0rem;
		line-height: 6.5rem;
	}

}


@media (max-width: 550px){
	
	.yumesousaku::before {
		width: 40.0rem;
		height: 40.0rem;
		top: 6.0rem;
		right: 10%;
	}

	.yumesousaku::after {
		width: 28.0rem;
		height: 28.0rem;
		bottom: 26.0rem;
		right: 0rem;
	}
	
	.fukidashi {
		padding: 8px 16px;
		margin: 6.0rem 0;
		font-size: 2.0rem;
	}
	
	.yumesousaku a {
		font-size: 1.8rem;
	}
	
}

@media (max-width: 450px) {
	
	.yumesousaku::before {
		width: 40.0rem;
		height: 40.0rem;
		top: 6.0rem;
		left: 0;
	}

	.yumesousaku::after {
		width: 28.0rem;
		height: 28.0rem;
		bottom: 21.0rem;
		left: 35%;
	}

	.yumesousaku a {
		font-size: 1.8rem;
	}

	.fukidashi {
		padding: 8px 16px;
		margin: 6.0rem 0;
		font-size: 2.0rem;
	}

	.fukidashi:nth-child(1) {
		left: 10%;
		margin-bottom: 30.0rem;
	}

	.tsumari {
		padding-top: 15.0rem;
		margin-bottom: 5%;
		font-size: 2.0rem;
		line-height: 3.5rem;
	}

	.tsumari span {
		font-size: 3.5rem;
		line-height: 6.5rem;
		margin-top: 1.0rem;
	}

}

@media (max-width: 400px) {

	.yumesousaku::before {
		width: 35.0rem;
		height: 35.0rem;
		top: 6.0rem;
		right: -13%;
	}

	.yumesousaku::after {
		width: 25.0rem;
		height: 25.0rem;
		bottom: 19.0rem;
		right: -10%;
	}

	.yumesousaku a {
		margin: 1.0rem 0;
		padding: 8px 15px;
		font-size: 1.6rem;
		margin: 0 auto;
	}

	.yumesousaku a::before {
		display: none;
	}

	.yumesousaku a:hover::before {
		display: none;
	}

	.fukidashi {
		padding: 8px 16px;
		margin: 6.0rem 0;
		font-size: 1.6rem;
	}

	.fukidashi:nth-child(1) {
		left: 0;
		margin-bottom: 25.0rem;
	}
	
	.fukidashi:nth-child(2) {
		left: 15%;
		margin-bottom: 8.0rem;
	}

	.tsumari {
		padding-top: 15.0rem;
		margin-bottom: 5%;
		font-size: 1.5rem;
		line-height: 2.5rem;
	}

	.tsumari span {
		font-size: 3.5rem;
		line-height: 6.5rem;
		margin-top: 1.0rem;
	}

}


.shoutai {
	padding: 10.0rem 5.0rem 5.0rem 5.0rem;
	display: flex;
	text-align: justify-all;
	justify-content: center;
	align-items: center;
	position: relative;
}

.box3 {
	text-align: left;
	width: 50%;
	padding: 1.0rem;
}

.box3 p {
	padding-top: 0.1rem;
	padding-bottom: 0.1rem;
	font-size: 1.7rem;
	text-align: center;
}

.code {
	position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 22.0rem;
}

.code::after {
	content: "";
	display: inline-block;
	width: 15.0rem;
	height: 15.0rem;
	background-image: url('../images/code.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	left: 0;
	margin: 0 auto;
	padding-top: 9.0rem;
}

iframe {
}

@media (max-width: 850px) {
	
	.shoutai {
		padding: 10.0rem 3.5rem 5.0rem 3.5rem;
	}
}

@media (max-width: 800px) {
	
	.shoutai {
		padding: 10.0rem 5.0rem 5.0rem 5.0rem;
		display: block;
	}

	.box3 {
		text-align: center;
		width: 100%;
		padding: 1.0rem;
	}

	.box3 p {
		padding-top: 0.1rem;
		padding-bottom: 0.1rem;
		font-size: 1.7rem;
		text-align: center;
	}

}

@media (max-width: 450px) {
	
	.shoutai {
		padding: 10.0rem 2.0rem 5.0rem 2.0rem;
		display: block;
	}

	.box3 {
		text-align: center;
		width: 100%;
		padding: 1.0rem;
	}

	.box3 p {
		padding-top: 0.1rem;
		padding-bottom: 0.1rem;
		font-size: 1.7rem;
		text-align: center;
	}

}

@media (max-width: 400px) {
	
	.shoutai {
		padding: 10.0rem 1.0rem 5.0rem 1.0rem;
		display: block;
	}

	.box3 {
		text-align: center;
		width: 100%;
		padding: 0.5rem;
	}

	.box3 p {
		padding-top: 0.1rem;
		padding-bottom: 0.1rem;
		font-size: 1.5rem;
		text-align: center;
	}

}

.oideyo {
	width: 100%;
	height: auto;
	padding: 0 0 3.0rem 0;
	font-family: rera, sans-serif;
	font-weight: 200;
}

.oideyo p {
	font-size: 3.0rem;
	letter-spacing: 0.25rem;
}

.oideyo strong {
	font-size: 7.0rem;
	letter-spacing: 0.25rem;
	font-weight: 300;
}

.sp_br {
    display: none;
}

footer {
	width: 100%;
	height: auto;
	background-color: #FFF;
	font-size: 1.2rem;
	text-align: center;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	padding: 5.0rem 5.0rem 3.0rem 5.0rem;
	margin-bottom: 5.0rem;
	font-weight: 600;
	position: sticky
	top: 100vh;
}

footer a {
	color: #E568AF;
}

footer a:hover {
	color: #000;
}

.box4 {
	display: flex;
	text-align: justify-all;
	justify-content: space-between;
	margin-bottom: 2.5rem;
}

.bottom {
	width: 20%;
	position: relative;
	margin-bottom: 2.0rem;
}

h2 {
	margin-bottom: 1.0rem;
	font-size: 1.5rem;
	text-align: left;
}

h2::after {
	position: absolute;
	content: '';
	height: 1px;
	width: 100%;
	background-color: #000;
	top: 2.7rem;
	left: 0;
}

ul {
	list-style: none;
	text-align: left;
}

@media (max-width: 1000px) {
	
	footer {
		padding: 5.0rem 6.0rem 3.0rem 6.0rem;
	}

	.box4 {
		display: flex;
		margin-bottom: 2.5rem;
		flex-wrap: wrap;
	}

	.bottom {
		width: 45%;
		margin-bottom: 4.0rem;
	}

	h2 {
		margin-bottom: 1.0rem;
		font-size: 1.5rem;
		text-align: left;
	}

	h2::after {
		position: absolute;
		content: '';
		height: 1px;
		width: 90%;
		background-color: #000;
		top: 2.7rem;
		left: 0;
	}
	
	.sp_br {
		display: block;
	}

}

@media (max-width: 600px) {
	
	footer {
		padding: 5.0rem 5.0rem 3.0rem 5.0rem;
	}

	.box4 {
		display: flex;
		margin-bottom: 2.5rem;
		flex-wrap: wrap;
	}

	.bottom {
		width: 45%;
		margin-bottom: 4.0rem;
	}

	h2::after {
		width: 100%;
	}

	.oideyo {
		padding: 0 0 3.5rem 0;
	}

	.oideyo p {
		font-size: 2.5rem;
	}

	.oideyo strong {
		font-size: 6.0rem;
	}	
	
}

@media (max-width: 500px) {
	
	footer {
		padding: 5.0rem 4.0rem 3.0rem 4.0rem;
		font-size: 1.4rem;
		text-align: left;
	}

	.box4 {
		display: block;
		margin-bottom: 5.0rem;
	}

	.bottom {
		width: 100%;
	}

	h2::after {
		width: 100%;
	}
	
	.sp_br {
		display: none;
	}

	.oideyo {
		padding: 0 0 3.5rem 0;
		margin-top: 8.0rem;
		margin-bottom: 0rem;
	}

	.oideyo p {
		font-size: 2.0rem;
	}

	.oideyo strong {
		font-size: 5.0rem;
	}
	
	.box5 p {
		font-size: 1.2rem;
	}
	
}
@media (max-width: 400px) {
	.oideyo {
		padding: 0 0 3.5rem 0;
		margin-top: 8.0rem;
		margin-bottom: 0rem;
	}

	.oideyo p {
		font-size: 1.7rem;
	}

	.oideyo strong {
		font-size: 4.0rem;
	}
	
	.box5 p {
		font-size: 1.1rem;
	}
	
}
