@charset "UTF-8";
:root {
  --s-val: 10px;
  --main-width: 1200px;
  --mincho: "Hina Mincho", "游明朝体", "Yu Mincho", YuMincho;
  --gothic: "Noto Sans JP", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
  --color_base-text: #485B5F;
  --color_link-blue: #3690DD;
  --color_box-link-blue: #297d8d;
  --color_black: #404040;
  --color_bg_gray01: #f3f3f3;
  --color_bg_page: #c7c3b8;
  --color_key: #21B8D5;
  --color_key_dark: #1c96ad;
  --color_sub-key: #21B8D5;
  --color_sub-key_light: #D8EFF3;
  --color_yellow: #fcee21;
  --color_gourmet: #ffb100;
  --color_bg_beige: #F8F7E9;
}

@media screen and (max-width: 900px) {
  /* sp only */
  :root {
    --s-val: 10px;
  }
} /* sp only */
/* コンテナクエリー宣言 */
.main-container {
  container: main/inline-size;
}

.sub-container .inner {
  container: side/inline-size;
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

img {
  image-rendering: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

body {
  font-family: var(--gothic);
  font-weight: 500;
  color: var(--color_base-text);
  font-size: calc(var(--s-val) * 1.6);
  line-height: 1.75;
  overflow-y: scroll;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: calc(var(--s-val) * 0.2);
}

/* ============
* common css start
============ */
/* ============
* common parts start
============ */
/* ==================
* container
* ================== */
.container {
  --middle-w: calc(100% - 40px);
  --min-w: 0px;
  --max-w: 1200px;
  width: clamp(var(--min-w), var(--middle-w), var(--max-w));
  margin-inline: auto;
}
.container.-big-pad {
  --middle-w: calc(100% - calc(var(--s-val) * 8));
}

@media screen and (max-width: 767px) {
  /* sp only */
  .container.-big-pad {
    --middle-w: calc(100% - calc(var(--s-val) * 5));
  }
} /* sp only */
/* end container */
img {
  image-rendering: auto;
}

a {
  color: var(--color_link-blue);
}

@media (any-hover: hover) {
  /* hover-device only */
  a img {
    -webkit-transition: opacity 0.3s 0s;
    transition: opacity 0.3s 0s;
  }
  a img:hover {
    opacity: 0.7;
  }
} /* hover-device only */
.bold {
  font-weight: 600;
}

.mincho {
  font-family: var(--mincho);
}

.gothic {
  font-family: var(--gothic);
}

.indent {
  --left: 1em;
  text-indent: calc(var(--left) * -1);
  padding-left: var(--left);
}

.d-b {
  display: block;
}

.d-ib {
  display: inline-block;
}

.d-i {
  display: inline;
}

.note {
  font-size: 80%;
  opacity: 0.95;
}

.box-center {
  margin-inline: auto;
}

.m0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mt0 {
  margin-top: 0;
}

.p-r {
  position: relative;
}

/* ==================
* search
* ================== */
.search .search_grid {
  display: -ms-grid;
  display: grid;
  --button_wid: calc(var(--s-val) * 4);
  --box_wid: calc(100% - var(--button_wid));
  --gap: calc(var(--s-val) * 1);
  -ms-grid-columns: calc(var(--box_wid) - var(--gap)) var(--gap) var(--button_wid);
  grid-template-columns: calc(var(--box_wid) - var(--gap)) var(--button_wid);
  gap: var(--gap);
}
.search .search_grid input[type=text] {
  border-radius: 0;
  border: 1px solid #ddd;
  padding: calc(var(--s-val) * 0.4) calc(var(--s-val) * 0.8);
}
.search .search_grid button[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  cursor: pointer;
  background: url("../images/icon_search.svg") var(--color_key) no-repeat top 50% left 50%/70% auto;
}

/* end search */
/* ==================
* buttons
* ================== */
.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--s-val) * 1);
}

/* end buttons */
/* ==================
* button
* ================== */
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  text-decoration: none;
  border-radius: calc(var(--s-val) * 0.5);
  background-color: var(--color_black);
  padding: calc(var(--s-val) * 0.8) calc(var(--s-val) * 4);
  font-size: calc(var(--s-val) * 1.6);
  font-weight: 500;
  text-align: center;
  min-width: calc(var(--s-val) * 20);
  position: relative;
}
.button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

