@charset "UTF-8";


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

各ページ共通

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

/*−−−−−−−見出し−−−−−−−*/
.fade-up-blur {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px); /* 初期状態でぼかしを適用 */
    transition: all 1.2s ease-out; /* アニメーションの速度 */
}

/* 表示時のアニメーション（JSでこのクラスが付与される）*/
.fade-up-blur.scrollin {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0); /* ぼかしを解除 */
}

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

}

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

}


/*−−−−−−−記事レイアウト−−−−−−−*/

.post_wrap {
    background-color: #FCFBF7;
}

.post_head {
    border-bottom: 1px solid #bcc380;
    padding: 2%;
    margin-bottom: 5%;
}

.post_date {
    font-size: 1rem;
}

.post_title {
    font-size: 1.7rem;
}

.post_main {
    border-bottom: 1px solid #bcc380;
    padding-bottom: 5%;
}

.post_img {
    display: flex;
    justify-content: center;
    margin: 5% 0;
}

.post_img img {
    width: 60%;
}

.links_news {
    padding: 5%;
    text-align: center;
    font-size: 1.3rem;
}

.relation {
  margin-inline: auto;
  margin: 5% 0 10%;
  max-width: 500px;
}

.relation-img {
  margin: 0 10px;
  cursor: pointer;
}

.relation-img a {
    display: block;
}

.relation-img img {
  height: auto;
  width: 100%;
}

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

.post_wrap {
    padding: 5% 8%;
}

.post_img {
    margin: 10% 0;
}

.post_img img {
    width: 100%;
}
}

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

.post_wrap {
   padding: 20% 3% 10%;
}

.post_head {
    margin: 20% 0 10%;
}

.post_date {
    font-size: 12px;
}

.post_img {
    display: block;
    margin: 15% 0;
}

.post_img img {
    width: 100%;
}

.post_title {
    font-size: 20px;
}

.post_main{
    border-bottom: 1px solid #bcc380;
    padding-bottom: 10%;
}

.links_news {
    padding-top: 10%;
    text-align: center;
    font-size: 15px;
}

.relation {
  margin: 10% 0 0;
}

}


/*−−−−−−−記事内もくじ−−−−−−−*/
.list-index {
    list-style-type: disc;
    padding: 1em 1em 1em 2.5em;
    border-left: 5px solid #bcc380;
    background-color: #f2f2f2;
    margin: 5% 0;
}

.list-index li {
    padding: .3em .3em .3em 0;
}

.list-index li::marker {
    color: #bcc380;
    font-size: 1.1em;
}

.list-index a {
    color: #606320;
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
.list-index {
    margin: 10% 0;
}
}

/* スマホ */
@media screen and (max-width: 520px) {
.list-index {
    margin: 20% 0;
}
}


/*−−−−−−−記事内ボックス−−−−−−−*/
.box {
    border: 2px solid #bcc380;
    border-radius: 5px;
    color: #6c5b5a;
    margin: 5% 0;
}

.box div {
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
    position: relative;
    top: -13px;
    left: 10px;
    margin: 0 7px;
    padding: 0 8px;
    background: #FCFBF7;
    color: #bcc380;
    font-weight: 600;
    vertical-align: top;
}

.box div::before {
    width: 15px;
    height: 7.5px;
    border-bottom: 3px solid #bcc380;
    border-left: 3px solid #bcc380;
    transform: rotate(-45deg) translate(2px, -2px);
    content: '';
}

.box h4 {
    font-size: 1em;
    margin: 0;
    padding: 1em 1.5em;
}

.box p {
    font-size: 15px;
    padding: 1.0em 1.5em;
}

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

}

/* スマホ */
@media screen and (max-width: 520px) {
.box {
    margin: 15% 0;
}

.box h4 {
    font-size: 14px;
}

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

/*−−−−−−−−−− アコーディオン −−−−−−−−−−*/
.accordion {
    max-width: 500px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
    background-color: #F7F6F4;
}

.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #fff;
    background-color: #bcc380;
    font-weight: 600;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}

.accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em;
    color: #685A59;
    transition: transform .5s, opacity .5s;
}

.accordion[open] p {
    transform: none;
    opacity: 1;
}

/* PC */
@media screen and (min-width: 1025px), print {
.accordion {
    max-width: 100%;
}
}


/*−−−−−−−−−− 参考資料一覧 −−−−−−−−−−*/
.reference {
    width: 100%;
    height: 700px;
    overflow-y: auto;
    border: 3px solid #bcc380;
    background-color: #fffaef;
}
.reference_item img {
    width: 100%;
    margin-bottom: 20px;
}


/*−−−−−−−各セクション−−−−−−−*/

.section_wrap {
    padding-bottom: 10%;
}

