@charset "UTF-8";
/* CSS Document */
/* * {
	outline: 2px red solid;
} */
.wrap {
    width: 100%;
	max-width: 1240px;
    margin: 0 auto;
}
.align-center {
    text-align: center;
}
html {
    font-size: 100%;
}
body{
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #333333;
  background-color: #ffffff; 
}
a {
    text-decoration: none;
    color: #333333;
}
ul {
    list-style-type: none;
}
img {
    max-width: 100%;
}

h2 {
    font-size: 35px;
    padding: 80px 0 60px;
}
h3 {
    font-size: 30px;
    padding: 300px 0 0;
}
section {
    padding-bottom: 100px;
}
.item img, .profiel_img img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* グリッド内で比率維持 */
}



/* ナビゲーション　*/

.container {
    display: flex;
    justify-content: space-around;
}
nav {
    background-color: #ea84b1;
    padding: 30px 30px;
}
nav ul li {
	font-size: 20px;
}
nav ul li a {
    color: #ffffff;
}
nav ul li a:hover {
    color: #333333;
    transition: .5s;
}

/* logo */
h1 img {
    width: 100%;
	height: auto;
	display: block;
}

/* 見出し */
.popup-text {
	font-size: 60px;
	margin: 120px 0;
}

/* movie */
video {
	max-width: 100%;
	display: block;
	margin: 0 auto;
	width: 700px;
	height: auto;
	margin-top: 100px;
}


/* 最新情報　*/
main section ul {
	height: 450px;
	overflow: hidden scroll;
}
main section ul li {
    border: solid #ea84b1;
    border-width: 0px 0 1px 0;
    padding: 50px 0;
}
#newsArea {
	position: relative;
}
.illust1::before {
	content: url("illust1.png");
	position: absolute;
	bottom: -80px;
	left: 100px;
	z-index: 100;
}

/* パンくず */
.breadcrumb ol {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  font-size: 14px;
}

.breadcrumb li + li::before {
  content: "›";
  margin: 0 8px;
  color: #333333;
}

.breadcrumb a {
  text-decoration: none;
  color: #5d6df4;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
  color: #333333;
  font-weight: bold;
}

/* キャラ紹介 */
	.link-chara {
	  text-align: center;
	}
.link-chara a {
		display: inline-block;
		background-color: #4b4b4b;
		color: #ffffff;
		margin-top: 30px;
		padding: 15px 20px;
		border-radius: 10px;
		box-shadow: 0px 3px 0px 0px #000000;
	}
	.link-chara a:hover {
	scale: 1.1 1.1;
	transition: .5s;
}
.grid-chara {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
	justify-items: center;
}
.item-chara img {
    border-radius: 20px;
}
.charaname {
	font-size: 25px;
	margin-bottom: 10px;
}
.chara-text {
		font-size: 17px;
	}	

/* プロフィール　*/
#profielArea {
    background-color: #fef7fa;
	position: relative;
}
.illust2::after {
	content: url("illust2.png");
	position: absolute;
	bottom: -80px;
	right: 100px;
	z-index: 100;
}
.profiel_img img {
	border-radius: 50%;
}
.container2 {
	display: flex;
	justify-content: center;
}


.profielitem a {
	background-color: #ea84b1;
	color: #ffffff;
	border-radius: 20px;
	padding: 10px 20px;
	font-size: 14px;
	box-shadow: 0px 3px 0px 0px #CB4E94;
}

.profielitem a:hover {
	color: #333333;
}
.profielitem {
	padding: 0 30px;
}
.profiel_name {
	font-size: 35px;
	margin-bottom: 10px;
}
p.profiel_text{
	margin-top: 30px;
	line-height: 1.9;
}
p.introduce {
	line-height: 1.9;
}

