@charset "utf-8";
/*
Theme Name: take-eats
Version: 1.0
*/
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
:root {
  --white: #fff;
  --black: #312721;
  --gray: #e8e4dd;
  --l-gray: #fbfaf9;
  --lightgreen: #5ba13e;
  --orange: #f15515;
}
body {
  position: relative;
  overflow-x: hidden;
  color: var(--black);
  line-height: 1.75;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
.mincho {
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
main {
  position: relative;
  z-index: 1;
}
.wrapper {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: inherit;
  text-decoration: underline;
}
a.opHover:hover {
  opacity: 0.7;
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.container {
  max-width: 990px;
  width: 90%;
  margin: auto;
}
.container.narrow {
  max-width: 640px;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  a[href^='tel:'] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (max-width: 767px) {
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
}

/* archive
-------------------------------------------------------------- */
.newsListWrap {
  margin: 35px 0 70px;
}
.newsListWrap .catTtl {
  margin-bottom: 35px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.newsListWrap .newsList {
  gap: 35px;
}
.newsListWrap .newsList li {
  width: calc((100% - 70px) / 3);
}
.newsListWrap .newsList li a {
  text-decoration: none;
}
.newsListWrap .newsList .eyecatch {
  background: var(--l-gray);
}
.newsListWrap .newsList .eyecatch .noImg {
  justify-content: center;
  align-items: center;
  font-weight: 700;
  aspect-ratio: 2 / 1;
}
.newsListWrap .newsList .ttl {
  padding-top: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .newsListWrap {
    margin: 35px 0 70px;
  }
  .newsListWrap .catTtl {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
  .newsListWrap .newsList {
    gap: 30px;
  }
  .newsListWrap .newsList li {
    width: calc((100% - 30px) / 2);
  }
  .newsListWrap .newsList .eyecatch .noImg {
    font-size: 1.2rem;
  }
  .newsListWrap .newsList .ttl {
    padding-top: 10px;
  }
}

/* single
-------------------------------------------------------------- */
article {
  padding: 30px 0 60px;
}
article .shareBtns {
  padding-bottom: 30px;
  justify-content: flex-end;
  gap: 10px;
}
article .copyMsg {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 9999;
}
article .copyMsg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}
article .eyecatch {
  margin-bottom: 35px;
}
article .postTtl {
  margin-bottom: 35px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
/* 目次 */
div#ez-toc-container {
  padding: 15px;
  margin-bottom: 50px;
  border-radius: 4px;
  border: 1px solid var(--gray);
  background: var(--l-gray);
  box-shadow: none;
}
div#ez-toc-container .ez-toc-title {
  display: block !important;
  text-align: center;
  margin: 0 0 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray);
}
div#ez-toc-container ul li {
  margin-bottom: 20px;
}
#ez-toc-container a {
  color: inherit !important;
}
#ez-toc-container a:visited {
  color: inherit !important;
}
#ez-toc-container .ez-toc-list {
  max-height: 250px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
  z-index: 1;
}
#ez-toc-container.show-all .ez-toc-list {
  max-height: none;
}
#ez-toc-container .show-more-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -120px;
  background: linear-gradient(0deg,rgba(251, 250, 249, 1) 0%, rgba(251, 250, 249, 0) 100%);
  overflow: hidden;
  z-index: 2;
}
#ez-toc-container .show-more-btn {
  display: block;
  position: relative;
  margin: 50px 0 30px;
  text-align: center;
  padding: 6px 20px;
  border: 1px solid var(--gray);
  border-radius: 6px;
  background: var(--white);
  font-size: 1.6rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
#ez-toc-container .show-more-btn:hover {
  background: var(--gray);
}
.show-all#ez-toc-container .show-more-wrap {
  margin: 0;
}
.show-all#ez-toc-container .show-more-btn {
  margin: 0;
}

