@charset "UTF-8";

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}



/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

オープニングアニメーション

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #606320;
    z-index: 9999; /* 最前面 */
    display: flex;
    justify-content: center;
    align-items: center;
    /* アニメーション後のフェードアウト用 */
    transition: opacity 0.8s ease-out, visibility 0s 0.8s; 
}

#catchphrase {
    color: #fff;
    font-size: 3em;
    font-weight: 400;
    font-family: "Shippori Mincho", serif;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-orientation: upright;
    opacity: 0; /* 初期状態では非表示 */
}

/* ルビ文字（rt要素）に親要素と同じフォントを強制的に適用する */
#catchphrase ruby {
    font-family: "Shippori Mincho", serif;
}

#catchphrase rt {
    font-family: "Shippori Mincho", serif;
    font-size: 0.5em;
    line-height: 1;
}

/* キャッチコピーの表示アニメーション (3秒間で実行) */
@keyframes text-fade {
    0% { opacity: 0; }
    /* 1秒かけてフェードイン (33%) */
    33% { opacity: 1; } 
    /* 1秒間表示を維持 (33%~66%) */
    66% { opacity: 1; } 
    /* 1秒かけてフェードアウト (66%~100%) */
    100% { opacity: 0; } 
}

/* アニメーション実行用のクラス */
.is-animate {
    animation: text-fade 3s ease-in-out forwards;
}

/* 最終的にオープニング画面を完全に非表示にするクラス */
.is-hidden {
    opacity: 0 !important;
    visibility: hidden;
}

/* ====================================
    メインコンテンツのスタイル
   ==================================== */
#main-content-wrapper {
    /* 初期状態は非表示 */
    opacity: 0;
    /* フェードイン用のトランジション */
    transition: opacity 1s ease-in; 
}

/* メインコンテンツ表示用のクラス */
#main-content-wrapper.is-active {
    opacity: 1;
}

/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

全体

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/

/*−−−−−−−−−− 共通レイアウト −−−−−−−−−−*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-style: normal;
}

body {
    background: #FCFBF7;
    line-height: 1.7;
    letter-spacing: 0.2em;
    font-size: 1.2rem;
    color: #6C5B5A;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 10%;
    overflow: hidden;
}

.content_wrap {
    margin-bottom: 15%;
    opacity: 0;
    transform : translate(0, 50px);
    transition : all 1500ms;
}

.content_wrap.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
main {
    max-width: 690px;
    padding: 15% 0;
}

.content_wrap {
    margin-bottom: 30%;
}
}

/* スマホ */
@media screen and (max-width: 520px) {

body {
    font-size: 13px;
}
main {
    max-width: 360px;
    margin: 0 auto;
    padding: 15% 3%;
}

.content_wrap {
    margin-bottom: 30%;
}
}

/* その他 */
@media screen and (min-width: 340px) and (max-width: 379px) {

main {
    max-width: 330px;
}
}

/*−−−−−−−−−− リンク −−−−−−−−−−*/
a {
    text-decoration: none;
    color: #BCC380;

}

/*−−−−−−−−−− 文字 −−−−−−−−−−*/
p {
    letter-spacing: 2px;
    line-height: 1.95;
    text-align: justify;
    font-size: 16px;
}

li {
    list-style: none;
}

h2 {
    font-size: 2.0rem;
    font-weight: bold;
    margin: 3% 0;
    color: #BCC380;
}

h3 {
   font-size: 1.5rem;
   font-weight: bold;
   margin: 2% 0;
}

h4 {
   font-size: 1rem;
   font-weight: bold;
}

.links {
    font-size: 18px;
}

/* スマホ */
@media screen and (max-width: 520px) {
p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 2px;
}

h2 {
    font-size: 25px;
    margin: 8% 0;
}

h3 {
   font-size: 18px;
   margin: 5% 0;
}

}


/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

ハンバーガーメニュー

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/

/* メニューボタン */
.menu-btn {
  background: transparent;
  color: #606320;
  border: none;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 1000;
}

