@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 英文字にMontserratフォントを適用 */
.site-name-text,
.site-title,
.entry-title,
.widget-title,
h1, h2, h3, h4, h5, h6,
.navi-in a,
.pagination-title,
.comment-title,
.related-entry-heading,
.sidebar h3 {
  font-family: 'Montserrat', sans-serif;
}

/* サイトタイトルの設定 */
.site-name-text {
  font-weight: 200; /* ExtraLight */
}

/* 見出しの設定 */
.entry-title,
h1, h2, h3, h4, h5, h6 {
  font-weight: 500; /* Medium */
}

/* メニューなどの設定 */
.navi-in a {
  font-weight: 400; /* Regular */
}
/******************************************************************************/
/* ヘッダーメニューの基本スタイル */
.navi-in a {
  font-size: 16px;
  font-weight: 500;
  color: #211814;
  padding: 0 20px;
  transition: all 0.3s ease;
}

/* メニューホバー時のエフェクト */
.navi-in a:hover {
  background-color: transparent !important;
  color: #A47864;
}

/* メニュー下線アニメーション */
.navi-in a::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #A47864;
  transition: all 0.3s ease;
}

.navi-in a:hover::after {
  width: 100%;
}

/* サブメニューのスタイル */
.navi-in > ul .sub-menu {
  background: #f6f2f0;
  border: 1px solid #e5e0dd;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.navi-in > ul .sub-menu a {
  padding: 10px 15px;
  color: #211814;
}

.navi-in > ul .sub-menu a:hover {
  background: #e5e0dd;
}

/* ヘッダー全体に薄いシャドウを追加 */
#header-container {
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

/* メニュー間のセパレーター */
.navi-in > ul > li + li {
  border-left: 1px solid #e5e0dd;
}
/******************************************************************************/
/* 固定ページの背景色をサイト全体の背景色(#f6f2f0)と統一するための設定 */
.page .article {
  background-color: #f6f2f0;
}
/* 固定ページの上下左右の余白も含めて背景色を統一する設定 */
#content, #main, .main, .content, .article-header, .entry-content {
  background-color: #f6f2f0;
}

/* 記事コンテンツの余白を調整 */
.article {
  padding: 0;
  margin: 0;
  box-shadow: none;
  border: none;
}
/******************************************************************************/
/* 基本の見出しデザイン設定 */
/*H2見出し - より軽やかなデザインに変更*/
.entry-content h2 {
    font-size: 20px;
    position: relative;
    padding: 15px 20px 15px 25px;
    color: #505050;
    background: #f9f3f1;
    border-left: 5px solid #A47864;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5em;
    margin-top: 2em;
    border-radius: 3px;
}

.entry-content h2:before {
    content: '';
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 5px;
    height: 50%;
    background-color: #C4A394;
}

/*H3見出し*/
.entry-content h3 {
    color: #505050;
    font-size: 18px;
    padding: 10px 0 10px 15px;
    display: block;
    position: relative;
    border-left: 8px solid #A47864;
    background: #f9f3f1;
    margin-top: 1.5em;
    margin-bottom: 1em;
}

.entry-content h3:before {
    position: absolute;
    content: '';
    left: -8px;
    bottom: 0;
    width: 8px;
    height: 50%;
    background-color: #C4A394;
}

/*H4見出し*/
.entry-content h4 {
    color: #505050;
    font-size: 16px;
    padding: 8px 0 8px 35px;
    display: block;
    position: relative;
    border-bottom: 1px dotted #A47864;
    margin-top: 1.2em;
    margin-bottom: 0.8em;
}

.entry-content h4:before {
    content: "❖";
    font-weight: 900;
    position: absolute;
    font-size: 20px;
    left: 5px;
    top: 7px;
    color: #A47864;
}

