@charset "UTF-8";
/* =========================================================

RESET(初期設定のリセット)

========================================================= */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
  list-style-type: none;
}

/* A elements that don't have a class get default styles */
a {
  text-decoration: none;
}

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

/* Make images easier to work with */
img {
  max-width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================================================

フォント読み込み(webfontsフォルダからの読み込み)

========================================================= */
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  src: url("../webfonts/Jost-Regular.woff2") format("woff2"), url("../webfonts/Jost-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  src: url("../webfonts/Jost-Medium.woff2") format("woff2"), url("../webfonts/Jost-Medium.woff") format("woff");
  font-display: swap;
}
/* =========================================================

GLOBAL(グローバル設定)

========================================================= */
html {
  /* 和文＋欧文のシステム優先 */
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Segoe UI", "Yu Gothic UI", "Yu Gothic", Meiryo, "Noto Sans JP", "Noto Sans", Roboto, Helvetica, Arial, sans-serif;
  font-size: 62.5%;
  line-height: 1.7;
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (width >= 1024px) and (width <= 1280px) {
  html {
    font-size: 60%;
  }
}
@media screen and (width >= 768px) and (width <= 1023px) {
  html {
    font-size: 56%;
  }
}
@media screen and (width <= 767px) {
  html {
    font-size: 53%;
  }
}
/*　==============================================
― PC表示
==============================================　*/
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

/*　==============================================
― スマホ切り替え
==============================================　*/
@media screen and (max-width: 767px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}
/* =========================================================

BASE(最も基礎的なレイアウト設定)

========================================================= */
body {
  background: #fff;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin: 3rem 0 1rem 0;
}

h3 {
  font-size: 2.1rem;
  margin: 2rem 0 1rem 0;
}

ul {
  list-style-type: none;
  margin: 1.5rem 0 1rem 0;
}
ul li {
  line-height: 2.2;
  font-size: 1.8rem;
}

p {
  line-height: 1.8;
  font-size: 1.7rem;
  padding: 1rem 0;
}

main.main-content {
  max-width: 100%;
  padding: 0 4% 0 4%;
}
main.main-content a {
  color: #111;
  text-decoration: underline;
}

.page-head {
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
  padding: 5rem 4%;
}

/* =========================================================

HEADER

========================================================= */
.g-header {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #d7d7d7;
  z-index: 50;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* オープン時の×アニメ */
}
.g-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: relative;
  /* Theme Toggle Switch */
  /* ハンバーガーボタン */
}
.g-header .inner a.logo {
  color: #111;
}
.g-header .inner a.logo img {
  display: block;
  width: 100%;
  height: auto;
}
.g-header .inner a.logo .sr-only {
  font-size: 2rem;
}
.g-header .inner .g-nav {
  display: flex;
  gap: 2.4rem;
}
.g-header .inner .g-nav .g-nav-link {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1.6rem;
}
.g-header .inner .g-nav .g-nav-link:hover {
  color: #007aff;
}
.g-header .inner .theme-toggle {
  width: 48px;
  height: 24px;
  border-radius: 999px;
  background-color: #ccc;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 12px;
  flex-shrink: 0;
}
.g-header .inner .theme-toggle .toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.g-header .inner .theme-toggle.is-dark {
  background-color: #007aff;
}
.g-header .inner .theme-toggle.is-dark .toggle-thumb {
  transform: translateX(24px);
  background: #fff;
}
.g-header .inner .menu-btn {
  font: inherit;
  line-height: 1.75;
  padding: 0;
  margin: 0;
  display: none;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #e8e8e8;
  z-index: 60;
}
.g-header .inner .menu-btn span {
  display: block;
  width: 50%;
  height: 2px;
  background: #171717;
  transition: 0.3s;
  border-radius: 1px;
  text-align: left;
  margin: 0;
  padding: 0;
}
.g-header .inner .menu-btn span:nth-child(1) {
  transform: translateY(-5px);
}
.g-header .inner .menu-btn span:nth-child(3) {
  transform: translateY(5px);
}
.g-header.is-open .inner .menu-btn {
  transform: rotate(360deg);
}
.g-header.is-open .inner .menu-btn span:nth-child(1) {
  transform: translateY(1.5px) rotate(45deg);
}
.g-header.is-open .inner .menu-btn span:nth-child(2) {
  opacity: 0;
}
.g-header.is-open .inner .menu-btn span:nth-child(3) {
  transform: translateY(-1.5px) rotate(-45deg);
}

/* スマホナビ */
@media (max-width: 768px) {
  .g-header {
    position: relative;
    z-index: 100; /* ヘッダー本体は最前面 */
  }
  .g-header .inner .g-nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 110;
  }
  .g-header .inner .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 110; /* ボタンは最前面でクリック可能 */
  }
  .g-header .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 40;
  }
  .g-header.is-open .inner .g-nav {
    display: flex;
    opacity: 1;
  }
}
/* =========================================================

FOOTER

========================================================= */
.g-footer {
  position: relative;
  padding: 7rem 0 0 0;
  margin: 5rem 0 0 0;
}
.g-footer::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  background: rgba(247, 247, 247, 0.968627451);
  height: 7rem;
}
.g-footer .inner {
  margin: 2rem 0 0 0;
}
.g-footer .inner .f-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.g-footer .inner .f-nav a {
  color: #343434;
  display: block;
}
.g-footer .inner .f-nav.main a {
  font-size: 1.8rem;
  padding: 0 1.5rem;
  margin: 1rem 0 0 0;
}
.g-footer .inner .f-nav.sub {
  margin: 2rem 0 0 0;
  padding: 0 0 2rem 0;
}
.g-footer .inner .f-nav.sub a {
  display: block;
  position: relative;
  font-size: 1.4rem;
  padding: 0 1.5rem;
  margin: 1rem 0 0 0;
}
.g-footer .inner .f-nav.sub a::after {
  content: "";
  position: absolute;
  background: #777;
  right: 0;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
  width: 0.1rem;
  height: 2rem;
}
.g-footer .inner .f-nav.sub a:last-child::after {
  display: none;
}
.g-footer .copy {
  text-align: center;
  border-top: solid 1px rgba(208, 208, 208, 0.968627451);
  margin: 3rem 0 0 0;
  padding: 1.5rem 0 2rem 0;
  font-size: 1.3rem;
  letter-spacing: 0.4rem;
}

