@charset "UTF-8";

*,
*::before,
*::after {
	box-sizing: border-box;
}

body{
	background: url(../img/bg.jpg);
	
}
html {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
}

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

	/* PC 769px以上 */
	html {
		font-size: 15px;
	}
}

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

	/* タブレット 768px以下 */
	html {
		font-size: 2vw;
	}
}

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

	/* スマートフォン 480px以下 */
	html {
		font-size: 3.4vw;
	}
}


p {
	font-size: 1rem;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #000;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-wrap: break-word;
	overflow: hidden;
}


article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
}

a,
a::after,
a::before {
	color: inherit;
	outline: none;
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: top;
}

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

code,
kbd,
pre,
samp {
	font-family: monospace, sans-serif;
	font-size: inherit;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th,
td {
	text-align: left;
	vertical-align: top;
}


blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

address {
	font-style: normal;
}

input,
textarea,
select {
	max-width: 100%;
}

/*-----------------------
/*clearfix
---------------------------------*/
/* For modern browsers */
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

/* For IE 6/7 only */
.cf {
	*zoom: 1;
}



/*-----------------------
layout レイアウト
-----------------------*/


.l-row {
	display: flex;
	flex-wrap: wrap;
}

.l-row--middle {
	align-items: center;
}

.l-row--baseline {
	align-items: baseline;
}

.l-row--end {
	align-items: flex-end;
}

.l-row--center {
	justify-content: center;
}

.l-row--between {
	justify-content: space-between;
}

.l-row--reverse {
	flex-direction: row-reverse;
}

/*-----------------------
Utility
-----------------------*/
main{
	background: url(../img/side.png);
	background-repeat: repeat-y;
	background-position: top left;
}

.sp {
	display: none;
}
/*header*/

.pcnav {
  position: fixed;
  top: 140px;
  left: -100px; /* ← 最初は左に隠す（オフセットしておく） */
  opacity: 0;
  z-index: 20;
  transition: all 1s ease;
}
.pcnav a{
	margin-bottom: 12px
}
.pcnav img {
    height: 12px;
    width: auto;
}
.pcnav.show {
  left: 35px; /* ← 目標位置にスライドしてくる */
  opacity: 1;
}
/*section共通*/
section{
	width: calc(100% + 150px);
}
.l-inner{
	width: min(860px,100%);
	margin: 0 auto
}
.secttl{
	text-align: center;
	margin-bottom: 45px
}
/*kv*/
.kv img{
	width: 100%;
	height: auto;
}
.kv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.curtain {
  position: fixed;
  top: -20px;
  left: -300px;
  width: 100%;
  height: calc(100% + 20px);
  z-index: 10;
  animation: slideLeft 2.5s ease forwards;
  pointer-events: none;
	background:#eae5da
}

.curtain::before{
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
	background: url(../img/curtain1.svg) no-repeat, rgba(255, 255, 255, 0);
    animation: wave 5s ease-in-out infinite;
    left: 258px;
    background-position: right 20px top 0;
    background-size: 18%;
}


@keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}

	@keyframes aaa {
  0%, 100% {
    transform: translateY(30px);
  }
  50% {
    transform: translateY(0px);
  }
}

.kv-content {
  position: relative;
  z-index: 1;
height: 100vh;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	    width: calc(100% + 150px);
}
	.kv .kvttl {
		opacity: 0;
		  transition: all .6s ease;
		width: 390px;
		margin: 0 auto 35px
	}
.kv.show .kvttl {
  opacity: 1;
  transform: translateY(0);
}
.kvttl .char {
  opacity: 0;
  transform: translateY(0);
  transition: all 0.3s ease;
}
.kvttl .char.appear {
  opacity: 1;
  transform: translateY(0);
}
.kvtxt {
  opacity: 0;
  transition: all .6s ease;
}
.kvtxt.show {
  opacity: 1;
}

.kvcat {
    margin-bottom: 68px;
	width: 680px
}

/*character*/
#character{
	margin-bottom: 130px
}
.characterlist{
	column-gap: 55px;
}
.characterlist li{
	width: calc(100% / 3 - 37px);
}
.characterlist .img{
	width: 200px;
	height: 280px;
    margin: 0 auto 40px;
	 transition: opacity 0.3s ease;
	position: relative;
}

.characterlist .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.characterlist .img img.on {
  opacity: 0;
  pointer-events: none; /* hoverされないようにする */
}

.characterlist li:hover .img img.on {
  opacity: 1;
}
/*comics*/
#comics{
	margin-bottom: 130px
}
.comicsbnrarea{
	position: relative;
	width: 487px;
	margin: 0 auto
}
.comicsbnr{
	position: relative;
	z-index: 1
}
.comicsbnr a,.comicsbnr img{
	display: block;
	width: 100%;
	height: auto;
}
.cat1, .cat2 {
  transition: all 0.6s ease;
  position: absolute;
  bottom: 30px;
	width: 115px;
	z-index: 0
}
.cat1 {
  left: 0;
}
.cat2 {
  right: 0;
}
.comicsbnrarea.active .cat1 {
  left: -135px;
}

