﻿@charset "utf-8";
/* ----------------------------------------------------------------------------------
  初期設定はあまり触ることをおすすめしません
  数行下にあるカスタマイズ領域から編集可能となっております
  @media screen and (max-width: 798px)と
  @media screen and (max-width: 480px)は
  タブレットとスマートフォン用の設定です
  スマートフォンでは通常の文字が小さく見えるので、大きめに設定しています
---------------------------------------------------------------------------------- */

/* ********************************************************* */
/* 初期設定 */
/* ********************************************************* */
* {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    word-break: break-all;
    vertical-align: baseline;
}

html,body {
    width: 100%;
    font-size: 100%;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'Osaka', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    margin: 0 auto;
    padding: 0;
    color: #555;
    letter-spacing: .06em;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}

li {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    border: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
}

.clear {
    clear: both;
}

.popup img {
    border: 1px solid #ccc;
}


/* ↓↓ カスタマイズ領域開始 ↓↓
/* ********************************************************* */
/* 共通デザイン　1/4　空白と背景、リンク色、ハイライト色
/* ********************************************************* */
/*------------------------------------------------------------
 ページ下の空白と背景色
------------------------------------------------------------ */
body {
    background: #e1e1e1;/*背景の色*/
    margin: 0 0 15% 0;/*ページ下の空白*/
    position: relative;
}

/*------------------------------------------------------------
 全体のリンク色
------------------------------------------------------------ */
a:link,a:active {
    color: #555; /*リンクが貼ってある文字の色 */
    text-decoration: none;
}

a:hover {
    color: #66cccc;/*リンクが貼ってある文字の上にマウスを乗せたときの色 */
    text-decoration: none;
}

a:visited {
    color: #499; /*リンクが貼ってある文字の色 */
    text-decoration: none;
}

a:link img {
    -webkit-transition-duration: 0.3s;/*徐々に変化を与える*/
    transition-duration: 0.3s;/*徐々に変化を与える*/
}

a:hover img {
    opacity: .5;
}

/*------------------------------------------------------------
 ハイライト色
 文章をマウスでハイライトしたときの文字色と背景色
 両方揃える
------------------------------------------------------------ */
::selection {
    background: #E2EFE6;
    color: #000;
}

::-moz-selection {
    background: #E2EFE6;
    color: #000;
}




/* ********************************************************* */
/* 共通デザイン 2/4　フォームレイアウト・デザイン
/* ********************************************************* */
/*------------------------------------------------------------
 フォームの幅と装飾
------------------------------------------------------------ */
form {
    padding: 0;
    margin: 0 auto;
    line-height: 160%;
}

textarea,input[type=text],input[type=reset],input[type=submit],input[type=button],button,select {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'Osaka', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    margin: 0.125em;
    padding: 3px .313em;
    clear: both;
    display: inline;
    outline: none;
    font-size: .9em;
    background: #fcfcfc;
    color: #444;
    border: 1px solid #ddd;
    border-radius: .4em;
}

textarea,input[type=text],input[type=reset],input[type=submit],input[type=button],button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:hover,textarea:hover,select:hover,button:hover {
    border-color: #c3c3c3;
    background: #fff;
}

input[type=reset],input[type=submit],input[type=button],button,select {
    cursor: pointer;
}

textarea {
    width: 70%;
    height: 100px;
}

input[type=text] {
    width: 35%;
}

/*------------------------------------------------------------
 名前変換フォームの幅と装飾
------------------------------------------------------------ */
.design input[type=text] {
    width: 110px;
    margin: 3px 0;
}

.design input[type=button] {
    padding: 3px 15px;
    margin: 3px 0;
}

.design .submit {
    display: inline-block;
}

/*------------------------------------------------------------
 FC2やshinobiからレンタルしたフォームの装飾 削除可
------------------------------------------------------------ */
/*↓fc2メールフォーム用 要らなければ削除可↓ */
#fc2form #coution2 {
    color: #444 !important;
    font-family: Verdana;
}

#fc2form .submit .button {
    width: 65px;
}
/*↑fc2メールフォーム用 要らなければ削除可↑ */

/*↓shinobiメールフォーム用 要らなければ削除可↓ */
#shinobi_jp_text {
    width: 100% !important;
}

#default_top input {
    font-size: 1em !important;
}

#default_top br {
    display: none;
}
/*↑shinobiメールフォーム用 要らなければ削除可↑ */


