@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;900&display=swap&subset=japanese);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css);
/* -----------------------------------
Flexbox設定
----------------------------------- */
.footer-container,
.header-container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.container {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.flex {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.flex .col-2,
.flex .col-3 {
  width: 100%;
  margin-bottom: 20px;
}

.wrap {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

.flex-center {
  -webkit-box-pack: center;
          justify-content: center;
}

.center {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container,
  .header-container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .flex {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .flex .col-2 {
    width: calc(50% - 15px);
  }
  .flex .col-3 {
    width: calc(33.33% - 15px);
  }
}

@media (min-width: 768px) and (max-width: 1029px) {
  .container,
  .footer-container,
  .header-container {
    max-width: 720px;
  }
}

@media (min-width: 1030px) {
  .container,
  .footer-container,
  .header-container {
    max-width: 960px;
  }
}

@media (min-width: 1240px) {
  .container,
  .footer-container,
  .header-container {
    max-width: 1000px;
  }
}

/* -----------------------------------
リセットCSS
基本的には触らないでください
----------------------------------- */
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

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

a {
  text-decoration: none;
}

ol,
h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  height: 1px;
  background: #f1eded;
  margin: 2em auto;
  width: 100%;
}

a,
input,
textarea,
img {
  -webkit-transition: .3s;
  transition: .3s;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.6em;
}

/* -----------------------------------
ベース設定
----------------------------------- */
* {
  box-sizing: border-box;
}

body {
  /* ※001 - 背景色の変更↓ */
  background-color: #e9e9e9;
  /* ※002 - 文字色の変更↓ */
  color: #000000;
  /* ※003 - 基本フォントの変更↓ */
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  padding: 0;
  margin: 0;
  /* ※004 - 背景を画像で覆いたい場合
  background-image: url('../img/background.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  */
}

/* つけるとスマホでしか表示されなくなるクラス */
.only-phone {
  display: inline-block;
}
@media (min-width: 481px) {
  .only-phone {
    display: none;
  }
}

/* つけるとスマホで見たときだけ表示されなくなるクラス */
.except-phone {
  display: none;
}

@media (min-width: 481px) {
  .except-phone {
    display: inline-block;
  }
}

/* つけるとタブレットでしか表示されなくなるクラス */
.only-pad {
  display: none;
}

@media (min-width: 481px) {
  .only-pad {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .only-pad {
    display: none;
  }
}

/* つけるとPCでしか表示されなくなるクラス */
.only-pc {
  display: none;
}

@media (min-width: 768px) {
  .only-pc {
    display: inline-block;
  }
}

/* つけるとPCで見たときだけ表示されなくなるクラス */
.except-pc {
  display: inline-block;
}

@media (min-width: 768px) {
  .except-pc {
    display: none;
  }
}

.footer-container,
.header-container {
  padding: 0 16px;
}

@media (min-width: 768px) {
  .footer-container,
  .header-container {
    padding: 0 35px;
  }
}

/* -----------------------------------
見出し、テキストなど
----------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,


h1.center,
h2.center,
h3.center,
h4.center,
h5.center,
h6.center,
ol.center,
p.center,
p {
  margin: 0 auto 1em;
  font-size: 15px;
}

ol,


code {
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  background: #f5f5f5;
  font-size: 12px;
  border: 1px solid #cacaca;
  padding: 1px 5px;
  border-radius: 3px;
  margin: 0 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.6em auto 0.1em;
}

h1 {
  text-align: center;
  margin: 40px auto;
}

h2 {
  font-size: 20px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}

h3:before {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  width: 10px;
  background: #000000;
  margin: auto;
  top: 0.8em;
  left: 3px;
}

@media (min-width: 768px) {
  h3 {
    font-size: 21px;
  }
}

h4 {
  font-size: 17px;
}

h5 {
  font-size: 16px;
}

h6 {
  background-color: #f5f5f5;
}


.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(30%, #ffff00));
  background: linear-gradient(transparent 30%, #ffff00 30%);
  font-weight: bold;
}
.gray {
  display: inline-block;
padding-left: 4px; /* 左の余白 */
padding-right: 4px; /* 右の余白 */
  background-color:#E8E8E8;}


/* -----------------------------------
リンク関係
----------------------------------- */
a {
  /* ※005 - リンク色↓ */
  color: #666;
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  /* ※005 - リンクホバー色↓ */
  color: #666;
}

a:hover img {
  opacity: 0.6;
}

a.btn {
  display: block;
  /* ※006 - リンクボタン色↓ */
  background: #000000;
  color: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  text-align: center;
  padding: 10px 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

a.btn.center {
  margin: 40px auto;
}

a.btn:hover {
  /* ※006 - リンクボタンホバー色↓ */
  background: #008b8b;
}

/* -----------------------------------
ヘッダー
----------------------------------- */
header {
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 60px;
}

@media (min-width: 1030px) {
  header {
    height: 80px;
  }
}

nav#globalnav {
  /* ※007 - メニューバーをスクロール追従したくない場合は、position: relative; に変更↓ */
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  height: 60px;
}

@media (min-width: 1030px) {
  nav#globalnav {
    height: 80px;
    top: 0;
  }
}

nav#globalnav .header-container {
  background: #ffffff;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}

@media (min-width: 1030px) {
  nav#globalnav .header-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}

nav#globalnav h1 {
  margin: 0;
  line-height: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 1030px) {
  nav#globalnav h1 {
    line-height: 80px;
  }
}

nav#globalnav h1 a {
  /* ※008 - ヘッダーバーサイトタイトル色↓ */
  color: #000000;
  display: block;
  padding: 0;
  font-size: 18px;
}

nav#globalnav h1 a:hover {
  /* ※008 - ヘッダーバーサイトタイトルホバー色↓ */
  color: #8dc21f;
}

