@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/*----------------------------------------------------*/ 
/* common
------------------------------------------------------*/ 

body, html {
	min-width: 1024px;
	font-size:62.5%;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-family: 'Sawarabi Gothic', sans-serif;
	scroll-behavior: smooth;
}

body{
	overflow-x: hidden;
	font-size: 1.6rem;
}

#pagetop {
	display: block;
}

#footer {
	margin-top:0;
	background: #B5B5B6;
	padding: 0 0 20px 0;
}

#footer p {
	display: flex;
	justify-content: center;
	align-items: center;
	gap:20px;
	text-shadow: none;
	color: #000;
}

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


.visiblePC,.pc {
	display: block;
}

.visibleSP,.sp {
	display: none;
}


.txt12 { font-size: 12px; }
.txt14 { font-size: 14px; }
.txt16 { font-size: 16px; }

.bm10 { margin-bottom: 10px !important;}
.bm20 { margin-bottom: 20px !important;}
.bm30 { margin-bottom: 30px !important;}
.bm40 { margin-bottom: 40px !important;}
.bm50 { margin-bottom: 50px !important;}
.bm60 { margin-bottom: 60px !important;}
.bm70 { margin-bottom: 70px !important;}
.bm80 { margin-bottom: 80px !important;}

@media only screen and (max-width: 1024px) {
body, html {
	min-width: 0;
}

}

@media only screen and (max-width: 769px) {

.visiblePC,.pc {
	display: none;
}

.visibleSP,.sp {
	display: block;
}

#footer p {
	display: block;
	justify-content: center;
	align-items: center;
	gap:20px;
	text-shadow: none;
	color: #000;
}
#footer p a {
	display: block;
	margin-bottom: 20px;
	}

}

/*----------------------------------------------------*/ 
/* smenu
------------------------------------------------------*/ 

#smenu {
	position: fixed;
	top:0;
	left: -280px;
	width: 280px;
	height: 100%;
	background: #EFEFEF;
	z-index: 20;
	box-sizing: border-box;
	transition-duration: 0.4s;
 transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	text-align: center;
}

#smenu .horoscope {
	display: none;
}

#smenu .btnMenu {
	position: absolute;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background: rgba(180,186,198,0.34);
	right: -70px;
	top: 70px;
	cursor: pointer;
}

#smenu .btnMenu span {
	position: absolute;
	left: 15px;
	width: 30px;
	height: 3px;
	background: #fff;
	transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#smenu .btnMenu span.bar1 {
	top: 18px;
}

#smenu .btnMenu span.bar2 {
	top: 27px;
}

#smenu .btnMenu span.bar3 {
	top: 38px;
}

#smenu.visible {
	left: 0;
}

#smenu.visible .btnMenu span.bar1 {
	top: 48%;
	left: 10px;
	width: 40px;
	transform: rotate(135deg) scale(-1, 1);
 transition: 0.5s cubic-bezier(0.825, 0.005, 0.175, 0.995);
 transition-delay: 0.1s;
}

#smenu.visible .btnMenu span.bar2 {
	opacity: 0;
	transform: rotate(180deg);
	transform-origin: 50%;
	transition: 0.5s cubic-bezier(0.825, 0.005, 0.175, 0.995);
 transition-delay: 0.1s;
}

#smenu.visible .btnMenu span.bar3 {
	top: 48%;
	left: 10px;
	width: 40px;
	transform: rotate(-135deg) scale(-1, 1);
 transition: 0.5s cubic-bezier(0.825, 0.005, 0.175, 0.995);
 transition-delay: 0.1s;
}


#smenu .title {
	padding: 100px 0 80px;
	font-size: 0;
}

#smenu ul.menu li a {
	display: block;
	padding: 20px 35px 15px;
	font-size: 18px;
	color: #898989;
	text-decoration: none;
	transition: 0.3s;
}

#smenu ul.menu li a span {
	display: block;
	border-bottom: dotted 1px #898989;
	padding-bottom: 5px;
}

