@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300&family=Sacramento&family=Zen+Kaku+Gothic+New&display=swap");
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

全ページ共通

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 1.6rem;
  color: #333;
  letter-spacing: 2px;
  line-height: 1.8;
}
@media screen and (max-width: 520px) {
  body {
    font-size: 1.4rem;
  }
}

*:hover,
*::before,
*::after {
  transition: 0.2s;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

文字

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
p {
  margin: 20px 0;
  letter-spacing: 1px;
  max-width: 960px;
}

a {
  color: inherit;
}

/*－－－－－－－－－－ 見出し －－－－－－－－－－*/
h1,
h2,
h3,
h4,
h5 {
  letter-spacing: 4px;
  font-family: "Sacramento", "Zen Kaku Gothic New", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: normal;
  word-break: break-all;
}

/*－－－－－－－－－－ 大見出し －－－－－－－－－－*/
.headingL {
  position: relative;
  display: flex;
  align-items: center;
  font-size: clamp(3rem, 2.8rem + 1vw, 4rem);
  padding-left: 3.4rem;
  margin: 40px 0;
}
.headingL::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 2.4rem;
  height: 100%;
  background: url("../images/heart.svg") center center no-repeat;
}
.headingL span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  color: #deadac;
  margin-left: 10px;
}
.headingL span::before, .headingL span::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #deadac;
  margin-top: -6px;
}
@media screen and (max-width: 520px) {
  .headingL {
    display: block;
  }
}
.headingL.ja {
  font-size: clamp(2.4rem, 2.24rem + 0.8vw, 3.2rem);
}