.menu-btn span {
  display: block;
  position: absolute;
  width: 33px;
  right: 15px;
  transition: 0.3s ease-in-out;
  font-size: 10px;
}

.menu-btn .line {
  height: 1px;
  background: #606320;
}

.line_top {
  top: 20px;
}

.line_center {
  top: 28px;
}

.menu {
  top: 36px;
}

/* メニューが開いているときのボタン */

.line_top.active {
  top: 28px;
  transform: rotate(-45deg);
  background: #fff;
}

.line_center.active {
  transform: rotate(45deg);
  background: #fff;
}

.line.active .menu  {
  font-size:0;
}

/* フルスクリーンナビゲーション */
.nav {
    background: #606320;
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
}
.nav_wrap{
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}
.nav_menu_item{
    margin: 40px 0;
}
.nav_menu_item a{
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    padding: 40px;
    text-decoration: none;
    transition: .5s;
}
.nav_menu_item a:hover{
    color: #BCC380;
}

/* 追従 */
.menu-btn {
    position: fixed; 
}


/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

画像

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/

img {
/* PCの右クリック禁止 */
    pointer-events: none;
 
/* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

ボタン

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/

/*−−−−−−−−−− 共通遷移ボタン −−−−−−−−−−*/

.btn_more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    margin: 10% auto;
    padding: 1%;
    border: 1px solid #bcc380;
    border-radius: 5px;
    background-color: #BCC380;
    color: #fff;
    font-size: 1em;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.btn_more::after {
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 15px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}


/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {

.btn_more {
    width: 200px;
    padding: 1.5%;
    margin: 13% auto 0;
}
}

/* スマホ */
@media screen and (max-width: 520px) {
.btn_more {
    width: 180px;
    padding: 2%;
    font-size: 14px;
    margin: 13% auto 0;
}
}

/*−−−−−−−−−− 準備中ボタン −−−−−−−−−−*/

.btn_more02 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    margin: 10% auto;
    padding: 1%;
    border: 1px solid #6C5B5A;
    border-radius: 5px;
    background-color: #6C5B5A;
    color: #fff;
    font-size: 1em;
    letter-spacing: 0.1em;
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {

.btn_more {
    width: 200px;
    padding: 1.5%;
    margin: 13% auto 0;
}
}

/* スマホ */
@media screen and (max-width: 520px) {
.btn_more {
    width: 180px;
    padding: 2%;
    font-size: 14px;
    margin: 13% auto 0;
}
}


/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

各セクション

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/

/*−−−−−−−−−− TOP −−−−−−−−−−*/

.sitetop {
    display: flex;
    gap: 3%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 5%;
}

.keyvisual {
    width: 50%;
    margin: auto;
}

.keyvisual img {
    width: 100%;
    margin: 0 auto;
}

.sitelogo {
    width: 50%;
    margin: auto;
}

.sitelogo p {
    font-size: 1.3rem;
    color: #606320;
    font-weight: 300;
}

.sitelogo img {
    width: 70%;
}


/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
.sitetop {
    display: block;
}

.keyvisual {
    margin-top: 5%;
    width: 70%;
}

.sitelogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sitelogo p {
    font-size: 1.5rem;
}

.sitelogo img {
    width: 50%;
}
}


/* スマホ */
@media screen and (max-width: 520px) {
.sitetop {
    display: block;
}

.keyvisual {
    margin-top: 15%;
    width: 100%;
}

.sitelogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sitelogo p {
    font-size: 1rem;
}

.sitelogo img {
    width: 70%;
}
}

/* その他 */
@media screen and (min-width: 340px) and (max-width: 379px) {

.keyvisual {
    margin-top: 10%;
    width: 90%;
}

.sitelogo img {
    width: 60%;
}
}

/*−−−−−−−−−− NEWS −−−−−−−−−−*/

.news {
    gap: 5%;
}

.contents_news {
    margin-bottom: 15%;
}

