@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP');
html {  box-sizing: border-box;
  -ms-overflow-style: scrollbar;}

/* カラー */
:root {
    --main-color: #bddae8;/* 水色 */
    --sub-color: #bfccde;/* 薄水色 */
    --back-color: #F4F5F7;/* オフホワイト */
    --text-color: #242424;
    --hr-color: #2B7D8D;/* 緑 */
    --link-color: #0033cc;/* 青 */
}


body{background: linear-gradient(to top, #72ace6, #abc9e2);
background-attachment: fixed
;min-height: 100vh; margin: auto 0;
  overflow-x: hidden;
  color: var(--text-color);
  padding: 0;
  font-size: 17px;
  font-family: "Noto Serif JP", Meiryo,
    sans-serif;}


 /* 横がはみ出さないように */
*,
*::after,
*::before {  box-sizing: border-box;}

 /* 全体設定 */
#all_container,main{max-width:800px;padding: 45px 0 0 0;margin:0 auto;background-color:var(--back-color);min-height: 100vh;z-index: 1;}
section{padding:30px 20px 0 20px;margin: 20px auto 0 auto }

img {  border: none;  max-width: 100%;  height: auto;  margin: 1.5m 0;  padding: 0;}

a {text-decoration: none;color:var(--link-color)}

section a:hover{text-decoration: underline;
text-decoration-thickness: 2px;
text-underline-offset: 5px;
transition: all 0.5s:var(--link-color)}
ol,ul {  padding: 0;list-style: none;}

p {  line-height: 2.5em;margin: 0.5em 15px 1em 15px;  padding: 0;}


h2 {
  position: relative;
  padding: 8px 16px;
  outline: 1px solid #333;
  font-family: 'Noto Serif JP', serif;
  font-size: 120%;
  color: #333;
  font-weight: 400;
  display: block;
  box-sizing: border-box;
  margin: 15px 4px;
  font-weight: bold;
  z-index: 1;
}

h2::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  z-index: -1;
}


h3 {
  position: relative;
  padding: 5px 13px;
  outline: 1px solid #333;
  font-family: 'Noto Serif JP', serif;
  font-size: 100%;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: bold;
  box-sizing: border-box;
  margin: 30px 5px 10px 15px;z-index: 1;
}

h3::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 40px;
  height: 40px;
  background: var(--main-color);
  clip-path: polygon(0 0, 100% 0%, 0 100%);
  z-index: -1;
}
 /* 全体設定 ここまで*/

/* 1カラム本文 */

.container-in,section{padding:0 15px}
section p{padding:0 5px}
/* 1カラム本文ここまで */



.menu {;display:none;font-size:105%}



/* novel設定 */
.title{font-weight: bold;margin: 10px 0 0 10px}
.s{border: double var(--sub-color) 5px;
  font-size: 85%;
  padding: 10px;
  margin: 5px 20px 20px 20px}

.novel-navi{text-align:right;border-top: dashed var(--sub-color) 2px;margin: 10px 20px;padding: 0 10px;}
.wavebox{text-align:right;margin-right: 30px;}

/* novel設定ここまで */
/* gallery設定 */
.gallery-center{text-align:center;margin-top:20px; }
.gallery-width{max-width:300px;  height: auto;padding:20px 0 0 50px;}
.gallery-center a{max-width:300px;  height: 400px}
/* gallery設定ここまで */


/* 画像ポップアップの設定 */
 .lightbox-content {
    width: 95%; /* 画面幅に合わせてコンテンツ幅を調整 */
    max-height: 95vh; /* 縦方向の表示領域も考慮 */
  }
/* 画像ポップアップの設定ここまで */

/* 更新履歴 */
.new {margin:5px 15px;
;font-size:95%;padding:5px; border: solid var(--sub-color) 2px; 
 }
.new p{line-height:1.0em}
.new p a{font-weight:bold;}
/* 更新履歴ここまで */


/* ===============================================
ヘッダーのスタイリング
=============================================== */
.header {
  height: 45px;
  background: url('https://ee.kishikas.com/img/bg_10.jpg');
  position: fixed;
  top: 0;
  left: 0;
  right: 0;margin: 0 auto;max-width: 800px;
  z-index: 2;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  color: #fff;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
.header__logo {
 padding-top:5px
}
.header__logo-top {
 padding-top:5px
}
/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.hamburger {
  display: block;
  width: 50px;
  height: 80px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: all 0.5s;
}
.hamburger span::before {
  top: -10px;
}
.hamburger span::after {
  bottom: -10px;
}
input[type="checkbox"]:checked + .hamburger span {
  background-color: transparent;
}
input[type="checkbox"]:checked + .hamburger span::before {
  top: 0;
  transform: rotate(45deg);
}
input[type="checkbox"]:checked + .hamburger span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.nav {
  position: fixed;
  width: 80%;
  height: 100vh;
  top: 45px;
  right: -120%;
  background-color: rgb(184,218,236,0.8);
  color: #fff;
  padding: 50px 0;
  transition: all 0.5s;
}
.nav__lIst a {
  display: block;
  font-size: 20px;
  padding: 20px 0 20px 50px;
  text-transform: lowercase;
  text-decoration: none;
  color: #000;
}
.nav__lIst a:hover {
  color: #0f5474;
  background-color: #fff;
}
input[type="checkbox"]:checked ~ .nav {
  right: 0;
}

/* ===============================================
ハンバーガーボタンのスタイリングここまで
=============================================== */



/* フッター */
footer {
 background: url('https://ee.kishikas.com/img/bg_10.jpg')bottom/cover;
  padding:5px 0;margin:0;}
footer img{text-align: left}
.footer{text-align: right;color:#000;margin-bottom:0;padding:10px 5px}
/* フッターここまで */

/* PC用 */
@media (min-width: 768px) {
  .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

#all_container,main{max-width: 800px;}
.header {;display:none}
.menu{width:800px}

/* メニュー横スクロールメニューここから */
.menu {
  height: 45px;
  background: url('https://ee.kishikas.com/img/bg_10.jpg');
  position: fixed;
  top: 0;
  left: 0;
  right: 0;margin: 0 auto;display:inline-block;z-index: 2
}
.header__container-top {

  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  color: #fff;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}

.menu ul {
display: flex;
	justify-content: center;align-items: center;
	margin:0;height:45px;padding:0}
.menu ul li {list-style: none;}
.menu ul li a {text-decoration: none;
	display: flex;
padding: 0 10px;
	font-size: 15px;
    transition: .3s;color:#000;
 padding-bottom: 3px; /* テキストと下線の間隔 */
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;font-weight: bold;}

.menu ul li a:hover { background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */}

.menu ul li img{padding:0}

/* 横スクロールメニューここまで */
}