/******************************************************************************/
/* サイトについてセクションのスタイル */
.about-site-section {
  margin: 50px 0;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-title {
  font-size: 24px;
  color: #505050;
  margin-bottom: 30px;
  position: relative;
  padding-left: 15px;
  border-left: 5px solid #A47864;
}

.site-name {
  font-size: 20px;
  color: #A47864;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.about-site-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #505050;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 0 10px;
}

.category-button {
  display: inline-block;
  padding: 12px 25px;
  margin-bottom: 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: 48%;
  transition: all 0.3s ease;
}

.category-button:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.maternity-btn {
  background: #f4d8df;
  color: #505050;
}

.pregnancy-btn {
  background: #C7ACAE;
  color: #fff;
}

.hairstyle-btn {
  background: #958ea8;
  color: #fff;
}

.recipe-btn {
  background: #DCB29E;
  color: #fff;
}

/* モバイル対応 */
@media screen and (max-width: 480px) {
  .about-site-section {
    padding: 20px 15px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .site-name {
    font-size: 18px;
  }
  
  .category-button {
    width: 100%;
  }
}
/******************************************************************************/
/* もっと見るボタンのスタイル */
.more-button-container {
  text-align: center;
  margin: 30px 0 50px;
}

.more-button {
  display: inline-block;
  background-color: #A47864;
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.more-button:hover {
  background-color: #8a6553;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.more-button .arrow {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.more-button:hover .arrow {
  transform: translateX(5px);
}

/* モバイル対応 */
@media screen and (max-width: 480px) {
  .more-button {
    padding: 10px 30px;
    font-size: 14px;
    width: 80%;
  }
}
/******************************************************************************/
/* Special Interviewセクションのスタイル */
.interview-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px 0;
  background-color: #ffffff;
}

.interview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.interview-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #A47864;
  position: relative;
  font-weight: bold;
}

.interview-heading:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #A47864;
  margin: 15px auto 0;
}

/* インタビューカードのレイアウト */
.interview-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.interview-card {
  width: 300px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.interview-card:hover {
  transform: translateY(-5px);
}

.interview-image-link {
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.interview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.interview-card:hover .interview-image {
  transform: scale(1.05);
}

.interview-title {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 20px 10px;
  line-height: 1.4;
}

.interview-title a {
  color: #505050;
  text-decoration: none;
}

.interview-title a:hover {
  color: #A47864;
}

.interview-excerpt {
  font-size: 14px;
  color: #666;
  margin: 0 20px 15px;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  font-size: 14px;
  color: #A47864;
  text-decoration: none;
  margin: 0 20px 20px;
  position: relative;
}

.read-more:after {
  content: '›';
  margin-left: 5px;
  font-size: 18px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.read-more:hover:after {
  transform: translateX(3px);
}

/* もっと見るボタン - 軽いデザイン */
.more-button-container {
  text-align: center;
  width: 100%;
}

.more-button {
  display: inline-block;
  background-color: transparent;
  color: #A47864;
  padding: 10px 35px;
  border: 2px solid #A47864;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.more-button:hover {
  background-color: #A47864;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.more-button .arrow {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.more-button:hover .arrow {
  transform: translateX(5px);
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .interview-cards {
    gap: 20px;
  }
  
  .interview-card {
    width: 45%;
  }
  
  .interview-image-link {
    height: 200px;
  }
}

@media screen and (max-width: 480px) {
  .interview-card {
    width: 100%;
  }
  
  .interview-heading {
    font-size: 24px;
  }
}/******************************************************************************/
/*---------------------------------
トップページの日付を非表示にする
--------------------------------*/
.post-6 .date-tags {
  display: none;
}
/******************************************************************************/
/* サイドバー商品表示のスタイル */
.sidebar-product {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.ad-disclosure {
  font-size: 12px;
  color: #888;
  margin: 0 0 10px;
  text-align: right;
}

.sidebar-product img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product-title {
  font-weight: bold;
  margin: 10px 0 5px;
  color: #505050;
}

.product-description {
  font-size: 13px;
  color: #666;
  margin: 5px 0 0;
}
/******************************************************************************/
/*フロント固定ページの投稿者名を非表示*/
.home.page .author-info{
  display: none;
}

/******************************************************************************/
/* レシピ人気記事セクションのスタイル */
.recipe-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px 0;
  background-color: #f6f2f0;
}

.recipe-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.recipe-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #A47864;
  position: relative;
  font-weight: bold;
}

.recipe-heading i {
  margin: 0 10px;
  color: #A47864;
}

.recipe-heading:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #A47864;
  margin: 15px auto 0;
}

/* レシピカードのレイアウト */
.recipe-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.recipe-card {
  width: calc(20% - 16px);
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.recipe-card:hover {
  transform: translateY(-5px);
}

.recipe-image-link {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  overflow: hidden;
}

.recipe-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-image {
  transform: scale(1.05);
}

.recipe-title {
  font-size: 16px;
  font-weight: bold;
  margin: 12px 15px;
  line-height: 1.4;
  text-align: center;
}

.recipe-title a {
  color: #505050;
  text-decoration: none;
}

.recipe-title a:hover {
  color: #A47864;
}

/* もっと読むボタン */
.more-button-container {
  text-align: center;
  width: 100%;
}

.more-button {
  display: inline-block;
  background-color: #A47864;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.more-button:hover {
  background-color: #8a6553;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.more-button i {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.more-button:hover i {
  transform: translateX(5px);
}

/* モバイル対応 */
@media screen and (max-width: 992px) {
  .recipe-card {
    width: calc(25% - 15px);
  }
}

@media screen and (max-width: 768px) {
  .recipe-card {
    width: calc(33.333% - 14px);
  }
}

@media screen and (max-width: 480px) {
  .recipe-card {
    width: calc(50% - 10px);
  }
  
  .recipe-heading {
    font-size: 24px;
  }
  
  .recipe-heading i {
    font-size: 18px;
    margin: 0 6px;
  }
}
/******************************************************************************/
/* 医師・専門家監修記事セクションのスタイル */
.expert-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px 0;
  background-color: #ffffff;
}

.expert-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.expert-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #A47864;
  position: relative;
  font-weight: bold;
}