/* =========================================================

LIST-CARD

========================================================= */
.list.list-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.6rem;
  margin: 1.6rem 0 0 0;
}
.list.list-card .card a {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  height: 100%;
  border: solid 1px #f1f1f1;
  box-shadow: rgba(199, 199, 199, 0.15) 0px 48px 100px 0px;
  border-radius: 1rem;
  padding: 1.4rem 2.2rem;
}
.list.list-card .card a h3 {
  color: #111;
  line-height: 1.5;
  font-size: 1.9rem;
}
.list.list-card .card a .muted {
  color: #333;
  line-height: 1.45;
  margin: 1.5rem 0 0 0;
  font-size: 1.5rem;
}

/*　==============================================
― 段落上-01コメント
==============================================　*/
/*-----　段落上-02コメント ---- */
/*　プロパティ横コメント  */
/* -----------------------------------
Responsive: 1024–1280 (Small PC)
----------------------------------- */
/* -----------------------------------
Responsive: 768–1023 (Tablet)
----------------------------------- */
/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
/* =========================================================

PAGINATION

========================================================= */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}
.pagination button {
  min-width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  padding: 0 10px;
}
.pagination.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}
.pagination select {
  height: 34px;
  padding: 0 32px 0 10px; /* 左右バランス */
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* 標準の矢印を消す */
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L5 7L9 3' stroke='%23777' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  /* Chrome の内部矢印も消す */
}
.pagination select::-ms-expand {
  display: none;
}
.pagination .fade-enter-active,
.pagination .fade-leave-active {
  transition: opacity 0.25s, transform 0.25s;
}
.pagination .fade-enter-from,
.pagination .fade-leave-to {
  opacity: 0;
  transform: translateY(8px);
}

/* =========================================================

RELATED-POST(関連記事)

========================================================= */
.related-posts {
  position: relative;
  max-width: 1080px;
  margin: 5rem auto 0;
  background: #fff;
  padding: 0rem 5rem;
}
.related-posts h2 {
  display: flex;
  align-items: center;
  gap: 1rem; /* 線と文字の余白 */
  margin: 0 0 0 0;
}
.related-posts h2::before, .related-posts h2::after {
  content: "";
  height: 1px;
  background: #111;
}
.related-posts h2::before {
  width: 3rem;
}
.related-posts h2::after {
  flex: 1;
}
.related-posts ul {
  border-bottom: solid 1px #111;
  padding: 0rem 0 2.75rem 0;
}
.related-posts ul li {
  line-height: 1.45;
  padding: 0em 2.5rem 0rem 2.5rem;
  margin: 2rem 0 0 0;
}
.related-posts ul li a {
  color: #222;
}
.related-posts ul li a::before {
  content: "●";
  color: #8c8c8c;
  position: relative;
  top: -0.2rem;
  font-size: 0.85rem;
  margin: 0 1rem 0 0;
}