/* end button */
.gray-wrap {
  padding: 20px;
  background-color: var(--color_bg_gray01);
  border-radius: 3px;
  margin-block: 1em;
}
.gray-wrap .gray-wrap p {
  margin-bottom: 1.6em !important;
}
.gray-wrap .gray-wrap p:last-child {
  margin-bottom: 0 !important;
}

/* レスポンシブ用表示切り分け汎用class */
@media screen and (min-width: 1101px) {
  /* pc only */
  .sp {
    /* SPのみ表示する */
    display: none !important;
  }
}
/* pc only */
@media screen and (max-width: 1100px) {
  /* sp only */
  .pc {
    /* PCのみ表示する */
    display: none !important;
  }
}
/* sp only */
/* pc big-window only */
/* common parts end */
/* -- common css end -- */
/* ============
* 以下、各共通ブロック style
============ */
/* ==================
* g_wrapper
* ================== */
.g_wrapper {
  max-width: 100%;
  background-color: var(--color_bg_beige);
}

/* end g_wrapper */
/* ==================
* all-grid
* ================== */
.all-grid {
  --side-width: 300px;
  display: -ms-grid;
  display: grid;
      grid-template-areas: "side main";
  -ms-grid-columns: var(--side-width) calc(100% - var(--side-width));
  grid-template-columns: var(--side-width) calc(100% - var(--side-width));
}

@media screen and (max-width: 1050px) {
  /* sp only */
  .all-grid {
    display: block;
  }
} /* sp only */
/* end all-grid */
/* ==================
* grid_main
* ================== */
.grid_main {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: main;
}

/* end grid_main */
/* ==================
* grid_side
* ================== */
.grid_side {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: side;
}

/* end grid_side */
/* ==================
* main-container
* ================== */
.main-container {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: main;
  width: 100%;
  max-width: calc(var(--s-val) * 70);
  margin-inline: auto;
  background-color: #FFF;
}
.main-container img {
  -webkit-box-shadow: 0 0 calc(var(--s-val) * 0.6) rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 calc(var(--s-val) * 0.6) rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 900px) {
  /* sp only */
  .main-container {
    width: 100%;
    max-width: 100%;
  }
} /* sp only */
/* end main-container */
/* ==================
* sub-container
* ================== */
.sub-container {
  width: calc(var(--s-val) * 30);
  -webkit-transition: opacity 0.3s 0s, -webkit-transform 0.3s 0s;
  transition: opacity 0.3s 0s, -webkit-transform 0.3s 0s;
  transition: opacity 0.3s 0s, transform 0.3s 0s;
  transition: opacity 0.3s 0s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
  z-index: 99;
  position: fixed;
  left: 0;
  top: 0;
}
.sub-container > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: calc(var(--s-val) * 2);
  background-color: #FFF;
  padding-block: calc(var(--s-val) * 8) calc(var(--s-val) * 16);
  padding-inline: calc(var(--s-val) * 2);
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  width: calc(var(--s-val) * 30);
  max-width: 90vw;
}
.sub-container > .inner::-webkit-scrollbar {
  background: transparent;
  width: 5px;
  background-color: var(--color_sub-key_light);
}
.sub-container > .inner::-webkit-scrollbar-thumb {
  background-color: var(--color_sub-key);
  border-radius: 9999px;
}
.sub-container.-open {
  -webkit-transform: translate(0%, 0px);
          transform: translate(0%, 0px);
  opacity: 1;
}

@media screen and (max-width: 1050px) {
  /* sp only */
  .sub-container {
    --s-val: 10px;
    width: 350px;
    height: 100vh;
    max-width: 90%;
    -webkit-transform: translate(-100%, 0px);
            transform: translate(-100%, 0px);
    opacity: 0;
  }
} /* sp only */
/* end sub-container */
/* ==================
* overlay
* ================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 98;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s;
  transition: opacity 0.3s 0s;
}
.overlay.-open {
  opacity: 0.2;
  pointer-events: auto;
}

/* end overlay */
/* ==================
* nav-block
* ================== */
.nav-block:not(:nth-of-type(1)) {
  margin-top: calc(var(--s-val) * 5);
}
.nav-block .head {
  font-size: calc(var(--s-val) * 1.6);
  border-bottom: 1px solid var(--color_bg_gray01);
  padding-bottom: calc(var(--s-val) * 0.4);
  margin-bottom: calc(var(--s-val) * 1);
}
.nav-block .sub-head {
  font-size: calc(var(--s-val) * 1.4);
  opacity: 0.4;
  margin-top: calc(var(--s-val) * 2);
}
.head + .nav-block .sub-head {
  margin-top: 0;
}