.expert-heading i {
  margin: 0 10px;
  color: #A47864;
}

.expert-heading:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #A47864;
  margin: 15px auto 0;
}

/* 専門家カードのレイアウト */
.expert-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.expert-card {
  width: calc(50% - 15px);
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e8e8e8;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.expert-card-content {
  display: flex;
  flex-direction: column;
}

.expert-image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9のアスペクト比 */
  overflow: hidden;
}

.expert-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-profile {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  display: flex;
  align-items: center;
}

.expert-profile-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  border: 2px solid #fff;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-name {
  font-size: 14px;
  margin: 0;
}

.expert-name span {
  font-weight: bold;
}

.expert-text-container {
  padding: 20px;
}

.expert-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 12px;
  line-height: 1.4;
}

.expert-title a {
  color: #505050;
  text-decoration: none;
  transition: color 0.3s ease;
}

.expert-title a:hover {
  color: #A47864;
}

.expert-excerpt {
  font-size: 14px;
  color: #666;
  margin: 0 0 15px;
  line-height: 1.6;
}

.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expert-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.expert-tag.obgyn {
  background-color: #f8e1e8;
  color: #d35d90;
}

.expert-tag.fertility {
  background-color: #e1f0f8;
  color: #5d93d3;
}

.expert-tag.nutrition {
  background-color: #e8f8e1;
  color: #5db85d;
}

.expert-tag.urology {
  background-color: #e1e8f8;
  color: #5d6ed3;
}

/* もっと見るボタン */
.more-button-container {
  text-align: center;
  width: 100%;
}

