@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700;900&display=swap');

/* リセットCSS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	font-size: 10px;
}
@media screen and (max-width: 768px){
	html {
		font-size: 2.6666vw;
	}
}

body {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-feature-settings: "palt";
	font-weight: 400;
	line-height: 1.6;
	color: #333;
	background: #fff000;
}

img {
	display: block;
	width: 100%;
}

a{
	color:#333;
	text-decoration: none;
}

/* ユーティリティクラス */
.sp-only{
	display: block;
}
@media screen and (min-width: 769px){
	.sp-only{
		display: none;
	}
}

.pc-only{
	display: none;
}
@media screen and (min-width: 769px){
	.pc-only{
		display: block;
	}
}

.header{
	background: #fff;
	width: 100%;
}
.header__inner{
	align-items: center;
	display: flex;
	height: 8rem;
	justify-content: center;
	margin: auto;
	width: 100%;
}
.header__logo{
	align-items: center;
	display: flex;
	gap: 1rem;
}
.header__logo__image{
	width: 3.2rem;
}
.header__logo__text{
	color:#ffc800;
	font-size: 3.2rem;
	font-weight: 900;
}


.main {
	margin: auto;
  width: 64rem;
}
@media screen and (max-width: 768px){
	.main {
		width: 100%;
	}
}


.footer{
	background: #ccc;
	margin-top: 6rem;
	padding: 4rem 0 2rem;
	text-align: center;
}
.footer__links{
	display: flex;
	flex-direction: column;
	font-size:1.4rem;
	gap:0.5em;
	margin-bottom: 4rem;
}
.footer__links a{
	text-decoration: underline;
}
.footer__copyright{
	font-size:1.2rem;
}

.common-section{
	padding: 0 2rem;
	width: 100%;
}

.common-page-title{
	font-size:2.6rem;
	margin: 2em 0;
	text-align: center;
}

.top__kv {
	margin: 6rem 0;
  width: 100%;
}

.top__kv__subtitle{
	color:#ffc800;
	font-size: 2rem;
	line-height: 1.35;
	margin: 0 auto 1em;
	position: relative;
	text-align: center;
	width: fit-content;
}
.top__kv__subtitle__sub{
	align-items: center;
	background-color: #ffc800;
	border-radius: 1.5rem;
	color:#fff;
	display: flex;
	font-size:1.4rem;
	height: 3rem;
	justify-content: center;
	right:-2.4rem;
	position: absolute;
	top:-2.2rem;
	width: 9.2rem;
}
.top__kv__subtitle__sub::after{
	background-color: #ffc800;
	bottom:-1rem;
	content:'';
  height: 1.6rem;
	left:0rem;
  mask-image: url(./images/speech-bubble-parts-left.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
	position: absolute;
	width: 1.6rem;
}

.top__kv__icon{
	margin: auto;
	width: 20rem;
}
.top__kv__title{
	color:#ffc800;
	font-size: 4rem;
	font-weight: 900;
	text-align: center;
}

.top__download{
	margin: 4rem 0;
	text-align: center;
}
.top__download__links{
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
}
@media screen and (min-width: 769px){
	.top__download__links{
		flex-direction: row;
		justify-content: center;
	}
}
.top__download__link{
	display: inline-block;
	max-width: 20rem;
	transition: opacity 0.3s;
	height: 6rem;
}
.top__download__link:hover{
	opacity: 0.8;
}
.top__download__link__image{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.top__privacy-policy__text{
	font-size:1.4rem;
	text-align: center;
}
.top__privacy-policy__text a{
	text-decoration: underline;
}






.common-page{
	font-size: 1.6rem;
}

.common-page h2{
	font-size: 2rem;
	margin-bottom: 0.5em;
	margin-top: 2em;
}

.common-page h3{
	font-size: 1.8rem;
	margin-bottom: 0.5em;
}

.common-page p{
	margin-bottom: 1em;
}

.common-page p a{
	text-decoration: underline;
}

.common-page ul{
	margin-bottom: 2em;
}

.common-page li{
	margin-left: 1.5em;
}

.last-updated{
	margin-top: 4em;
	font-size:1.4rem;
	text-align: right;
}

