@charset "UTF-8";
/*
Theme Name: CAFE & DELI KITAZAWA
Theme URI: 
Description:  
Author: 
Author URI: 
Version: 1.0
*/
/* トップページ */
.home .newsSec .news__inner {
  display: flex;
  gap: 60px;
  background: #fff;
  padding: 40px 30px;
}
@media screen and (max-width: 767px) {
  .home .newsSec .news__inner {
    flex-direction: column;
    gap: 20px;
  }
}
.home .newsSec .news-title h2 {
  font-size: clamp(1.875rem, 1.669rem + 0.94vw, 2.375rem);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.home .newsSec .news-title h2 span {
  font-size: clamp(0.75rem, 0.699rem + 0.24vw, 0.875rem);
  font-weight: 400;
  display: block;
  position: relative;
  padding-bottom: 10px;
}
.home .newsSec .news-title h2 span::after {
  content: "";
  height: 2px;
  width: 95%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-color);
  line-height: 1.4;
}
.home .newsSec .news-list li a {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
}
.home .newsSec .news-list li:first-child {
  border-bottom: 1px dotted #dfdfdf;
}
.home .conceptSec .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  overflow: visible;
}

.home .conceptSec .container.turning{
  display: flex;
  flex-direction: row-reverse;
}

.home .conceptSec .container.turning img {
  box-shadow: -60px -60px 0 0 var(--main-color);
}

.home .conceptSec .container .concept__inner {
  flex: 1;
  text-align: center;
}
.home .conceptSec .container .concept__inner h2 {
  font-size: clamp(1rem, 0.765rem + 1.18vw, 1.5rem);
  margin-bottom: 20px;
  font-family: var(--font-family-mincho);
  font-weight: 600;
}
.home .conceptSec .container .concept__inner p {
  margin-bottom: 30px;
  font-size:1rem;
}
.home .conceptSec .container img {
  display: block;
  width: 45%;
  margin-top: 80px;
  box-shadow: 60px -60px 0 0 var(--main-color);
}
@media screen and (max-width: 767px) {
  .home .conceptSec .container {
    flex-direction: column;
  }
  .home .conceptSec .container .concept__inner h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .home .conceptSec .container img {
    width: calc(100% - 40px);
    margin-top: 0;
    margin-right: auto;
    box-shadow: 40px -40px 0 0 var(--main-color);
  }
}
.home .menuSec .container {
  overflow: visible;
}
.home .menuSec .menu-title__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .home .menuSec .menu-title__wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .home .conceptSec .container.turning{
    flex-direction: column;
  }
}
.home .menuSec .menu-title__wrapper .menu-circle {
  position: absolute;
  left: -40px;
  top: -40px;
}
.home .menuSec .menu-title__wrapper .menu-circle img {
  width: 120px;
  animation: rotate 18s linear infinite;
}
.home .menuSec .menu-title__wrapper h2 {
  font-size: clamp(1.875rem, 1.669rem + 0.94vw, 2.375rem);
  display: flex;
  align-items: center;
  gap: 30px;
}
.home .menuSec .menu-title__wrapper h2 span {
  font-size: clamp(0.75rem, 0.699rem + 0.24vw, 0.875rem);
  font-weight: 400;
  display: block;
  position: relative;
}
.home .menuSec .menu-title__wrapper h2 span::after {
  content: "";
  height: 2px;
  width: 95%;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-color);
  line-height: 1.4;
}
.home .menuSec .menu-title__wrapper .menu-time {
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 30px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}
.home .menuSec .menu-title__wrapper .menu-time i {
  font-size: clamp(1rem, 0.897rem + 0.47vw, 1.25rem);
}
@media screen and (max-width: 767px) {
  .home .menuSec .menu-title__wrapper .menu-time {
    padding: 5px 10px;
  }
  .home .menuSec .menu-title__wrapper h2{
    width:100%;
  }
}
.home .menuSec .menu-title__wrapper .menu-button {
  background: #fff;
  border: 1px solid var(--main-color);
  border-radius: 30px;
  padding: 10px 20px;
  color: var(--main-color);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}