/* end nav-block */
/* ==================
* nav_lists
* ================== */
.nav_lists,
.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0px;
}
.nav_lists a,
.nav_lists .tag,
.tags a,
.tags .tag {
  font-weight: 300;
  font-size: calc(var(--s-val) * 1.4);
  display: block;
  background-color: var(--color_box-link-blue);
  color: #FFF;
  line-height: 1;
  padding-block: calc(var(--s-val) * 0.6) calc(var(--s-val) * 0.6);
  padding-inline: calc(var(--s-val) * 1);
  border: 1px solid #fff;
}
.nav_lists a:hover,
.nav_lists .tag:hover,
.tags a:hover,
.tags .tag:hover {
  opacity: 0.8;
}
.nav_lists.-gourmet a,
.tags.-gourmet a {
  background-color: var(--color_gourmet);
}

/* end nav_lists */
/* ==================
* g_header
* ================== */
.g_header {
  background-color: var(--color_key);
  color: #FFF;
  padding-block: calc(var(--s-val) * 2);
  padding-inline: calc(var(--s-val) * 3);
  width: calc(100% + 40px);
  margin-left: -20px;
  position: relative;
}
.g_header:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 calc(var(--s-val) * 2) calc(var(--s-val) * 2) 0;
  -webkit-transform: translate(0px, 100%);
          transform: translate(0px, 100%);
  border-color: transparent var(--color_key_dark) transparent transparent;
  position: absolute;
  left: 0;
  bottom: 0;
}
.g_header:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  -webkit-transform: translate(0px, 100%);
          transform: translate(0px, 100%);
  border-width: 0 0 calc(var(--s-val) * 2) calc(var(--s-val) * 2);
  border-color: transparent transparent transparent var(--color_key_dark);
  position: absolute;
  right: 0;
  bottom: 0;
}
.g_header a {
  color: #FFF;
}

@media screen and (max-width: 900px) {
  /* sp only */
  .g_header {
    width: 100%;
    margin-inline: 0;
  }
  .g_header::before, .g_header::after {
    content: none;
  }
} /* sp only */
/* end g_header */
/* ==================
* c_logo
* ================== */
.c_logo {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  font-size: calc(var(--s-val) * 2);
  text-align: center;
  font-weight: bold;
  letter-spacing: calc(var(--s-val) * 0.3);
  line-height: 1;
}
.c_logo .main {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.74);
  padding-block: calc(var(--s-val) * 1.2) calc(var(--s-val) * 1);
  padding-inline: calc(var(--s-val) * 1.8);
}
.c_logo .sub {
  display: block;
  font-size: 0.7em;
  font-weight: normal;
  margin-top: calc(var(--s-val) * 1.2);
}
.c_logo .sub::before, .c_logo .sub::after {
  content: "-";
}
.c_logo:hover .main {
  background-color: rgba(255, 255, 255, 0.3);
}
.c_logo.-side {
  margin-block: 0 calc(var(--s-val) * 3);
  color: var(--color_key);
}
.c_logo.-side .main {
  border-color: var(--color_key);
}
.c_logo.-side .main .line {
  display: block;
  margin-top: calc(var(--s-val) * 0.4);
}

/* end c_logo */
/* ==================
* icons
* ================== */
.icons {
  display: none;
  position: fixed;
  top: 40px;
  right: 40px;
  margin-inline: auto;
  width: 40px;
  z-index: 99;
}
.icons .icon.-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0rem;
  width: 100%;
  aspect-ratio: 1;
  cursor: pointer;
  background-color: var(--color_key_dark);
  border-radius: 9999px;
}
.icons .icon.-nav svg {
  width: 70%;
}