nav#globalnav h1 a img {
  height: 40px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: 10px;
}


/* -----------------------------------
上からスライドインしてくるタイプのハンバーガーメニュー
----------------------------------- */
nav#globalnav .header-container {
  overflow-y: scroll;
  max-height: 100vh;
}

@media (min-width: 1030px) {
  nav#globalnav .header-container {
    overflow-y: inherit;
  }
}


button#menubtn {
  color: #000000;
  margin: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 24px;
  position: absolute;
  color: #000000;
  top: 10px;
  right: 20px;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  z-index: 99999;
}

@media (min-width: 1030px) {
  button#menubtn {
    display: none;
  }
}

button#menubtn:hover {
  cursor: pointer;
}

button#menubtn#inmenu {
  color: #ffffff;
}

button#menubtn#inmenu-back {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: -1;
}

/* -----------------------------------
メイン部分
----------------------------------- */
main {
  margin: 0 auto;
  overflow: hidden;
}

section {
  border-top: 1px solid #e9e9e9;
  padding: 10px 16px;
}

section#main-visual {
  padding: 0;
}

@media (min-width: 768px) {
  section {
    padding: 20px 35px;
  }
}

section.indent p {
  /* ※010 - 小説展示用ブロックsection class="indent"中のp段落の行間と字下げ↓ */
  line-height: 2.0em;
  text-indent: 1em;
}

.container {
  background: #ffffff;
}

.two-column aside {
  border-top: 1px solid #e9e9e9;
  padding: 10px 16px;
}

@media (min-width: 768px) {
  .two-column aside {
    padding: 20px 35px;
  }
}

@media (min-width: 1030px) {
  .two-column {
    display: -webkit-box;
    display: flex;
  }
  .two-column aside {
    width: 300px;
    padding: 20px;
    border-left: 1px solid #e9e9e9;
  }
  .two-column aside h2,
  .two-column aside h3 {
    font-size: 16px;
    margin-top: 40px;
  }
  .two-column aside ol,
  .two-column aside p{
    font-size: 14px;
  }
  .two-column .contents {
    width: calc(100% - 300px);
  }
}

#main-visual {
  /* ※011 - スマホから見た場合のメインビジュアル画像の高さ（デフォルトは画面いっぱい）↓ */
  height: calc(100vh - 60px);
  position: relative;
}

#main-visual:before {
  /* ※011 - スマホから見た場合のメインビジュアル画像にかぶせる下向き矢印↓
    不要であれば、 #main-visual:before { ～ } を波カッコごと削除してください */
  content: '';
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto;
  right: 0;
  left: 0;
  bottom: 20px;
}

@media (min-width: 768px) {
  #main-visual {
    /* ※011 - PCから見た場合のメインビジュアル画像の高さ↓ */
    height: 400px;
  }
  #main-visual:before {
    display: none;
  }
}

#main-visual .container {
  padding: 0;
  margin: 0 auto;
  height: 100%;
}

#main-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -----------------------------------
フッター部分
----------------------------------- */
footer {
  margin: 0 auto;
  overflow: hidden;
  min-height: 50px;
}

footer p {
  margin: 15px auto;
  font-size: 12px;
}

.footer-container {
  /* ※012 - フッターエリアの背景色と文字色↓ */
  background: #000000;
  color: #e9e9e9;
  overflow: hidden;
  min-height: 50px;
}

/* -----------------------------------
飾りボックス
----------------------------------- */
.box1 {
  border: 1px solid #e9e9e9;
  padding: 10px;
  margin: 40px auto;
  border-radius: 3px;
}

@media (min-width: 1030px) {
  .box1 {
    padding: 15px;
  }
}

.box1 > *:first-child {
  margin-top: 0;
}

.box1 > *:last-child {
  margin-bottom: 0;
}

.box2 {
  border: 1px solid transparent;
  overflow:auto;
  width:auto;
  height:110px;
  padding: 10px;
  margin: 40px auto;
  background: #f5f5f5;
  overflow-y: scroll;
  -ms-overflow-style: none;    /* IE, Edge 対応 */
scrollbar-width: none;       /* Firefox 対応 */
}
.box2::-webkit-scrollbar {  /* Chrome, Safari 対応 */
display:none;}