.more-button.light {
  display: inline-block;
  background-color: transparent;
  color: #A47864;
  padding: 10px 30px;
  border: 2px solid #A47864;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.more-button.light:hover {
  background-color: #A47864;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.more-button.light i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.more-button.light:hover i {
  transform: translateX(5px);
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .expert-card {
    width: 100%;
  }
  
  .expert-heading {
    font-size: 24px;
  }
  
  .expert-profile-image {
    width: 40px;
    height: 40px;
  }
  
  .expert-name {
    font-size: 12px;
  }
}
/******************************************************************************/
/* 人気のカテゴリーセクションのスタイル */
.category-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px 0;
  background-color: #f6f2f0;
}

.category-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.category-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #A47864;
  position: relative;
  font-weight: bold;
}

.category-heading i {
  margin: 0 10px;
  color: #A47864;
}

.category-heading:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #A47864;
  margin: 15px auto 0;
}

/* カテゴリーカードのレイアウト */
.category-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.category-card {
  width: calc(33.333% - 20px);
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 25px;
  text-align: center;
  border-top: 5px solid;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.category-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.category-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.category-link {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.category-link:hover i {
  transform: translateX(3px);
}

/* カテゴリー別のカラー設定 - 指定された配色に準じて */
.category-card.maternity {
  border-color: #f4d8df;
}
.category-card.maternity .category-icon,
.category-card.maternity .category-link {
  color: #f4d8df;
}

.category-card.fertility {
  border-color: #C7ACAE;
}
.category-card.fertility .category-icon,
.category-card.fertility .category-link {
  color: #C7ACAE;
}

.category-card.hair-catalog {
  border-color: #958ea8;
}
.category-card.hair-catalog .category-icon,
.category-card.hair-catalog .category-link {
  color: #958ea8;
}

.category-card.mens-hair {
  border-color: #637fbd;
}
.category-card.mens-hair .category-icon,
.category-card.mens-hair .category-link {
  color: #637fbd;
}

.category-card.ladies-hair {
  border-color: #de899f;
}
.category-card.ladies-hair .category-icon,
.category-card.ladies-hair .category-link {
  color: #de899f;
}

.category-card.recipes {
  border-color: #DCB29E;
}
.category-card.recipes .category-icon,
.category-card.recipes .category-link {
  color: #DCB29E;
}

/* モバイル対応 */
@media screen and (max-width: 992px) {
  .category-card {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 576px) {
  .category-card {
    width: 100%;
  }
  
  .category-heading {
    font-size: 24px;
  }
}
/******************************************************************************/
/* 出版物セクションのスタイル */
.publication-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px 0;
  background-color: #ffffff;
}
.publication-section {
  background-color: #ffffff !important;
}

.publication-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.publication-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #A47864;
  position: relative;
  font-weight: bold;
}

.publication-heading i {
  margin: 0 10px;
  color: #A47864;
}

.publication-heading:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #A47864;
  margin: 15px auto 0;
}

/* 出版物カードのレイアウト */
.publication-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.publication-card {
  width: calc(25% - 20px);
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.publication-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.publication-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.publication-image-container {
  width: 100%;
  padding-top: 140%; /* 本の表紙の比率に合わせる */
  position: relative;
  overflow: hidden;
}

.publication-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.publication-card:hover .publication-image {
  transform: scale(1.05);
}

.publication-title {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 15px 5px;
  line-height: 1.4;
  color: #505050;
  text-align: center;
  height: 45px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.publication-description {
  font-size: 14px;
  color: #888;
  margin: 0 15px 15px;
  text-align: center;
}

.publication-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4d8df;
  color: #A47864;
  padding: 10px;
  margin: 0 15px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.publication-card:hover .publication-button {
  background-color: #A47864;
  color: #fff;
}

.publication-button i {
  margin-left: 8px;
  font-size: 12px;
}

.publication-notice {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-top: 20px;
}

.publication-notice i {
  margin-right: 5px;
}

/* モバイル対応 */
@media screen and (max-width: 992px) {
  .publication-card {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 576px) {
  .publication-card {
    width: 100%;
    max-width: 300px;
  }
  
  .publication-heading {
    font-size: 24px;
  }
  
  .publication-image-container {
    padding-top: 130%;
  }
}
/******************************************************************************/
/* お知らせセクションのスタイル */
.news-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px 0;
  background-color: #f6f2f0f;
}

.news-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #A47864;
  position: relative;
  font-weight: bold;
}

.news-heading i {
  margin: 0 10px;
  color: #A47864;
}

.news-heading:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #A47864;
  margin: 15px auto 0;
}