.home .menuSec .menu-title__wrapper .menu-button i {
  font-size: clamp(1rem, 0.897rem + 0.47vw, 1.25rem);
}
@media screen and (max-width: 767px) {
  .home .menuSec .menu-title__wrapper .menu-button {
    padding: 5px 10px;
  }
}
.home .menuSec .menu-list {
  display: flex;
  gap: 30px;
}
.home .menuSec .menu-list:not(:last-of-type) {
  margin-bottom: 80px;
}
.home .menuSec .menu-list li {
  width: calc((100% - 90px) / 4);
}
.home .menuSec .menu-list li a {
  display: block;
  width: 100%;
}
.home .menuSec .menu-list li img {
  width: 100%;
  margin-bottom: 10px;
}
.home .menuSec .menu-list li .menu-text__wrapper {
  padding: 0 10px;
}
.home .menuSec .menu-list li .menu-text__wrapper .menu-price {
  text-align: right;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .home .menuSec .menu-list {
    flex-wrap: wrap;
    gap: 20px 10px;
  }
  .home .menuSec .menu-list:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .home .menuSec .menu-list li {
    width: calc((100% - 20px) / 2);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.shopInfoSec {
  padding-top: 330px;
  margin-top: 350px;
  background: var(--main-color);
}
@media screen and (max-width: 767px) {
  .shopInfoSec {
    padding-top: 190px;
    margin-top: 220px;
  }
}
.shopInfoSec .shopInfo-img {
  position: absolute;
  top: -250px;
  right: 0;
  height: 500px;
  width: 90vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .shopInfoSec .shopInfo-img {
    height: 300px;
    top: -150px;
  }
}
.shopInfoSec h2 {
  font-size: clamp(1.875rem, 1.669rem + 0.94vw, 2.375rem);
  color: #fff;
  margin-bottom: 40px;
}
.shopInfoSec .shopInfo__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
.shopInfoSec .shopInfo__wrapper .shopInfo__inner {
  flex: 1;
  color: #fff;
  width: 100%;
}
.shopInfoSec .shopInfo__wrapper .shopInfo__inner .shopInfo-logo {
  font-size: 22px;
  margin-bottom: 40px;
}
.shopInfoSec .shopInfo__wrapper .shopInfo__inner .shopInfo-address {
  margin-bottom: 40px;
}
.shopInfoSec .shopInfo__wrapper .shopInfo__inner .shopInfo-address a {
  color: #fff;
  display: flex;
  gap: 10px;
  padding: 10px 0;
  font-weight: 600;
}
.shopInfoSec .shopInfo__wrapper .shopInfo__inner .shopInfo__table {
  width: 100%;
}
.shopInfoSec .shopInfo__wrapper .shopInfo__inner .shopInfo__table th {
  font-weight: 400;
  width: 30%;
  padding: 15px 0;
  border-bottom: 1px solid #fff;
  text-align: left;
}
.shopInfoSec .shopInfo__wrapper .shopInfo__inner .shopInfo__table td {
  padding: 15px 0;
  border-bottom: 1px solid #fff;
}
.shopInfoSec .shopInfo__wrapper .shopInfo__map {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .shopInfoSec .shopInfo__wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .shopInfoSec .shopInfo__wrapper .shopInfo__map {
    width: 100%;
  }
}

.snsSec {
  background: linear-gradient(to bottom, var(--main-color) 50%, var(--bg-color) 50%);
}
.snsSec .container {
  background: #fff;
  padding: 60px 80px;
}
.snsSec .container h2 {
  font-size: clamp(1.875rem, 1.669rem + 0.94vw, 2.375rem);
  color: var(--main-color);
  margin-bottom: 60px;
}
.snsSec .container p {
  margin-bottom: 40px;
}
.snsSec .container .instagram {
  background: var(--bg-color);
  background-size: 95%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 180px;
  height: 180px;
  gap: 10px;
}

.instagram_box{
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.snsSec .container span.font-en {
  letter-spacing: 0;
  font-weight: 500;
}
.snsSec .container img {
  width: 40px;
}
@media screen and (max-width: 767px) {
  .snsSec .container {
    padding: 40px;
    text-align: center;
  }
  .snsSec .container h2 {
    margin-bottom: 20px;
  }
  .snsSec .container p {
    margin-bottom: 20px;
  }
  .snsSec .container .instagram {
    margin: 0 auto;
  }
  .instagram_box{
  display: inline;
}
}

/* コンセプト */
.page-title.concept {
  background: url("./img/concept/title_bg.jpg") no-repeat center center/cover;
}

/* メニュー */
.page-title.menu {
  background: url("./img/menu/title_bg.jpg") no-repeat center center/cover;
}

/* お知らせ */
.page-title.news {
  background: url("./img/news/title_bg.jpg") no-repeat center center/cover;
}

.sec-news .news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.sec-news .news-list li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .sec-news .news-list li {
    width: 100%;
  }
}
.sec-news .post-title {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 500;
}

.single .container.width-sm {
  max-width: 600px;
}
.single .post-title {
  font-size: clamp(1rem, 0.897rem + 0.47vw, 1.25rem);
  margin-bottom: 40px;
}
.single .post-content {
  line-height: 2;
  margin-bottom: 40px;
}
.single .pagination {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.single .pagination .btn01 a {
  text-align: center;
  font-size: 1rem;
}

/* 404 */
.error404 p.text-center {
  font-size: clamp(1.2rem, 0.871rem + 1.51vw, 2rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}/*# sourceMappingURL=style.css.map */