/*－－－－－－－－－－ 中見出し －－－－－－－－－－*/
.headingM {
  font-size: clamp(2.4rem, 2.28rem + 0.6vw, 3rem);
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.headingM::before, .headingM::after {
  content: "";
  display: inline-block;
  height: 10px;
  border: 1px solid #deadac;
  border-left: none;
  border-right: none;
}
@media screen and (min-width: 1025px), print {
  .headingM {
    margin: 40px 0;
  }
}
.headingM.ja {
  font-size: clamp(2rem, 1.92rem + 0.4vw, 2.4rem);
}

/*－－－－－－－－－－ 小見出し －－－－－－－－－－*/
.headingS {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  margin: 20px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}
.headingS::after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-color: transparent;
  background-image: radial-gradient(#eee2e1 20%, transparent 22%);
  background-size: 20px 20px;
}
@media screen and (min-width: 1025px), print {
  .headingS {
    margin: 30px 0;
  }
}
.headingS.ja {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
}

/*－－－－－－－－－－ 最小見出し －－－－－－－－－－*/
.headingSS {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  margin: 20px 0;
}

/*－－－－－－－－－－ 文字装飾 －－－－－－－－－－*/
.right {
  text-align: right;
}

.center {
  text-align: center;
}

.marker {
  background: linear-gradient(transparent 60%, rgba(222, 173, 172, 0.6) 60%);
}

.label {
  display: inline-block;
  margin: 20px 0;
  padding: 2px 10px;
  background-color: #eee2e1;
}

.bg-dot {
  background-color: transparent;
  background-image: radial-gradient(#eee2e1 20%, transparent 22%), radial-gradient(#eee2e1 20%, transparent 22%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

アイコン等

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.la,
.las {
  font-size: 1.2em;
  color: #deadac;
  position: relative;
  top: 2px;
}

/* 矢印 */
.arrow {
  width: 20px;
  height: 20px;
  border: 2px solid #deadac;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

入力フォーム、ボタン

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/* 入力フォーム */
input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 6px 10px 4px 10px;
  border: 1px solid #deadac;
  margin: 10px 0;
}

/* ボタン */
.btn {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #deadac;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 3px 16px;
  border: 1px solid #deadac;
  border-radius: 9999px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.btn:hover {
  cursor: pointer;
  background-color: rgba(238, 226, 225, 0.6);
  color: #333;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

リスト

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.list,
.list-number {
  margin: 20px 0;
}

.list li {
  position: relative;
  margin-left: 16px;
}
.list li::before {
  position: absolute;
  top: calc(50% - 4px);
  left: -16px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #deadac;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* 数字付きリスト */
.list-number {
  list-style-type: decimal-leading-zero;
  list-style-position: inside;
}
.list-number li {
  text-indent: -3.4rem;
  padding-left: 3.6rem;
}
.list-number li > :not(:first-child) {
  text-indent: 0;
}

/* 表リスト */
.gridlist {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.gridlist a {
  text-decoration: none;
}
@media screen and (max-width: 520px) {
  .gridlist {
    grid-template-columns: 1fr;
    width: auto;
  }
}
.gridlist .gridlist__label,
.gridlist .gridlist__text {
  padding: 6px 12px;
  border-bottom: 4px solid #eee2e1;
}
.gridlist .gridlist__label {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .gridlist .gridlist__label {
    border-width: 1px;
  }
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

枠組み

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.box {
  position: relative;
  background-color: rgba(238, 226, 225, 0.6);
  outline: 1px solid #a5a5af;
  outline-offset: 6px;
  padding: 40px;
}
.box > :first-child {
  margin-top: 0;
}
.box > :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 520px) {
  .box {
    padding: 20px;
  }
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

SNSアイコンリスト

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.snslist .snslist__item {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #deadac;
  border-radius: 50%;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.snslist .snslist__item .lab {
  margin: 6px 1px 3px 3px;
  font-size: 2rem;
}
.snslist .snslist__item a {
  color: #fff;
}
.snslist .snslist__item:hover.twitter {
  background-color: #1DA1F2;
}
.snslist .snslist__item:hover.instagram {
  background-color: #CF2E92;
}
.snslist .snslist__item:hover.facebook {
  background-color: #4267b2;
}
.snslist .snslist__item:hover.youtube {
  background-color: #DA1725;
}
@media screen and (max-width: 520px) {
  .snslist {
    justify-content: center;
  }
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

レイアウト

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ 横並び －－－－－－－－－－*/
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /* 表示サイズを変えたい場合は200pxの部分を変更 */
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/*－－－－－－－－－－ 2カラム表示 －－－－－－－－－－*/
.--2column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
@media screen and (max-width: 1024px) {
  .--2column {
    grid-template-columns: 1fr;
  }
}

/*－－－－－－－－－－ 左右反対 －－－－－－－－－－*/
.reverse {
  flex-direction: row-reverse;
}

/*－－－－－－－－－－ コンテンツ全体の横幅 －－－－－－－－－－*/
.mainwrapper {
  padding: 50px 10px;
}
.mainwrapper > :first-child {
  margin-top: 0;
}

/* タブレット */
@media screen and (min-width: 521px) and (max-width: 1024px) {
  .mainwrapper {
    padding: 80px 40px;
  }
}
/* PC */
@media screen and (min-width: 1025px), print {
  .mainwrapper,
  footer {
    max-width: 1240px;
    margin-left: 25%;
    padding: 80px;
  }
}
/*－－－－－－－－－－ セクション －－－－－－－－－－*/
section:first-of-type {
  padding-top: 0;
}

section {
  padding: 30px 0;
}
section > :first-child {
  margin-top: 0;
}
section > :last-child {
  margin-bottom: 0;
}
section section:first-of-type {
  padding-top: 0;
}
section section:last-of-type {
  padding-bottom: 0;
}

/* PC */
@media screen and (min-width: 1025px), print {
  section {
    padding: 40px 0;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

header

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
header {
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  header {
    position: fixed;
    top: 0;
    height: 20px;
    width: 100%;
  }
}
/*－－－－－－－－－－ サイト名 －－－－－－－－－－*/
.sitename {
  position: fixed;
  left: -20px;
  bottom: 40px;
  font-size: 4rem;
  background: rgba(238, 226, 225, 0.6);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transform: rotate(-8deg);
  -webkit-transform: rotate(-8deg);
  -moz-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  -o-transform: rotate(-8deg);
  padding: 10px 20px 10px 40px;
  text-decoration: none;
  z-index: 999;
}
.sitename:hover {
  color: #fff;
  background: #deadac;
}

/* タブレット、スマホ */
@media screen and (max-width: 1024px) {
  .sitename {
    left: auto;
    right: -10px;
    bottom: 20px;
    font-size: 2rem;
    z-index: -1;
    opacity: 0.8;
  }
}
/* 小説、漫画のページでサイト名削除 */
#novel .sitename,
#comic .sitename {
  display: none;
}

/*－－－－－－－－－－ トップ写真 －－－－－－－－－－*/
.top-photo {
  position: fixed;
  left: -10px;
  top: -10px;
  height: 700px;
  z-index: 998;
}

/* タブレット、スマホ */
@media screen and (max-width: 1024px) {
  .top-photo {
    top: 0;
    left: auto;
    right: -20px;
    height: 70%;
    z-index: -1;
    opacity: 0;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

メニューボタン

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #deadac;
  border: none;
  cursor: pointer;
  z-index: 999;
}
.hamburger .hamburger__line {
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #fff;
}
.hamburger .hamburger__line::before, .hamburger .hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
}
.hamburger .hamburger__line::before {
  top: -8px;
}
.hamburger .hamburger__line::after {
  bottom: -8px;
}

/*閉じる*/
.hamburger._active .hamburger__line {
  background: transparent;
}
.hamburger._active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger._active .hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* PCで非表示 */
@media screen and (min-width: 1025px), print {
  .hamburger {
    display: none;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

メニュー

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.globalnav {
  position: fixed;
  top: 0;
  left: 10%;
  width: 15%;
  height: 100vh;
  height: 100dvh;
  z-index: 998;
}

.globalnav__main {
  margin: 40px 0;
}
.globalnav__main .globalnav__item {
  position: relative;
  background: rgba(238, 226, 225, 0.6);
  margin-bottom: 10px;
}
.globalnav__main .globalnav__item a {
  display: block;
  font-family: "Sacramento", "Zen Kaku Gothic New", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 2.4rem;
  text-align: right;
  text-decoration: none;
  padding: 20px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.globalnav__main .globalnav__item a:hover {
  color: #fff;
  background-color: #deadac;
}
.globalnav__main .globalnav__item._has-child:hover .globalnav__child {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.2s;
  -o-transition: 0.4s;
}
.globalnav__main .globalnav__child {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  border: 1px solid #deadac;
  border-right: none;
  border-left: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.globalnav__main .globalnav__child li:not(:last-child) {
  border-bottom: 1px solid #deadac;
}

/*  タブレット、スマホでの表示 */
@media screen and (max-width: 1024px) {
  .globalnav {
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    justify-content: flex-start;
    background-color: #eee2e1;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.2s;
    overflow: auto;
  }
  .globalnav._active {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.2s;
    -o-transition: 0.4s;
  }
  .globalnav__main .globalnav__item a {
    text-align: center;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

サブメニュー

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.submenu {
  margin-bottom: 40px;
}

.submenu__main {
  margin-top: -20px;
}

/* 親メニューのスタイル */
.submenu__item {
  position: relative;
  padding: 10px;
}
.submenu__item a {
  display: inline-block;
  padding: 8px 10px 8px;
  text-decoration: none;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.submenu__item > a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}
.submenu__item > a::after {
  content: "";
  display: block;
  height: 4px;
  background: #eee2e1;
}

/* 子メニューの左に余白 */
.submenu__main > ._has-child > ul {
  margin-left: 20px;
}

/* 子、孫メニューのスタイル */
.submenu__child > li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
}
.submenu__child > li a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}
.submenu__child > li a::before {
  content: "";
  display: block;
  height: 1px;
  background: #eee2e1;
}

.submenu__grandchild li {
  font-size: 1.4rem;
}
.submenu__grandchild li a::before {
  content: "";
  display: block;
  height: 3px;
  background-color: transparent;
  background-image: radial-gradient(#eee2e1 20%, transparent 22%);
  background-size: 10px 1px;
  background-position: 0 0;
}

@media screen and (max-width: 520px) {
  .submenu__child > li {
    grid-template-columns: 1fr;
  }
  .submenu__grandchild li {
    margin-left: 40px;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

ページUP

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.pageup {
  position: fixed;
  right: 2vw;
  bottom: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #eee2e1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  opacity: 0;
  z-index: 1;
}
.pageup .arrow {
  border-color: #fff;
  margin-top: 10px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.pageup:hover {
  background-color: #deadac;
}

/* タブレット */
@media screen and (min-width: 521px) and (max-width: 1024px) {
  .pageup {
    bottom: 12vw;
  }
}
/* スマホ */
@media screen and (max-width: 520px) {
  .pageup {
    width: 30px;
    height: 30px;
    bottom: 25vw;
  }
  .pageup .arrow {
    width: 8px;
    height: 8px;
    margin-top: 4px;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

フッター

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
footer {
  padding: 10px 80px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0 40px;
  }
}
@media screen and (max-width: 520px) {
  footer {
    padding: 0 10px;
  }
}
@media screen and (min-width: 1025px), print {
  footer.bg-dot {
    background: none;
  }
}

.copyright {
  font-size: 1rem;
}