/*------------------------------------------------------------
 フォームに書かれてある初期名詞などの文字色。すべて同じ色で揃える
------------------------------------------------------------ */
::-webkit-input-placeholder {
    color: silver;
}

::-moz-placeholder {
    color: silver;
}

input:-ms-input-placeholder {
    color: silver;
}






/* ********************************************************* */
/* 共通デザイン 3/4　ヘッダー、メニュー、トップ画像レイアウト
/* ********************************************************* */
/*------------------------------------------------------------
 ヘッダー枠とサイト名の装飾
------------------------------------------------------------ */
header {
    width: 100%;
}

h1 {/*サイト名 文字の大きさなど*/
    font-size: 1.1em;
    padding: 10px 0 10px 2%;
}

h1 a:link,h1 a:visited,h1 a:active {
    color: #66cccc;/*サイト名 文字色*/
    height: 80px;
}

h1 a:hover {
    color: #ccc;/*サイト名 文字色 マウスを当てた時*/
}


/*------------------------------------------------------------
 メニューレイアウト
------------------------------------------------------------ */
#menu {
    display: inline-block;
    text-align: center;
    width: 100%;
    line-height: 26px;
    background: rgba(255,255,255,.6);
}

#menu li {
    font-size: .8em;
    display: inline-block;
}

#menu li a:link,#menu li a:visited,#menu li a:active,#menu .mega {/* メニューのリンク装飾 マウスが当たっていない時*/
    padding: 5px 0;
    display: block;
    cursor:pointer;
}

#menu .mega:hover{
    color: #66cccc;/*メガメニュー用 マウスを当てた時の色 */
}

#menu ul {
    display: none;
}

.tappu_menu {
    display: none;
}



/* ********************************************************* */
/* 共通デザイン 4/4　主に使われている枠とメイン見出し　小説ページ抜き
/* ********************************************************* */
/*------------------------------------------------------------
 主に使われている枠
------------------------------------------------------------ */
#main {
    max-width: 770px;/* サイトの横幅 */
    margin: 0 auto;
    padding: 0;
    font-size: .9em;
}

.kakoi {/*内容を囲っている白の箱 */
    float: right;
    padding: 10px 8px;
    background: #fff;/*背景色*/
    margin: 10px 0;
    border-radius: 5px;/*箱の角の丸み*/
    width: 82%;/*箱の大きさ*/
}

.naiyou {
    margin: 5px 15px;
    line-height: 160%;
}

.divide {/* 枠を二分割する */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.hako {/* 枠を二分割する */
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 8px 15px;
    margin: 20px 10px 0 10px;
    width: 50%;
    background: rgba(255,255,255,1);
    border-radius: 5px;
    line-height: 160%;
    word-break: break-all;
}

.nashi{/* 枠の右側に内容がない場合、枠を表示しないためのコード */
    background: transparent;
    border-radius:0;
    margin:0 10px;
    padding: 0 15px;
}

/*------------------------------------------------------------
 トップなどで多用されている見出し
------------------------------------------------------------ */
h3 {
    padding: 0 25px 3px 0;
    letter-spacing: 5px;
    margin: 3px 0;
    color: #999;
    font-size: 1.1em;
    font-weight: bolder;
    border-bottom: 1px solid #ccc;
    display: inline-block;
    clear: left;
}

/* ********************************************************* */
/* 更新履歴・メイン目次・連載個別目次レイアウト
/* ********************************************************* */
/*------------------------------------------------------------
 更新履歴レイアウト
------------------------------------------------------------ */
.update {
    border: 0;
    height: 150px;
    overflow: auto;
    text-align: left;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.date {
    margin: 0 10px 0 5px;
    display: inline-block;
    color: #66CCCC;/*日付の色 */;
}

/*------------------------------------------------------------
 メイン目次レイアウト
------------------------------------------------------------ */
h4 {/* 相手の名の見出し */
    margin: 0;
    padding: 0;
}
h5 {/* 作品の長さの見出し 短編・中編・長編 */
    margin: 0;
    padding: 0;
}

.rensai {/* 連載リスト */
    margin: 0 0 0 1em;
}

.rensai a:link {
    word-break: break-all;
    display: inline-block;
}

.rensai a:link img{
    width:100%;
}

.tanpen {/*短編リスト */
    margin: 0 0 0 1em;
}

.tanpen {/* 短編リスト */
    margin: 0 0 0 1em;
}

.tanpen li {
    display: inline;
    word-break: break-all;
    margin: 0 2px;
}

.tate {/* 目次・縦表示 */
    margin: 0 5px 10px 20px;
}

.shousai {/* 夢小説の詳細を表示する文字 .8em以上にする場合vertical-align:top;を削除 */
    font-size: .8em;/*文字の大きさ*/
    color: #aaa;/*文字の色*/
    vertical-align: top;
}


/*------------------------------------------------------------
 連載/長編個別目次レイアウト
------------------------------------------------------------ */
.chapter {
    margin: 0 0 0 10px;
    padding: 0;
}

.serial {
    margin: 0 0 0 20px;
}

.serial li {
    display: inline-block;
    margin: 0 10px 0 0;
}


/* ********************************************************* */
/* 小説ページレイアウト
/* ********************************************************* */
/*------------------------------------------------------------
 小説ページのタイトル見出し
------------------------------------------------------------ */
h2 {/*小説ページのタイトル装飾 */
    color: #66cccc;/*文字の色*/
    font-size: 1.3em;/*文字の大きさ*/
    letter-spacing: 5px;
    padding: 7px 0;
}

/*------------------------------------------------------------
 小説ページ枠
------------------------------------------------------------ */
#box {
    margin: 2% 2% 0 2%;
}

#box2 {
    margin: 0 auto;
    padding: 15px;
    max-width: 680px; /*白い枠の最大幅 */
    background: #fff; /*白背景指定 */
    border-radius: 5px; /*白い枠の角の丸み */;
}

