@charset "UTF-8";
@import url("html5reset-1.6.1.css");
@import url('https://fonts.googleapis.com/css?family=Montserrat:300');

/* 横線の設定（メッセージ用）
------------------------------------------------------------ */
hr {
    margin:5px 0px;
    border-top: 1px #aaa;
    border-style:dashed;
}

/* 色の指定
------------------------------------------------------------ */
span.brown_d { color: #6f4b3e ; } 
span.brown_l { color: #957275 ; } 
span.gray {  color: #C1AB96 ; }
span.red { color: #db4e02 ; }
span.trans { color: transparent ; }

span.orange_b {
  background-color: #cdb7c1; /* 薄いくすみピンクパープル */
  color: #2E2E2E;
  border-radius: 8px;
  padding: 2px 6px;
  display: inline-block;
}
/* 矢印のリスト
------------------------------------------------------------ */

.defaultlist
,.defaultlist li{
	padding:0px;
	margin:0px;
}
 
.defaultlist li{
	list-style-type:none !important;
	list-style-image:none !important;
	margin: 5px 0px 5px 0px !important;
}
 
.list2 li{
	position:relative;
	padding-left:20px;
}
 
.list2 li:before{
	content:''; 
	height:0; 
	width:0; 
	display:block; 
	border:5px transparent solid; 
	border-right-width:0; 
	border-left-color:#aaa; 
	position:absolute; 
	top:5px; 
	left:8px;
}
 
.list2 li:after{
	content:''; 
	height:2px; 
	width:10px; 
	display:block; 
	background:#aaa; 
	position:absolute; 
	top:9px; 
	left:0px;
}




/* ↓レイアウト↓ */

*{
    line-height:150%;
}

body{
    color:#333;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
    background-color:#e4dace;
}

.base{
    margin:0 auto;
    width:800px;
}

.header{
    padding:15px 5px;
    text-align:center;
}

.footer{
    padding:5px;
    text-align:center;
}

.work{
    float:right;
    width:570px;
    padding:15px 15px 5px 15px;
}

.menu{
    background-color:#d4a5a5;
    float:left;
    width:180px;
    padding:10px 5px;
    position:fixed;
    top:0;
    height:100%;
}

.box{
    overflow: hidden ;		/* floatを解除する */
}

.text{
    margin:25px 0px;
    padding:5px;
    line-height:180%;
    font-size:90%;
}

.textmenu{
    text-align:center;
    padding:5px;
    margin:5px;
    word-spacing:20px;
    font-family: 'Montserrat', sans-serif;
}

img
{
	max-width: 90% ;
	
	height: auto ;
}


/* ↓タグ↓ */

h1{
    font-size:100%;
    font-weight:normal;
    font-family: 'Montserrat', sans-serif;
}

h2{
    font-size:70%;
    font-weight:normal;
    margin-top:10px;
    font-family: 'Montserrat', sans-serif;
}

h3{
    font-size:130%;
    font-weight:normal;
    text-align:center;
    margin:25px 0px;
    font-family: 'Montserrat', sans-serif;
}

h4{
    color:#fff;
    background-color:#a48d76;
    font-size:100%;
    font-weight:normal;
    text-align:center;
    margin:15px 0px;
    padding:1px;
    box-shadow: 0px 0px 0px 3px #a48d76;
    border: solid 1px #FFF;
    border-radius:10px;
    font-family: 'Montserrat', sans-serif;
}

h5{
    font-size:90%;
    font-weight:normal;
    margin:10px 0px;
}

h6{
    font-size:80%;
    font-weight:normal;
    color:#d4a5a5;
}

em{
   background: linear-gradient(transparent 60%, #d6c6af 60%);
}

strong{
    background-color:#a6d0e4;
    font-weight:normal;
}

small{
    font-size:80%;
}

i{
    font-style:italic;
}


/* 画像を含まないリンクに常時下線を表示（保守的対応） */
a {
  text-decoration: underline;
  text-decoration-thickness: 1px;      /* 下線を細くして目立ちにくく */
  text-underline-offset: 2px;          /* 下線を少し下にずらして「影っぽさ」軽減 */
}

/* 画像付きリンクは下線を表示しない */
a img {
  text-decoration: none;
}


/* 共通リンクスタイル */
a {
  color: #000;
  display: inline-flex;                   /* 中央揃えに必要 */
  align-items: center;                    /* 縦方向中央揃え */
  justify-content: center;                /* 横方向中央揃え */
  padding: 3px;                           /* 背景色の見せ方としての余白 */
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
  background-color: transparent;
  box-sizing: border-box;
}

/* ホバー時：背景色と下線非表示にしてスマートに */
a:hover {
  background-color: #d6c6af;
  color: #fff;
  text-decoration: none;                 /* ← ホバー時は下線消す（お好みで） */
}

/* 画像リンクに関する設定 */
a img {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  max-width: 100%;
  height: auto;
  text-decoration: none;                 /* 念のため */
}

/* 複数画像リンクの隙間対策 */
.link-row {
  font-size: 0;
}

blockquote {
  padding: 1em 1.2em;
  margin: 1em auto;
  font-size: 100%;
  color: #db4e02;
  background-color: #fff;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
}

blockquote:before {
  content: '\201c'; /* “ */
  font-size: 120%;
  color: #000;
  margin: 0 1px;
  display: inline;
}

blockquote:after {
  content: '\201d'; /* ” */
  font-size: 120%;
  color: #000;
  margin: 0 5px;
  display: inline;
}

/* スマホ対応 */
@media (max-width: 768px) {
  blockquote {
    padding: 0.8em 1em;
    margin: 0.5em;
    font-size: 95%;
  }
}

/* 内部のテキストにも継承させる */
blockquote .toggle-text,
blockquote .toggle-text span {
  font-size: inherit;
  font-weight: inherit;
}

.toggle-text:hover {
	cursor: help;     /* クエスチョンマーク */
}

.cursor-pointer:hover {
	cursor: help;     /* クエスチョンマーク */
}

.cursor-pointer-yubi:hover {
  cursor: pointer; /* 指差し */
  background-color: #d6c6af;
}

li{
    padding:5px;
}

dl{
    padding-left:3px;
    margin:10px;
}

dt{
    padding-left:5px;
}

dd{
    padding-left:10px;
}

address{
    font-size:80%;
    font-family: 'Montserrat', sans-serif;
}

cite{
    font-size:smaller;
}


/* ↓classタグ↓ */

.list1{
    list-style:none;
    text-align:center;
    font-family: 'Montserrat', sans-serif;
}

.list2{
    list-style-type: upper-roman;
    list-style-position:inside;
}

.hr1{
    margin:5px 0px;
    border-top: 1px #a48d76;
    border-bottom: 1px #fff;
    border-style:solid;
}

.hr2{
    margin:5px 0px;
    border-top: 1px #aaa;
    border-style:dashed;
}

.hr3{
    margin:5px 0px;
    height:35px;
    border-width:0px;
}

.p1{
    padding:5px;
    margin:5px 0px;
    font-size:80%;
}

.p2{
    border-style:double;
    border-width:3px;
    padding:3px;
    margin:5px 0px;
    font-size:80%;
    border-color:#c6b3a3;
}

.p3{
    border-style:dashed;
    border-width:1px;
    padding:5px;
    margin:5px 0px;
    font-size:80%;
    border-color:#d6c6af;
    background-color:#fff;
}

.dt1{
    border-width:0px 0px 0px 2px;
    border-style:solid;
    font-family: 'Montserrat', sans-serif;
    border-color:#a48d76;
    padding:5px;
}

.dd1{
    font-size:80%;
    border-width:0px 0px 0px 2px;
    border-style:solid;
    border-color:#c6b3a3;
}

.memo{
    background-color:#FFF;
    font-size:80%;
    padding:0px 10px;
    height:140px;
    overflow:auto;
    margin:5px 10px;
}

.img1{
    box-shadow:1px 1px 3px -1px #999999;
}

.counter{
    font-family: 'Montserrat', sans-serif;
}

.aligncenter{
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/*↓ディスプレイ768px以下用↓*/

@media screen and (max-width:768px) 

{
    
.base{
    width:auto;
}

.work{
    float:none;
    width:auto;
    margin-top:175px;
}

.text{
    float:none;
    width:auto;
    margin:10px;	/*0px→10pxに変更*/
    padding:10px;
}

.menu{
    float:none;
    width:98%;
    margin:0px;
    padding:0px 15px 0px 5px;
    height:auto;
}

.list1 li{
    display: inline-block;
    font-size:90%;
}

h3{
    font-size:120%;
}

}


/* トップへもどるボタン
------------------------------------------------------------ */
#page_top {
    position: fixed;
    bottom: 30px;
    right: 20px;
}
#page_top a {
    background-color: #999;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 20px 20px;
    border-radius: 10px;
}
#page_top a:hover {
    background-color: #666;
    text-decoration: none;
}

/* 特殊リンク（色変更）
------------------------------------------------------------ */
a.plum:link {
text-decoration : underline; 
color : #957275; 
}
a.plum:visited {
text-decoration : underline; 
color : #957275; 
}
a.plum:active {
text-decoration : underline; 
color : #ffffff; 
}
a.plum:hover {
text-decoration : underline; 
color : #ffffff; 
}

/* 文字枠の設定
------------------------------------------------------------ */
.mojiwaku{
    display: inline-block;
    border: 1px solid #d6c6af;
    font-size:80%;
    padding: 5px 8px 5px 8px;
    background: #fff;
    margin: 3px 8px 3px 0;
    border-radius: 5px;
}


/* フッターのコピーライトのための設定
------------------------------------------------------------ */
.footer-note {
  text-align: center;
  font-style: italic;
  font-weight: 300;
  font-size: 0.9em;
  line-height: 1.6;
  margin-top: 3em;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

.footer-note span {
  display: block;
}

.footer-note .copyright {
  font-size: 1em;
}

.footer-note .english {
  font-size: 0.95em;
}

.footer-note .chinese {
  font-size: 0.9em;
}

.footer-note .designer {
  font-size: 0.85em;
  margin-top: 0.5em;
}

.footer-note .designer a {
  text-decoration: underline;
  color: #333;
}

.footer-note .designer a:hover {
  color: #666;
}




/* ナビボタン（ページ送り） */
.page-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7em;
  margin: 2em 0;
  font-family: 'Montserrat', sans-serif;
}

.nav-button {
  background-color: #fdf8f4;
  color: #6f4b3e;
  border: 1px solid #e6cfcf;
  padding: 0.4em 1.4em;
  border-radius: 8px;
  font-size: 0.9em;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: normal;
  box-shadow: none;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}

.nav-button:hover {
  background-color: #d6c6af;
  color: #fff;
}


/* シリーズ・サイトトップのリンクボックス */
.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  margin: 2.5em 0 4em;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95em;
  line-height: 2;
}

.nav-links a {
  display: inline-block;
  margin: 0.5em 1em;
  padding: 0.2em 0.8em;
  color: #6f4b3e;
  text-decoration: none;
  border-bottom: 1px solid #aaa;
  transition: all 0.2s ease;
  width: fit-content;
}

.nav-links a:hover {
  background-color: #d6c6af;
  color: #fff;
  border-radius: 5px;
  border-bottom: none;
}


/* アイコン付きリンク共通設定（影なし・背景色なし） */
.nav-series,
.nav-home,
.nav-novel,
.nav-characters,
.nav-ency {
  display: inline-block;
  border-radius: 12px;
  padding: 0.6em 1.2em;
  color: #533b2f;
  font-weight: 500;
  font-size: inherit;
  transition: background-color 0.2s;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}

.nav-series:hover,
.nav-home:hover,
.nav-novel:hover,
.nav-characters:hover,
.nav-ency:hover {
  background-color: #f1e3da;
}


/* アイコン表示部分 */
.nav-series::before,
.nav-home::before,
.nav-novel::before,
.nav-characters::before,
.nav-ency::before {
  content: '';
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.4em;
  vertical-align: -0.15em;
}


/* 個別アイコン */
.nav-series::before {
  background-image: url('img/img_icon/book_01_green.png');
}
.nav-home::before {
  background-image: url('img/img_icon/ie_front_02_red.png');
}
.nav-novel::before {
  background-image: url('img/img_icon/shelf_hondana_01.png');
}
.nav-characters::before {
  background-image: url('img/img_icon/boshi_halloween_orange.png');
}
.nav-ency::before {
  background-image: url('img/img_icon/candle_01_white.png');
}



/* ロジキャラの下のきらきらの設定 */

.hover-border {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  background-color: transparent;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.hover-border:hover {
  background-color: #d6c6af; /* ← ホバー時だけ色が出る！ */
  border-radius: 4px;
}

details summary span {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

details summary span:hover {
  background-color: #b9a38e; /* ←ホバー時の背景色（リンクと揃える） */
  color: #fff;
}

summary {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

