@charset "UTF-8";

/* 共通設定 =============================================================== */

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #191919;
  background-color: #fff;
}
p {
  margin: 0;
}
.WF2 {
  font-family: "Shippori Mincho", serif;
}
.WF3 {
  font-family: "EB Garamond", serif;
}


/* 波模様ヘッダー =============================================================== */
.header-wave {
  width: 100%;
  height: 30px;
  background-image: url('../img/header_line.jpg?260626');
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 30px;
}


/* 右端固定エリア =============================================================== */
.side-fixed {
	/* position: absolute; */
	position: fixed;
	top: 50px;
	right: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	z-index: 100;
}
.logo-laforet {
	width: 65px;
}
.sns-nav {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.Icon {
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #000;
	background-repeat: no-repeat;
	background-position: center;
	}
.Icon.-instagram {
    background-image: url('../img/Icon_Instagram.svg');
    background-size: 50%;
}
.Icon.-x {
    background-image: url('../img/Icon_X.svg');
    background-size: 45%;
}
.Icon.-facebook {
    background-image: url('../img/Icon_Facebook.svg');
    background-size: 30%;
}
.Icon.-line {
    background-image: url('../img/Icon_Line.svg');
    background-size: 60%;
}

@media screen and (max-width: 767px) {
  .side-fixed {
    position: static;
    max-width: 100%;
    padding: 30px 20px;
    text-align: center;
    background-color: #fff;
  }
  .logo-laforet {
    display: block;
    margin: 0 auto;
    width: 110px;
  }
  .sns-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  .sns-nav a {
    display: block;
  }
  .Icon {
    width: 33px;
    height: 33px;
	}
}


/* コンテンツエリア =============================================================== */

.main-content {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  padding: 70px 20px;
}

.hero img {
  max-width: 360px;
  width: 100%;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .main-content { padding: 50px 20px;}
  .hero img { max-width: 270px; }
}

.article-section {
  margin-top: 45px;
}

/* 見出し */
.section-title {
  text-align: left;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 18px;
}


/* --- カードグリッド（レスポンシブ対応） --- */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 767px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* 奇数個の際の最後の要素の挙動リセット */
    .article-card:last-child:nth-child(odd) {
        grid-column: auto;
        width: 100%;
        margin: 0;
    }
}


@media print, screen and (min-width: 1110px) {

	.article-grid a:link {
	transition: color 0.2s ease 0.01s, background-color 0.2s ease 0.01s, opacity 0.2s ease 0.01s;
	}

	.article-grid a:hover {
	opacity: 0.5;
	}

}


/* --- カードスタイル --- */
.article-card {
    position: relative;
    text-align: left;
}

.article-card a {
    text-decoration: none;
    color: inherit;
    display: block; /* aタグにdisplay: blockを付与するとクリック範囲が広がります */
}

/* --- カード内部パーツ --- */
.card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 15px;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }

/* 画像のズームインエフェクト */
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* ゆっくりズームさせる */
    display: block;
}

/* ホバー時に画像を拡大 */
.article-card:hover .card-img img {
    transform: scale(1.05); /* 1.05倍に拡大 */
}

/* NEWバッジ */
.article-card.-new .card-img::after {
  content: "NEW";
  position: absolute;
  top: 10px;
  right: -30px;
  width: 100px;
  background: #ff005a;
  color: #fff;
  text-align: center;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
  font-family: "EB Garamond", serif;
}

/* テキスト系 */
.shop-name { font-size: 15px; margin-bottom: 10px; border-bottom: 1px solid #191919; padding-bottom: 5px; }
.title { font-size: 15px; line-height: 1.4; margin: 10px 0; font-weight: bold; }
.author { font-size: 13px; }



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

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 60px 0 0 0;
  font-size: 14px;
}
.pager-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  color: #191919;
}
.pager-arrow:hover {
  color: #ff015b;
}
.pager-icon {
  width: 20px;
  height: auto;
}
.pager-arrow:hover .pager-icon {
  filter: invert(16%) sepia(97%) saturate(5831%) hue-rotate(334deg) brightness(98%) contrast(98%);
}



/* ページTOP =============================================================== */

#js-pagetop {
  position: fixed;
  bottom: 150px;
  right: 15px;
  z-index: 9999;
  width: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(10px);
  cursor: pointer;
  pointer-events: auto;
  /* display: flex;  ← これを削除してください */
}

#js-pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.PageTopTo {
  writing-mode: vertical-rl;
  padding-top: 30px;
  transition: color 0.3s;
  background: url(/special/journal/img/Allow_Top.png) center top / 10px 24px no-repeat;

  /* 追加：縦書きの中で文字を中央に揃える設定 */
  display: flex;          /* flexをこちらに移動 */
  flex-direction: column; /* 縦書きの方向に揃える */
  align-items: center;    /* 横方向（縦書きでは左右）の中央揃え */
  text-align: center;
}

.PageTopTo:hover {
  color: #ff015b;
  background-image: url(/special/journal/img/Allow_Top_On.png);
}

@media screen and (min-width: 768px) {
  #js-pagetop { right: 30px; }
}



/* フッター =============================================================== */

.footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background-image: url(/special/journal/img/footer_bg.jpg?260626);
  background-repeat: repeat-x;
  background-size: auto 140px;
  background-position: left top;
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  text-align: center;
}
.footer-logo {
  display: block;
  width: 70px;
  margin: 0 auto;
}
.footer-copyright {
  margin-top: 10px;
  font-size: 11px;
  text-align: center;
  color: #fff;
}