.section_wrap img {
    width: 100%;
}

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

.section_wrap {
    padding-bottom: 0;
}
}

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

NEWS

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

.news_wrap {
    padding-bottom: 20%;
    background: #FCFBF7;
}

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

.news_wrap {
    padding: 5% 8%;
}
}

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

.news_wrap {
    padding: 20% 3% 10%;
}
}

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

}

/* 各情報レイアウト */
.news_head {
    border-bottom: 1px solid #6C5B5A;
    padding: 2%;
    margin-bottom: 5%;
}

.news_date02 {
    font-size: 1rem;
}

.news_title {
    font-size: 1.7rem;
}

.news_main{
    border-bottom: 1px solid #6C5B5A;
    padding-bottom: 5%;
}

.links_news {
    padding: 5%;
    text-align: center;
    font-size: 1.3rem;
}

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

.news_wrap {
    padding: 5% 8%;
}
}

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

.news_head {
    margin-bottom: 10%;
}

.news_date02 {
    font-size: 12px;
}

.news_title {
    font-size: 20px;
}

.news_main{
    border-bottom: 1px solid #6C5B5A;
    padding-bottom: 10%;
}

.links_news {
    padding-top: 10%;
    text-align: center;
    font-size: 15px;
}
}

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

}


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

MEMO

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/
.h3_article {
    margin-bottom: 3%;
}

.article {
    padding: 3% 0;
    margin-bottom: 5%;
} 

.article_box {
    display: flex;
    gap: 5%;
    flex-wrap: wrap;

}

 .article_item {
    background-color: #fff;
    box-sizing: border-box; /* paddingやborderを含めて幅を計算 */
    width: 30%; /* 1行に3つ並ぶ */
    padding: 10px;
    margin-bottom: 10%;
}

.article_item a {
    display: block;
}

 .article_item img {
    width: 100%;
 }

 .article_title {
   padding: 5%;
   color: #685A59;
}


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

.article_box {
    gap: 5%;
    justify-content: space-between;
}

 .article_item {
    background-color: #fff;
    box-sizing: border-box; /* paddingやborderを含めて幅を計算 */
    width: 45%; /* 1行に2つ並ぶ */
}
}

/* スマホ */
@media screen and (max-width: 520px) {
.article_wrap {
    padding: 20% 3% 10%;
}

.h3_article {
    margin-bottom: 10%;
}

.article {
    margin-bottom: 10%;
} 

.article_box {
    display: block;

}

 .article_item {
    margin-bottom: 20%;
    width: 100%;
}
}

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

}

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

物語一覧

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

.main_sub {
    max-width: 1024px;
    margin: 0 auto;
}

.tab {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.tab_btn,.tab_btn2 {
    display: flex;
    justify-content: center;
    position: relative;
    width: 200px;
    margin: 0 auto;
    padding: .6em 2em;
    border: none;
    background-color: transparent;
    font-weight: 400;
    font-size: 1.3rem;
    white-space:nowrap;
}

.tab_btn {
    border-bottom: 2px solid #b09a75;
    color: #b09a75;
}

.tab_btn2 a {
    color: #fff;
    font-weight: 400;
}

.tab_btn2::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    transform: scaleX(0);
    transform-origin: center left;
    width: 100%;
    height: 2px;
    background-color: #b09a75;
    content: '';
    transition: transform .3s ease;
}

.tab_btn2:hover::after {
    transform: scaleX(1);
}

.option_wrap {
    margin-top: 5vh;
}

/* 各章 */
h3 {
    font-size: 1.2rem;
    margin-bottom: 1%;
}

.option {
    margin: 5% 0 ;

}

/* 各話 */
.option_wrap ul {
    font-size: 1rem;

}

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

.main_sub {
    padding: 0 5%;
}

.read {
    padding: 10% 3% 0;
}
}

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

.main_sub {
    padding: 0;
}

.tab_btn,.tab_btn2 {
    font-size: 1.0rem;
    width: 80px;
}

h3 {
    font-size: 17px;
    margin-bottom: 5%;
}

.option {
    margin: 10% 0 ;

}

.option_wrap ul {
    font-size: 14px;

}

}

/* その他 */
@media screen and (max-width: 400px) {
.main_sub {
    padding: 0 5%;
}

}

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

頒布情報

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−*/
/* 全体レイアウト */
.shop_wrap {
    margin-top: 5%;
}

.shop_img,.shop_info {
  width: 50%;
}

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

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

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


/* 商品情報 */
.shop {
    display: flex;
    gap: 8%;
}

.shop_info {
    padding: 5% 0;
}

.shop_info h3 {
    font-size: 2.0rem;
}