#story {
    margin: 0 auto;
    margin-top: 30px;
    padding: 15px;
    font-size: .9em;/*文字の大きさ*/
    line-height: 185%;
    max-width: 680px;/*枠の最大横幅 */
    background: rgba(255,255,255,1);/*白背景指定 */
    border-radius: 5px;/*白い枠の角の丸み */
    line-break: strict;/*小説の禁則処理 */
    word-break: normal;/*小説の禁則処理 */
}

/*------------------------------------------------------------
 前項・目次・次項 ページめくりレイアウト
------------------------------------------------------------ */
#page {
/*ページめくりの設定 中央にしたい場合、text-align:left;をtext-align:center;にしてください。右にしたい場合はtext-align:right;  */
    padding: 10px 0;
    text-align: left;
}

#page a:link,#page a:visited,#page a:active {/*リンクの色 マウスが当たってない時 */
    color: #66cccc;
}

#page a:hover {/*リンクの色 マウスが当たってる時 */
    color: #ccc;
}



/* ********************************************************* */
/* その他レイアウト　linkページ、Galleryページ
/* ********************************************************* */
/*------------------------------------------------------------
 linkページ
------------------------------------------------------------ */
.link {
    margin: 5px 20px;
    font-size: .8em;
}

.link li {
    margin: 5px 0;
}

.link img {
    vertical-align: bottom;
}

/*------------------------------------------------------------
 Galleryページ
------------------------------------------------------------ */
.popup img {
    border: 1px solid #ccc;
}








