:root {
  --main-color:#00a0e9;
  --sub-color:#0D3F64;
}

.c_area {
  background: #FFF;
  border-radius: 20px;
  padding: 3%;
}
.c_area a {
  transition: 0.2s;
}

.newarea {
  background-color: transparent;
  padding: 0;
}
.newarea .news_cat_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px 0;
}
.newarea .news_cat_list li.active a {
  background-color: var(--sub-color);
  border: 1px solid var(--sub-color);
  color: #FFF !important;
}
.newarea .news_cat_list li a {
  border: 1px solid var(--main-color);
  background-color: #FFF;
  color: var(--main-color);
  border-radius: 20px;
  padding: 2px 13px;
  transition: 0.2s;
}
.newarea .news_cat_list li a:hover {
  color: #FFF;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
}
.newarea .news_cat_detail {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}
.newarea .news_cat_detail li {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  border-radius: 20px;
  padding: 0px 10px;
  font-size: 12px;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .newarea .news_cat_detail li {
    font-size: 10px;
  }
}
.newarea .newslist a {
  border-top: 1px solid #d7d6cb;
  display: grid;
  grid-template-columns: 30% auto;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .newarea .newslist a {
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    gap: 20px;
    grid-template-columns: 20% auto;
  }
}
.newarea .newslist a:hover {
  opacity: 0.5;
}
.newarea .newslist a h3 {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .newarea .newslist a h3 {
    font-size: 15px;
  }
}
.newarea .newslist a p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .newarea .newslist a p {
    font-size: 13px;
  }
}
.newarea .newslist a .news_img {
  border: 1px solid #cfcfcf;
  aspect-ratio: 1/1 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
}
.newarea .newslist a .news_img img {
  aspect-ratio: 1/1 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  width: 100% !important;
  height: auto !important;
}
.newarea .newsdetail .news_cat_detail li {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background-color: #FFF;
}
.newarea .newsdetail h3 {
  font-weight: 600;
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .newarea .newsdetail h3 {
    font-size: 20px;
  }
}
.newarea .newsdetail .newsdetail_img img {
  width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 767px) {
  .newarea .newsdetail .date {
    font-size: 13px;
    margin: 5px 0 15px 0;
  }
}
.newarea .newsdetail .news_backbtn {
  margin-top: 0px;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .newarea .newsdetail .news_backbtn {
    margin-top: 30px;
  }
}
.newarea .newsdetail .news_backbtn a {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .newarea .newsdetail .news_backbtn a {
    width: 30%;
  }
}

.shoparea .shoplist a {
  color: var(--main-color);
  border-bottom: 1px dotted var(--main-color);
  display: grid;
  grid-template-columns: 25% auto;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .shoparea .shoplist a {
    align-items: center;
    gap: 20px;
  }
}
.shoparea .shoplist a h3 {
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .shoparea .shoplist a h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.shoparea .shoplist a .txt p {
  margin: 0 0 3px 0;
}
@media screen and (max-width: 767px) {
  .shoparea .shoplist a .txt p {
    font-size: 10px;
  }
}
.shoparea .shoplist a:hover {
  opacity: 0.5;
}
.shoparea .shoplist a .news_img img {
  aspect-ratio: 3/2 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  width: 100% !important;
  height: auto !important;
}
.shoparea .shopdetail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .shoparea .shopdetail {
    gap: 20px;
    grid-template-columns: auto 40%;
  }
  .shoparea .shopdetail .news_title {
    grid-area: 1/1/2/3;
  }
  .shoparea .shopdetail .text {
    grid-area: 2/1/3/2;
  }
  .shoparea .shopdetail .shopdetail_img {
    grid-area: 2/2/3/3;
  }
  .shoparea .shopdetail .map {
    grid-area: 3/1/4/3;
  }
  .shoparea .shopdetail .shop_backbtn {
    grid-area: 4/1/5/3;
  }
}
@media screen and (min-width: 768px) {
  .shoparea .shopdetail .text {
    margin-bottom: 30px;
  }
}
.shoparea .shopdetail .text p {
  margin-bottom: 5px;
}
.shoparea .shopdetail .shop_name {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .shoparea .shopdetail .shop_name {
    font-size: 25px;
  }
}
.shoparea .shopdetail .map iframe {
  aspect-ratio: 1/1;
  max-width: 1000px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .shoparea .shopdetail .map iframe {
    aspect-ratio: 16/9;
  }
}
.shoparea .shopdetail .shopdetail_img img {
  aspect-ratio: 3/2 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  width: 100% !important;
  height: auto !important;
}
.shoparea .shopdetail .shop_backbtn {
  width: 30%;
  margin: 20px auto 0;
}

.page-numbers {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-numbers li a {
  padding: 4px 0 0 0;
  background: #FFFFFF;
  border-radius: 100px;
  width: 38px;
  height: 38px;
  display: inline-block;
  position: relative;
  font-size: 18px;
}
.page-numbers li span.current {
  padding: 4px 0 0 0;
  background: #00a0e9;
  color: #FFFFFF;
  border-radius: 100px;
  width: 38px;
  height: 38px;
  display: inline-block;
  position: relative;
  font-size: 18px;
}

#container:has(#about_shop) {
  padding: 124px 0 0;
}

#main:has(#about_shop) {
  padding-top: 0;
}

#about_shop .bg_img {
  background-image: linear-gradient(170deg, rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.8) 0%), url(../img/shopinfo_main.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 15vh;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#about_shop .bg_img h2 {
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#about_shop .bg_img h2 span {
  color: #FFF;
  text-align: center;
  display: flex;
}

.post-goods li {
  background-image: url(../img/bg_post_detail.png);
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 2em;
  margin: 0 1em;
  aspect-ratio: 1/0.85;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.post-goods li img {
  width: 100%;
  aspect-ratio: 4/2.8;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-goods li p {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .post-goods li {
    padding: 1em;
    margin: 0 10px 0 0;
    font-size: 10px;
  }
  .post-goods li p {
    margin-top: 0;
  }
}

.full {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

@media screen and (min-width: 768px) {
  .w-50 {
    width: 50%;
    margin: 0 auto;
    max-width: 445px;
  }
}

.button.positive a {
  color: #FFF !important;
}

.button a {
  text-decoration: none !important;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .wp-block-group-is-layout-grid.sp-g1 {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=info.css.map */

.wp-block-separator{
  border-top:1px dotted #0D3F64 !important;
}
