@charset "UTF-8";
/* ============================================
   BLOG ARCHIVE - ブログ一覧ページ
   ============================================ */
.blog__container {
  display: flex;
  gap: 40px;
  padding: 70px 0 100px;
}
@media screen and (max-width: 1024px) {
  .blog__container {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .blog__container {
    flex-direction: column;
    padding: 40px 0 60px;
    gap: 50px;
  }
}

.blog__main {
  flex: 1;
  min-width: 0;
}

.blog__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.blog__list .blog__item:last-child .blog__card {
  border-bottom: none;
  padding-bottom: 0;
  border-bottom: none;
}

.blog__item {
  opacity: 0;
  margin-bottom: 30px;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.blog__item.u-animated {
  opacity: 1;
}

.blog__card {
  display: flex;
  flex-direction: row;
  background: #fff;
  overflow: hidden;
  transition: background 0.3s ease;
  text-decoration: none;
  color: inherit;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
@media screen and (max-width: 767px) {
  .blog__card {
    flex-direction: column;
    padding-bottom: 25px;
  }
}

.blog__card-img {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}
@media screen and (max-width: 1024px) {
  .blog__card-img {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .blog__card-img {
    width: 100%;
    height: 0;
    padding-top: 100%;
  }
}
.blog__card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 5px 0 0 30px;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .blog__card-content {
    padding: 5px 0 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .blog__card-content {
    padding: 20px 0 0 0;
  }
}

.blog__card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.blog__card-date {
  font-size: 18px;
  color: #666;
  font-family: "Cormorant", serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .blog__card-date {
    font-size: 15px;
  }
}

.blog__card-new {
  display: inline-block;
  padding: 2px 8px;
  background: #975e30;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.blog__card-cat {
  display: none;
}

.blog__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .blog__card-title {
    font-size: 18px;
  }
}

.blog__card-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 767px) {
  .blog__card-excerpt {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

.blog__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #975e30;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
  align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .blog__card-button {
    font-size: 13px;
    padding: 8px 20px;
  }
}

.blog__paginate {
  /* margin-top: 60px; */
}
@media screen and (max-width: 767px) {
  .blog__paginate {
    /* margin-top: 40px; */
  }
}

/* ============================================
   BLOG SIDEBAR - サイドバー
   ============================================ */
.blog__sidebar {
  width: 300px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .blog__sidebar {
    width: 100%;
  }
}

.blog__sidebar-section {
  /* background: #fafafa;
  padding: 25px 20px; */
}

.blog__sidebar-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Cormorant", serif;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #975e30;
}
@media screen and (max-width: 767px) {
  .blog__sidebar-title {
    font-size: 16px;
  }
}

.blog__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog__sidebar-item {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 18px;
}
.blog__sidebar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog__sidebar-link {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.blog__sidebar-img {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}
.blog__sidebar-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__sidebar-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog__sidebar-date {
  font-size: 16px;
  color: #999;
  font-family: "Cormorant", serif;
  margin-bottom: 6px;
}

.blog__sidebar-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog__breadcrumb {
  margin-top: 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blog__breadcrumb {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}

/* ============================================
   BLOG ARCHIVE SECTION - アーカイブセクション
   ============================================ */
.blog__sidebar-section + .blog__sidebar-section {
  margin-top: 30px;
}

.blog__archive-list {
  display: flex;
  flex-direction: column;
}

.blog__archive-item {
  border-bottom: 1px solid #f0f0f0;
}
.blog__archive-item:last-child {
  border-bottom: none;
}

.blog__archive-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.3s ease;
}

.blog__archive-count {
  font-size: 16px;
  color: #999;
  font-family: "Cormorant", serif;
}

.blog__archive-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.blog__archive-toggle-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.blog__archive-toggle.is-open .blog__archive-toggle-icon {
  transform: rotate(180deg);
}

.blog__archive-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.blog__archive-collapsible.is-open {
  max-height: 400px;
  overflow-y: auto;
}

/* ============================================
   BLOG SINGLE - ブログ詳細ページ
   ============================================ */
.blogsingle__container {
  display: flex;
  gap: 40px;
  padding: 70px 0 80px;
}
@media screen and (max-width: 1024px) {
  .blogsingle__container {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .blogsingle__container {
    flex-direction: column;
    padding: 40px 0 60px;
    gap: 50px;
  }
}

.blogsingle__main {
  flex: 1;
  min-width: 0;
}

.blogsingle__wrapper {
  padding: 0;
}

.blogsingle__header {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blogsingle__header {
    margin-bottom: 30px;
  }
}

.blogsingle__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .blogsingle__meta {
    gap: 8px;
    margin-bottom: 16px;
  }
}

.blogsingle__date {
  font-size: 18px;
  color: #666;
  font-family: "Cormorant", serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .blogsingle__date {
    font-size: 16px;
  }
}

.blogsingle__new {
  display: inline-block;
  padding: 3px 10px;
  background: #975e30;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .blogsingle__new {
    font-size: 11px;
    padding: 2px 8px;
  }
}

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

.blogsingle__cat {
  display: inline-block;
  padding: 3px 12px;
  background: #f5f5f5;
  color: #666;
  font-size: 13px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .blogsingle__cat {
    font-size: 12px;
    padding: 2px 10px;
  }
}

.blogsingle__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .blogsingle__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .blogsingle__title {
    font-size: 24px;
  }
}

.blogsingle__mainimg {
  margin-bottom: 50px;
  overflow: hidden;
  position: relative;
  padding-top: 56.25%;
}
@media screen and (max-width: 767px) {
  .blogsingle__mainimg {
    margin-bottom: 40px;
  }
}
.blogsingle__mainimg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogsingle__content {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}
@media screen and (max-width: 767px) {
  .blogsingle__content {
    font-size: 15px;
  }
}
.blogsingle__content p {
  margin-bottom: 1.5em;
}
.blogsingle__content p:last-child {
  margin-bottom: 0;
}
.blogsingle__content h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 50px 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #975e30;
  color: #333;
}
@media screen and (max-width: 767px) {
  .blogsingle__content h2 {
    font-size: 22px;
    margin: 40px 0 20px;
    padding-bottom: 12px;
  }
}
.blogsingle__content h2:first-child {
  margin-top: 0;
}
.blogsingle__content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-left: 15px;
  border-left: 4px solid #975e30;
  color: #333;
}
@media screen and (max-width: 767px) {
  .blogsingle__content h3 {
    font-size: 19px;
    margin: 35px 0 18px;
    padding-left: 12px;
    border-left-width: 3px;
  }
}
.blogsingle__content h3:first-child {
  margin-top: 0;
}
.blogsingle__content h4 {
  font-size: 19px;
  font-weight: 700;
  margin: 35px 0 18px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .blogsingle__content h4 {
    font-size: 17px;
    margin: 30px 0 16px;
  }
}
.blogsingle__content h4:first-child {
  margin-top: 0;
}
.blogsingle__content ul,
.blogsingle__content ol {
  margin: 1.5em 0;
  padding-left: 1.8em;
}
.blogsingle__content ul li,
.blogsingle__content ol li {
  margin-bottom: 0.8em;
}
.blogsingle__content ul li:last-child,
.blogsingle__content ol li:last-child {
  margin-bottom: 0;
}
.blogsingle__content ul {
  list-style-type: disc;
}
.blogsingle__content ol {
  list-style-type: decimal;
}
.blogsingle__content img {
  max-width: 800px;
  max-height: 600px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .blogsingle__content img {
    max-width: 100%;
    max-height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .blogsingle__content img {
    max-width: 100%;
    max-height: 400px;
  }
}
.blogsingle__content a {
  color: #975e30;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.blogsingle__content blockquote {
  margin: 2em 0;
  padding: 20px 25px;
  background: #f9f9f9;
  border-left: 4px solid #975e30;
  color: #555;
}
@media screen and (max-width: 767px) {
  .blogsingle__content blockquote {
    padding: 16px 20px;
    margin: 1.5em 0;
  }
}
.blogsingle__content blockquote p:last-child {
  margin-bottom: 0;
}
.blogsingle__content code {
  padding: 2px 6px;
  background: #f5f5f5;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.blogsingle__content pre {
  margin: 2em 0;
  padding: 20px;
  background: #f5f5f5;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .blogsingle__content pre {
    padding: 16px;
    margin: 1.5em 0;
  }
}
.blogsingle__content pre code {
  padding: 0;
  background: none;
}
.blogsingle__content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
}
.blogsingle__content table th,
.blogsingle__content table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .blogsingle__content table th,
  .blogsingle__content table td {
    padding: 10px 12px;
  }
}
.blogsingle__content table th {
  background: #f5f5f5;
  font-weight: 700;
}
.blogsingle__content table tr:nth-child(even) {
  background: #fafafa;
}