#smenu ul.menu li a:hover {
	background: #fff;
}

#smenu ul.menu li a:hover span {
	color: #231815;
	border-color: #231815;
}

#smenu ul.menu li a.current {
	background: #6886c2;
}

#smenu ul.menu li a.current span {
	color: #fff;
	border-color: #fff;
}

@media only screen and (max-width: 680px) {

#smenu {
	left: -200px;
	width: 200px;
}

#smenu .btnMenu {
	transform: scale(0.75) translate(-20%,-20%);
	top: 50px;
}

	
#smenu .title {
	padding: 20px 0;
	font-size: 0;
}

#smenu .title img {
	width: 80%;
}

#smenu ul.menu li a {
	padding: 10px;
	font-size: 14px;
}

#smenu ul.menu li a span {
	display: block;
	border-bottom: dotted 1px #898989;
	padding-bottom: 5px;
}


}


/*----------------------------------------------------*/ 
/* header
------------------------------------------------------*/ 

#header {
	position: relative;
	padding: 0;
	border-bottom: none;
	margin-bottom: 0;
}

#header.fixed {
	position: fixed;
	width: 100%;
	top:0;
	left:50%;
	z-index: 15;
	transform: translateX(-50%);
}

#header ul {
	display: flex;
	margin: 0 auto;
}

#header ul li {
	width: 50%;
}

#header ul li a {
	display: block;
	text-decoration: none;
	color: #FFF;
	padding: 5px 20px;
	font-family: "Arial Black", Gadget,'Noto Sans JP', "sans-serif";
	font-size: clamp(10px,3vw,32px);
	font-weight: bold;
}


#header ul li a dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

#header ul li a dl dt {
	width: 20%;
	display: grid;
	align-content: center;
	place-content: center;
}

#header ul li a dl dt img {
	width: auto;
	height: auto;
	max-height: 38px;
	aspect-ratio: 312/78;
}

#header ul li a dl:after {
	content: "";
	display: block;
	width: 5%;
}

#header ul li.amazon a {
	background: #000;
}

#header ul li.rakutenbooks a {
	background: #BD0104;
}

@media only screen and (max-width: 680px) {

#header ul li a {
	padding: 7px 5px;
}
	
#header ul li a dl {
	display: block;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

#header ul li a dl dt {
	width: 100%;
	display: grid;
	align-content: center;
	place-content: center;
}

#header ul li a dl dt img {
	height: 2rem;
}

#header ul li a dl dd {
	font-size: clamp(10px,4vw,32px);
	text-align: center;
}

#header ul li a dl:after {
	display: none;
}

	
}


/*----------------------------------------------------*/ 
/* vi
------------------------------------------------------*/ 

#vi {
	position: relative;
	text-align: center;
	width: 100%;
	margin: 0 auto;
}

#vi h1 {
	position: relative;
	margin: 0 auto;
}




#vi .horoscope {
	display: none;
}

#vi .otherlinks {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	display: block;
	animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

#vi .otherlinks a {
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 18%;
	max-width: 246px;
	z-index: 10;
	animation: poyopoyo 4s ease-out infinite;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
 
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

@media only screen and (max-width: 680px) {
	


#vi .otherlinks a {
	position: absolute;
	top: auto;
	bottom: 10px;
	right: 10px;
	width: 35%;
	max-width: 246px;
	z-index: 10;
}

}

.slick-slider {
	display:none;
}

.slick-slider.slick-initialized {
	display: block;
}

#vi .slick-slide img {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}

#vi div.carousel .hoshiori {	background: #a3c2e3;}
#vi div.carousel .diary {	background: #f7f6f0;}
#vi div.carousel .news {	background: #f8dd99;}
#vi div.carousel .horoscope {	background: #a4ec99;}


#vi .prev,
#vi .next {
	position: absolute;
	top: 50%;
	margin-top: -35px;
	z-index: 1;
	cursor: pointer;
	width: 34px;
	height: 66px;
}