.news_topics {
    flex-grow: 1;
}

.news_item {
    flex-grow: 1;
    border-bottom: 1px solid #6C5B5A;
    padding: 4%;
}

.news_date {
    font-size: 1rem;
}

.news_p {
    font-size: 1.1rem;
}


/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
.contents_news {
    margin-bottom: 30%;
}

.news_date {
    font-size: 14px;
}

.news_p {
    font-size: 16px;
}
}

/* スマホ */
@media screen and (max-width: 520px) {
.contents_news {
    margin-bottom: 30%;
}

.news_date {
    font-size: 12px;
}

.news_p {
    font-size: 14px;
}
}


/*−−−−−−−−−− WORKS −−−−−−−−−−*/

/* 全体レイアウト */
.novel_img,.novel_cap {
  width: 50%;
}

/*サムネイル*/
.novel_img img {
 width: 100%;
}

.thumbnail .slick-track {
  transform: unset !important;
  height: 40%;
}

.slick-track {
  display: flex;
}
.slick-slide { 
  padding: 10px;
}

/* 創作情報 */
.novel {
    display: flex;
    gap: 8%;
}

.novel_cap {
    padding: 5% 0;
}

.novel_cap p {
    margin-bottom: 1%;
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {

/* 全体レイアウト */
.novel_img,.novel_cap {
  width: 100%;
}

/*サムネイル*/
.novel_img img {
 width: 100%;
}

.thumbnail .slick-track {
  transform: unset !important;
  height: 40%;
}

.slick-track {
  display: flex;
}
.slick-slide { 
  padding: 10px;
}


/* 創作情報 */
.novel {
    display: block;
}

.novel_cap {
    padding: 3% 0 0 0;
}

.novel_cap p {
    margin-bottom: 10%;
}
}


/* スマホ */
@media screen and (max-width: 520px) {

/* 全体レイアウト */
.novel_img,.novel_cap {
  width: 100%;
}

/*サムネイル*/
.novel_img img {
 width: 100%;
}

.thumbnail .slick-track {
  transform: unset !important;
  height: 40%;
}

.slick-track {
  display: flex;
}
.slick-slide { 
  padding: 10px;
}


/* 創作情報 */
.novel {
    display: block;
}

.novel_cap {
    padding: 5% 0;
}

.novel_cap p {
    margin-bottom: 10%;
}
}


/*−−−−−−−−−− MEMO −−−−−−−−−−*/
.memo {
  margin:0 auto;
}

.memo_item {
  display: flex;
  gap: 8%;
}

.memo_img,.memo_cap {
  width: 50%;
}

.memo_cap {
  padding: 5% 0;
}

.memo_img img {
  height: auto;
  width: 100%;
}

/* ナビゲーションボタン全体 */
.navigation-controls {
    display: flex;
    gap: 3%;
    width: 40%;
    margin: 2% auto 8%;
}

/* ナビゲーションボタン */
.nav-button {
    height: 60px;
    flex-grow: 1;
    margin: 0;
    padding: 0;
    border-radius: 5px;
    background-color: #606320;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1em;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* 矢印の共通スタイル */
.nav-button .arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 0 0 2px 2px;
    padding: 3px;
    margin: 0 10px;
}

/* PREV ボタン */
.prev-button .arrow {
    transform: rotate(45deg);
}

/* NEXT ボタン */
.next-button .arrow {
    transform: rotate(-135deg);
}

/* 次項 */
.next-info {
    background-color: #606320;
    color: #fff;
    font-size: 16px;
    padding: 15px 25px 15px 40px;
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
.memo_item {
  display: block;
}

.memo_img,.memo_cap {
  width: 100%;
}

/* ナビゲーションボタン全体 */
.navigation-controls {
    width: 80%;
}

/* ナビゲーションボタン */
.nav-button {
    height: 50px;
}

/* 次項 */
.next-info {
    font-size: 16px;
    padding: 0 40px 0 50px;
}
}

/* スマホ */
@media screen and (max-width: 520px) {

.memo_item {
  display: block;
}

.memo_img,.memo_cap {
  width: 100%;
}

/* ナビゲーションボタン全体 */
.navigation-controls {
    width: 100%;
}

/* ナビゲーションボタン */
.nav-button {
    height: 40px;
}

/* 次項 */
.next-info {
    font-size: 14px;
    padding: 0 30px;
}
}


/*−−−−−−−−−− DESIGN −−−−−−−−−−*/

/* 全体レイアウト */
.design {
    display: flex;
    gap: 3%;
}

.content_design {
    padding: 7% 0 5% 0;
}

.design_item {
    margin: 10% 0;
}

.slider_color {
  max-width: 500px;
  width: 80%;
  margin: 30px auto 0;
}
.slick-img img {
  height: auto;
  width: 100%;
}

/* テキスト通常時の色 */
.design_item h3 {
  color: #6C5B5A;
  transition: color 0.4s ease; /* 💡 フェードを効かせるための設定 */
}

/* アクティブ時の色（画像連動時） */
.design_item.is-active h3 {
  color: #BCC380;
}

.design_item.is-active .target-text {
  color: #BCC380;
  font-weight: bold; 
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
/* 全体レイアウト */
.design {
    display: block;
}

.design_item {
    margin: 5% 0;
}
}

/* スマホ */
@media screen and (max-width: 520px) {

/* 全体レイアウト */
.design {
    display: block;
}

.content_design {
    padding: 5% 0;
}

.design_item {
    margin: 5% 0 10%;
}
}


/*−−−−−−−−−− LINK −−−−−−−−−−*/

/* 全体レイアウト */
.link_item {
    display: flex;
    align-items: flex-start;
    padding: 2% 0;   
}

.link dt {
    flex-shrink: 0;
    width: 25%;
    font-size: 18px;
    color: #BCC380;
}

.link dd {
    margin-left: 0;
    width: 75%;
    font-size: 16px;
}

.link_text a {
    color: #BCC380;
}

.link_item {
    border-bottom: 1px solid #BCC380;
}

.linklist a {
    color: #6C5B5A;
}

/* スマホ */
@media screen and (max-width: 520px) {
/* 全体レイアウト */
.link_item {
    display: block;
    padding: 5% 0;   
}

.link dt {
    width: 100%;
    font-size: 14px;
    margin-bottom: 3%;
}

.link dd {
    width: 100%;
    font-size: 14px;
}
}


/*−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

フッター

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/

footer {
  background-color: #606320;
  align-items: center;
  padding: 3% 3% 0;
}

.attention {
    padding-bottom: 50px;
    border-bottom: 1px solid #fff;
}

.footer_logo {
    width: 15%;
    margin: 0 auto;
}

.footer_logo img {
    width: 100%;
}

.footer_logo a {
    display: block;
}

.attention_line {
  padding: 0 25%;
}

.attention_line p {
    color: #fff;
    font-size: 15px;
}

.footer_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1em;
  list-style-type: none;
}

.privacy {
    text-align: center;
    font-size: 12px;
    margin-bottom: 3%;
}

.privacy a{
    color: #fff;
}

.copyright {
  color: #fff;
  font-weight: 200;
  font-size: 10px;
  text-align: center;
}

.i.la, i.las, i.lar, i.lab {
  font-size: 20px;
  color: #fff;
  }

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
.footer_logo {
    width: 40%;
}

.footer_logo img {
    width: 100%;
}

.attention {
    padding: 20px 15px;
  }

.attention_line {
    padding: 5%;
}

.attention_line p {
    font-size: 14px;
}
}

  /* スマホ */
@media screen and (max-width: 520px) {

.footer_logo {
    width: 70%;
}

.footer_logo img {
    width: 100%;
}

.attention {
    padding: 20px 15px;
  }

.attention_line {
    padding: 10% 0;
}

.attention_line p {
    font-size: 12px;
}

.footer_list {
  margin-top: unset;
}
}