
@charset "UTF-8";
/*
Theme Name: Ristorante il Cucina
Description: Italian Restrant
Author: T.Ohmori
Version: 1.0
*/
html {
  scroll-behavior: smooth;
  scroll-padding: 58px;
}
/* リセット */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #ede5df;
  color: #442c03;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ヘッダー固定 */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  font-size: 40px;
  font-weight: bold;
  color: #442c03;
  font-family: "Lobster", sans-serif;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.main-nav li a {
  font-weight: 500;
}
.reserve-btn {
  background: #cc860c;
  color: #fff;
  width: 120px;
  height: 120px;
  margin-bottom: -60px;
  outline: 3px solid white;/*outlineでドットの線を追加*/
  outline-offset: -6px;/*outline-offsetの値を-10pxにして内側に調整*/
  border-radius: 50%;
  display: flex;
  font-size: 15px;
  opacity: 1;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
/*    right: 20px;*/
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 20px;
    gap: 10px;
  }
  .nav-list.active {
    display: flex;
  }
  .container {
    flex-direction: row-reverse;
    justify-content: space-around;
    padding: 0;
  }
  .reserve-btn {
    display:none;
  }
}

/********************************/
/* Heroセクション（背景画像＋ブレンド） */
.hero-section {
  position: relative;
  width: 100%;
  height: 60vh; 
  background: url('images/hero.jpg') no-repeat center center/cover;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #442c03;
  opacity: 0.7; /* ブレンドの濃さ（調整可能） */
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 20px;
  color: #fff;
}

.hero-overlay h2 {
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 300%;
  text-align: center;
}

.hero-overlay p {
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}
/******************************/
@media screen and (max-width: 768px) {
  .top-controls {
    display: none;
  }

  .hero-overlay {
    margin: 0 0 220px 0;

  }
  .hero-overlay h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
/* 各セクション共通 */
/* セクションタイトル　レイアウト */
.section-block {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.section-block .blank {
  margin-bottom: 10px;
}
.section-header {
  margin-bottom: 30px;
}

.section-title {
  font-size: 24px;
  color: #1b1b1b;
  margin-bottom: 16px;
  text-align: center;
}
.section-subtitle {
  font-size: 14px;
  color: #1b1b1b;
  white-space: nowrap;
  text-align: center;
}

.section-sub {
  max-width: 570px;
  margin-left: 360px;
  margin-top: 120px;
}
.section-sub h3{
  font-size: 21px;
  font-weight: bold;
  text-align: left;
  width: 100%;
  letter-spacing: 4px;
  line-height: 144%;
  padding: 10px;
}
.section-sub p{
  margin-top: 25px;
  padding: 10px;
}

.section-description {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  flex: 1;
  min-width: 200px;
  text-align: left;
}

/* コンセプトセクション */
.concept-content {
  display: flex;
  flex-wrap:nowrap;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-evenly;
  flex-direction: row;
}
.concept-text {
/*  flex: 1;*/
display:flex;
  min-width: 410px;
  max-width: 725px;
  flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}
.concept-text h3{
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  width: 415px;
  letter-spacing: 4px;
  line-height: 144%;
}
.concept-text p{
  text-align: center;
  margin-top: 25px;
  padding: 20px 0;
  line-height: 200%;
}

.concept-image {
  flex: 1;
  min-width: 368px;
}
.concept-image img {
  width: 100%;
  border-radius: 8px;
}
.concept-sub-image {
  min-width: 400px;
}
.concept-sub-image img{
  width: 80%;
  border-radius: 8px;
}
.concept-content2 {
  display:flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 200px;
}
.concept-image2 {
  width:30%;
  margin: 0 100px 70px 50px;
}
.concept-image2 img {
  border-radius: 8px;
  max-width: 80%;
  margin: 80px;
}
.concept-image3 {
  width:30%;
  margin: 120px 0;
}
.concept-image3 img {
  border-radius: 8px;
  max-width: 80%;
  margin: 150px 0 0;
}
/******************************/
@media screen and (max-width: 768px) {
  .concept-content {
    flex-direction: column;
    align-items: center;
  }

  .concept-content2 {
    gap: 0;
    flex-direction: column;
  }
  
  .concept-image2,
  .concept-image3  {
    width: 100%;
    margin: 0 auto;
  }
  .concept-image2 img {
    max-width: 150%;
    width: 68%;
/*  margin: 0 auto;*/
  }
  .concept-image3 img {
    max-width: 150%;
    width: 68%;
    margin: 0 0px 20px 73px;
  }
  .concept-sub-image img {
    width: 100%; 
    margin: 0 auto;
  }
}

/* シェフセクション */
/********************/
.chef-section {
  position: relative;
  width: 100%;
  background-color: #442c03;
  color: #fff;
  overflow: hidden;
}

.chef-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 50vh;
  min-height: 400px;
}

.chef-image {
  position: relative;
  flex: 1;
  min-width: 50%;
  overflow: hidden;
}
.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 19% center; /* ←ここを追加・調整 */
  display: block;
}
/******************************/
/* ここがポイント 　　　　　　　　*/
.chef-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(68,44,3,0) 30%, rgba(68,44,3,0.6) 70%, #442c03 90%);
  pointer-events: none;
}