#vi .prev {
	left: 20px;
	background: url(/event/images/stellardiary2025/icon_prev.png) no-repeat;
}

#vi .next {
	right: 20px;
	background: url(/event/images/stellardiary2025/icon_next.png) no-repeat;
}

#vi.arrowGray .prev {
	background-image: url(/event/images/stellardiary2025/icon_prev-gr.png);
}

#vi.arrowGray .next {
	background-image: url(/event/images/stellardiary2025/icon_next-gr.png);
}


@media only screen and (max-width: 680px) {

#vi .prev,
#vi .next {
	margin-top: -20px;
	width: 44px;
	height: 44px;
	background-size: 20px auto !important;
}

#vi .prev {
	left: 10px;
	background-position: left center;
}

#vi .next {
	right: 10px;
	background-position: right center;
}



}

/*----------------------------------------------------*/ 
/* contents
------------------------------------------------------*/ 

#contents {
	padding:0 0 150px;
	margin: 0;
	width: auto;
	position: relative;
}


.pagetop {
	position:fixed;
	right:10px;
	bottom:10px;
	z-index:100;
	display:none;
	width: 109px;
}

.pagetop:hover {
	bottom:15px;
}

.pagetop a:hover img {
	opacity:1;
}


@media (max-width: 1024px) {

.pagetop {
	width:100px;
}

#contents {
	padding-left: 4%;
	padding-right: 4%;
}

}


@media (max-width: 768px) {

#contents {
	padding-bottom: 50px;
	padding-left: 2%;
	padding-right: 2%;
}

.pagetop {
	width:70px;
}


}

/*----------------------------------------------------*/ 
/* gnavi
------------------------------------------------------*/ 

#gnavi {
	text-align: center;
	position: relative;
	width: 100%;
}

#gnavi ul {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
}
#gnavi ul:before {
	content: "";
	width: 1px;
	height: 80%;
	position: absolute;
	left: 0;
	top: 10%;
	border-right: 1px dotted #000;
}

#gnavi li {
	width: 20%;
	display: grid;
	letter-spacing: normal;
	position: relative;
	display: grid;
}
#gnavi li:before {
	content: "";
	width: 1px;
	height: 80%;
	position: absolute;
	right: 0;
	top: 10%;
	border-right: 1px dotted #000;
}

ruby {
	text-align: center;
}


#gnavi li.horoscope {
	display: none;
}

#gnavi li > a {
	color: #000;
	box-sizing: border-box;
	text-decoration: none;
	position: relative;
	font-size: clamp(16px,1.5vw,26px);
	font-weight: bold;
	padding: 5% 5px;
	line-height: 1.1;
	display: grid;
	place-content:center;
	place-items: center;
	z-index: 2;
	gap:0;
}
#gnavi li > a span {
	display: inline;
}

#gnavi li a:hover {
	color:#727171;
}

#gnavi li:hover:after {
	content:"";
	height: 80%;
	aspect-ratio:1/1;
	background: radial-gradient(circle, rgba(255,255,139,1) 0%, rgba(255,255,255,0) 70%, rgba(255,255,255,1) 100%);
	border-radius: 50vh;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}

#gnavi li > a span {
	font-size: clamp(16px,1.5vw,24px);
}



@media (max-width: 768px) {

#gnavi {
	position: relative;
	margin-bottom: 20px;
	z-index: 10;
	transform: none;
}

#gnavi ul {
	margin: 5px 0 0 0;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	grid-gap: 5px;
	padding: 0 5px;
}
#gnavi ul:before {
	display: none;
	}
	
#gnavi li {
	width: 32%;
	box-sizing: border-box;
	margin-bottom: 5px;
}

#gnavi ul li:first-child {
	border: none;
}
	
#gnavi ul li:hover:after {
	display: none;
}
#gnavi ul li:first-child a:after,
#gnavi ul li:nth-child(4) a:after{
	display: block;
	content: "";
	width: 1px;
	height: 80%;
	position: absolute;
	left: 0;
	top: 15%;
	border-right: 1px dotted #000;
	transform: none;
}
	