.shop-block {
  margin-bottom: 50px;
}
.shop-block .shop-heading {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--orange);
  font-size: 2rem;
  line-height: 1.4;
}
.shop-block .card {
  border: 1px solid var(--gray);
  padding: 15px;
  background: var(--l-gray);
  border-radius: 4px;
}
.shop-block .shop-name {
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.shop-block .shop-image {
  text-align: center;
}
.shop-block .shop-address,
.shop-block .shop-tel {
  margin-bottom: 10px;
}
.shop-block .shop-hours {
  margin-bottom: 20px;
  white-space: pre-wrap;
}
.shop-block .shop-other {
  padding: 15px 20px;
  background: #f2f2f2;
}
.shop-block .shop-other-title {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #aeaeae;
  font-size: 1.5rem;
  font-weight: 500;
}
.shop-block .other-item {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ccc;
}
.shop-block .other-item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.shop-block .other-item p {
  margin-bottom: 5px;
}
.shop-block .other-item .other-name {
  padding-right: 140px;
  font-weight: 700;
}
.shop-block .other-item .other-link {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.shop-block .other-item .other-link a {
  position: relative;
  padding-right: 10px;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
}
.shop-block .other-item .other-link a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
  content: "";
}
.shop-block .btn {
  display: block;
  margin: auto;
  padding: 12px 20px;
  max-width: 216px;
  border-radius: 6px;
  background: var(--orange);
  box-shadow:
  0 2px 4px rgba(241, 85, 21, 0.1),
  0 4px 6px rgba(241, 85, 21, 0.1); 
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.shop-block .shop-cta {
  padding: 20px 0;
  margin: 0;
  border-top: 1px solid var(--gray);
}
.shop-block .btn:hover {
  filter: brightness(1.5);
  text-decoration: none;
}
.freetxt img {
  margin-bottom: 20px;
}
.freetxt p {
  margin-bottom: 20px;
}
.freetxt blockquote {
  background: var(--l-gray);
  padding: 20px;
}
.freetxt .aligncenter {
  display: block;
  margin: 0 auto;
}
.freetxt .alignleft {
  float: left;
}
.freetxt .alignright {
  float: right;
}
.freetxt ul,
.freetxt ol {
  margin: 0 20px;
}
.freetxt ul li {
  list-style: square;
  margin-bottom: 15px;
}
.freetxt ol li {
  list-style: decimal;
  margin-bottom: 15px;
}
.freetxt table {
  width: 100%;
}
.freetxt table th {
  padding: 10px 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ccc;
}
.freetxt table td {
  padding: 10px 15px;
  font-size: 1.5rem;
  border: 1px solid #ccc;
}
.freetxt iframe {
  max-width: 100%;
}
@media (max-width: 767px) {
  article {
    padding: 30px 0 50px;
  }
  article .shareBtns {
    gap: 5px;
  }
  article .copyMsg {
    font-size: 1.2rem;
  }
  article .eyecatch {
    margin-bottom: 30px;
  }
  article .postTtl {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  /* 目次 */
  div#ez-toc-container {
    margin-bottom: 30px;
    font-size: 1.3rem;
  }
  div#ez-toc-container ul li {
    margin-bottom: 15px;
  }
  #ez-toc-container .show-more-wrap {
    margin-top: -60px;
  }
  #ez-toc-container .show-more-btn {
    margin: 30px 0 0;
    font-size: 1.4rem;
  }
  .shop-block .btn {
    max-width: 180px;
    font-size: 1.3rem;
  }
  .shop-block .shop-cta {
    padding-top: 15px;
  }
}

/* ページネーション
-------------------------------------------------------------- */
.paging {
  text-align: center;
  position: relative;
  margin-bottom: 100px;
}
.paging .back {
  position: absolute;
  left: 50%;
  margin-left: -100px;
}
.paging .back a {
  display: block;
  position: relative;
  width: 200px;
  padding: 15px 30px;
  border-radius: 30px;
  border: 1px solid #84945d;
  color: #84945d;
  font-size: 1.4rem;
  box-sizing: border-box;
  outline: none;
  overflow: hidden;
}
.paging a::before,
.paging a::after {
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
}
.paging a::after {
  top: calc(50% - 4px);
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #84945d;
  border-right: 1px solid #84945d;
  transform: rotate(45deg);
}
.paging .next a,
.paging .prev a {
  display: block;
  position: relative;
  width: 180px;
  padding: 15px 30px;
  border-radius: 30px;
  border: 1px solid #84945d;
  color: #84945d;
  font-size: 1.4rem;
  box-sizing: border-box;
  letter-spacing: 0.1rem;
}
.paging .prev a::after {
  top: calc(50% - 4px);
  left: 20px;
  right: auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid #84945d;
  border-right: 1px solid #84945d;
  transform: rotate(-135deg);
}
.paging a:hover {
  color: #222;
  background: #84945d;
  opacity: 1;
}
.paging .prev {
  float: left;
}
.paging .next {
  float: right;
}
.pagination {
  text-align: center;
  font-size: 1.4rem;
  padding: 30px 0 100px;
  width: 100%;
  font-weight: 700;
}
a.page-numbers,
.pagination .current {
  padding: 3px 8px;
  margin: 0 5px;
  text-decoration: none;
}
.pagination .current {
  border-bottom: solid 1px #84945d;
}
a.page-numbers:hover {
  border-bottom: solid 1px #84945d;
  color: #84945d;
}
a.next,
a.prev {
  color: #fff;
  background: #84945d;
  border-radius: 50%;
}
a.next:hover {
  border: none;
  color: #fff;
  background: #84945d;
}
@media (max-width: 767px) {
  .paging {
    margin-bottom: 50px;
  }
  .paging .back {
    margin-left: -51px;
  }
  .paging .back a,
  .paging .prev a,
  .paging .next a {
    padding: 10px;
    width: 100px;
    font-size: 1.3rem;
    text-align: center;
  }
  .paging .back a::after,
  .paging .prev a::after,
  .paging .next a::after {
    content: none;
  }
  .pagination {
    padding: 30px 0 50px;
  }
}
/* footer
-------------------------------------------------------------- */
footer {
  position: relative;
  padding: 40px 0;
  background: var(--l-gray);
}
footer .infoWrap {
  justify-content: space-between;
  align-items: center;
}
footer .flogo {
  font-weight: 700;
}
footer nav li {
  padding-left: 30px;
}
footer nav a {
  font-size: 1.2rem;
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 50px;
  right: 3%;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 767px) {
  footer {
    padding: 50px 0;
    border-radius: 40px 40px 0 0;
    font-size: 1.2rem;
  }
  footer .copy {
    padding-top: 30px;
    text-align: center;
    font-size: 1.1rem;
  }
}
/* 404
-------------------------------------------------------------- */
#errormsg {
  padding-bottom: 100px;
}
#errormsg p {
  margin-bottom: 30px;
  text-align: center;
}
#errormsg .btnMore a {
  margin: auto;
}
@media (max-width: 767px) {
  #errormsg {
    padding-bottom: 50px;
  }
  #errormsg p {
    margin-bottom: 20px;
  }
}