.info_release {
    font-size: 1.3rem;
    margin: 3% 0 5%;
}

.info_p {
    margin-bottom: 20%;
}

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


/* 試し読みボタン */
.sample_btn {
    display: flex;
    margin-bottom: 4%;
}

.sample_btn a {
    background-color: #7ebeab;
    border-radius: 100vh;
    height: 50px;
    width: 60%;
    text-align: center;
    padding: 1.7%;
    margin: 0 auto;
	color: #fff;
}

/* 購入ボタン */
.info_btn {
    display: flex;
    flex-direction: column;
    height: 70%;
    row-gap: 5%;
}

.info_btn a {
    background-color: #b09a75;
    border-radius: 100vh;
    height: 50px;
    width: 60%;
    text-align: center;
    padding: 1.7%;
    margin: 0 auto;
	color: #fff;
}

.sample_btn a:hover,.info_btn a:hover {
    background-color: #fff;
    color: #191921;
}

/* 収録内容 */
.shop_detail {
    padding: 5% 0;
    margin-bottom: 5%;
}

.detail_head {
  display: flex; /* 文字と横線を横並び */
  align-items: center;
  font-size: 1.3rem;
}

.detail_head:after {
  background-color: #fff;
  content: "";
  flex-grow: 1; /* 横幅いっぱい */
  height: 1px;
}

.detail_head:after {
  margin-left: 3%; /* 文字との余白 */
}

.detail {
    padding: 3% 0 5%;
    font-size: 1.0rem;
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
/* 全体レイアウト */
.shop_wrap {
    margin-top: 10%;
}

.shop_img {
  width: 60%;
}

.shop_info {
  width: 40%;
}

/* 商品情報 */
.shop_info h3 {
    font-size: 1.5rem;
}

.info_release {
    font-size: 1.0rem;
    margin: 3% 0 5%;
}

/* 試し読みボタン */
.sample_btn {
    margin-bottom: 15px;
}

.sample_btn a {
    width: 80%;
    height: 12%;
    padding: 3%;
    font-size: 0.8rem;
}

/* 購入ボタン */
.info_btn {
    height: unset;
    row-gap: 15px;
}

.info_btn a {
    width: 80%;
    height: 12%;
    padding: 3%;
    font-size: 0.8rem;
}

/* 収録内容 */
.shop_detail {
    padding: 5% 0;
    margin-bottom: 5%;
}

.detail_head {
  font-size: 1.3rem;
}

.detail {
    padding: 3% 0 5%;
    font-size: 0.9rem;
}
}

/* スマホ */
@media screen and (max-width: 520px) {
/* 全体レイアウト */
.shop_wrap {
    margin-top: 10%;
}

/* 商品情報 */
.shop {
    display: block;
}

.shop_img,.shop_info {
  width: 100%;

}

.shop_info h3 {
    font-size: 25px;
}

.info_release {
    font-size: 18px;
}

.info_p {
    margin-bottom: 15%;
}

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

/* 試し読みボタン */
.sample_btn {
    margin-bottom: 15px;
}

.sample_btn a {
    height: 40px;
    padding: 3%;
}

/* 購入ボタン */
.info_btn {
    row-gap: 15px;
}

.info_btn a {
    height: 40px;
    padding: 3%;
}

/* 収録内容 */
.shop_detail {
    padding: 10% 0;
    margin-bottom: 10%;
}

.detail_head {
  font-size: 18px;
}

.detail_head:after {
  height: 0.5px;
}

.detail {
    padding: 3% 0 5%;
    font-size: 14px;
}

}

/* その他 */
@media screen and (max-width: 349px) {
 
}


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

制作陣

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

.creater_role {
    margin-bottom: 3%;
    font-size: 1.8rem;
}

.creater_wrap {
    padding-bottom: 5%;
}

.role {
    font-size: 1.0rem;
    text-align: center;
}

.name {
    font-size: 1.5rem;
    text-align: center;
}

.staff_wrap,.cast_wrap {
    padding-bottom: 3%;
}

.staff {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.staff_wrap li:nth-child(1),.staff_wrap li:nth-child(2) {
    width: 100%;
}

.staff_wrap li {
    width: 20%;
    margin-bottom: 4%;

}

.cast {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.cast_wrap li {
    width: 30%;
    margin-bottom: 4%;

}

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

.creater_role {
    margin-bottom: 5%;
    font-size: 20px;
}

.role {
    font-size: 12px;
}

.name {
    font-size: 18px;
}

.staff_wrap,.cast_wrap {
    padding-bottom: 7%;
}

.staff_wrap li {
    width: 33%;
    margin-bottom: 4%;

}

.cast_wrap li {
    width: 40%;
    margin-bottom: 4%;

}

}