#gnavi li > a {
	font-size: 1.4rem;
	min-height: 0;
	height: 100%;
	padding: 5px;
}
#gnavi li > a span {
	font-size: 1.4rem;
	}
	
}

/*----------------------------------------------------*/ 
/* h2
------------------------------------------------------*/ 

/*----------------------------------------------------*/ 
/* list
------------------------------------------------------*/ 

.listNotice li {
	padding-left: 1em;
	text-indent: -1em;
}




/*----------------------------------------------------*/ 
/* profile
------------------------------------------------------*/ 

#profile {
	background: #EEFAEC;
	position: relative;
}

#profile h2 {
	padding: 80px 0 60px;
	text-align: center;
 font-size: 2.5rem;
 line-height: 1.2;
 letter-spacing: .1em;
 margin-bottom: 30px;
}

#profile .profile {
	width: 920px;
	margin: 0 auto;
}

#profile .lead {
	font-size: 1.7rem;
	line-height: 1.7;
	margin-bottom: 50px;
}

#profile .lead a {
	font-weight: bold;
}

#profile .book {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#profile .book > li {
	position: relative;
	width: 18%;
	text-align: left;
	padding-bottom: 45px;
}
#profile .book > li.sp {
	display: none;
}

#profile .book > li .image {
	margin-bottom: 25px;
	text-align: center;
}

#profile .book > li dl {
	position: relative;
}

#profile .book > li dt {
	font-size: 14px;
	margin-bottom: 10px;
	text-align: center;
	letter-spacing: -.05em;
}

#profile .book > li dd {
	font-size: 11px;
}

#profile .book > li .btn {
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
}

#profile .book > li .btn a {
	display: block;
	text-align: center;
	background: #f13f5d;
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	padding: 5px 0 5px;
	margin: 0 5px;
	box-shadow: 3px 3px 0 #AAA;
}

#profile .book > li .btn a:hover {
	opacity: .7;
}

.modal_close {
	background: #f13f5d;
}

.modal_box ul li a {
		background:#f13f5d;
		color: #FFF;
}
@media (max-width: 1024px) {

#profile .profile {
	width: auto;
	margin: 0 20px;
}

#profile h2 {
	padding: 40px 0 40px;
}
	
#profile .book > li {
	width: 30%;
	margin-bottom: 30px;
	box-sizing: border-box;
}
	
#profile .book > li.sp {
	display: block;
}	
	
}

@media (max-width: 768px) {

#profile {
}

#profile h2 {
 font-size: 2.0rem;
 margin-bottom: 0px;
}
	
	
#profile .book > li {
	width: 48%;
}

	
}

/*----------------------------------------------------*/ 
/* modal_open
------------------------------------------------------*/ 

.modal_open{
	display: block;
}

.modal_box {
	position: fixed;
	z-index: 7777 !important;
	display: none;
	width: 80%;
	max-width: 840px;
	margin: 0;
	padding: 60px 2vw 80px;
	border: 2px solid #f3f1df;
	text-align: center;
	background: #FFF;
	box-sizing: border-box;
	border-radius: 15px;
}

.modal_close {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 62px;
	height: 62px;
	font-size: 46px;
	color: #000;
	line-height: 62px;
	text-align: center;
	background: #5d4442;
	border-radius: 0 13px 0 0;
	cursor: pointer;
}
.modal_close::before {
		content: "";
		width: 80%;
		height: 4px;
		background: #f3f1df;
		display: block;
		position: absolute;
		left: 10%;
		top: 50%;
		transform: rotate(45deg);
		border-radius: 2px;
	}
.modal_close::after {
		content: "";
		width: 80%;
		height: 4px;
		background: #f3f1df;
		display: block;
		position: absolute;
		right: 10%;
		top: 50%;
		transform: rotate(-45deg);
		border-radius: 2px;
	}


.modal_close i {
	line-height: 62px;
	vertical-align: bottom;
}