@media screen and (max-width: 1050px) {
  /* sp only */
  .icons {
    display: block;
    left: auto;
    right: 20px;
    top: 60px;
  }
} /* sp only */
/* end icons */
/* ==================
* g_footer
* ================== */
.g_footer {
  background-color: var(--color_black);
  color: #FFF;
  padding: calc(var(--s-val) * 2);
  margin-top: calc(var(--s-val) * 10);
}
.g_footer a {
  color: #FFF;
}
.g_footer .foot-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(var(--s-val) * 1);
  font-size: calc(var(--s-val) * 1.4);
  font-weight: 400;
}
.g_footer .foot-nav ul li:not(:last-of-type)::after {
  content: " | ";
  opacity: 0.3;
  display: inline-block;
  margin-left: calc(var(--s-val) * 1.4);
}
.g_footer .foot-nav a:hover {
  text-decoration: underline;
}
.g_footer .c_logo {
  margin-top: calc(var(--s-val) * 5);
  font-size: calc(var(--s-val) * 1.4);
}
.g_footer .copyright {
  font-size: calc(var(--s-val) * 1);
  margin-top: calc(var(--s-val) * 2);
  text-align: center;
  font-weight: 400;
  margin-top: calc(var(--s-val) * 5);
}
.g_footer .copyright a {
  text-decoration: underline;
}

/* end g_footer */
/* ==================
* post-item
* ================== */
.post-item .image-wrap {
  position: relative;
}
.post-item .image-wrap .category-name {
  position: absolute;
  left: 0;
  top: 0;
  font-size: calc(var(--s-val) * 1);
  line-height: 0;
  padding-block: calc(var(--s-val) * 1);
  padding-inline: calc(var(--s-val) * 0.6);
}
.post-item a {
  color: inherit;
}
.post-item .end-text {
  font-size: 0.7em;
  text-align: right;
  opacity: 0.6;
}
.post-item .end-text::before {
  content: "→";
  margin-right: 0.2em;
}

/* end post-item */
/* ==================
* category-name
* ================== */
.category-name {
  background-color: var(--color_yellow);
  color: var(--color_black);
  font-weight: bold;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/* end category-name */
.post_banner-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: calc(var(--s-val) * 3);
}
.post_banner-layout li a,
.post_banner-layout li .post-item_inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(var(--s-val) * 20) calc(var(--s-val) * 2) 1fr;
  grid-template-columns: calc(var(--s-val) * 20) 1fr;
  color: inherit;
  gap: calc(var(--s-val) * 2);
  position: relative;
}
.post_banner-layout li .image-wrap img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 16/14;
}
.post_banner-layout li .post-title {
  font-size: calc(var(--s-val) * 1.6);
}
.post_banner-layout li .datetime,
.post_banner-layout li .sentence {
  font-weight: 400;
  opacity: 0.7;
}
.post_banner-layout li .datetime svg,
.post_banner-layout li .sentence svg {
  width: calc(var(--s-val) * 1.6);
}
.post_banner-layout li .tags {
  margin-top: calc(var(--s-val) * 1);
}
.post_banner-layout li .datetime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--s-val) * 0.5);
  margin-top: calc(var(--s-val) * 1);
  font-size: calc(var(--s-val) * 1.2);
}
.post_banner-layout li .sentence {
  font-size: calc(var(--s-val) * 1.1);
  margin-top: calc(var(--s-val) * 0.6);
}

@media screen and (max-width: 500px) {
  /* sp only */
  .post_banner-layout li a,
  .post_banner-layout li .post-item_inner {
    -ms-grid-columns: calc(var(--s-val) * 12) calc(var(--s-val) * 1.4) 1fr;
    grid-template-columns: calc(var(--s-val) * 12) 1fr;
    gap: calc(var(--s-val) * 1.4);
  }
} /* sp only */
/* ==================
* random-block
* ================== */
.random-block {
  display: block;
  background-color: var(--color_key);
  padding: calc(var(--s-val) * 1);
  color: #FFF;
}
.random-block .random-title {
  opacity: 0.7;
  font-size: 0.8em;
  margin: -0.5em 0 0.3em 0;
  text-align: center;
}
.random-block .random-title::before {
  content: "＼ ";
}
.random-block .random-title::after {
  content: " ／";
}
.random-block .post_banner-layout.-side li .tag {
  color: #FFF;
  opacity: 0.8;
  border-color: #FFF;
}

.sub-container .random-block {
  margin-top: calc(var(--s-val) * 1.5);
}