.chef-content {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chef-title {
  font-size: 24px;
  color: #ede5df;
/*  font-weight: bold;*/
  margin-bottom: 24px;
}

.chef-name {
  font-size: 20px;
  margin-bottom: 20px;
/*  font-style: italic;*/
  font-weight: 500;
}

.chef-description {
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .chef-content {
    align-items: center;
  }
  .chef-image img {
    object-position: 22% center; /* ←ここを追加・調整 */

  }
  .chef-container {
    flex-direction: column;
    align-items: center;
    height:100%;
  }
  .chef-image::after {
  background: linear-gradient(transparent 47%, #442c03 72%);
 
  }
}
/**********************/
/* メニューセクション */
.menue-section {
  margin-bottom: 100px;
}
.menu-content {
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-top: 230px;
}
.cuisine-left img{
  position: absolute;
  width: 45%;
  height: 45%;
  max-width: 550px;
  margin: -290px 0 0 -190px;
}
.cuisine-under {
  display:flex;
  flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
}
.cuisine-under-right img{
  width: 69%;
  height: 30%;
  margin: -58px 0 0px 223px;
}
.cuisine-under-left img{
  width: 37%;
  height: 54%;
  margin: 0 0 0 80px;
}
.menu-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border-bottom: solid;
}
.menu-title h3{
  font-weight: bold;
  line-height: 190%;
}
.menu-title p{
  padding-left: 1em;
}
.menu-items {
  width: 300px;
  line-height: 190%;
  }
.menu-items li{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.menu-item {
  text-align: center;
  max-width: 260px;
}
.menu-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
/* 2nd message paragraph */
.message-paragraph {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}

.message-paragraph h3{
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  width: 415px;
  letter-spacing: 4px;
  line-height: 144%;
}
.message-paragraph p{
  margin-top: 25px;
  padding: 20px 0;
  text-align: center;
}
.cuisine-box {
  display:flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
/*  gap: 5px;*/
}
.cuisine-box p{
  width:100%;

}
.cuisine-box img {
  width: 215px;
  height: 100%;
  /* margin: 10px; */
  padding: 6px;
}
/******************************/
@media screen and (max-width: 768px) {
  .section-sub {
    margin: 30px; 
  }
  .menu-content {
    width:auto;
    position: relative;
    margin: 0 auto;
  }
  .menu-content{
    margin-top: 20px;
  }
  .cuisine-left,
  .cuisine-under-left,
  .cuisine-under-right  {
    width: 68%;
  }
  .cuisine-left img{
    position: relative;
    width: 100%;
    margin: 0 0 0 68px;
  }
  .cuisine-under {
    flex-direction: column;
    align-items: center;
  }
  .cuisine-under-right img,
  .cuisine-under-left img{
    width: 100%;
    margin: 0 auto;
  }
  .message-paragraph {
    margin: 30px; 

  }
  .message-paragraph p{
    text-align: left; 
    
  }
  .cuisine-box {
    flex-direction: column;
  }
}

/* NEWSセクション */
.news-section {
  padding: 80px 20px;
  background: #fff;
}
.news-section .container {
  display: flex;
  /* gap: 80px; */
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
}

.news-list {
  list-style: none;
  padding: 0;
 /* margin: 0 0 30px;*/
  display: flex;
  flex-direction: column;
  gap: 0.3846153846em;
  margin-inline: auto;
}
.news-item a {

  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;

}
.news-item a {
  grid-template-areas: "date category title";
  grid-template-columns: auto 6rem 1fr;
  column-gap: 1.0416666667vw;
}
.news-item .date {
  width: 7cap;
/*  color: #999;*/
}
.news-item .category {
  font-size: 12px;
  width: 70px;
  grid-area: category;
  color: #cc860c;
  line-height: 1;
  padding: 3px 0.7692307692em;
  border-top: 1px solid #cc860c;
  border-bottom: 1px solid #cc860c;
  text-align: center;
  letter-spacing: 0.04em;
}
.news-item .title {
  flex: 1;
}

/* 一覧へボタン */
.news-more {
  text-align: right;
}
.news-more a {
  font-size: 14px;
  color: #cc860c;
  font-weight: bold;
}
.news-more a i {
  margin-right: 6px;
}
/* モバイル対応（幅768px以下） */
@media (max-width: 768px) {
  .news-item a {
    column-gap: 1.7vw;
  }
}
/* INFOパートとACCESSパート 基本レイアウト */
.info-access-section {
  padding: 80px 20px;
  background: #fcfcfc;
}
.info-access-container {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
}
/* INFOパートとACCESSパート共通 */
.info-part, .access-part {
  flex: 1;
  min-width: 300px;
}
.info-description, .info-notes, .access-info, .access-detail {
  margin: 10px 15px 20px 15px;
}
/* 画像・地図共通 */
.info-image img, .access-map iframe {
  width: 100%;
  height: auto; /* 追加 */
  border-radius: 8px;
  object-fit: cover; /* きれいに収まる */
}
.access-map iframe {
  width: 100%;
  height: 315px;
  border-radius: 8px;
}
.info-notes p{
  color: #cc860c;
}
/* INFOパート*/
/* 詳細テーブルのあしらい */
.info-hours {
  margin: 10px 15px 20px 15px;
  border-spacing: 0;
  line-height: 0%;

} 
.info-hours tbody {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-around;
}
.info-hours tr {
  padding: 3px;
}
.info-hours th {
  width:60px;
  background: #ede5df;/*背景色*/
  padding: 1em;/*文字周りの余白*/
  border-radius: 0.5em;/*角丸*/
  text-align: center;
}

.info-hours td {
  padding: 1rem;
}
/* INFOボタン */
.info-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row;
  justify-content: space-between;
}

.info-buttons .btn {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  border: double 6px white;
  border-radius: 4px;
  font-size: 14px;
  width: 200px;
  text-align: center;
}
.info-buttons .tel-btn {
  background: #cc860c;
}
.info-buttons .reservation-btn :hover {
  color: #cc860c;
  background-color: #f0fff0;
}
.info-buttons i {
  margin-right: 6px;
}
.info-buttons .reservation-btn {
  background: #cc860c;
}

/* ACCESSパート */
.access-section {
  padding: 80px 20px;
  background: #f7f2ee;
}
.access-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}
.access-info {
  flex: 1;
  min-width: 260px;
  font-size: 16px;
  line-height: 1.8;
}
/*
.access-map {
  flex: 1;
  min-width: 300px;
}
*/  


