@charset "UTF-8";
/* Scss Document */
html {
  font-size: 62.5%;
  height: 100%; }

body {
  font-family: 'Noto Sans JP',YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
  letter-spacing: 2px;
  height: 100%; }

*:hover {
  transition: 0.2s; }

p {
  margin: 24px 0; }

a {
  color: #333; }

/* 見出し */
h1, h2, h3, h4 {
  font-family: 'Paytone One','Noto Sans JP',YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
  font-weight: bold;
  letter-spacing: 8px; }

h2 {
  font-size: 3.6rem;
  display: flex;
  align-items: center;
  margin: 80px 0 60px;
  color: #ee7d58; }
  h2::before, h2::after {
    content: '';
    display: block;
    height: 4px;
    background-color: #f7ca11;
    flex-grow: 1; }
  h2::before {
    margin-right: 4rem; }
  h2::after {
    margin-left: 4rem; }
  @media screen and (max-width: 1023px) {
    h2 {
      font-size: 3rem; }
      h2::before {
        margin-right: 2rem; }
      h2::after {
        margin-left: 2rem; } }

h3 {
  position: relative;
  font-size: 2.4rem;
  margin: 40px 0 40px;
  padding-left: 40px;
  color: #ee7d58; }
  @media screen and (max-width: 1023px) {
    h3 {
      font-size: 2rem;
      margin: 40px 0 20px; } }
  h3::before {
    position: absolute;
    top: 12px;
    left: 0;
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: #e56c3e;
    border-radius: 4px; }
    @media screen and (max-width: 1023px){
      h3::before{
        top: 8px;
      }
    }

h4 {
  margin: 40px 0 24px;
  font-size: 1.8rem; }



/* 強調 */
em {
  text-decoration: underline;
  font-style: normal; }

ul, ol, dl {
  margin: 24px 0; }

/* フォーム、ボタン */
input, textarea {
  border: none;
  margin-bottom: 8px;
  padding: 8px;
  background: rgba(247, 202, 17, 0.2); }

input[type="submit"] {
  padding: 4px 8px;
  cursor: pointer; }

textarea {
  border: none;
  max-width: 100%; }

.btn {
  background-color: #e56c3e;
  color: #fff;
  border: 1.6px solid #e56c3e;
  margin: 16px 0;
  padding: 4px 8px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.2s; }
  .btn:hover {
    background: #f7ca11; }

@media screen and (min-width: 1024px) {
  .flexWrapper {
    display: flex; } }

/* 見出し付きボックス */
.titlebox {
  margin-top: 40px;
  padding: 24px;
  position: relative;
  border: 4px solid #f7ca11;
  border-radius: 10px; }
  .titlebox h3 {
    position: absolute;
    top: -3.3rem;
    left: 1rem;
    margin: 0;
    padding: 0;
    color: #f7ca11;
    font-weight: normal; }
    .titlebox h3::before {
      display: none; }

/* ライン付きボックス */
.linebox {
  border-left: 1.6px solid #f7ca11;
  padding-left: 24px; }

/* グリッドリスト */
.gridlist {
  display: grid;
  grid-template-columns: auto 1fr; }
  .gridlist dt, .gridlist dd {
    border-bottom: 1.6px solid #ee7d58;
    margin-bottom: 8px; }
  .gridlist dt {
    padding-right: 24px; }

/* 余白 */
.hr {
  padding: 16px; }

/*---------------------------------
横幅設定
---------------------------------*/
@media screen and (min-width: 1024px) {
  header, main, footer {
    width: 1024px;
    margin: 0 auto; } }

/*---------------------------------
背景写真設定
---------------------------------*/
.bg {
  position: fixed;
  top: 0;
  left: 0;
  background: url("../img/top.jpg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -99; }

.blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -98;
  /*すりガラス用プロパティ*/
  backdrop-filter: sepia(50%);
  /*ベンダープレフィックス*/
  -webkit-backdrop-filter: sepia(50%); }

/*---------------------------------
ヘッダー
---------------------------------*/
header {
  width: 100%;
  height: 100%;
  padding: 0px; }
  header .topimg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
 }
    header .topimg h1 {
      display: inline-block;
      color: #fff;
      font-size: 8rem;
      font-weight: bold;
      letter-spacing: 10px; }
    header .topimg .arrow-down {
      position: absolute;
      left: calc(50% - 12px);
      bottom: 26px;
      width: 24px;
      height: 24px;
      border: 4px solid #fff;
      border-top: none;
      border-right: none;
      transform: rotate(-45deg); }

/*---------------------------------
メニュー
---------------------------------*/
.globalnav {
  position: fixed;
  top: 0;
  z-index: 1; }
  @media screen and (min-width: 1024px) {
    .globalnav {
      bottom: 0;
      right: 24px;
      height: 100%;
      display: flex;
      align-items: center; }
      .globalnav ul {
        list-style: none;
        padding: 0; }
        .globalnav ul li {
          width: 90px;
          height: 90px;
          background-color: #fff;
          border: 8px solid #f7ca11;
          border-radius: 50%;
          margin-bottom: 24px;
          transition: 0.2s;
          text-transform: uppercase; }
          .globalnav ul li:hover {
            border-color: #e56c3e;
            background: #f7ca11; }
            .globalnav ul li:hover a {
              color: #fff; }
          .globalnav ul li a {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            font-family: 'Paytone One','Noto Sans JP',YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
            font-size: 1.6rem;
            text-decoration: none;
            text-align: center; } }
  @media screen and (max-width: 1023px) {
    .globalnav {
      width: 100%; }
      .globalnav ul {
        list-style: none;
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin: 0;
        padding: 8px;
        background-color: #fff; }
        .globalnav ul li {
          padding: 0 0 0 16px;
          font-family: 'Paytone One','Noto Sans JP',YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif'; }
          .globalnav ul li a {
            font-size: 2rem;
            text-decoration: none;
            color: #e56c3e; } }

/*---------------------------------
トップページ　コンテンツ
---------------------------------*/
main {
  padding: 1px 40px;
  background-color: #fff; }
  @media screen and (max-width: 1023px) {
    main {
      padding: 16px; } }
  main section {
    margin: 120px 0; }
  @media screen and (min-width: 1024px) {
    main .flexWrapper > div {
      width: 50%; } }
  main .flexWrapper .left {
    margin-right: 40px; }
    @media screen and (max-width: 1199px) {
      main .flexWrapper .left {
        margin: 0; } }
  main .news {
    padding: 0; }
    main .news ul {
      list-style: none;
      height: 400px;
      overflow-y: auto;
      padding: 0;
      margin: 0; }
      main .news ul li {
        display: grid;
        grid-template-columns: auto 1fr;
        margin: 16px 24px; }
        @media screen and (max-width: 1023px) {
          main .news ul li {
            display: block; } }
        main .news ul li time {
          margin-right: 16px;
          font-weight: bold;
          color: #ee7d58; }
          @media screen and (max-width: 1023px) {
            main .news ul li time {
              display: block; } }
  @media screen and (min-width: 1024px) {
    main .profile {
      display: flex; } }
  main .profile .prof-left {
    margin: 32px 64px; }
    @media screen and (max-width: 1023px) {
      main .profile .prof-left {
        text-align: center; } }
    main .profile .prof-left img {
      display: inline;
      border-radius: 50%; }
  main .profile .sns {
    display: flex;
    margin: 16px 0; }
    main .profile .sns a img, main .profile .sns a i {
      transition: 0.2s; }
      main .profile .sns a img:hover, main .profile .sns a i:hover {
        transform: translateY(4px); }
    main .profile .sns i {
      font-size: 30px;
      margin-left: 8px; }
    main .profile .sns .twitter i {
      color: #55acee; }
    main .profile .sns .facebook i {
      color: #315096; }
    main .profile .sns .instagram i {
      color: #e1306c; }
  main .link ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0; }
    main .link ul li {
      margin-right: 16px;
      margin-bottom: 16px; }
  main .contact input {
    width: 50%; }
    @media screen and (max-width: 1199px) {
      main .contact input {
        width: 100%; } }
  main .contact input[type="submit"] {
    width: auto; }
  main .contact textarea {
    width: 100%;
    height: 100px; }

/*---------------------------------
フッター
---------------------------------*/
footer {
  text-align: center;
  margin: 24px auto; }
  footer small {
    color: #fff;
    padding: 16px 0; }
    footer small a {
      color: #fff; }

/*---------------------------------
　メイン　コンテンツ
---------------------------------*/
.novel .list li {
  margin-bottom: 8px; }

.novel .list span {
  margin-right: 24px; }
  @media screen and (max-width: 1023px) {
    .novel .list span {
      display: block; } }
  .novel .list span a {
    text-decoration: none;
    color: #ee7d58;
    font-weight: bolder; }

.gallery ul {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  width: 100%; }
  .gallery ul li {
    position: relative;
    width: calc(100%/4 - 8px);
    margin: 0 8px 8px 0; }
    .gallery ul li:nth-child(4n) {
      margin-right: 0; }
    .gallery ul li::before {
      content: '';
      display: block;
      padding-top: 100%; }
    .gallery ul li img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }

/*---------------------------------
　Novel個別ページ
---------------------------------*/
.novelIndivi {
  margin: 80px auto; }
  .novelIndivi h2 {
    margin: 80px auto 80px; }
    .novelIndivi h2::before {
      display: none; }
  .novelIndivi p {
    margin: 40px 0; }

/*---------------------------------
　Gallery個別ページ
---------------------------------*/
.galleryIndiv {
  position: relative;
  height: 100%; }
  .galleryIndiv img {
    max-height: 100%;
    margin: 0 auto; }
  .galleryIndiv h3::after {
    border: 0; }
  .galleryIndiv p {
    margin-bottom: 64px; }
  .galleryIndiv .prev, .galleryIndiv .next {
    position: absolute;
    top: 50%;
    margin-top: -2rem; }
    @media screen and (max-width: 1023px) {
      .galleryIndiv .prev, .galleryIndiv .next {
        top: auto;
        margin-bottom: 40px; } }
    .galleryIndiv .prev .arrow-left, .galleryIndiv .prev .arrow-right, .galleryIndiv .next .arrow-left, .galleryIndiv .next .arrow-right {
      width: 40px;
      height: 40px;
      border: 4px solid #ee7d58; }
      @media screen and (max-width: 1023px) {
        .galleryIndiv .prev .arrow-left, .galleryIndiv .prev .arrow-right, .galleryIndiv .next .arrow-left, .galleryIndiv .next .arrow-right {
          width: 20px;
          height: 20px; } }
    .galleryIndiv .prev .arrow-left, .galleryIndiv .next .arrow-left {
      border-right: none;
      border-bottom: none;
      transform: rotate(-45deg); }
    .galleryIndiv .prev .arrow-right, .galleryIndiv .next .arrow-right {
      border-left: none;
      border-top: none;
      transform: rotate(-45deg); }
  .galleryIndiv .prev {
    left: -20px; }
    @media screen and (max-width: 1023px) {
      .galleryIndiv .prev {
        left: 10%; } }
  .galleryIndiv .next {
    right: -20px; }
    @media screen and (max-width: 1023px) {
      .galleryIndiv .next {
        right: 10%; } }