/* end random-block */
/* ==================
* post_banner-layout.-side
* ================== */
.post_banner-layout.-side li a,
.post_banner-layout.-side li .post-item_inner {
  -ms-grid-columns: calc(var(--s-val) * 5) calc(var(--s-val) * 1) 1fr;
  grid-template-columns: calc(var(--s-val) * 5) 1fr;
  gap: calc(var(--s-val) * 1);
}
.post_banner-layout.-side li .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0rem;
}
.post_banner-layout.-side li .post-title {
  font-size: calc(var(--s-val) * 1.3);
  line-height: 1.4;
  font-weight: 500;
}
.post_banner-layout.-side li .category-name {
  line-height: 1;
  font-size: calc(var(--s-val) * 0.9);
  padding-block: calc(var(--s-val) * 0.3);
  padding-inline: calc(var(--s-val) * 0.5);
  margin-top: calc(var(--s-val) * 0.6);
}
.post_banner-layout.-side li .tag {
  font-size: calc(var(--s-val) * 0.9);
}
.post_banner-layout.-side + .buttons {
  margin-top: calc(var(--s-val) * 3);
}
.post_banner-layout.-side + .buttons .button {
  font-size: calc(var(--s-val) * 1.2);
  padding-block: calc(var(--s-val) * 0.2) calc(var(--s-val) * 0.4);
  padding-inline: calc(var(--s-val) * 4);
  min-width: 0;
}

@container main (width > 501px) {
  .post_banner-layout.-side {
    gap: calc(var(--s-val) * 1.5);
  }
  .post_banner-layout.-side li a,
  .post_banner-layout.-side li .post-item_inner {
    -ms-grid-columns: calc(var(--s-val) * 10) calc(var(--s-val) * 2) 1fr;
    grid-template-columns: calc(var(--s-val) * 10) 1fr;
    gap: calc(var(--s-val) * 2);
  }
  .post_banner-layout.-side li .post-title {
    font-size: calc(var(--s-val) * 1.7);
  }
  .post_banner-layout.-side li .tag {
    font-size: calc(var(--s-val) * 1.1);
  }
}
/* end post_banner-layout.-side */
/* ==================
* tags
* ================== */
.tags.-outline {
  gap: calc(var(--s-val) * 0.2);
}
.tags.-outline .tag {
  font-weight: 500;
  font-size: calc(var(--s-val) * 1.1);
  background-color: transparent;
  color: var(--color_base-text);
  border: 1px solid var(--color_base-text);
  opacity: 0.6;
  padding-block: calc(var(--s-val) * 0.4);
  padding-inline: calc(var(--s-val) * 0.4);
}

/* end tags */
/* ==================
* top_sec.nav
* ================== */
.top_sec.nav .nav-block {
  margin-top: calc(var(--s-val) * 5);
}

/* end top_sec.nav */
/* ==================
* top_sec
* ================== */
.top_sec {
  margin-block: calc(var(--s-val) * 5) calc(var(--s-val) * 3);
}
.top_sec .head {
  font-size: calc(var(--s-val) * 2);
  text-align: center;
  margin-block: 0 calc(var(--s-val) * 2);
}
.top_sec .buttons {
  margin-top: calc(var(--s-val) * 5);
}

@media screen and (max-width: 500px) {
  /* sp only */
  .top_sec .head {
    font-size: calc(var(--s-val) * 1.7);
  }
  .top-page_contents .nav_lists {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
  }
  .nav_lists a, .nav_lists .tag, .tags a, .tags .tag {
    font-weight: 500;
  }
} /* sp only */
/*-------------------------
  ショートコード：ブログカード
  -------------------------*/
.blog-card {
  background: #f5f3e0;
  word-wrap: break-word;
  max-width: 100%;
  margin: 0.2em 0 1em;
}
.blog-card:hover {
  opacity: 0.7;
}
.blog-card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none !important;
  padding: 10px;
}
.blog-card img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog-card .blog-card-thumbnail {
  padding: 10px;
}
.blog-card .blog-card-thumbnail img {
  display: block;
  padding: 0;
  margin: 0;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  height: auto;
  aspect-ratio: 1;
}
.blog-card .blog-card-content {
  line-height: 120%;
  width: calc(100% - 120px);
}
.blog-card .blog-card-title {
  padding: 10px 10px 10px 0;
  font-weight: bold;
  line-height: 1.5em;
  font-size: 1em;
  color: var(--color_base-text);
  display: block;
}
.blog-card .blog-card-reccomend {
  display: block;
  font-size: 0.7em;
  opacity: 0.8;
  margin: -2px 0 6px;
  line-height: 1;
}
.blog-card .blog-card-excerpt {
  color: #333;
  margin: 0 10px 10px 0;
  line-height: 1.5em;
}
.blog-card .blog-card-excerpt .button {
  font-size: calc(var(--s-val) * 1.4);
  display: block;
  text-align: center;
  padding: 5px;
  width: 200px;
  max-width: 90%;
  margin: 0 0 0 auto;
  background: var(--color_link-blue);
  color: #fff;
  position: relative;
}