mark {
	background: linear-gradient(transparent 60%, #ea84b1 60%);
	color: #333;
}


/* 開催日時　*/
.date_color {
	background: linear-gradient(to bottom,#e984b0,#eabcd5,#b7dff4);
    color: #ffffff;
}
.place {
	font-size: 45px;
	color: #ffffff;
	background-color: #ea84b1;
	border-radius: 25px;
	padding: 10px 15px;
}
.date {
	margin-top: 35px;
	font-size: 30px;
	color: #333333;
}
#dateArea {
	position: relative;
}
.illust3::before {
	content: url("illust3.png");
	position: absolute;
	bottom: -130px;
	left: 50px;
	z-index: 100;
}
.unity {
	background-color: #fef7fa;
	padding: 30px 60px;
	border-radius: 50px; 
	box-shadow: 0px 0px 12px #959595;
}
.unity2 {
	margin: 60px 0;
}

/* グッズ */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
	justify-items: center;
}
.item img {
    border-radius: 20px;
}
.goodsname {
	font-size: 25px;
}
#goodsArea {
	position: relative;
}
.illust4::after {
	position: absolute;
	content: url("illust4.png");
	top: -50px;
	right: 40px;
	z-index: 100;
}

/* 注意事項 */
aside {
    background: url("asideimage.png") no-repeat center center/cover;
}
.attention_padding {
    padding: 100px 0 80px;
}
.asideArea {
	position: relative;
	padding-bottom: 70px;
}
.illust5::before {
	position: absolute;
	content: url("illust5.png");
	z-index: 100;
	left: 150px;
	top: 80;
}
.illust6::before {
	position: absolute;
	content: url("illust6.png");
	z-index: 100;
	left: 350px;
	top: 150px;
}
.illust7::after {
	position: absolute;
	content: url("illust7.png");
	z-index: 100;
	right: 250px;
	top: 230px;
}
.btn_wrap {
	text-align: center;
}
.btn_top {
	background-color: #5ed5e5;
    color: #ffffff;
	border-radius: 10px;
	display: inline-block;
	padding: 15px 20px;
}
.btn_top:hover {
	background-color: #333333;
	transition: .5s;
}
.asideArea p {
		text-align: left;
	max-width: 700px;
		margin: 10px auto;
}

.btn_X {
    background-color: #ea84b1;
	border-radius: 20px;
	padding: 10px 20px;
	font-size: 14px;
	box-shadow: 0px 3px 0px 0px #CB4E94;
    width: 240px;
    margin: 0 auto;
    margin-top: 50px;
    display: block;
    text-align: center;
}
.btn_X a {
    color: #ffffff;
}
.btn_X a:hover {
	color: #333333;
}


/* フッター */
footer {
    background-color: #ea84b1;
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
}

footer p {
	line-height: 2;
}
.footer-text {
	font-size: 11px;
}