.blogsingle__other {
  padding: 80px 0 60px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .blogsingle__other {
    padding: 60px 0 40px;
  }
}
.blogsingle__other-title {
  font-size: 28px;
  font-weight: 700;
  font-family: "Cormorant", serif;
  color: #333;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .blogsingle__other-title {
    font-size: 24px;
    margin-bottom: 35px;
  }
}
.blogsingle__other-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.blogsingle__other-item {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  margin-bottom: 30px;
}
.blogsingle__other-item:last-child {
  margin-bottom: 0;
}
.blogsingle__other-link {
  display: flex;
  flex-direction: row;
  background: #fff;
  overflow: hidden;
  transition: background 0.3s ease;
  text-decoration: none;
  color: inherit;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
@media screen and (max-width: 767px) {
  .blogsingle__other-link {
    flex-direction: column;
    padding-bottom: 25px;
  }
}
.blogsingle__other-img {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}
@media screen and (max-width: 1024px) {
  .blogsingle__other-img {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .blogsingle__other-img {
    width: 100%;
    height: 0;
    padding-top: 100%;
  }
}
.blogsingle__other-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blogsingle__other-link:hover .blogsingle__other-img img {
  transform: scale(1.05);
}
.blogsingle__other-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 5px 0 0 30px;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .blogsingle__other-content {
    padding: 5px 0 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .blogsingle__other-content {
    padding: 20px 0 0 0;
  }
}
.blogsingle__other-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.blogsingle__other-date {
  font-size: 16px;
  color: #666;
  font-family: "Cormorant", serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .blogsingle__other-date {
    font-size: 15px;
  }
}
.blogsingle__other-new {
  display: inline-block;
  padding: 2px 8px;
  background: #975e30;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  border-radius: 2px;
  line-height: 1.4;
}
.blogsingle__other-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}
@media screen and (max-width: 767px) {
  .blogsingle__other-title {
    font-size: 18px;
  }
}
.blogsingle__other-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 767px) {
  .blogsingle__other-excerpt {
    font-size: 13px;
  }
}

.blogsingle__back {
  text-align: center;
  margin: 60px 0 40px;
}
@media screen and (max-width: 767px) {
  .blogsingle__back {
    margin: 45px 0 35px;
  }
}

.blogsingle__breadcrumb {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blogsingle__breadcrumb {
    margin-bottom: 30px;
  }
}