.comicsbnrarea.active .cat2 {
  right: -135px;
}
#news{
margin-bottom: 200px}
.newslist{
	margin-bottom: 140px;
	    column-gap: 110px;
	grid-row-gap: 150px;
    justify-content: center;
}
.newsbloc{
	position: relative;
	    display: flex;
    justify-content: end;
}
.flower{
	width: 170px
}
.flower img {
    width: 100%;
	display: block;
  transform-origin: left bottom;
  animation: swaySmooth 3s ease-in-out infinite;
}
@keyframes swaySmooth {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}
.newsbloc:not(:last-child):before{
	content: '';
	background: url(../img/news_frame1.svg)no-repeat;
        bottom: -69px;
    left: -87px;
	position: absolute;
	    width: 163px;
    height: 163px;
    background-size: cover;
}
.newsbloc:nth-child(2){
	top: 40px
}
.newsbloc:nth-child(2):before{
	transform: rotate(7deg);
	    left: -93px;
}
.newsbloc:nth-child(3):before{
    transform: rotate(12deg);
    left: -89px;
    BOTTOM: -50PX;
}
.newsbloc .right{
	width: 240px;
    position: relative;
    z-index: 1;
    display: flex
;
    align-items: center;
    justify-content: flex-start;
}
.newsbloc .frame2{
	transition: .3s all;
	    width: 100%;
}
.newsbloc .frame1 img,
.newsbloc .frame2 img{
	width: 100%;
	height: auto
}
.newsbloc .txtarea{
position: absolute;
    top: 4px;
    left: 0;
    font-size: 16px;
    line-height: 1.4;
    width: 240px;
    height: 149px;
    padding: 10px;
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.more {
    line-height: 1;
}
.info{
	align-items: center;
	column-gap: 5px;
	margin-top: 5px
}

.newsbloc:hover .frame2{
	filter: drop-shadow(-10px 10px 4px rgba(51, 51, 51, 0.21));
	transform:scale(1.1,1.1);
}
#goods{
	margin: 0 auto 90px
}
.jamp{
	width: 198px;
	margin: -40px 0 0 auto;
}
.house{
	text-align: center;
}
.house img {
  transition: opacity 1s ease;
}

.fadeout {
  opacity: 0;
}

.fadein {
  opacity: 1;
}
@keyframes jumpUp {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-30px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
.jamp img.jump {
  animation: jumpUp 1.5s ease-in-out infinite;
}
.linklist{
	column-gap: 28px;
	justify-content: center;
	margin-bottom: 126px
}
.linklist li{
	margin-bottom: 20px
}
.linklist li img{
	width: 285px;
}
.copylight{
	width: 255px;
	margin: 0 auto 20px
}
.copylight img{
	width: 100%;
	height: auto
}
/* archive*/
.archive main{
	margin-top: 40px
}
.archive main{
	background: none
}
.archive section{
	width: 100%
}
.archive .l-inner{
	    width: min(940px, 100%);
}
.archive .newslist{
	justify-content: flex-start
}
.archive .secttl{
	margin-top: 50px
}
.archive #news{
	margin-bottom: 120px
}
.archive .newsbloc:last-child:before{
	    content: '';
    background: url(../img/news_frame1.svg) no-repeat;
    bottom: -69px;
    left: -87px;
    position: absolute;
    width: 163px;
    height: 163px;
    background-size: cover;
}
@media screen and (max-width:1366px) {
	.curtain::before{
		left: 19vw
	}

	.newslist{
		margin-bottom: 0
	}
	.characterlist .img {
    width: 150px;
		height: 210px;
	}
	.l-inner {
    width: min(510px, 100%);
}
	.comicsbnrarea {
    width: 360px;
}
	.newslist{
		column-gap: 60px;
		    margin-right: -50px;
	}
	.archive #news{
		padding: 0 50px
	}
}
@media screen and (max-width:956px) {
	.sp{
		display: block
	}
	.pc{
		display: none
	}
	main{
		background: none
	}
	.kv-content,.l-lnner,section{
		width: 100%;
		
	}
	.kv .kvttl{
		width: 240px
	}
	.kvcat{
		width: 310px;
	}
	#character,#news {
    margin-bottom: 60px;
}
	.secttl img {
    width: 160px;
}

	.characterlist li {
    width: 100%;
}
	.characterlist .txt{
		 width: 280px;
		margin: 0 auto 40px
	}
	    .comicsbnrarea {
        width: 210px;
    }
	.cat1, .cat2{
		width: 62px;
		bottom: 0
	}
	.comicsbnrarea.active .cat2 {
    right: -65px;
}
	.comicsbnrarea.active .cat1 {
    left: -55px;
}
	#comics {
    margin-bottom: 80px;
}
	.newslist{
		    grid-row-gap: 20px;
	}
	.newsbloc:nth-child(2) {
    top: auto;
}
	.flower {
    margin: 80px auto 0;
}
	.jamp {
    width: 108px;
    margin: 10px 0 0 auto;
}
	#goods{
		margin-bottom: 0
	}
	.curtain{
		left: -200px
	}
	.newsbloc:not(:last-child):before{
		    bottom: -19px;
    left: -67px;
    width: 123px;
    height: 123px;
	}
	.newsbloc:nth-child(2):before{
		left: -73px
	}
.newsbloc:nth-child(3):before {
    transform: rotate(12deg);
    left: -69px;
    bottom: -10px;
}
	.copylight {
    width: 155px;
}
	.archive .copylight {
    width: 200px;
}
	.archive .newslist {
    justify-content: center;
		padding-bottom: 20px;
		margin-bottom: 1px
}
}