@media (min-width: 1030px) {
  .box2 {
    padding: 15px;
    overflow-y: scroll;
  }
}

.box2 > *:first-child {
  margin-top: 0;
}

.box2 > *:last-child {
  margin-bottom: 0;
}

/* -----------------------------------
エンターページ
----------------------------------- */
section#enter {
  border-top: none;
}

.container.enter {
  margin: 60px auto;
}

.container.enter section {
  margin: 0;
}

/* -----------------------------------
メールフォーム
----------------------------------- */
form {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  max-width: 600px;
  margin: 40px auto;
}

form input,
form textarea {
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  border: 1px solid #c1c1c1;
  margin: 3px 0;
  padding: 8px 12px;
  font-size: 15px;
  line-height: 1.6em;
}

form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: #c1c1c1;
}

form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: #c1c1c1;
}

form input:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: #c1c1c1;
}

form input::-ms-input-placeholder, form textarea::-ms-input-placeholder {
  color: #c1c1c1;
}

form input::placeholder,
form textarea::placeholder {
  color: #c1c1c1;
}

form input[type=button], form input[type=submit] {
  cursor: pointer;
  border: none;
  background: #000000;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

form input[type=button]:hover, form input[type=submit]:hover {
  opacity: 0.6;
}

/* -----------------------------------
区切り線
----------------------------------- */
hr {
  width: 100px;
  height: 1px;
  background: #b5b5b5;
}

img.line {
  display: block;
  width: 95%;
  max-width: 700px;
  height: auto;
  margin: 40px auto;
}

/* -----------------------------------
イラスト展示用
ちょっと複雑なので触らないほうがいいかも
----------------------------------- */


dl {
  margin: 40px auto;
}

dl dt {
  font-weight: bold;
}

dl dd {
  border-left: 1px dotted #cccccc;
  margin-left: 20px;
  padding: 5px 0 5px 20px;
}

dl.update {
  border: 1px solid #e9e9e9;
  font-size: 13px;
  border-bottom: none;
}

dl.update dd,
dl.update dt {
  padding: 8px;
  margin: 0;
  border-left: none;
}

dl.update dd {
  padding-top: 0;
  border-bottom: 1px solid #e9e9e9;
}

@media (min-width: 481px) {
  dl.update {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 40px auto 40px 0;
  }
  dl.update dt {
    width: 90px;
    padding: 8px;
    border-bottom: 1px solid #e9e9e9;
  }
  dl.update dd {
    width: calc(100% - 90px);
    padding: 8px;
    border-bottom: 1px solid #e9e9e9;
  }
}

/* -----------------------------------
名前変換フォーム
----------------------------------- */
.namechange_wrap {
  width: 400px;
  max-width: 100%;
  margin: 40px auto 40px 0;
  background: #f5f5f5;
  padding: 20px;
}

.namechange_wrap dl {
  margin: 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.namechange_wrap dl dd {
  border: none;
  margin: 0 0 5px 15px;
  padding: 0;
}

.namechange_wrap input[type=text] {
  border: none;
  background: transparent;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  border-bottom: 1px solid #ccc;
  padding: 3px 7px;
}

.namechange_wrap input[type=text]:focus {
  outline: none;
  background: #ffffff;
}

.namechange_wrap input[type=button] {
  cursor: pointer;
  border: none;
  background: #000000;
  color: #ffffff;
  padding: 5px 15px;
}

.namechange_wrap input[type=button].namechange_ng {
  background: #cccccc;
  color: #989898;
}

.namechange_wrap p {
  margin: 10px auto 0;
}

/* -----------------------------------
ページネーション
----------------------------------- */


/* -----------------------------------
テーブル
----------------------------------- */
table {
  border-collapse: collapse;
  min-width: 640px;
}

table td,
table th {
  padding: 5px 14px;
}

table tr {
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}

table th {
  background: #f5f5f5;
}

.table_wrapper {
  max-width: 100%;
  overflow-x: auto;
  margin: 40px auto 40px 0;
}

/* -----------------------------------
上に戻るボタン
----------------------------------- */
a#totop {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 20;
  background: #000000;
  right: 0;
  bottom: 0;
  border-left: 1px solid #ffffff45;
}

a#totop.totop-hidden {
  opacity: 0;
  z-index: -1;
}

a#totop:before {
  content: '';
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto;
  top: 24px;
  right: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a#totop:hover:before {
  top: 20px;
}

/* -----------------------------------
何かCSSを書き足す場合は、ここから下に書き足すと
あとからもとに戻したくなった場合に便利です。
----------------------------------- */


ul{
  display: flex;
  flex-wrap: wrap;
}
li{
  position: relative;
  width: calc(100% / 3) ;

}
li:before{
  content: "";
  display: block;
  padding-top: 100%;
}
img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
h7{
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  background: #f5f5f5;
  font-size:1.2rem;
    text-align: left;
}

.icon::before {
  font-family: "Font Awesome 5 Free"; /*←ココ！！！！！！！*/
  font-weight: 900;
  content: "\f007";
}

1
2
3
.fa {
    font-family: FontAwesome;
}