/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media (max-width: 767px) {
  .related-posts {
    max-width: 100%;
    margin: 2rem auto 0;
    padding: 0rem 3.5rem;
  }
}
/* =========================================================

AUTOHR(著者紹介「E-E-A-T」対策)

========================================================= */
.author-card {
  max-width: 1080px;
  margin: 5rem auto 0;
  padding: 0rem 5rem;
}
.author-card h2 {
  margin: 0 0 -2rem 0;
  padding: 0 0 0 5rem;
}
.author-card .inner {
  background: #f7f7f7;
  padding: 5rem 5rem 3.5rem;
}
.author-card .inner .top {
  display: flex;
  align-items: center;
}
.author-card .inner .top .avatar {
  background: linear-gradient(135deg, #f7f7f7, #e4e4e4);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
}
.author-card .inner .top .summary {
  display: flex;
  align-items: flex-end;
  padding: 0 0 0 2rem;
}
.author-card .inner .top .summary h3 {
  line-height: 1.5;
  margin: 0;
}
.author-card .inner .top .summary p {
  position: relative;
  top: -0.1rem;
  line-height: 1.5;
  font-family: "Jost";
  font-weight: 500;
  margin: 0;
  padding: 0 0 0 3.5rem;
  letter-spacing: 0.25rem;
  font-size: 1.4rem;
}
.author-card .inner .top .summary p::before {
  content: "";
  background: #616161;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
  width: 1px;
  height: 1.75rem;
}
.author-card .inner .text-wrap {
  margin: 3rem 0 0 0;
}
.author-card .inner .text-wrap .bio {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
}
.author-card .inner .text-wrap .bio::before {
  content: "";
  background: #616161;
  width: 5rem;
  height: 1px;
  margin: 0 1rem 0 0;
}
.author-card .inner .text-wrap h4 {
  font-size: 1.6rem;
  margin: 3rem 0 0;
}
.author-card .inner .text-wrap .detail {
  margin: 1rem 0 0 0;
  line-height: 1.8;
  font-size: 1.45rem;
}
.author-card .inner .text-wrap .links {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 2rem 0 0 0;
  gap: 0.8rem;
}
.author-card .inner .text-wrap .links li a {
  color: #616161;
  text-decoration: underline;
  background: #e6e6e6;
  padding: 1rem 3rem;
  font-size: 1.6rem;
}

/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media (max-width: 767px) {
  .author-card {
    max-width: 100%;
    margin: 3rem auto 0;
    padding: 0rem 3.5rem;
  }
}
/* =========================================================

CTA

========================================================= */
.cta-box {
  max-width: 1080px;
  margin: 5rem auto 0;
  padding: 0rem 5rem;
}
.cta-box .inner {
  background: #fff;
  border: solid 8px #f0f0f0;
  box-shadow: rgba(185, 185, 185, 0.2) 0px 7px 29px 0px;
  padding: 4rem 4rem;
}
.cta-box .inner h2 {
  text-align: center;
  font-size: 2.5rem;
}
.cta-box .inner h2 br {
  display: none;
}
.cta-box .inner p {
  width: 80%;
  line-height: 2;
  text-align: center;
  font-size: 1.8rem;
  margin: 1rem auto 0;
  padding: 1rem 0 1rem;
}
.cta-box .inner .cta-buttons {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 3rem 0 0 0;
}
.cta-box .inner .cta-buttons .cta-button {
  position: relative;
  display: flex;
  justify-content: center;
  background: #858585;
  color: #fff;
  border-radius: 10rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 30rem;
  padding: 1.5rem 3rem 1.5rem 3rem;
  transition: transform 0.3s ease;
}
.cta-box .inner .cta-buttons .cta-button .catch {
  font-size: 1.7rem;
}
.cta-box .inner .cta-buttons .cta-button .arrow {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 4rem;
  top: 50%;
  transform: translate(0, -50%);
}
.cta-box .inner .cta-buttons .cta-button .arrow .arrow-body {
  display: inline-block;
  background-color: #fff;
  width: 1.84rem;
  height: 0.1rem;
  transform-origin: left center;
}
.cta-box .inner .cta-buttons .cta-button .arrow .arrow-head {
  display: inline-block;
  transform: rotate(45deg);
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: -0.4rem;
}
.cta-box .inner .cta-buttons .cta-button:hover {
  transform: scale(1.05);
}
.cta-box .inner .cta-buttons .cta-button:hover::before {
  transform: scaleX(1);
}

/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media (max-width: 767px) {
  .cta-box {
    max-width: 100%;
    margin: 5rem auto 0;
    padding: 0rem 3.5rem;
  }
}
/* =========================================================

TOP-PAGE

========================================================= */
.top-page .main-content section {
  margin: 5rem 0 0 0;
}
.top-page .main-content section section {
  margin: 2.5rem 0 0 0;
}
.top-page .main-content section h2 {
  text-align: center;
  font-size: 3.2rem;
}
.top-page .main-content section .sentence {
  text-align: center;
  margin: 2rem 0 0 0;
}
.top-page .main-content section .sentence p {
  font-size: 1.7rem;
  padding: 1rem 0;
}
.top-page .main-content .button {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #fff;
  box-shadow: 5px 5px #e9e9e9;
  width: 30rem;
  margin: 3rem auto 0;
  border: solid 1px #282828;
  padding: 1.5rem 2rem 1.5rem 2rem;
  transition: transform 0.3s ease;
}
.top-page .main-content .button::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-color: #000;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.top-page .main-content .button a {
  color: #000;
  font-size: 1.8rem;
}
.top-page .main-content .button:hover {
  transform: scale(1.05);
}
.top-page .main-content .button:hover::before {
  transform: scaleX(1);
}
.top-page .main-content .introduce {
  position: relative;
  padding: 10rem 0 6rem 0;
  background-image: linear-gradient(135deg, #efefef 0%, #ffffff 50%, #ececec 100%);
  text-align: center;
  width: 108%;
  margin: 0 0 0 -4% !important;
}
.top-page .main-content .introduce h1 .sub,
.top-page .main-content .introduce h1 .main {
  display: block;
}
.top-page .main-content .introduce h1 .main {
  font-size: 4.2rem;
  color: #000;
}
.top-page .main-content .introduce h1 .sub {
  font-size: 2.8rem;
  color: #555;
}
.top-page .main-content .introduce .sentence {
  margin: 1rem auto 0;
  width: 100%;
  padding: 0 5%;
}
.top-page .main-content .introduce .sentence p {
  line-height: 2;
  padding: 1rem 0;
  font-size: 1.7rem;
}
.top-page .main-content .categories {
  margin: 4rem 0 0 0;
}
.top-page .main-content .categories .category-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
  gap: 1.6rem;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 3rem 0 0 0;
  padding: 5rem 5rem;
  border: solid 3px #ebebeb;
}
.top-page .main-content .categories .category-list h3 a {
  text-decoration: underline;
  color: #111;
}
.top-page .main-content .article-list .news-list .list.list-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
}
.top-page .main-content .article-list .news-list .list.list-card .card a {
  padding: 5rem 3rem;
}
.top-page .main-content .target ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  gap: 1.6rem;
  margin: 3rem 0 0 0;
}
.top-page .main-content .target ul li {
  position: relative;
  background: #fafafa;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  line-height: 1.5;
  font-size: 1.7rem;
}
.top-page .main-content .target ul li::before {
  content: "";
  flex: 0 0 auto; /* ← 絶対必要！ */
  width: 4rem;
  height: 1px;
  background: #333;
  margin: 0 1rem 0 0;
}
.top-page .main-content .target ul li::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: solid 1px #ccc;
}
.top-page .main-content .site-eat .profile-list {
  margin: 3rem auto 0;
  display: flex;
  justify-content: space-between;
}
.top-page .main-content .site-eat .profile-list .profile-item {
  display: flex;
  align-items: flex-start;
  width: 49.5%;
  background: #f7f7f7;
}
.top-page .main-content .site-eat .profile-list .profile-item .thumb {
  width: 25rem;
  height: 25rem;
}
.top-page .main-content .site-eat .profile-list .profile-item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-page .main-content .site-eat .profile-list .profile-item .info {
  width: calc(100% - 25rem);
  padding: 2.5rem 3.5rem 2.5rem 3.5rem;
}
.top-page .main-content .site-eat .profile-list .profile-item .info h3 {
  font-size: 2rem;
}
.top-page .main-content .site-eat .profile-list .profile-item .info h4 {
  margin: 1rem 0 0.5rem 0;
  font-size: 2.5rem;
}
.top-page .main-content .site-eat .profile-list .profile-item .info h4 .furigana {
  font-family: "Jost";
  font-weight: 400;
  font-size: 0.7em;
  padding: 0 0 0 1.5rem;
}
.top-page .main-content .site-eat .profile-list .profile-item .info .semi {
  letter-spacing: 0.15rem;
  font-size: 1.8rem;
  background: #333;
  display: inline-block;
  border-radius: 100px;
  padding: 0 2.5rem;
  color: #fff;
}
.top-page .main-content .site-eat .profile-list .profile-item .info p {
  margin: 1rem 0 0 0;
  line-height: 1.5;
  font-size: 1.5rem;
}
.top-page .main-content .site-eat .profile-list .profile-item.no-thumb .info {
  width: 100%;
}
.top-page .main-content .optional .box-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 2rem 0 0 0;
}
.top-page .main-content .optional .box-wrapper .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: solid 1px #111;
  border-top: none;
  width: 49%;
  margin: 2rem 0 0 0;
  padding: 0 0 2.5rem 0;
}
.top-page .main-content .optional .box-wrapper .box .explain h3 {
  font-size: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem; /* 線と文字の余白 */
  margin: 0 0 0 0;
}
.top-page .main-content .optional .box-wrapper .box .explain h3 span {
  position: relative;
  transform: translate(0, -50%);
}
.top-page .main-content .optional .box-wrapper .box .explain h3::before, .top-page .main-content .optional .box-wrapper .box .explain h3::after {
  content: "";
  height: 1px;
  background: #111;
}
.top-page .main-content .optional .box-wrapper .box .explain h3::before {
  width: 6rem;
}
.top-page .main-content .optional .box-wrapper .box .explain h3::after {
  flex: 1;
}
.top-page .main-content .optional .box-wrapper .box .explain p {
  margin: 0rem 0 0 0;
  padding: 1rem 3rem;
  line-height: 1.8;
  font-size: 1.7rem;
}