/* ********************************************************* */
/* タブレット用のレイアウト指定 */
/* ********************************************************* */
@media screen and (min-width: 100%) and (max-width:960px) {

/* 文字の大きさ設定　拡大
--------------------------------------------- */
    body {
        font-size: 110%;
    }

/* ヘッダー調整
--------------------------------------------- */
    header {
        height: 60px;
        width: auto;
        background: #fff;/*背景色*/
        padding: 0;
        margin: 0 0 15px 0;
    }

/* メールフォーム
--------------------------------------------- */
    textarea {
        width: 75%;
        height: 100px;
    }

    input[type=text] {
        width: 35%;
    }

/* スマホとタブレットメニュー
--------------------------------------------- */
    #menu {
        display: none;
    }

    #smart {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .tappu_btn {
        position: relative;
        display: block;
        vertical-align: middle;
        float: right;
        line-height: 1.125em;
        cursor: pointer;
        text-decoration: none;
        border-radius: 4px;
        background: #22d8d7;/*3本バーの背景色 */
        margin: 8px 3px 6px;
        padding: 10px;
    }

    .tappu_btn .tappu_icon-bar + .tappu_icon-bar {
        margin-top: 3px;
    }

    .tappu_icon {
        float: left;
        margin: 3px 0 0 .438em;
    }

    .tappu_icon-bar {
        display: block;
        width: 1.125em;
        height: .125em;
        border-radius: 1px;
        background: #fff;/* 3つのバーの色 */
    }

    .tappu_menu {
        display: inline-block;
        float: right;
        width: 100%;
        font-size: 16px;
        padding: 5px;
    }

    .tappu_menutxt {
        display: block;
        line-height: 13px;
        float: left;
        color: #FFF;
        font-weight: 700;
    }

    .tappu_no-text {
        margin: 0;
    }

    .tappu_arrow {
        font-size: .8em;
        margin: 0 0 0 .4em;
    }

    .tappu_item {
        cursor: pointer;
    }

    .tappu_nav {
        clear: both;
        font-size: .875em;
        color: #555;
        border-radius: 5px;
        border: 1px solid #ccc;
        background: #fff;
    }

    .tappu_nav ul {
        margin: 0;
        padding: 0;
    }

    .tappu_nav ul,.tappu_nav li {
        display: block;
    }

    .tappu_nav,.tappu_nav ul {
        overflow: hidden;
    }

    .tappu_row {
        display: block;
        margin: 2px 5px;
        padding: 5px 10px;
    }

    .tappu_txtnode {
        margin-left: 15px;
    }

    .tappu_nav a {
        display: block;
        margin: 2px 5px;
        padding: 8px 10px;
    }

    .tappu_nav .tappu_item a,.tappu_nav .tappu_parent-link a {
        display: inline;
        margin: 0;
        padding: 0;
    }

    .tappu_nav a:hover,.tappu_nav .tappu_row:hover {
        border-radius: 6px;/*マウスが当たっている時の背景の角の丸み */
        background: #22d8d7;/*マウスが当たっている時の背景色 */
        color: #fff;/*マウスが当たっている時の文字の色 */
    }

/* 枠設定と見出し
--------------------------------------------- */
    .kakoi {
        float: none;
        padding: 5px;
        margin: 0 auto 15px auto;
        background: #fff;
        border-radius: 5px;
        width: 92%;
    }

    .divide {
        display: inline;
    }

    .hako {
        width: 50%;
    }

    h1 {
        position: relative;
        float: left;
        z-index: 1;
        width: 80%;
        margin: 0 auto;
        padding: 16px 10px 10px 10px;
        font-size: 1.1em;
    }
}

@media screen and (max-width: 640px){
/*アコーディオン全体*/
.menu {
  width: 100%;
  padding: 1px 1px 1px 1px;
}
.menu input {
  display: none;
}
/*バー部分*/
.menu label {
  cursor :pointer;
  display: block;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  position: relative;
  margin: 0 0 1px;
  padding: 1px;
  background-color: #fff;
}
/*開いたときに表示される部分*/
.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1px;
}
.menu li {
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s
  -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}
#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li,
#menu_bar03:checked ~ #links03 li ,
#menu_bar04:checked ~ #links04 li {
  height: auto; /*開いたときに表示されるliの高さ*/
  opacity: 1;
  background: #fff;
}
 /*開いたときの下の余白*/
#menu_bar01:checked ~ #links01 li:last-child,
#menu_bar02:checked ~ #links02 li:last-child {
  margin-bottom: 10px;
}
/*閉じた状態の矢印描画*/
.menu label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #aaa 2px solid;
  border-right: #aaa 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position:absolute;
  right: 0%;
  top: 0%;
  margin: auto;
}
/*開いた状態の矢印描画*/
.menu input[type=checkbox]:checked + label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #aaa 2px solid;
  border-right: #aaa 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position:absolute;
  right: 0%;
  top: 0%;
  margin: auto;
}




/* ********************************************************* */
/* スマートフォン用のレイアウト指定 */
/* ********************************************************* */
@media screen and (max-width: 480px) {

/* メールフォーム
--------------------------------------------- */
    textarea {
        width: 95%;
        height: 100px;
    }

    input[type=text] {
        width: 55%;
    }

/* 名前変換フォーム
--------------------------------------------- */
    .design textarea, .design input[type=text] {
        display: block;
        margin: 4px auto;
    }

    .design input[type=text] {
        width: 125px;
        margin: 10px auto;
    }

    .design .submit {
        text-align: center;
        display: block;
    }

    .design br {
        display: none;
    }

/* linkページ画像
--------------------------------------------- */
    .link img {
        display: block;
    }
}