@media screen and (max-width: 400px) {
  /* sp only */
  .blog-card a {
    padding: 5px;
  }
  .blog-card img {
    width: 80px;
  }
  .blog-card .blog-card-title {
    font-size: 0.8em;
  }
  .blog-card .blog-card-content {
    width: calc(100% - 100px);
  }
  .blog-card .blog-card-excerpt .button {
    font-size: 0.7em;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .blog-card .blog-card-excerpt .button::after {
    display: none !important;
  }
} /* sp only */
/*-------------------------
  ショートコード：ブログカード
  -------------------------*/
/* ==================
* 散歩マップ
* ================== */
.report-map h2 {
  font-size: 120%;
}
.report-map iframe {
  width: 100%;
  aspect-ratio: 16/11;
  border: none;
}
.report-map .caption {
  display: block;
  font-size: calc(var(--s-val) * 1.4);
  text-align: center;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  /* sp only */
  .report-map iframe {
    border: none;
  }
  .report-map .caption {
    font-size: calc(var(--s-val) * 1.1);
  }
} /* sp only */
/* end 散歩マップ */
/* ==================
* promotion_post
* ================== */
.promotion_post {
  margin-block: 0;
}
.promotion_post .head {
  margin-block: 0 calc(var(--s-val) * 1);
  font-size: calc(var(--s-val) * 1.6);
}
.promotion_post .post-item .image-wrap {
  aspect-ratio: 16/9;
}
.promotion_post .post-item .image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.promotion_post .post-item .text {
  background-color: var(--color_sub-key);
  color: #FFF;
  padding-block: calc(var(--s-val) * 1);
  padding-inline: calc(var(--s-val) * 2);
}

/* end promotion_post */
/* ==================
* top-page_contents
* ================== */
.top-page_contents .nav-block {
  margin-top: 0 !important;
}
.top-page_contents .nav_lists {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: calc(var(--s-val) * 1);
}
.top-page_contents li {
  --bg_image: url("http://localhost:8848/wp-content/uploads/2023/09/iwase-park_main-150x150.jpg");
  aspect-ratio: 1;
  background: var(--bg_image) rgba(255, 255, 255, 0) no-repeat top 50% left 50%/cover;
  -webkit-transition: -webkit-filter 0.3s 0s;
  transition: -webkit-filter 0.3s 0s;
  transition: filter 0.3s 0s;
  transition: filter 0.3s 0s, -webkit-filter 0.3s 0s;
  aspect-ratio: 1;
}
.top-page_contents li a {
  background-color: transparent;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1 !important;
}
.top-page_contents li .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  padding-block: calc(var(--s-val) * 0.8);
  padding-inline: calc(var(--s-val) * 1.2);
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.231372549);
          box-shadow: 0 0 13px rgba(0, 0, 0, 0.231372549);
  font-weight: 400;
  text-shadow: 0 0 13px rgba(0, 0, 0, 0.5803921569);
}
.top-page_contents li:has(a:hover) {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

/* end top-page_contents */
/* ==================
* slider-post
* ================== */
.slider-post .post-item {
  width: calc(var(--s-val) * 16);
  margin-inline: calc(var(--s-val) * 1);
}
.slider-post .post-item .image-wrap {
  aspect-ratio: 16/11;
}
.slider-post .post-item .image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.slider-post .post-item .post-title {
  font-size: calc(var(--s-val) * 1.2);
  line-height: 1.4;
  margin-top: calc(var(--s-val) * 1);
}
.slider-post .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--s-val) * 1);
  bottom: -50px;
}
.slider-post .slick-dots li {
  margin: 0;
  width: 10px;
}
.slider-post .slick-dots li.slick-active button:before, .slider-post .slick-dots li button:hover:before {
  color: var(--color_key) !important;
}