.modal_bg {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 6666;
	display: none;
	width: 100%;
	height: 120%;
	background-color: rgba(0,0,0,0.7);
}

.modal_box h3 {
		margin-bottom: 10px;
	}
.modal_box ul li {
			margin-bottom: 5px;
	}

.modal_box ul li a {
		display: block;
		background:#5d4442;
		padding: 10px 5px;
		color: #f3f1df;
		text-decoration: none;
		border-radius: 5px;
	}



#amazonlinks {
	background: #000;
	height: 90vh;
	overflow: auto;
}

#amazonlinks .modal_close {
	background: #F39800;
}

#amazonlinks h2 {
font-family: "Arial Black", Gadget,'Noto Sans JP', "sans-serif";
	color: #FFF;
	position: absolute;
	left: 2vw;
	top: 10px;
	font-size: clamp(14px,4vw,22px);
}

#amazonlinks h3 {
	color: #FFF;
}

#amazonlinks ul {
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#amazonlinks ul li {
	width: 48%;
}

#amazonlinks ul li a {
	background:#F39800;
}

#amazonlinks .btnDiary {
	margin: 15px 0;
}
#amazonlinks .btnDiary a {
		display: block;
		background:#F39800;
		padding: 10px 5px;
		color: #fff;
		text-decoration: none;
		border-radius: 5px;
	font-weight: bold;
}

#rakutenlinks {
	background: #BD0104;
	height: 90vh;
	overflow: auto;
}

#rakutenlinks .modal_close {
	background: #FFF;
}
#rakutenlinks .modal_close::before,
#rakutenlinks .modal_close::after {
		background: #BD0104;
	}

#rakutenlinks h2 {
font-family: "Arial Black", Gadget,'Noto Sans JP', "sans-serif";
	color: #FFF;
	position: absolute;
	left: 2vw;
	top: 10px;
	font-size: clamp(14px,4vw,22px);
}

#rakutenlinks h3 {
	color: #FFF;
	margin-bottom: 5px;
}

#rakutenlinks p.notes {
	color: #FFF;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

#rakutenlinks ul {
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#rakutenlinks ul li {
	width: 48%;
}

#rakutenlinks ul li a {
	background:#FFF;
	color: #BD0104;
}

#rakutenlinks .btnDiary {
	margin: 15px 0;
}
#rakutenlinks .btnDiary a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap:10px;
	background:#FFF;
	padding: 10px 5px;
	color: #BD0104;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
}

#rakutenlinks .btnDiary a span {
	font-size: 1.2rem;
}


@media screen and (max-width: 769px) {

/*  ウィンドウサイズ769px以下の時のスタイル  */

.modal_box {
		padding: 50px 2vw 40px;
}

.modal_close {
		width: 40px;
		height: 40px;
}

#rakutenlinks .btnDiary a {	
	flex-wrap: wrap;
	gap:0;
	}

}	


/*----------------------------------------------------*/ 
/* twitterHeader
------------------------------------------------------*/ 
#twitter .instagram {
	margin-top: 40px;
	text-align: center;
}

.tw_widget {
	width: 600px;
	margin: 20px auto;
}

.twitterHeader {
	overflow: hidden;
	position: relative;
}
.twitterHeader h2 {
	color: #FFF;
	font-size: 16px;
	text-align: center;
	background: #0f97e7;
	padding: 5px 0 5px 0;
	margin-bottom: 5px;
}
.twitterbtn {
	text-align: right;
	margin: 10px 0 0 0;
}
.twitterTL.pc {
	height: 500px;
	margin-bottom: 20px;
}
.twitterTL.sp {
	display: none;
}

@media (max-width: 680px) {
.tw_widget {
	width: auto;
	margin: 20px 10px;
}

.twitterHeader h2 {
	color: #FFF;
	font-size: 12px;
}
.twitterHeader .btn {
	position: relative;
	top: auto;
	right: 10px;
	left: 10px;
}
.twitterTL.pc {
	display: none;
}
.twitterTL.sp {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.twitterbtn {
	text-align: left;
}

}