/* -----------------------------------
Responsive: 1024–1280 (Small PC)
----------------------------------- */
@media (min-width: 1024px) and (max-width: 1280px) {
  .top-page .main-content section {
    margin: 5rem 0 0 0;
  }
  .top-page .main-content section section {
    margin: 2.5rem 0 0 0;
  }
  .top-page .main-content section h2 {
    font-size: 3.2rem;
  }
  .top-page .main-content section .sentence {
    margin: 2rem 0 0 0;
  }
  .top-page .main-content section .sentence p {
    font-size: 1.7rem;
    padding: 1rem 0;
  }
  .top-page .main-content .button {
    width: 30rem;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem 1.5rem 2rem;
  }
  .top-page .main-content .button::after {
    right: 2rem;
    top: 50%;
    width: 6px;
    height: 6px;
  }
  .top-page .main-content .button a {
    font-size: 1.8rem;
  }
  .top-page .main-content .button:hover {
    transform: scale(1.05);
  }
  .top-page .main-content .button:hover::before {
    transform: scaleX(1);
  }
  .top-page .main-content .introduce {
    padding: 10rem 0 6rem 0;
    width: 108%;
    margin: 0 0 0 -4% !important;
  }
  .top-page .main-content .introduce h1 .main {
    font-size: 4.2rem;
  }
  .top-page .main-content .introduce h1 .sub {
    font-size: 2.8rem;
  }
  .top-page .main-content .introduce .sentence {
    margin: 1rem auto 0;
    width: 100%;
    padding: 0 5%;
  }
  .top-page .main-content .introduce .sentence p {
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.7rem;
  }
  .top-page .main-content .categories {
    margin: 4rem 0 0 0;
  }
  .top-page .main-content .categories .category-list {
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    gap: 1.6rem;
    margin: 3rem 0 0 0;
    padding: 5rem 5rem;
  }
  .top-page .main-content .article-list .news-list .list.list-card {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  }
  .top-page .main-content .article-list .news-list .list.list-card .card a {
    padding: 5rem 3rem;
  }
  .top-page .main-content .target ul {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 1.6rem;
    margin: 3rem 0 0 0;
  }
  .top-page .main-content .target ul li {
    padding: 2rem 3rem;
    line-height: 1.5;
    font-size: 1.7rem;
  }
  .top-page .main-content .target ul li::before {
    content: "";
    width: 4rem;
    height: 1px;
    margin: 0 1rem 0 0;
  }
  .top-page .main-content .target ul li::after {
    width: calc(100% + 6px);
    height: calc(100% + 6px);
  }
  .top-page .main-content .site-eat .profile-list .profile-item {
    width: 49.5%;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .thumb {
    width: 20rem;
    height: 20rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info {
    width: calc(100% - 20rem);
    padding: 2.5rem 3rem 2.5rem 3rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info h3 {
    font-size: 2rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info h4 {
    margin: 1rem 0 0.5rem 0;
    font-size: 2.5rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info h4 .furigana {
    font-size: 0.7em;
    padding: 0 0 0 0rem;
    display: block;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info .semi {
    letter-spacing: 0.15rem;
    font-size: 1.8rem;
    border-radius: 100px;
    padding: 0 2.5rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info p {
    margin: 1rem 0 0 0;
    line-height: 1.5;
    font-size: 1.5rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item.no-thumb .info {
    width: 100%;
  }
  .top-page .main-content .optional .box-wrapper {
    padding: 2rem 0 0 0;
  }
  .top-page .main-content .optional .box-wrapper .box {
    width: 49%;
    margin: 2rem 0 0 0;
    padding: 0 0 2.5rem 0;
  }
  .top-page .main-content .optional .box-wrapper .box .explain h3 {
    font-size: 2.5rem;
    gap: 1rem;
    margin: 0 0 0 0;
  }
  .top-page .main-content .optional .box-wrapper .box .explain h3::before, .top-page .main-content .optional .box-wrapper .box .explain h3::after {
    content: "";
    height: 1px;
  }
  .top-page .main-content .optional .box-wrapper .box .explain h3::before {
    width: 6rem;
  }
  .top-page .main-content .optional .box-wrapper .box .explain p {
    margin: 0rem 0 0 0;
    padding: 1rem 3rem;
    line-height: 1.8;
    font-size: 1.7rem;
  }
}
/* -----------------------------------
Responsive: 768–1023 (Tablet)
----------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .top-page .main-content section {
    margin: 5rem 0 0 0;
  }
  .top-page .main-content section section {
    margin: 2.5rem 0 0 0;
  }
  .top-page .main-content section h2 {
    font-size: 2.9rem;
  }
  .top-page .main-content section .sentence {
    margin: 2rem 0 0 0;
  }
  .top-page .main-content section .sentence p {
    font-size: 1.6rem;
    padding: 1rem 0;
  }
  .top-page .main-content .button {
    width: 30rem;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem 1.5rem 2rem;
  }
  .top-page .main-content .button::after {
    right: 2rem;
    top: 50%;
    width: 6px;
    height: 6px;
  }
  .top-page .main-content .button a {
    font-size: 1.8rem;
  }
  .top-page .main-content .button:hover {
    transform: scale(1.05);
  }
  .top-page .main-content .button:hover::before {
    transform: scaleX(1);
  }
  .top-page .main-content .introduce {
    padding: 10rem 0 6rem 0;
    width: 108%;
    margin: 0 0 0 -4% !important;
  }
  .top-page .main-content .introduce h1 .main {
    font-size: 3.8rem;
  }
  .top-page .main-content .introduce h1 .sub {
    font-size: 2.6rem;
  }
  .top-page .main-content .introduce .sentence {
    margin: 1rem auto 0;
    width: 100%;
    padding: 0 5%;
  }
  .top-page .main-content .introduce .sentence p {
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.6rem;
  }
  .top-page .main-content .categories {
    margin: 4rem 0 0 0;
  }
  .top-page .main-content .categories .category-list {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 1.6rem;
    margin: 3rem 0 0 0;
    padding: 4rem 4rem;
  }
  .top-page .main-content .article-list .news-list .grid {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  }
  .top-page .main-content .article-list .news-list .grid .card a {
    padding: 5rem 3rem;
  }
  .top-page .main-content .target ul {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 1.6rem;
    margin: 3rem 0 0 0;
  }
  .top-page .main-content .target ul li {
    padding: 2rem 1rem;
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .top-page .main-content .target ul li::before {
    content: "";
    width: 2.5rem;
    height: 1px;
    margin: 0 1rem 0 0;
  }
  .top-page .main-content .target ul li::after {
    width: calc(100% + 6px);
    height: calc(100% + 6px);
  }
  .top-page .main-content .site-eat .profile-list {
    display: block;
  }
  .top-page .main-content .site-eat .profile-list .profile-item {
    width: 100%;
    margin: 1.5rem 0 0 0;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .thumb {
    width: 20rem;
    height: 20rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info {
    width: calc(100% - 20rem);
    padding: 2.5rem 3rem 2.5rem 3rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info h3 {
    font-size: 2rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info h4 {
    margin: 1rem 0 0.5rem 0;
    font-size: 2.5rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info h4 .furigana {
    font-size: 0.7em;
    padding: 0 0 0 1rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info .semi {
    letter-spacing: 0.15rem;
    font-size: 1.8rem;
    border-radius: 100px;
    padding: 0 2.5rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info p {
    margin: 1rem 0 0 0;
    line-height: 1.5;
    font-size: 1.5rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item.no-thumb .info {
    width: 100%;
  }
  .top-page .main-content .optional .box-wrapper {
    padding: 2rem 0 0 0;
  }
  .top-page .main-content .optional .box-wrapper .box {
    width: 49%;
    margin: 2rem 0 0 0;
    padding: 0 0 2.5rem 0;
  }
  .top-page .main-content .optional .box-wrapper .box .explain h3 {
    font-size: 2.5rem;
    gap: 1rem;
    margin: 0 0 0 0;
  }
  .top-page .main-content .optional .box-wrapper .box .explain h3::before, .top-page .main-content .optional .box-wrapper .box .explain h3::after {
    content: "";
    height: 1px;
  }
  .top-page .main-content .optional .box-wrapper .box .explain h3::before {
    width: 6rem;
  }
  .top-page .main-content .optional .box-wrapper .box .explain p {
    margin: 0rem 0 0 0;
    padding: 1rem 3rem;
    line-height: 1.8;
    font-size: 1.7rem;
  }
}
/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media (max-width: 767px) {
  .top-page .main-content section {
    margin: 5rem 0 0 0;
  }
  .top-page .main-content section section {
    margin: 2.5rem 0 0 0;
  }
  .top-page .main-content section h2 {
    font-size: 2.5rem;
  }
  .top-page .main-content section .sentence {
    margin: 2rem 0 0 0;
    padding: 0 3%;
  }
  .top-page .main-content section .sentence p {
    font-size: 1.6rem;
    padding: 1rem 0;
  }
  .top-page .main-content .button {
    width: 30rem;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem 1.5rem 2rem;
  }
  .top-page .main-content .button::after {
    right: 2rem;
    top: 50%;
    width: 6px;
    height: 6px;
  }
  .top-page .main-content .button a {
    font-size: 1.8rem;
  }
  .top-page .main-content .button:hover {
    transform: scale(1.05);
  }
  .top-page .main-content .button:hover::before {
    transform: scaleX(1);
  }
  .top-page .main-content .introduce {
    padding: 7rem 0 6rem 0;
    width: 108%;
    margin: 0 0 0 -4% !important;
  }
  .top-page .main-content .introduce h1 .main {
    font-size: 3.6rem;
  }
  .top-page .main-content .introduce h1 .sub {
    font-size: 2.4rem;
  }
  .top-page .main-content .introduce .sentence {
    margin: 1rem auto 0;
    width: 100%;
    padding: 0 5%;
  }
  .top-page .main-content .introduce .sentence p {
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.6rem;
  }
  .top-page .main-content .categories {
    margin: 4rem 0 0 0;
  }
  .top-page .main-content .categories .category-list {
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
    gap: 1.6rem;
    margin: 3rem 0 0 0;
    padding: 3rem 2.5rem;
  }
  .top-page .main-content .article-list .news-list .list.list-card {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    display: block;
  }
  .top-page .main-content .article-list .news-list .list.list-card .card a {
    padding: 2rem 3rem;
  }
  .top-page .main-content .target ul {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 1.6rem;
    margin: 3rem 0 0 0;
    display: block;
  }
  .top-page .main-content .target ul li {
    padding: 2rem 1rem;
    line-height: 1.5;
    font-size: 1.6rem;
    margin: 1.6rem 0 0 0;
  }
  .top-page .main-content .target ul li::before {
    content: "";
    width: 2rem;
    height: 1px;
    margin: 0 1rem 0 0;
  }
  .top-page .main-content .target ul li::after {
    width: calc(100% + 6px);
    height: calc(100% + 6px);
  }
  .top-page .main-content .site-eat .profile-list {
    display: block;
  }
  .top-page .main-content .site-eat .profile-list .profile-item {
    width: 100%;
    margin: 1.5rem 0 0 0;
    display: block;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .thumb {
    width: 20rem;
    height: 20rem;
    margin: 0 auto 0;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info {
    width: calc(100% - 0rem);
    padding: 2.5rem 3rem 2.5rem 3rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info h3 {
    font-size: 2rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info h4 {
    margin: 1rem 0 0.5rem 0;
    font-size: 2.5rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info h4 .furigana {
    font-size: 0.7em;
    padding: 0 0 0 1rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info .semi {
    letter-spacing: 0.15rem;
    font-size: 1.8rem;
    border-radius: 100px;
    padding: 0 2.5rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item .info p {
    margin: 1rem 0 0 0;
    line-height: 1.5;
    font-size: 1.5rem;
  }
  .top-page .main-content .site-eat .profile-list .profile-item.no-thumb .info {
    width: 100%;
  }
  .top-page .main-content .optional .box-wrapper {
    padding: 1.5rem 0 0 0;
    display: block;
  }
  .top-page .main-content .optional .box-wrapper .box {
    width: 100%;
    margin: 4.5rem 0 0 0;
    padding: 0 0 2.5rem 0;
  }
  .top-page .main-content .optional .box-wrapper .box .explain h3 {
    font-size: 2.2rem;
    gap: 1rem;
    margin: 0 0 0 0;
  }
  .top-page .main-content .optional .box-wrapper .box .explain h3::before, .top-page .main-content .optional .box-wrapper .box .explain h3::after {
    content: "";
    height: 1px;
  }
  .top-page .main-content .optional .box-wrapper .box .explain h3::before {
    width: 3.5rem;
  }
  .top-page .main-content .optional .box-wrapper .box .explain p {
    margin: 0rem 0 0 0;
    padding: 1rem 3rem;
    line-height: 1.8;
    font-size: 1.7rem;
  }
}
/* =========================================================

ARTCILE-INDEX

========================================================= */
.article-index .main-content .section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.4rem;
}
.article-index .main-content .pinned-section .list-card {
  grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
  gap: 1.6rem;
  margin: 1.6rem 0 0 0;
}

/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media screen and (max-width: 767px) {
  .article-index .main-content .section-title {
    gap: 0.5rem;
    margin-top: 2.4rem;
  }
  .article-index .main-content .list-card {
    display: block;
    gap: 1.6rem;
    margin: 1.6rem 0 0 0;
  }
  .article-index .main-content .list-card .card {
    margin: 1.6rem 0 0 0;
  }
  .article-index .main-content .list-card .card a {
    border-radius: 1rem;
    padding: 1.4rem 2.2rem;
  }
  .article-index .main-content .list-card .card a h3 {
    line-height: 1.5;
    font-size: 1.9rem;
  }
  .article-index .main-content .list-card .card a .muted {
    line-height: 1.45;
    margin: 1.5rem 0 0 0;
    font-size: 1.5rem;
  }
  .article-index .main-content .pinned-section .list-card {
    display: block;
    margin: 1.6rem 0 0 0;
  }
}
/* =========================================================

ARTCILE-PAGE

========================================================= */
.article-page {
  position: relative;
  max-width: 1080px;
  margin: 4rem auto 0;
  background: #fff;
  padding: 5rem 5rem 0rem 5rem;
}
.article-page h1 {
  position: relative;
  font-size: 3.5rem;
  margin: 0 0 1.5rem 0;
  padding: 0 0 0 0;
}
.article-page h2 {
  margin: 3rem 0 1rem 0;
  font-size: 2.5rem;
}
.article-page h3 {
  margin: 2rem 0 1rem 0;
  font-size: 2.1rem;
}
.article-page ul {
  list-style-type: none;
  margin: 1.5rem 0 1rem 0;
}
.article-page ul li {
  line-height: 2.2;
  font-size: 1.8rem;
  padding: 0.5rem 0;
}
.article-page ul li::before {
  content: "●";
  font-size: 0.8em;
  color: #d4d4d4;
  margin: 0 0.5rem 0 0;
}
.article-page ul.reference li {
  line-height: 1.5;
  font-size: 1.4rem;
}
.article-page ul.reference li::before {
  content: "・";
  color: #000;
  font-size: 1em;
  margin: 0 0.5rem 0 0;
}
.article-page p {
  line-height: 2;
  padding: 1rem 0 1rem;
  font-size: 1.7rem;
}
.article-page blockquote {
  background-color: #f7f7f7;
  padding: 1.5rem 4rem;
  margin: 2.5rem 0 4rem;
}
.article-page blockquote p {
  color: #444444;
}
.article-page blockquote p.caption {
  text-align: right;
  font-size: 1.5rem;
  color: #828282;
}
.article-page .phrase {
  padding: 2rem 4rem;
  border: solid 3px #dfdfdf;
  margin: 2.5rem 0 4rem;
}
.article-page .phrase .main {
  font-size: 1.9rem;
}
.article-page .phrase .sub {
  font-size: 1.4rem;
}
.article-page a {
  text-decoration: underline;
  color: #222;
}

/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media screen and (max-width: 767px) {
  .article-page {
    max-width: 100%;
    margin: 2rem auto;
    padding: 3rem 3.5rem;
  }
  .article-page h1 {
    font-size: 3.5rem;
    margin: 0 0 1.5rem 0;
    padding: 0 0 0 0;
  }
  .article-page h2 {
    margin: 3rem 0 1rem 0;
    font-size: 2.5rem;
  }
  .article-page h3 {
    margin: 2rem 0 1rem 0;
    font-size: 2.1rem;
  }
  .article-page ul {
    margin: 1.5rem 0 1rem 0;
  }
  .article-page ul li {
    line-height: 2.2;
    font-size: 1.8rem;
    padding: 0.5rem 0;
  }
  .article-page ul li::before {
    font-size: 0.8em;
    margin: 0 0.5rem 0 0;
  }
  .article-page p {
    line-height: 2;
    padding: 1rem 0 1rem;
    font-size: 1.7rem;
  }
  .article-page blockquote {
    padding: 1.5rem 4rem;
    margin: 2.5rem 0 4rem;
  }
  .article-page blockquote p.caption {
    font-size: 1.5rem;
  }
  .article-page .phrase {
    padding: 2rem 4rem;
    margin: 2.5rem 0 4rem;
  }
  .article-page .phrase .main {
    font-size: 1.9rem;
  }
  .article-page .phrase .sub {
    font-size: 1.4rem;
  }
}
/* =========================================================

CATEGORIES

========================================================= */
.categories .main-content .section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.4rem;
}
.categories .main-content .list.list-card .cat-count {
  font-size: 1.5rem;
}
.categories .main-content .list.list-card .cat-count .number {
  font-family: "Jost";
  font-size: 1.45em;
}
.categories .main-content .list.list-card .cat-desc {
  line-height: 1.6;
  font-size: 1.6rem;
  padding: 0 0 1rem 0;
}

/* -----------------------------------
Responsive: 1024–1280 (Small PC)
----------------------------------- */
@media (min-width: 1024px) and (max-width: 1280px) {
  .categories .main-content .section-title {
    gap: 0.5rem;
    margin-top: 2.4rem;
  }
  .categories .main-content .list.list-card .cat-count {
    font-size: 1.5rem;
  }
  .categories .main-content .list.list-card .cat-count .number {
    font-size: 1.45em;
  }
  .categories .main-content .list.list-card .cat-desc {
    line-height: 1.6;
    font-size: 1.6rem;
    padding: 0 0 1rem 0;
  }
}
/* -----------------------------------
Responsive: 768–1023 (Tablet)
----------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .categories .main-content .section-title {
    gap: 0.5rem;
    margin-top: 2.4rem;
  }
  .categories .main-content .list.list-card .cat-count {
    font-size: 1.5rem;
  }
  .categories .main-content .list.list-card .cat-count .number {
    font-size: 1.45em;
  }
  .categories .main-content .list.list-card .cat-desc {
    line-height: 1.6;
    font-size: 1.6rem;
    padding: 0 0 1rem 0;
  }
}
/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media (max-width: 767px) {
  .categories .main-content .section-title {
    gap: 0.5rem;
    margin-top: 2.4rem;
  }
  .categories .main-content .list.list-card .cat-count {
    font-size: 1.5rem;
  }
  .categories .main-content .list.list-card .cat-count .number {
    font-size: 1.45em;
  }
  .categories .main-content .list.list-card .cat-desc {
    line-height: 1.6;
    font-size: 1.6rem;
    padding: 0 0 0rem 0;
  }
}
/* =========================================================

SITEMAP

========================================================= */
.sitemap .main-content .list-sitemap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.sitemap .main-content .list-sitemap .sitemap-item {
  width: 50%;
  margin: 2rem 0 0 0;
}
.sitemap .main-content .category-list {
  display: flex;
  flex-wrap: wrap;
}
.sitemap .main-content .category-list li {
  width: 25%;
  margin: 1.5rem 0 0 0;
}

/* -----------------------------------
Responsive: 1024–1280 (Small PC)
----------------------------------- */
@media (min-width: 1024px) and (max-width: 1280px) {
  .sitemap .main-content .list-sitemap .sitemap-item {
    width: 50%;
    margin: 2rem 0 0 0;
  }
  .sitemap .main-content .category-list li {
    width: 25%;
    margin: 1.5rem 0 0 0;
  }
}
/* -----------------------------------
Responsive: 768–1023 (Tablet)
----------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .sitemap .main-content .list-sitemap .sitemap-item {
    width: 50%;
    margin: 2rem 0 0 0;
  }
  .sitemap .main-content .category-list li {
    width: 25%;
    margin: 1.5rem 0 0 0;
  }
}
/* -----------------------------------
Responsive: ～767 (Mobile)
---------------------------------- */
@media (max-width: 767px) {
  .sitemap .main-content .list-sitemap {
    display: block;
  }
  .sitemap .main-content .list-sitemap .sitemap-item {
    width: 100%;
    margin: 2rem 0 0 0;
  }
  .sitemap .main-content .list-sitemap.pages {
    display: flex;
  }
  .sitemap .main-content .list-sitemap.pages .sitemap-item {
    width: 50%;
  }
  .sitemap .main-content .category-list li {
    width: 50%;
    margin: 0rem 0 0 0;
  }
}/*# sourceMappingURL=style.css.map */