/* end slider-post */
/* ==================
* pagination
* ================== */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(var(--s-val) * 0.2);
  margin-top: calc(var(--s-val) * 4);
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color_sub-key_light);
  aspect-ratio: 1;
  width: calc(var(--s-val) * 3);
}
.pagination a {
  background-color: var(--color_link-blue) !important;
  color: #FFF !important;
}

/* end pagination */
/*記事最後に表示されるプロフィール*/
.prof {
  width: 100%;
  padding: 2% 3%;
  background: #fff;
  border: 4px solid #efefef;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 30px;
  font-size: 14px;
}
.prof p {
  margin-block: calc(var(--s-val) * 1);
  font-weight: 400;
}
.prof:after {
  content: "";
  display: block;
  clear: both;
}
.prof .title {
  padding-top: 0%;
  font-weight: bold;
  margin: 0 0 9px !important;
}
.prof .me {
  display: block;
  float: left;
  width: 148px;
}
.prof .text {
  width: calc(100% - 178px);
  float: left;
  margin: 0 0 0 30px;
}

@media screen and (max-width: 550px) {
  /* sp only */
  .prof {
    width: 100%;
    padding: 2% 3% 2% 3%;
    background: #fff;
    font-size: 14px;
    margin: 20px auto;
  }
  .prof .tite {
    padding-top: 0%;
    font-weight: bold;
    margin: 0 0 9px;
    font-size: 14px;
  }
  .prof .me {
    display: block;
    margin: 0 auto 10px;
    width: 146px;
    float: none;
  }
  .prof .text {
    width: 100%;
    font-size: 12px;
    float: none;
    margin: 0;
  }
} /* sp only */
.new-post {
  display: block;
  width: 100%;
  background: var(--color_key);
  color: #ffffff !important;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
  margin: 0 0 2em;
}

.new-post_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.new-post_head {
  font-weight: normal;
  font-size: 0.9em;
  margin: 0;
}

.new-post_image {
  display: block;
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.new-post_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 60%;
  padding: 1.2em 1.2em 2.2em;
}

.new-post_title {
  margin: 0.2em 0 0;
  font-size: 1.25em;
}

.new-post_time {
  display: block;
  font-size: 0.9em;
  font-weight: normal;
  margin: 0.4em 0 0;
}

.new-post_end-text {
  text-align: right;
  font-size: 0.8em;
  font-weight: normal;
  position: absolute;
  right: 1em;
  bottom: 1em;
  margin: 0;
}

@media screen and (min-width: 901px) {
  /* pc only */
  .nav-original-menu .new-post_flex {
    display: block;
  }
  .nav-original-menu .new-post_image {
    width: 100%;
  }
  .nav-original-menu .new-post_text {
    width: 100%;
  }
} /* pc only */
@media screen and (max-width: 767px) {
  /* sp only */
  .new-post {
    font-size: 12px;
  }
  .new-post_image {
    width: 45%;
  }
  .new-post_text {
    width: 55%;
  }
} /* sp only */
/*  記事冒頭の新着記事 end */
/* ==================
* grid-block
* ================== */
.grid-block {
  display: -ms-grid;
  display: grid;
  --fit-width: 300px;
  grid-template-columns: repeat(auto-fit, minmax(var(--fit-width), 1fr));
  gap: calc(var(--s-val) * 2);
  margin-top: calc(var(--s-val) * 5);
}
.grid-block .column {
  background: var(--color_key);
}
.grid-block .column .column_title {
  background-color: #FFF;
  margin: 0;
  padding-bottom: calc(var(--s-val) * 1);
}

/* 「side」のコンテナクエリ */
@container side (max-width: 320px) {
  .grid-block {
    --fit-width: 220px;
    margin-top: calc(var(--s-val) * 3);
  }
  .grid-block .column .column_title {
    text-align: center;
    font-size: calc(var(--s-val) * 1.4);
  }
} /* 「side」のコンテナクエリ */
/* end grid-block */
/* ==================
* feed
* ================== */
.feed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--s-val) * 1);
  background-color: var(--color_bg_gray01);
  border-radius: calc(var(--s-val) * 0.2);
  padding-block: calc(var(--s-val) * 0.4);
}
.feed svg {
  width: calc(var(--s-val) * 1.4);
}
.feed .text {
  font-size: calc(var(--s-val) * 1.3);
}

/* end feed */