/* スマホ用 */
@media screen and (max-width: 640px) {
	
	/* 全体設定　*/
	.container2 {
		display: block;
	}
	.wrap {
		width: 100%;
	}
	
	body {
		font-size: 16px;
	}
	h2 {
    font-size: 30px;
    padding: 70px 0 40px;
    padding: 70px 0 60px;
}
h3 {
    font-size: 20px;
    padding: 350px 0 0;
}
	

	/* ナビゲーション */
	.container {
    display: flex;
    justify-content: space-around;
}
	nav {
    background-color: #ea84b1;
    padding: 20px 30px;
}
nav ul li {
	font-size: 13px;
}	
	
/* logo */
h1 img {
    width: 100%;
	height: auto;
}

/* 見出し */
.popup-text {
	font-size: 40px;
	margin: 80px auto;
	max-width: 300px;
}
	
		/* movie */
video {
	max-width: 100%;
	display: block;
	margin: 0 auto;
	width: 420px;
	height: auto;
	margin-top: 50px;
}
	
	/* 最新情報　*/
main section ul {
	height: 450px;
	overflow: hidden scroll;
	margin: 0 20px;
}
main section ul li {
    border: solid #ea84b1;
    border-width: 0px 0 1px 0;
    margin: 30px 20px;
	padding: 20px 0;
	text-align: left;
}
#newsArea {
	position: relative;
}
.illust1::before {
	content: "";
	background-image: url("illust1.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: -50px;
	left: 20px;
	z-index: 100;
	
	width: 100px;
	height: 100px;
}
	
/* キャラ紹介 */
	.grid-chara {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0rem;
}
.item-chara img {
	width: 150px;
	height: auto;
}
.charaname {
	font-size: 18px;
	margin-bottom: 10px;
}
	.chara-text {
		font-size: 13px;
	}	
	
	/* プロフィール　*/
#profielArea {
    background-color: #fef7fa;
	position: relative;
}
.illust2::after {
	content: "";
	background-image: url("illust2.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: -50px;
	right: 30px;
	z-index: 100;
	
	width: 100px;
	height: 100px;
}
	.profiel_img {
		text-align: center;
	}
.profiel_img img {
	border-radius: 50%;
	display: block;
	margin: 0 auto;
	width: 200px;
	height: 200px;
	
}
	.profiel_name {
		text-align: center;
	}
	.container2 {
	flex-direction: column;
	align-items: center;
}
	
.profielitem a {
	background-color: #ea84b1;
	color: #ffffff;
	border-radius: 20px;
	padding: 10px 20px;
	font-size: 14px;
	display: block;
	width: fit-content;
	margin: 15px auto 0;
}
.profielitem a:hover {
	color: #333333;
}
.profielitem {
	width: 100%;
	text-align: center;
	padding: 0 30px;
}
.profiel_name {
	font-size: 35px;
	margin-bottom: 10px;
}
p.profiel_text{
	margin-top: 30px;
	line-height: 1.9;
	text-align: left;
}
p.introduce {
    line-height: 1.9;
    max-width: 700px; /* 横幅制限 */
    margin: 0 auto;   /* 中央寄せ */
	text-align: left;
	display: inline-block;
	padding: 0 30px;
}

	/* 開催日時　*/
.date_color {
	background: linear-gradient(to bottom,#e984b0,#eabcd5,#b7dff4);
    color: #ffffff;
}
.place {
	font-size: 20px;
	color: #ffffff;
	background-color: #ea84b1;
	border-radius: 25px;
	padding: 10px 15px;
}
.date {
	margin-top: 30px;
	font-size: 15px;
	color: #333333;
}
#dateArea {
	position: relative;
}
.illust3::before {
	content: "";
	background-image: url("illust3.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: -60px;
	left: 20px;
	z-index: 100;
	
	width: 100px;
	height: 100px;
}
	.illust4::after {
		content: "";
	background-image: url("illust4.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -20px;
	right: 40px;
	z-index: 100;
		
		width: 70px;
	height: 70px;
}

.unity {
	background-color: #fef7fa;
	padding: 30px 5%;
	border-radius: 50px; 
	box-shadow: 0px 0px 12px #959595;
}
.unity2 {
	margin: 40px 0;
}
/* グッズ */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0rem;
}
.item img {
    border-radius: 15px;
	width: 170px;
	height: auto;
}
.goodsname {
	font-size: 19px;
}

#goodsArea {
	position: relative;
}

	/* 注意事項 */
	.illust5::before {
		content: "";
	background-image: url("illust5.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 100;
	left: 30px;
	top: 200px;
		
		width: 140px;
	height: 140px;
}
	
.illust6::before {
	content: "";
	background-image: url("illust6.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 100;
	left: 90px;
	top: 230px;
	
	width: 60px;
	height: 60px;
}
.illust7::after {
	content: "";
	background-image: url("illust7.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 100;
	right: 30px;
	top: 260px;
	
	width: 90px;
	height: 90px;
}
	.asideArea p {
		text-align: left;
		display: inline-block;
	margin: 5px 30px;
		font-size: 14px;
		line-height: 1.6;
	}
	
}
