:root {
  --main-color:#4b5aa0;
}

.c_area {
  background: #FFF;
  max-width: 923px;
  width: 90%;
  border-radius: 20px;
  margin: 90px auto 100px;
  padding: 5%;
}
@media screen and (min-width: 768px) {
  .c_area {
    padding: 30px 30px;
    margin: 200px auto 100px;
  }
}
.c_area h2 {
  text-align: center;
  font-size: 18px;
  background-image: radial-gradient(var(--main-color) 20%, transparent 10%);
  background-size: 15px 15px;
  background-position: bottom;
  background-repeat: repeat-x;
  padding-bottom: 20px;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c_area h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }
}
.c_area h2::before, .c_area h2::after {
  position: absolute;
  height: 15px;
  width: 15px;
  content: "";
  bottom: 3px;
  background: url(../images/icn_star.svg) no-repeat center;
}
@media screen and (min-width: 768px) {
  .c_area h2::before, .c_area h2::after {
    height: 20px;
    width: 20px;
    bottom: 0px;
  }
}
.c_area h2::before {
  left: -5px;
}
.c_area h2::after {
  right: -5px;
}

.newarea .news_cat_list {
  display: flex;
  gap: 10px;
  margin: 0 0 20px 0;
}
.newarea .news_cat_list li.active a {
  background-color: #2391a3;
  color: #FFF !important;
}
.newarea .news_cat_list li a {
  border: 1px solid #2391a3;
  border-radius: 20px;
  padding: 2px 13px;
}
.newarea .news_cat_list li a:hover {
  color: #FFF;
  background-color: #2391a3;
}
.newarea .news_cat_detail {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}
.newarea .news_cat_detail li {
  border: 1px solid #2391a3;
  border-radius: 20px;
  padding: 0px 10px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .newarea .news_cat_detail li {
    font-size: 10px;
  }
}
.newarea .newslist a {
  border-top: 1px dotted var(--main-color);
  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;
  }
}
.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 {
  aspect-ratio: 1/1 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  line-height: 0;
}
.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);
}
.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 {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .newarea .newsdetail .news_backbtn a {
    width: 30%;
  }
}
.newarea .newsdetail .news_backbtn a:hover {
  opacity: 0.5;
}
.newarea .nav-links .page-numbers {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.newarea .nav-links .page-numbers li {
  border: 1px solid var(--main-color);
  aspect-ratio: 1/1;
  width: 30px;
  height: 30px;
}
.newarea .nav-links .page-numbers li:has(.current) {
  background-color: var(--main-color);
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.newarea .nav-links .page-numbers li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.newarea .nav-links .page-numbers li a:hover {
  background-color: var(--main-color);
  color: #FFF;
}
.newarea .screen-reader-text {
  display: none;
}

.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 {
  aspect-ratio: 1/1 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.shoparea .shoplist a .news_img img {
  aspect-ratio: 1/1 !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 30%;
  }
  .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 {
  aspect-ratio: 1/1 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.shoparea .shopdetail .shopdetail_img img {
  aspect-ratio: 1/1 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  width: 100% !important;
  height: auto !important;
}
.shoparea .shopdetail .shop_backbtn {
  margin-top: 0px;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .shoparea .shopdetail .shop_backbtn {
    margin-top: 30px;
  }
}
.shoparea .shopdetail .shop_backbtn a {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .shoparea .shopdetail .shop_backbtn a {
    width: 30%;
  }
}
.shoparea .shopdetail .shop_backbtn a:hover {
  opacity: 0.5;
}

.nav-links .page-numbers {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.nav-links .page-numbers li {
  border: 1px solid var(--main-color);
  aspect-ratio: 1/1;
  width: 30px;
  height: 30px;
}
.nav-links .page-numbers li:has(.current) {
  background-color: var(--main-color);
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-links .page-numbers li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-links .page-numbers li a:hover {
  background-color: var(--main-color);
  color: #FFF;
}

.screen-reader-text {
  display: none;
}/*# sourceMappingURL=info.css.map */

.wp-block-image{
  margin:0;
  padding:0;
}

.wp-block-image img{
  height:auto;
}

.wp-element-caption{
  font-size:.85rem;
  color:#777;
}