/* お知らせリストのレイアウト */
.news-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  border-top: 1px solid #e8e8e8;
}

.news-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
  transition: background-color 0.3s ease;
}

.news-item:hover {
  background-color: #f9f9f9;
}

.news-date {
  width: 120px;
  flex-shrink: 0;
  font-size: 14px;
  color: #888;
  padding-top: 3px;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.5px;
}

.news-content {
  flex-grow: 1;
}

.news-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
  line-height: 1.4;
}

.news-title a {
  color: #505050;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: #A47864;
}

.news-excerpt {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* もっと見るボタン */
.more-button-container {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.more-button.light {
  display: inline-block;
  background-color: transparent;
  color: #A47864;
  padding: 10px 30px;
  border: 2px solid #A47864;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.more-button.light:hover {
  background-color: #A47864;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.more-button.light i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.more-button.light:hover i {
  transform: translateX(5px);
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .news-item {
    flex-direction: column;
  }
  
  .news-date {
    width: 100%;
    margin-bottom: 8px;
  }
  
  .news-heading {
    font-size: 24px;
  }
  
  .news-title {
    font-size: 16px;
  }
}
/******************************************************************************/
/* 広告セクションのスタイル */
.ad-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px 0;
  background-color: #ffffff;
}

.ad-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ad-notice {
  text-align: center;
  margin-bottom: 20px;
}

.ad-notice p {
  display: inline-block;
  font-size: 12px;
  color: #888;
  margin: 0;
  padding: 4px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.ad-notice i {
  margin-right: 5px;
}

.ad-leaderboard {
  text-align: center;
  margin-bottom: 30px;
}

.ad-leaderboard img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 4px;
}

.ad-rectangles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.ad-rectangle {
  flex: 0 0 auto;
}

.ad-rectangle img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.ad-rectangle img:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* モバイル対応 */
@media screen and (max-width: 992px) {
  .ad-rectangles {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .ad-rectangles {
    flex-direction: column;
    align-items: center;
  }
  
  .ad-rectangle {
    margin-bottom: 20px;
  }
  
  .ad-rectangle:last-child {
    margin-bottom: 0;
  }
}
/******************************************************************************/
/* フッターのスタイル */
.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #f6f2f0;
  padding: 60px 0 0;
  color: #505050;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* ロゴエリア */
.footer-logo-area {
  width: 30%;
  padding-right: 40px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
}

.footer-description {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #505050;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #A47864;
  color: #fff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #8a6553;
  transform: translateY(-3px);
}

/* ナビゲーションエリア */
.footer-nav-area {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
}

.footer-nav-column {
  width: 20%;
  padding: 0 15px;
}

.footer-nav-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #A47864;
  position: relative;
  padding-bottom: 8px;
}

.footer-nav-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #A47864;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list a {
  color: #505050;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-list a:hover {
  color: #A47864;
}

/* フッターボトム */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-policy-links {
  display: flex;
  gap: 20px;
}

.footer-policy-links a {
  font-size: 12px;
  color: #505050;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-policy-links a:hover {
  color: #A47864;
}

/* モバイル対応 */
@media screen and (max-width: 992px) {
  .footer-logo-area {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .footer-nav-area {
    width: 100%;
  }
  
  .footer-nav-column {
    width: 33.333%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer-nav-column {
    width: 50%;
  }
}

@media screen and (max-width: 576px) {
  .footer-nav-column {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-policy-links {
    flex-direction: column;
    gap: 10px;
  }
}
/******************************************************************************/

/******************************************************************************/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