/* ACCESS詳細のあしらい */
.access-vehicle {
  display:flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 10px;
}
.access-icon i{
  color: #cc860c;
  padding-right: .5em;
}
.access-time {
  background: #ede5df;
  margin-left: 20px;
}

/* モバイル対応（幅768px以下） */
@media (max-width: 768px) {
  .info-hours, 
  .access-info, 
  .access-detail,
  .access-vehicle{
    margin: 10px 0 0 0;
    font-size: 15px;
  }
  .info-access-container {
    flex-direction: column;
    align-items: center;
  }

  .info-part, .access-part {
    width: 100%;
  }

  .info-image img,
  .access-map iframe {
    width: 100%;
    max-width: 600px;
    height: auto;
  }
  .info-notes {
    margin: 10px;
  }
  .info-buttons {
    justify-content: center;
  }
  /*
  .access-info .access-detail {
    margin: 10px;
  }*/
}


/* トップに戻るボタン */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #a62c2b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 999;
}
.back-to-top.active {
  opacity: 1;
  pointer-events: auto;
}

/* フッター */
.site-footer {
  background: #442c03;
  color: #fff;
  padding: 50px 20px 20px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
/*********************************/
.site-footer {
  position: relative;
  background: url('images/restrant_inner.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 50px 20px 20px;
  overflow: hidden;
}
.site-footer::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, #442c0385, #442c03 38%); 
  opacity: 0.93; /* ブレンドの濃さ：0～1で調整 */
  z-index: 1;
}

.footer-inner, .footer-bottom {
  position: relative;
  z-index: 2;
}
/*********************************/
.footer-left {
  flex: 1;
}
.footer-left .access-info ul {
  padding-left:0;
  line-height: normal;
}
.footer-left .access-info li{
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
}
.footer-left .access-info span {
  width:70px;
  border: solid 2px  #cc860c;  
  border-radius: 0.5em;/*角丸*/
  padding: .1em;/*文字周りの余白*/
  text-align: center;
}
.footer-left .access-info p{
  color: #ede5df;
}
.footer-info-hours {
/*  margin: 10px 15px 20px 15px;*/
  border-spacing: 0;
  line-height: 0%;
}
.footer-info-hours tr {
    padding: 3px;
}
.footer-info-hours th {
  width:60px;
  border: solid 1px  #cc860c;  
  border-radius: 0.5em;/*角丸*/
  padding: 1em;/*文字周りの余白*/

  text-align: center;
}
.footer-center {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}
.footer-logo {
  font-size: 40px;
  font-weight: bold;
  color: #ede5df;
  font-family: "Lobster", sans-serif;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: right;
}
.footer-nav li {
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  font-size: 14px;
}
.footer-sns i {
  font-size: 1.6em;
  padding: 3px;
  margin-top: 78px;
}
.footer-sns a {
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #eee;
}
.footer-bottom p{
  text-align: center;
}
@media (max-width: 768px) {
  .footer-nav {
    display:none;
  }
  .footer-inner {
    align-items: center;
    flex-direction: column;
  }
}
/***** NEWS SINGLE ***********/
.news-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.box-white {
  display:flex;
  align-items: center;
}
.news-wrapper .box-white {
  padding: 26px 7.282% 14px 0;
}
.news-wrapper .main-content {
  width: 61.551%;
}
.news-wrapper .sidebar {
  width: 32.931%;
}

.news-title {
  margin-bottom: 1em;
  font-family: "Marcellus", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .news-title {
    font-size: 1.125rem;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}
.wp-pagenavi span, .wp-pagenavi a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #444444;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: 0.3s ease-in;
}
.wp-pagenavi span:not(:last-child), .wp-pagenavi a:not(:last-child) {
  margin-right: 2.622%;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi span, .wp-pagenavi a {
    font-size: 0.875rem;
  }
}
.wp-pagenavi span:hover, .wp-pagenavi a:hover {
  background-color: #1576BE;
  color: #FFFFFF;
}
.wp-pagenavi span.current {
  background-color: #1576BE;
  color: #FFFFFF;
}
.wp-pagenavi a {
  color: #666666;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  width: auto;
  padding: 5px 1.2em;
}
.post .box-white {
  padding-right: 5.882%;
/*  padding-left: 5.882%;*/
}
.post-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
  font-size: 0.875rem;
  color: #555555;
  padding: 5px;
  font-weight: bold;
}
/*
.post-header time {
  margin-bottom: 0.5em;
}*/
.post-header .cat-list {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .post-header .cat-list {
    font-size: 0.8125rem;
  }
}
.cat-list {
  font-size: 16px;
  width: 108px;
  grid-area: category;
  color: #cc860c;
  line-height: 1;
  padding: 3px 0.7692307692em;
  border-top: 1px solid #cc860c;
  border-bottom: 1px solid #cc860c;
  text-align: center;
  letter-spacing: 0.04em;
}
.post-header .cat-list > li {
  padding-right: 18px;
  padding-left: 18px;
}
.post-title {
  margin-bottom: 0.718em;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.468;
}
@media screen and (max-width: 768px) {
  .post-title {
    font-size: 1.375rem;
  }
}
.post-wrapper {
  line-height: 1.75;
  letter-spacing: 0.11em;
}
.post-wrapper > * {
  margin-bottom: 36px;
}
.post-wrapper h2 {
  padding-left: 1.166em;
  margin-bottom: 1.5em;
  border-left: 3px solid #333;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .post-wrapper h2 {
    font-size: 1.125rem;
  }
}
.post-wrapper h3 {
  padding: 10px 4.444%;
  margin-bottom: 1.318em;
  background-color: #E2EBEF;
  border-radius: 10px;
  font-size: 1.375rem;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .post-wrapper h3 {
    font-size: 1rem;
  }
}
.post-wrapper .images-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.post-wrapper .images-wrapper.col2 {
  margin-bottom: 0;
}
.post-wrapper .images-wrapper.col2 > a {
  width: 47.46%;
  margin-bottom: 36px;
}
.post .eyecatch {
  height: 0;
  padding-top: 59.841%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.post .eyecatch img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  margin-top: 28px;
  margin-bottom: 58px;
  border-top: 1px dashed #666666;
  border-bottom: 1px dashed #666666;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666666;
}
@media screen and (max-width: 768px) {
  .page-nav {
    font-size: 0.8125rem;
  }
}
.page-nav > li {
  min-width: 5em;
}
.page-nav > li:first-of-type a::after {
  right: auto;
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}
.page-nav a {
  display: inline-block;
  min-width: 5em;
  padding: 5px 14px;
  position: relative;
}
.page-nav a.to-archive {
  font-weight: bold;
  color: #333;
}
.page-nav a.to-archive::after {
  content: none;
}
.page-nav a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #666666;
  border-right: 1px solid #666666;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}