@charset "UTF-8";

body {
  font-family:serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: rgb(89,13,41);
  background-image: url(../image/washi-pattern-01.jpg);
  background-size: contain;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,li {
  list-style: none;
}

.wrapper {
  width: 1040px;
  margin: 0 auto;
}

/** index.html **/
.navigation {
 writing-mode: vertical-rl;
  margin: 100px 90px;
}

.navigation img {
  width: 78px;
  height: auto;
  margin: 0 20px;
}

.navigation a:hover {
  opacity: 0.6;
}

.menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: rgb(127,19,59);
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.menu-content ul {
    padding:  70px 30px;
    text-align: center;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 25px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content li a:hover {
  opacity: 0.8;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgba(0,0,0,0.4);
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

.footer {
  width: 100%;
  height: 70px;
  padding-bottom: 25px;
  margin: 0 auto;
  background-color: rgba(127,19,59);
}
.copyright p {
  color: #e6b8b8;
  font-size: 13px;
  text-align: center;
  padding: 22px;
}

/** story.html **/
.video{
  width: 850px;
  padding: 40px;
  margin: 100px 60px;
  border: 1px solid #444;
  background-color: rgba(255,255,255,0.5);
}
.video_title {
  font-size: 18px;
  margin: 20px 65px;
}
.video_div {
  display: flex;
  justify-content: center;
}
.video_text {
  margin: 30px 80px;
}
.video_text h4 {
  font-size: 18px;
  padding: 7px;
  border-left: 2px solid rgb(89,13,41)
}
.story_top img {
  width: 100%;
}
.effect-fade {
  opacity: 0;
  transform: translate(0,45px);
  transition: all 300ms;
}
.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0,0);
}
.story_title img {
  width: 44%;
  margin: 30px 300px 0 300px;
}
.border {
  text-align: center;
  margin: 0;
}
.border p {
  font-size: 60px;
}
.story_content img {
  width: 40%;
  margin: 0 300px;
}
.fadeinElem {
    transition: all 1000ms ease-out;
}
.fadeinElem.toUp {
    transform: translateY( 15px );
    opacity: 0;
}
.fadeinElem.toLeft {
    transform: translateX( 15px );
    opacity: 0;
}
.fadeinElem.toRight {
    transform: translateX( -15px );
    opacity: 0;
}
.fadeinElem.show {
    transform: translate( 0 );
    opacity: 1;
}

/** character.html **/
.character_top img {
  width: 100%;
}

.character_title {
  text-align: center;
  margin: 70px 70px 40px 70px;
}
.character_title p {
  font-size: 18px;
  margin: 0;
}
.character_title h1 {
  font-size: 35px;
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

.character_title h1:before, h1:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}

.character_title h1:before {
  left:0;
}
.character_title h1:after {
  right: 0;
}

.character_list {
  margin: 60px;
  display: flex;
  justify-content: center;
}
.character_img {
  margin: 0 30px;
}

.character_img img {

  width: 300px;
  /*border-radius: 100%;*/
}
.character_img:hover {
  opacity: 0.8
}

.open {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up {
	display: none; /* label でコントロールするので input は非表示に */
}
.overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.window {
	width: 90vw;
	max-width: 700px;
	height: 525px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#pop-up2 {
	display: none; /* label でコントロールするので input は非表示に */
}
.overlay2 {
	display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up2:checked + .overlay2 {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.window2 {
	width: 90vw;
	max-width: 700px;
	height: 525px;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#pop-up3 {
	display: none; /* label でコントロールするので input は非表示に */
}
.overlay3 {
	display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up3:checked + .overlay3 {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.window3 {
	width: 90vw;
	max-width: 700px;
	height: 525px;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#pop-up4 {
	display: none; /* label でコントロールするので input は非表示に */
}
.overlay4 {
	display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up4:checked + .overlay4 {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.window4 {
	width: 90vw;
	max-width: 700px;
	height: 525px;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.pop-up img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.close {
	cursor:pointer;
	position: absolute;
	top: 1px;
	left: 25px;
	font-size: 30px;
}

/** book.html **/
.book_top img {
  width: 100%;
}

.book_title {
  text-align: center;
  margin: 70px;
}
.book_title h1 {
  font-size: 35px;
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

.book_title h1:before, h1:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}

.book_title h1:before {
  left:0;
}
.book_title h1:after {
  right: 0;
}

.comic_int {
  display: flex;
  width: 850px;
  padding: 40px;
  margin: 100px 60px;
  border: 1px solid #444;
  background-color: rgba(255,255,255,0.5);
}
.mark {
  z-index: 1;
  position: absolute;
  left: 190px;
}
.mark img {
  width: 50%;
}

.comic_img img {
  width: 360px;
  height: auto;
  position: relative;
}
.comic_text {
  margin: 0 auto;
  /*text-align: center;*/
}
.comic_text h2 {
  padding: 7px;
  border-left: 5px solid rgb(89,13,41);
}

.comic_text a:hover {
  background: #fff;
}

.buy_btn {
  margin-top: 40px;
}
.button {
  border: 2px solid rgb(89,13,41);
  margin-bottom: 15px;
  background-color: rgba(127,19,59,0.1);
}
.button:hover {
  opacity: 0.8;
  background: rgba(127,19,59,0.3);
}
.button_content {
  text-align: center;
}

/** public.html **/
.public_top img {
  width: 100%;
}
.public_title {
  text-align: center;
  margin: 70px;
}

.public_title h1 {
  font-size: 35px;
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

.public_title h1:before, h1:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}

.public_title h1:before {
  left:0;
}
.public_title h1:after {
  right: 0;
}

.author {
  /*display: flex;*/
  margin: 0 auto;
}
.author_header img {
  width: 100%;
}
.author_content {
  margin: 0 170px;
  padding: 30px;
}
.author_content h2 {
  font-size: 28px;
  /*padding: 7px;
  border-left: 5px solid #444;*/
}
.author_content small {
  font-size: 14px;
}
.author_content p {
  padding: 0 10px;
}
.author_table {
  margin: 30px 0;
}
.author_table h3 {
  padding: 7px;
  border-left: 2px solid rgb(89,13,41);
}

table {
  border-collapse: collapse;
  background-color: rgba(255,255,255,0.5);
  margin: 35px 15px;
}
th {
 background-color: rgba(219,112,147,0.4);
}
td,th {
  border: 1px solid #444;
  padding: 6px;
}


.twitter {
  display: flex;
  margin: 50px 100px;
  padding: 40px;
  border: 1px solid #444;
  background-color: rgba(255,255,255,0.3);
}
.twitter_text {
  margin: 20px;
  padding: 20px;
}
.twitter_text h2 {
  padding: 7px;
  border-left: 5px solid rgb(89,13,41);
}
