@charset "UTF-8";
/* カスタムプロパティ */
:root {
  --color-base: #333;
  --color-main: #1C3265;
  --color-main-light: #ECEFFF;
  --color-main-hover: #223E7D;
  --color-sub: #6F6E6E;
  --color-gray: #F2EFEF;
  --color-accent: #016C7E;
  --color-accent-hover: #0B7688;
  --color-border: #CCC9C9;
  --color-placeholder: rgba(98, 97, 97, 0.7);
  --color-input-bg: #F7F5F5;
  --color-blog-column: #095A4B;
  --color-blog-archives: #040173;
  --color-blog-useful: #3C6F09;
  --color-blog-seminar_report: #A10091;
  --color-blog-all: #444444;
  --color-blog-service: #B58B19;
  --color-blog-marketing: #5CA2BB;
  --color-blog-sales: #C48694;
  --color-blog-back-office: #8B8B8B;
  --color-blog-system: #77A36E;
  --fontFamily-base: "Noto Sans JP", sans-serif;
  --fontFamily-accent: "Montserrat", sans-serif;
  --lineHeight-base: 1.6;
  --lineHeight-tight: 1.4;
  --transition-timingFunction: ease;
  --transition-duration: .4s;
  --transition: var(--transition-duration) var(--transition-timingFunction);
}

/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  font: inherit;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: none;
}

@supports not (min-block-size: 100dvb) {
  html {
    block-size: 100%;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  block-size: 100%;
  block-size: 100dvb;
  min-block-size: 100%;
  text-rendering: optimizeSpeed;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}

img,
picture,
svg,
video {
  block-size: auto;
  max-inline-size: 100%;
}

svg {
  stroke: none;
  fill: currentColor;
}

input,
button,
textarea,
select,
input[type=file]::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

textarea {
  resize: vertical;
}

@supports (resize: block) {
  textarea {
    resize: block;
  }
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a[href],
area,
button,
input,
label[for],
select,
summary,
textarea,
[tabindex]:not([tabindex*="-"]) {
  cursor: pointer;
  touch-action: manipulation;
}

input[type=file] {
  cursor: auto;
}

input[type=file]::-webkit-file-upload-button,
input[type=file]::file-selector-button {
  cursor: pointer;
}
:not(:active):focus-visible {
  outline-offset: 5px;
}

button,
button[type],
input[type=button],
input[type=submit],
input[type=reset],
input[type=file]::-webkit-file-upload-button,
input[type=file]::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

button[disabled],
button[type][disabled],
input[type=button][disabled],
input[type=submit][disabled],
input[type=reset][disabled] {
  cursor: not-allowed;
}

label:has(> input:disabled),
label:has(+ input:disabled) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

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

/* global */
html {
  font-size: 62.5%;
}

body {
  color: var(--color-base);
  font-family: var(--fontFamily-base);
  font-size: 1.7rem;
  line-height: var(--lineHeight-base);
}

/* hide */
/* header */
.header-top {
  align-items: center;
  background-color: var(--color-main);
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.header-top__search {
  align-items: center;
  background-color: var(--color-main);
  border: none;
  display: flex;
  height: 58px;
  justify-content: center;
  min-height: 58px;
  min-width: 58px;
  width: 58px;
}

/* headerLogo */
.headerLogo {
  display: flex;
  margin-left: 16px;
  max-width: 260px;
}
/* headerNav */
.headerNav {
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
}

.headerNav ul {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x;
  white-space: nowrap;
}

.headerNav li {
  scroll-snap-align: start;
}

.headerNav a {
  border-bottom: 3px solid transparent;
  color: var(--color-main);
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 16px 16px 12px;
  transition: background var(--transition);
}

.headerNav .current-menu-item a {
  background: var(--color-main-light);
  border-color: var(--color-main);
}
.headerNav a:focus {
  background: var(--color-main-light);
}
.header-search {
  display: none;
  padding: 16px;
}

.header-search.-open {
  display: block;
}
/* childCategoryNav */
.childCategoryNav {
  background: var(--color-gray);
  display: flex;
  justify-content: center;
}

.childCategoryNav ul {
  display: flex;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 8px;
  scroll-snap-type: x;
  white-space: nowrap;
}

.childCategoryNav li {
  background-color: #fff;
  border: 1px solid var(--color-sub);
  border-radius: 4px;
  color: var(--color-sub);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.childCategoryNav li.current-menu-item.all {
  background-color: var(--color-blog-all);
  border-color: var(--color-blog-all);
  color: #fff;
}

.childCategoryNav li.current-menu-item.service {
  background-color: var(--color-blog-service);
  border-color: var(--color-blog-service);
  color: #fff;
}

.childCategoryNav li.current-menu-item.marketing {
  background-color: var(--color-blog-marketing);
  border-color: var(--color-blog-marketing);
  color: #fff;
}

.childCategoryNav li.current-menu-item.sales {
  background-color: var(--color-blog-sales);
  border-color: var(--color-blog-sales);
  color: #fff;
}

.childCategoryNav li.current-menu-item.back_office {
  background-color: var(--color-blog-back-office);
  border-color: var(--color-blog-back-office);
  color: #fff;
}

.childCategoryNav li.current-menu-item.system {
  background-color: var(--color-blog-system);
  border-color: var(--color-blog-system);
  color: #fff;
}

.childCategoryNav li a {
  display: block;
  padding: 7px 15px;
}
/* footer */
.footer {
  margin-top: 64px;
  padding-bottom: 24px;
}
/* footerInfo */
.footerInfo {
  background: var(--color-main);
  color: #fff;
  display: grid;
  padding: 40px 16px;
  row-gap: 40px;
  width: 100%;
}

.footerInfo__nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}

.footerInfo__nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
  row-gap: 16px;
}

.footerInfo__nav ul li a {
  border-left: 1px solid var(--color-border);
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0 16px;
}
/* footerMenu */
.footerMenu {
  display: grid;
  justify-items: center;
  margin-top: 24px;
  padding: 0 16px;
  row-gap: 40px;
}

.footerMenu__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
  width: 100%;
}

.footerMenu__navItem {
  display: grid;
  row-gap: 16px;
  width: 100%;
}

.footerMenu__nav:not(:first-child) .footerMenu__navItem {
  width: calc(50% - 16px);
}

.footerMenu__navLink {
  background: url("data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='icon'%3e%3cpath%20id='Vector'%20d='M9.93477%207.30977L5.55977%2011.6848C5.51913%2011.7254%205.47087%2011.7577%205.41776%2011.7797C5.36465%2011.8017%205.30773%2011.813%205.25024%2011.813C5.19276%2011.813%205.13584%2011.8017%205.08273%2011.7797C5.02962%2011.7577%204.98136%2011.7254%204.94071%2011.6848C4.90006%2011.6441%204.86782%2011.5959%204.84582%2011.5428C4.82382%2011.4897%204.8125%2011.4327%204.8125%2011.3752C4.8125%2011.3178%204.82382%2011.2608%204.84582%2011.2077C4.86782%2011.1546%204.90006%2011.1064%204.94071%2011.0657L9.00673%207.00024L4.94071%202.93477C4.85862%202.85268%204.8125%202.74134%204.8125%202.62524C4.8125%202.50915%204.85862%202.3978%204.94071%202.31571C5.0228%202.23362%205.13415%202.1875%205.25024%202.1875C5.36634%202.1875%205.47768%202.23362%205.55977%202.31571L9.93477%206.69071C9.97545%206.73134%2010.0077%206.7796%2010.0297%206.83271C10.0518%206.88582%2010.0631%206.94275%2010.0631%207.00024C10.0631%207.05774%2010.0518%207.11467%2010.0297%207.16778C10.0077%207.22089%209.97545%207.26914%209.93477%207.30977Z'%20fill='%23333333'/%3e%3c/g%3e%3c/svg%3e") right top/1em no-repeat;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-main);
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 16px;
}

.footerMenu__navChild {
  display: grid;
  padding-bottom: 16px;
  row-gap: 32px;
}

.footerMenu__navChildItem {
  align-content: start;
  display: grid;
  row-gap: 16px;
}

.footerMenu__navChildTitle {
  color: var(--color-sub);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

.footerMenu__navChild ul {
  display: grid;
  row-gap: 16px;
}

.footerMenu__navChild a {
  color: var(--color-sub);
  display: block;
  font-size: 1.4rem;
  line-height: 1.3;
}

.footerMenu__corp {
  min-width: 160px;
  width: 160px;
}
/* footerCopyright */
.footerCopyright {
  color: var(--color-sub);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 16px;
  text-align: center;
}
/* container */
.container {
  display: grid;
  padding: 16px 16px 0;
  row-gap: 40px;
}

.container:not(:first-child) {
  padding-top: 0;
}
/* sidebar */
.sidebar {
  display: grid;
  row-gap: 40px;
}

.sidebar-search {
  display: none;
}

.sidebar__content {
  display: grid;
  row-gap: 8px;
}

.sidebar__title {
  border-bottom: 1px solid var(--color-border);
  font-weight: bold;
  line-height: 1;
  padding-bottom: 8px;
}

.sidebar__text {
  font-size: 1.4rem;
}

.sidebar__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar__banner {
  overflow: hidden;
}

.sidebar__banner img {
  transform: translate3d(1, 1, 1);
  transition: transform var(--transition);
}

.sidebar__banner + .sidebar__banner {
  margin-top: 32px;
}

.sidebar__banner:focus img {
  transform: scale3d(1.05, 1.05, 1);
}
/* title */
.title__sub {
  color: var(--color-sub);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
}

.title__main {
  border-bottom: 2px solid var(--color-accent);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: var(--lineHeight-tight);
  margin-top: -0.2em;
  padding-bottom: 1px;
}

/* button */
.button {
  background: var(--color-main);
  border-radius: 4px;
  color: #fff;
  display: block;
  line-height: 1;
  margin: 0 auto;
  max-width: 340px;
  padding: 16px;
  text-align: center;
  transition: background var(--transition);
}

.button.-accent {
  background: var(--color-accent);
  font-weight: bold;
}

.button:focus {
  background: var(--color-main-hover);
}

.button.-accent:focus {
  background: var(--color-accent-hover);
}
/* secondaryButton */
.secondaryButton {
  display: flex;
  justify-content: center;
  -moz-column-gap: 8px;
  background: none;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: var(--color-main);
       column-gap: 8px;
  line-height: 1;
  margin: 24px auto 0;
  max-width: 340px;
  padding: 16px;
  transition: background var(--transition);
  width: 100%;
}

.secondaryButton::after {
  background: url("data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='icon'%3e%3cpath%20id='Vector'%20d='M9.93477%207.30977L5.55977%2011.6848C5.51913%2011.7254%205.47087%2011.7577%205.41776%2011.7797C5.36465%2011.8017%205.30773%2011.813%205.25024%2011.813C5.19276%2011.813%205.13584%2011.8017%205.08273%2011.7797C5.02962%2011.7577%204.98136%2011.7254%204.94071%2011.6848C4.90006%2011.6441%204.86782%2011.5959%204.84582%2011.5428C4.82382%2011.4897%204.8125%2011.4327%204.8125%2011.3752C4.8125%2011.3178%204.82382%2011.2608%204.84582%2011.2077C4.86782%2011.1546%204.90006%2011.1064%204.94071%2011.0657L9.00673%207.00024L4.94071%202.93477C4.85862%202.85268%204.8125%202.74134%204.8125%202.62524C4.8125%202.50915%204.85862%202.3978%204.94071%202.31571C5.0228%202.23362%205.13415%202.1875%205.25024%202.1875C5.36634%202.1875%205.47768%202.23362%205.55977%202.31571L9.93477%206.69071C9.97545%206.73134%2010.0077%206.7796%2010.0297%206.83271C10.0518%206.88582%2010.0631%206.94275%2010.0631%207.00024C10.0631%207.05774%2010.0518%207.11467%2010.0297%207.16778C10.0077%207.22089%209.97545%207.26914%209.93477%207.30977Z'%20fill='%231C3265'/%3e%3c/g%3e%3c/svg%3e") center/contain no-repeat;
  content: "";
  height: 1em;
  transform: rotate(90deg);
  width: 1em;
}

.secondaryButton.-loading::after {
  animation: loading 0.8s linear 0s infinite;
  background: none;
  border: 1px solid currentColor;
  border-radius: 50%;
  border-top: 1px solid transparent;
  height: 1em;
  width: 1em;
}

@keyframes loading {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
/* thumbnail */
.thumbnail {
  overflow: hidden;
}

.thumbnail__inner {
  aspect-ratio: 358/188;
  backface-visibility: hidden;
  display: inline-flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: min(3.8461538462vw, 31.1538461538px);
  position: relative;
  transform: scale3d(1, 1, 1);
  transition: transform var(--transition);
  width: 100%;
}

.thumbnail__background {
  inset: 0;
  position: absolute;
  z-index: -1;
  -o-object-fit: contain;
     object-fit: contain;
}

.thumbnail__logo {
  width: min(38.4615384615vw, 311.5384615385px);
}

.thumbnail__title {
  color: #fff;
  font-size: min(5.641025641vw, 45.6923076923px);
  font-weight: bold;
  line-height: var(--lineHeight-tight);
  margin-top: auto;
  word-break: break-word;
}

.thumbnail__title.-omitted {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.thumbnail__author {
  align-items: center;
  display: flex;
  -moz-column-gap: min(2.0512820513vw, 16.6153846154px);
       column-gap: min(2.0512820513vw, 16.6153846154px);
  height: min(7.1794871795vw, 58.1538461538px);
  margin-top: min(5.1282051282vw, 41.5384615385px);
}

.thumbnail__authorIcon {
  border-radius: 9999px;
  height: min(7.1794871795vw, 58.1538461538px);
  overflow: hidden;
  width: min(7.1794871795vw, 58.1538461538px);
}

.thumbnail__authorIcon img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbnail__authorName {
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
}

.thumbnail__logo-title {
  color: #fff;
  font-family: var(--fontFamily-accent);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-left: 14px;
  margin-top: 44px;
}

.thumbnail__current-category-title {
  color: #fff;
  font-size: 29px;
  font-weight: bold;
  line-height: 1;
  margin-left: 14px;
  margin-top: 9px;
}

.thumbnail__child-category-title {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-left: 14px;
  margin-top: 12px;
}

.single > .thumbnail__logo-title {
  font-size: min(2.8205128205vw, 22.8461538462px);
  letter-spacing: 0.04em;
  margin-left: min(3.5897435897vw, 29.0769230769px);
  margin-top: min(11.2820512821vw, 91.3846153846px);
}

.single > .thumbnail__current-category-title {
  font-size: min(7.4358974359vw, 60.2307692308px);
  margin-left: min(3.5897435897vw, 29.0769230769px);
  margin-top: min(2.3076923077vw, 18.6923076923px);
}

.single > .thumbnail__child-category-title {
  font-size: min(3.0769230769vw, 24.9230769231px);
  margin-left: min(3.5897435897vw, 29.0769230769px);
  margin-top: min(3.0769230769vw, 24.9230769231px);
}
a:focus .thumbnail__inner {
  transform: scale3d(1.05, 1.05, 1);
}
/* card */
.card {
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  cursor: default;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: space-between;
  padding-bottom: 16px;
  row-gap: 16px;
  transition: color var(--transition);
}

.card__thumbnail {
  width: 100%;
}

.card__title {
  font-weight: bold;
  line-height: var(--lineHeight-tight);
  min-height: calc(4em * var(--lineHeight-tight));
  width: 100%;
}

.card__category {
  background: var(--color-gray);
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--color-sub);
  font-size: 1.4rem;
  line-height: 1;
  padding: 3px 7px;
}

.card__category.column {
  background-color: var(--color-blog-column);
  border-color: var(--color-blog-column);
  color: #fff;
}

.card__category.archives {
  background-color: var(--color-blog-archives);
  border-color: var(--color-blog-archives);
  color: #fff;
}

.card__category.useful {
  background-color: var(--color-blog-useful);
  border-color: var(--color-blog-useful);
  color: #fff;
}

.card__category.seminar_report {
  background-color: var(--color-blog-seminar_report);
  border-color: var(--color-blog-seminar_report);
  color: #fff;
}

.card__category.service {
  background-color: #fff;
  border-color: var(--color-blog-service);
  color: var(--color-blog-service);
}

.card__category.marketing {
  background-color: #fff;
  border-color: var(--color-blog-marketing);
  color: var(--color-blog-marketing);
}

.card__category.sales {
  background-color: #fff;
  border-color: var(--color-blog-sales);
  color: var(--color-blog-sales);
}

.card__category.back_office {
  background-color: #fff;
  border-color: var(--color-blog-back_office);
  color: var(--color-blog-back_office);
}

.card__category.system {
  background-color: #fff;
  border-color: var(--color-blog-system);
  color: var(--color-blog-system);
}

.card__date {
  color: var(--color-sub);
  font-size: 1.4rem;
  line-height: 1;
}

.card__tag {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1;
  margin-top: -5px;
  overflow: hidden;
  width: 100%;
}

.card__tagItem {
  color: var(--color-sub);
  display: inline;
  font-size: 12px;
  padding-right: 8px;
}

.card:focus {
  color: var(--color-main);
}
.card__title:focus {
  color: var(--color-main);
}
/* tagList */
.tagList {
  display: none;
}
/* tag */
a.tag {
  border: 1px solid var(--color-border);
  color: var(--color-sub);
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  padding: 8px 16px;
  pointer-events: auto;
  transition: background var(--transition);
}

.tag:focus {
  background: var(--color-main-light);
}
/* posts */
.posts__item {
  border-bottom: 1px solid var(--color-border);
  counter-increment: ranking 1;
}

.posts__card {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 95px;
  padding: 16px 0 16px 128px;
  position: relative;
  row-gap: 8px;
  transition: color var(--transition);
}

.sidebar .posts .posts__card {
  min-height: auto !important;
  padding: 16px 0 16px 20px !important;
}

.sidebar .posts .posts__card::before {
  content: counter(ranking);
  font-weight: bold;
  left: 0;
  position: absolute;
  top: 14px;
}

.posts__thumbnail {
  left: 0;
  position: absolute;
  top: 16px;
  transform: scale(0.33426184);
  transform-origin: top left;
  width: 359px;
}

.sidebar .posts__thumbnail {
  display: none;
}

.posts__thumbnail .thumbnail__inner {
  padding: 15px;
}

.posts__thumbnail .thumbnail__logo {
  width: 150px;
}

.posts__thumbnail .thumbnail__title {
  font-size: 2.2rem;
}

.posts__thumbnail .thumbnail__author {
  -moz-column-gap: 8px;
       column-gap: 8px;
  height: 28px;
  margin-top: 20px;
}

.posts__thumbnail .thumbnail__authorIcon {
  height: 28px;
  width: 28px;
}

.posts__thumbnail .thumbnail__authorName {
  font-size: 10px;
}

.posts__title {
  align-self: flex-start;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-weight: bold;
  line-height: var(--lineHeight-tight);
  overflow: hidden;
  width: 100%;
}

.sidebar .posts .posts__title {
  font-size: 1.4rem;
}

.posts__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.posts__category {
  background: var(--color-gray);
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--color-sub);
  font-size: 1.4rem;
  line-height: 1;
  padding: 3px 7px;
}

.posts__category.column {
  background-color: var(--color-blog-column);
  border-color: var(--color-blog-column);
  color: #fff;
}

.posts__category.archives {
  background-color: var(--color-blog-archives);
  border-color: var(--color-blog-archives);
  color: #fff;
}

.posts__category.useful {
  background-color: var(--color-blog-useful);
  border-color: var(--color-blog-useful);
  color: #fff;
}

.posts__category.seminar_report {
  background-color: var(--color-blog-seminar_report);
  border-color: var(--color-blog-seminar_report);
  color: #fff;
}

.posts__category.service {
  background-color: #fff;
  border-color: var(--color-blog-service);
  color: var(--color-blog-service);
}

.posts__category.marketing {
  background-color: #fff;
  border-color: var(--color-blog-marketing);
  color: var(--color-blog-marketing);
}

.posts__category.sales {
  background-color: #fff;
  border-color: var(--color-blog-sales);
  color: var(--color-blog-sales);
}

.posts__category.back_office {
  background-color: #fff;
  border-color: var(--color-blog-back_office);
  color: var(--color-blog-back_office);
}

.posts__category.system {
  background-color: #fff;
  border-color: var(--color-blog-system);
  color: var(--color-blog-system);
}

.sidebar .posts .posts__category {
  font-size: 1.2rem;
}

.posts__date {
  align-self: center;
  color: var(--color-sub);
  font-size: 1.4rem;
  line-height: 1;
}

.posts__tag {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.2;
  margin-top: -5px;
  overflow: hidden;
  width: 100%;
}

.posts__tagItem {
  color: var(--color-sub);
  display: inline;
  font-size: 12px;
  padding-right: 8px;
}
.posts__title:focus {
  color: var(--color-main);
}
/* post */
.post {
  display: grid;
  row-gap: 54px;
}

/* postHead */
.postHead {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.postHead__title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: var(--lineHeight-tight);
  width: 100%;
}

.postHead__category {
  background: var(--color-gray);
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--color-sub);
  font-size: 1.4rem;
  line-height: 1;
  padding: 3px 7px;
}

.postHead__category.column {
  background-color: var(--color-blog-column);
  border-color: var(--color-blog-column);
  color: #fff;
}

.postHead__category.archives {
  background-color: var(--color-blog-archives);
  border-color: var(--color-blog-archives);
  color: #fff;
}

.postHead__category.useful {
  background-color: var(--color-blog-useful);
  border-color: var(--color-blog-useful);
  color: #fff;
}

.postHead__category.seminar_report {
  background-color: var(--color-blog-seminar_report);
  border-color: var(--color-blog-seminar_report);
  color: #fff;
}

.postHead__category.service {
  background-color: #fff;
  border-color: var(--color-blog-service);
  color: var(--color-blog-service);
}

.postHead__category.marketing {
  background-color: #fff;
  border-color: var(--color-blog-marketing);
  color: var(--color-blog-marketing);
}

.postHead__category.sales {
  background-color: #fff;
  border-color: var(--color-blog-sales);
  color: var(--color-blog-sales);
}

.postHead__category.back_office {
  background-color: #fff;
  border-color: var(--color-blog-back_office);
  color: var(--color-blog-back_office);
}

.postHead__category.system {
  background-color: #fff;
  border-color: var(--color-blog-system);
  color: var(--color-blog-system);
}

.postHead__date {
  color: var(--color-sub);
  font-size: 1.4rem;
  line-height: 1;
}

.postHead__author {
  align-items: center;
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  margin-top: -8px;
  width: 100%;
}

.postHead__authorIcon {
  border-radius: 32px;
  height: 32px;
  overflow: hidden;
  width: 32px;
}

.postHead__authorIcon img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.postHead__authorName {
  color: var(--color-sub);
  font-size: 1.4rem;
  line-height: 1;
}

.postHead__tag {
  border-bottom: 1px dashed var(--color-border);
  border-top: 1px dashed var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  width: 100%;
}

.postHead__tagLink {
  color: var(--color-sub);
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

.postHead__thumbnail {
  width: 100%;
}
/* postBody */
.postBody {
  margin-top: 40px;
  word-break: break-word;
}

.postBody > * {
  width: auto !important;
}

.postBody > *:first-child {
  margin-top: 0 !important;
}

.postBody > h2 {
  border-left: 4px solid;
  margin: 80px 0 32px;
  padding-left: 8px;
  -o-border-image: linear-gradient(to bottom, var(--color-main), var(--color-main) 50%, var(--color-accent) 50%, var(--color-accent)) 1;
     border-image: linear-gradient(to bottom, var(--color-main), var(--color-main) 50%, var(--color-accent) 50%, var(--color-accent)) 1;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: var(--lineHeight-tight);
}

.postBody > h3 {
  border-bottom: 1px solid var(--color-border);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: var(--lineHeight-tight);
  margin: 48px 0 24px;
  padding-bottom: 4px;
}

.postBody > h4 {
  font-size: 2rem;
  font-weight: bold;
  line-height: var(--lineHeight-tight);
  margin: 40px 0 16px;
}

.postBody > h5 {
  font-weight: bold;
  line-height: var(--lineHeight-tight);
  margin: 32px 0 16px !important;
}

.postBody > ul > li,
.postBody > table > tbody > tr > td > ul > li {
  padding-left: 25px;
  position: relative;
}

.postBody > table > tbody > tr > td > ul > li {
  padding-left: 20px;
}

.postBody > ul > li::before,
.postBody > table > tbody > tr > td > ul > li::before {
  background: currentColor;
  border-radius: 8px;
  content: "";
  height: 8px;
  left: 9px;
  position: absolute;
  top: calc(0.35em * var(--lineHeight-tight) + 1px);
  width: 8px;
}

.postBody > table > tbody > tr > td > ul > li::before {
  border-radius: 5px;
  height: 5px;
  left: 7px;
  top: calc(0.25em * var(--lineHeight-tight) + 1px);
  width: 5px;
}

.postBody > ul > li + li,
.postBody > table > tbody > tr > td > ul > li + li {
  margin-top: 6px;
}

.postBody ul > li:empty,
.postBody table > tbody > tr > td > ul > li:empty {
  display: none;
}

.postBody > ul > li > ul > li,
.postBody > table > tbody > tr > td > ul > li > ul > li {
  margin-top: 6px;
  padding-left: 25px;
  position: relative;
}

.postBody > table > tbody > tr > td > ul > li > ul > li {
  padding-left: 20px;
}

.postBody > ul > li > ul > li::before,
.postBody > table > tbody > tr > td > ul > li > ul > li::before {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 7px;
  content: "";
  height: 7px;
  left: 9px;
  position: absolute;
  top: calc(0.4em * var(--lineHeight-tight) + 1px);
  width: 7px;
}

.postBody > table > tbody > tr > td > ul > li > ul > li::before {
  border-radius: 5px;
  height: 5px;
  left: 7px;
  top: calc(0.3em * var(--lineHeight-tight) + 1px);
  width: 5px;
}

.postBody > ul > li > ul > li > ul > li,
.postBody > table > tbody > tr > td > ul > li > ul > li > ul > li {
  margin-top: 6px;
  padding-left: 25px;
  position: relative;
}

.postBody > table > tbody > tr > td > ul > li > ul > li > ul > li {
  padding-left: 20px;
}

.postBody > ul > li > ul > li > ul > li::before,
.postBody > table > tbody > tr > td > ul > li > ul > li > ul > li::before {
  background: currentColor;
  content: "";
  height: 7px;
  left: 9px;
  position: absolute;
  top: calc(0.4em * var(--lineHeight-tight) + 1px);
  width: 7px;
}

.postBody > table > tbody > tr > td > ul > li > ul > li > ul > li::before {
  border-radius: 5px;
  height: 5px;
  left: 7px;
  top: calc(0.3em * var(--lineHeight-tight) + 1px);
  width: 5px;
}

.postBody > table > tbody > tr > td > ol {
  counter-reset: ol 0;
}

.postBody > ol > li,
.postBody > table > tbody > tr > td > ol > li {
  counter-increment: ol 1;
  padding-left: 29px;
  position: relative;
}

.postBody > table > tbody > tr > td > ol {
  padding-left: 24px;
}

.postBody > ol > li + li,
.postBody > table > tbody > tr > td > ol > li + li {
  margin-top: 6px;
}

.postBody > ol > li::before,
.postBody > table > tbody > tr > td > ol > li::before {
  content: counter(ol) ".";
  left: 10px;
  position: absolute;
  top: 0;
}

.postBody > table > tbody > tr > td > ol > li::before {
  left: 5px;
}

.postBody > ol > li > ol,
.postBody > table > tbody > tr > td > ol > li > ol {
  counter-reset: ol 0;
}

.postBody > ol > li > ol > li,
.postBody > table > tbody > tr > td > ol > li > ol > li {
  counter-increment: ol 1;
  margin-top: 6px;
  padding-left: 29px;
  position: relative;
}

.postBody > table > tbody > tr > td > ol > li > ol > li {
  padding-left: 24px;
}

.postBody > ol > li > ol > li::before,
.postBody > table > tbody > tr > td > ol > li > ol > li::before {
  content: counter(ol) ".";
  left: 10px;
  position: absolute;
  top: 0;
}

.postBody > table > tbody > tr > td > ol > li > ol > li > ol > li::before {
  left: 5px;
}

.postBody > ol > li > ol > li > ol,
.postBody > table > tbody > tr > td > ol > li > ol > li > ol {
  counter-reset: ol 0;
}

.postBody > ol > li > ol > li > ol > li,
.postBody > table > tbody > tr > td > ol > li > ol > li > ol > li {
  counter-increment: ol 1;
  margin-top: 6px;
  padding-left: 29px;
  position: relative;
}

.postBody > table > tbody > tr > td > ol > li > ol > li > ol > li {
  padding-left: 24px;
}

.postBody > ol > li > ol > li > ol > li::before,
.postBody > table > tbody > tr > td > ol > li > ol > li > ol > li::before {
  content: counter(ol) ".";
  left: 10px;
  position: absolute;
  top: 0;
}

.postBody > table > tbody > tr > td > ol > li > ol > li > ol > li > ol > li::before {
  left: 5px;
}

.postBody > ul + p,
.postBody > ul + ul,
.postBody > ul + ol,
.postBody > ul + div,
.postBody > ol + p,
.postBody > ol + ul,
.postBody > ol + ol,
.postBody > ol + div {
  margin-top: 24px;
}

.postBody > p + p,
.postBody > p + ul,
.postBody > p + ol,
.postBody > p + div {
  margin-top: 24px;
}

.postBody a:not(:has(img)) {
  color: var(--color-main);
  text-decoration: underline;
}

.postBody a:not(:has(img))[target=_blank]::after {
  background: url("data:image/svg+xml,%3csvg%20width='17'%20height='17'%20viewBox='0%200%2017%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M14.875%206.90625C14.875%207.04715%2014.819%207.18227%2014.7194%207.2819C14.6198%207.38153%2014.4846%207.4375%2014.3438%207.4375C14.2029%207.4375%2014.0677%207.38153%2013.9681%207.2819C13.8685%207.18227%2013.8125%207.04715%2013.8125%206.90625V3.93922L9.40777%208.34461C9.30809%208.44429%209.17289%208.5003%209.03191%208.5003C8.89094%208.5003%208.75574%208.44429%208.65605%208.34461C8.55637%208.24493%208.50037%208.10972%208.50037%207.96875C8.50037%207.82778%208.55637%207.69257%208.65605%207.59289L13.0608%203.1875H10.0938C9.95285%203.1875%209.81773%203.13153%209.7181%203.0319C9.61847%202.93227%209.5625%202.79715%209.5625%202.65625C9.5625%202.51535%209.61847%202.38023%209.7181%202.2806C9.81773%202.18097%209.95285%202.125%2010.0938%202.125H14.3438C14.4846%202.125%2014.6198%202.18097%2014.7194%202.2806C14.819%202.38023%2014.875%202.51535%2014.875%202.65625V6.90625ZM12.2188%208.5C12.0779%208.5%2011.9427%208.55597%2011.8431%208.6556C11.7435%208.75523%2011.6875%208.89035%2011.6875%209.03125V13.8125H3.1875V5.3125H7.96875C8.10965%205.3125%208.24477%205.25653%208.3444%205.1569C8.44403%205.05727%208.5%204.92215%208.5%204.78125C8.5%204.64035%208.44403%204.50523%208.3444%204.4056C8.24477%204.30597%208.10965%204.25%207.96875%204.25H3.1875C2.90571%204.25%202.63546%204.36194%202.4362%204.5612C2.23694%204.76046%202.125%205.03071%202.125%205.3125V13.8125C2.125%2014.0943%202.23694%2014.3645%202.4362%2014.5638C2.63546%2014.7631%202.90571%2014.875%203.1875%2014.875H11.6875C11.9693%2014.875%2012.2395%2014.7631%2012.4388%2014.5638C12.6381%2014.3645%2012.75%2014.0943%2012.75%2013.8125V9.03125C12.75%208.89035%2012.694%208.75523%2012.5944%208.6556C12.4948%208.55597%2012.3596%208.5%2012.2188%208.5Z'%20fill='%231C3265'/%3e%3c/svg%3e") center/contain no-repeat;
  content: "";
  display: inline-block;
  height: 1em;
  margin-left: 6px;
  transform: translateY(2px);
  width: 1em;
}

.postBody > div + div,
.postBody > div + ul,
.postBody > div + ol,
.postBody > div + p {
  margin-top: 24px;
}

.postBody > * > img {
  display: block;
  margin: 0 auto;
  padding: 8px 0;
}

.postBody > * > iframe {
  aspect-ratio: 16/9;
  height: auto;
  width: 100% !important;
}

.postBody > p:first-child > img {
  padding-top: 0;
}

.postBody strong {
  font-weight: bold;
}

.postBody em {
  font-style: italic;
}

.postBody code {
  display: block;
  width: 0;
}

.postBody table {
  border-collapse: collapse;
  margin-top: 32px;
  width: 100% !important;
}

.postBody table th, .postBody table td {
  border: 1px solid var(--color-border);
  font-size: 14px;
  line-height: 1.1;
  padding: 10.9px 12px;
}

.postBody table th {
  background-color: var(--color-gray);
  color: var(--color-sub);
  font-weight: bold;
}

.postBody table td {
  color: var(--color-base);
}

.postBody > table + div,
.postBody > table + ul,
.postBody > table + ol,
.postBody > table + p {
  margin-top: 24px;
}

/* postFoot */
.postFoot {
  display: grid;
  margin-top: 56px;
  row-gap: 24px;
}

.postFoot__cta {
  background: var(--color-main-light);
  display: grid;
  justify-items: center;
  padding: 16px;
  row-gap: 16px;
}

.postFoot__cta + .postFoot__cta {
  margin-top: 24px;
  position: relative;
}

.postFoot__cta + .postFoot__cta:before {
  background: var(--color-border);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: -24px;
  width: 100%;
}

.postFoot__ctaTitle {
  color: var(--color-main);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: var(--lineHeight-tight);
  width: 100%;
}

.postFoot__ctaText {
  font-size: 1.4rem;
  width: 100%;
}

.postFoot__ctaButton .button {
  max-width: none;
  min-width: 288px;
}

.postFoot__ctaButtonText {
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}
/* recommend */
.recommend__list {
  display: grid;
  margin-top: 16px;
  row-gap: 16px;
}

.recommend__button {
  margin-top: 24px;
}
/* pickup */
.pickup {
  align-items: center;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin: 16px 0 40px;
}

.pickup .slick-list {
  order: -1;
  width: 100%;
}

.pickup .slick-slide {
  padding: 0 4px;
  width: min(88.2051282051vw + 8px, 352px);
}

.pickup .slick-dots {
  display: flex;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin: 0 auto;
}

.pickup .slick-dots button {
  background: var(--color-main);
  border: 0;
  border-radius: 8px;
  display: flex;
  font-size: 0;
  height: 8px;
  opacity: 0.3;
  width: 8px;
}

.pickup .slick-dots .slick-active button {
  opacity: 1;
}

.pickup .slick-arrow {
  background: url("data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='icon'%3e%3cpath%20id='Vector'%20d='M9.93477%207.30977L5.55977%2011.6848C5.51913%2011.7254%205.47087%2011.7577%205.41776%2011.7797C5.36465%2011.8017%205.30773%2011.813%205.25024%2011.813C5.19276%2011.813%205.13584%2011.8017%205.08273%2011.7797C5.02962%2011.7577%204.98136%2011.7254%204.94071%2011.6848C4.90006%2011.6441%204.86782%2011.5959%204.84582%2011.5428C4.82382%2011.4897%204.8125%2011.4327%204.8125%2011.3752C4.8125%2011.3178%204.82382%2011.2608%204.84582%2011.2077C4.86782%2011.1546%204.90006%2011.1064%204.94071%2011.0657L9.00673%207.00024L4.94071%202.93477C4.85862%202.85268%204.8125%202.74134%204.8125%202.62524C4.8125%202.50915%204.85862%202.3978%204.94071%202.31571C5.0228%202.23362%205.13415%202.1875%205.25024%202.1875C5.36634%202.1875%205.47768%202.23362%205.55977%202.31571L9.93477%206.69071C9.97545%206.73134%2010.0077%206.7796%2010.0297%206.83271C10.0518%206.88582%2010.0631%206.94275%2010.0631%207.00024C10.0631%207.05774%2010.0518%207.11467%2010.0297%207.16778C10.0077%207.22089%209.97545%207.26914%209.93477%207.30977Z'%20fill='%231C3265'/%3e%3c/g%3e%3c/svg%3e") center/contain no-repeat;
  border: 0;
  bottom: 0;
  display: flex;
  font-size: 0;
  height: 24px;
  width: 24px;
}

.pickup .slick-arrow.slick-prev {
  margin-left: 16px;
  transform: scaleX(-1);
}

.pickup .slick-arrow.slick-next {
  margin-right: 16px;
  order: 1;
}

.pickup .thumbnail__inner {
  padding: min(3.8461538462vw, 15px);
}

.pickup .thumbnail__logo {
  width: min(38.4615384615vw, 150px);
}

.pickup .thumbnail__title {
  font-size: min(5.641025641vw, 2.2rem);
}

.pickup .thumbnail__author {
  -moz-column-gap: min(2.0512820513vw, 8px);
       column-gap: min(2.0512820513vw, 8px);
  height: min(7.1794871795vw, 28px);
  margin-top: min(5.1282051282vw, 20px);
}

.pickup .thumbnail__authorIcon {
  height: min(7.1794871795vw, 28px);
  width: min(7.1794871795vw, 28px);
}

.pickup .thumbnail__authorName {
  font-size: min(2.5641025641vw, 1rem);
}
/* mailmagazine */
.mailmagazine {
  padding-top: 24px;
}

.mailmagazine__title {
  color: var(--color-main);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.mailmagazine__recommend {
  margin-top: 40px;
  padding: 0 16px;
}
/* mailmagazineContent */
.mailmagazineContent {
  background: url(/_/mailmagazine-background-sp.png) center/390px;
  margin-top: 24px;
  padding: 24px 0;
}

.mailmagazineContent__inner {
  display: grid;
  padding: 0 16px;
  row-gap: 16px;
  width: 100%;
}

.mailmagazineContent__detail {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 20px 0 rgba(0, 0, 0, 0.05);
  display: grid;
  padding: 24px 16px;
  row-gap: 24px;
}

.mailmagazineContent__detailTitle {
  font-size: 22px;
  font-weight: bold;
  line-height: var(--lineHeight-tight);
}

.mailmagazineContent__detailList {
  display: grid;
  row-gap: 16px;
}

.mailmagazineContent__detailItem {
  font-weight: bold;
  padding-left: 24px;
  position: relative;
}

.mailmagazineContent__detailItem::before {
  background: currentColor;
  border-radius: 5px;
  content: "";
  height: 5px;
  left: 9px;
  position: absolute;
  top: calc(0.5em * var(--lineHeight-base) + 1px);
  transform: translateY(-50%);
  width: 5px;
}

.mailmagazineContent__detailMarker {
  background: linear-gradient(transparent 68%, #ECEFFF 68%);
}

.mailmagazineContent__form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 20px 0 rgba(0, 0, 0, 0.05);
  height: 277px;
  padding: 24px 16px 0;
  width: 100%;
}
.no-blog {
  background-color: var(--color-gray);
  color: var(--color-sub);
  display: grid;
  font-size: 14px;
  height: 100px;
  line-height: 1;
  place-items: center;
  width: 100%;
}

.no-blog--search {
  margin-top: 8px;
}
/* searchform */
.search-form_wrapper {
  align-items: center;
  display: flex;
  overflow: hidden;
}

.search-form_input {
  background-color: var(--color-input-bg);
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  color: var(--color-base);
  flex-grow: 1;
  font-size: 14px;
  line-height: 1;
  outline: none !important;
  padding: 12px 16px;
}

.search-form_input:focus, .search-form_input:focus-within {
  border-color: var(--color-border) !important;
  box-shadow: none !important;
  outline: none !important;
  outline: none !important;
}

.search-form_button {
  background-color: #666;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  height: 48px;
  padding: 11px 15px;
}

.search-form_input:focus-within {
  border-color: dodgerblue;
  box-shadow: 0 0 5px rgba(30, 144, 255, 0.5);
}

.search-form_input::-moz-placeholder {
  color: var(--color-placeholder);
}

.search-form_input::placeholder {
  color: var(--color-placeholder);
}

@media screen and (min-width: 390px){
  .mailmagazine__title {
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 599px){
  .hide-max-tb {
    display: none !important;
  }
}

@media screen and (min-width: 600px){
  .hide-min-tb {
    display: none !important;
  }
  .header-top__search {
    height: 80px;
    min-height: 80px;
    min-width: 80px;
    width: 80px;
  }
  .headerLogo {
    margin-left: 24px;
    max-width: 300px;
  }
  .headerNav a {
    padding: 16px 24px 12px;
  }
  .footerInfo {
    padding: 40px 24px;
    row-gap: 32px;
  }
  .footerInfo__nav {
    align-items: flex-end;
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
  }
  .footerMenu {
    padding: 0 24px;
  }
  .footerCopyright {
    margin-top: 24px;
  }
  .container {
    margin: 0 auto;
    max-width: 810px;
    padding: 24px 24px 0;
  }
  .posts__card {
    min-height: 153px;
    padding: 24px 0 24px 216px;
  }
  .posts__thumbnail {
    top: 24px;
    transform: scale(0.55710306);
  }
  .postHead__title {
    margin-bottom: 6px;
  }
  .postHead__author {
    margin: 0 0 0 auto;
    width: auto;
  }
  .postFoot__cta {
    grid-template-columns: 140px 1fr;
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding: 32px;
  }
  .postFoot__ctaTitle {
    grid-column: span 2;
    text-align: center;
  }
  .postFoot__ctaTitle + .postFoot__ctaText {
    grid-column: span 2;
    text-align: center;
  }
  .postFoot__ctaButton {
    grid-column: span 2;
  }
  .recommend__list {
    margin-top: 24px;
  }
  .pickup {
    gap: 16px 40px;
    margin-top: 24px;
  }
  .pickup .slick-slide {
    padding: 0 8px;
    width: 360px;
  }
  .pickup .slick-dots {
    margin: 0;
  }
  .pickup .slick-arrow.slick-prev {
    margin-left: 24px;
  }
  .pickup .slick-arrow.slick-next {
    margin-right: 24px;
  }
  .mailmagazine__recommend {
    margin: 40px auto 0;
    max-width: 810px;
    padding: 0 24px;
  }
  .mailmagazineContent__inner {
    margin: 0 auto;
    max-width: 810px;
    padding: 0 24px;
  }
  .mailmagazineContent__detail {
    padding: 24px;
  }
  .mailmagazineContent__form {
    padding: 24px;
  }
}

@media screen and (min-width: 1024px){
  .hide-min-pc {
    display: none !important;
  }
  .header-top__search {
    display: none;
  }
  .headerLogo {
    margin-left: 0;
    max-width: 100%;
    padding: 16px 40px;
  }
  .headerNav a {
    font-size: 1.7rem;
  }
  .header-search {
    display: none !important;
  }
  .childCategoryNav ul {
    padding: 16px 0;
  }
  .footer {
    margin-top: 96px;
  }
  .footerInfo {
    grid-column: span 2;
    padding: 40px;
  }
  .footerInfo__nav {
    align-items: center;
  }
  .footerMenu {
    align-items: end;
    grid-template: auto 1fr/1fr auto;
    justify-items: end;
    -moz-column-gap: 64px;
         column-gap: 64px;
    margin-top: 40px;
    padding: 0 40px;
  }
  .footerMenu__nav {
    gap: 40px 64px;
  }
  .footerMenu__nav:first-child {
    align-self: start;
    grid-row: span 2;
  }
  .footerMenu__nav:not(:first-child) {
    width: 424px;
  }
  .footerMenu__navItem {
    row-gap: 24px;
  }
  .footerMenu__nav:not(:first-child) .footerMenu__navItem {
    width: calc(50% - 32px);
  }
  .footerMenu__navChild {
    display: flex;
    -moz-column-gap: 46px;
         column-gap: 46px;
    padding-bottom: 0;
  }
  .footerCopyright {
    margin-top: 40px;
  }
  .container {
    grid-template-columns: 1fr 320px;
    -moz-column-gap: 64px;
         column-gap: 64px;
    max-width: 1160px;
    padding: 40px 40px 0;
  }
  .sidebar-search {
    display: block;
  }
  .thumbnail__inner {
    padding: min(1.2931034483vw, 15px);
  }
  .thumbnail__logo {
    width: min(12.9310344828vw, 150px);
  }
  .thumbnail__title {
    color: #fff;
    font-size: min(1.724137931vw, 2rem);
    font-weight: bold;
    line-height: var(--lineHeight-tight);
    margin-top: auto;
  }
  .thumbnail__author {
    -moz-column-gap: min(0.6896551724vw, 8px);
         column-gap: min(0.6896551724vw, 8px);
    height: min(2.4137931034vw, 28px);
    margin-top: min(1.724137931vw, 20px);
  }
  .thumbnail__authorIcon {
    border-radius: 9999px;
    height: min(2.4137931034vw, 28px);
    overflow: hidden;
    width: min(2.4137931034vw, 28px);
  }
  .thumbnail__authorName {
    font-size: min(0.8620689655vw, 1rem);
  }
  .single > .thumbnail__logo-title {
    font-size: min(1.724137931vw, 20px);
    letter-spacing: 0.04em;
    margin-left: min(2.6724137931vw, 31px);
    margin-top: min(7.5vw, 87px);
  }
  .single > .thumbnail__current-category-title {
    font-size: min(4.7413793103vw, 55px);
    margin-left: min(2.6724137931vw, 31px);
    margin-top: min(1.6379310345vw, 19px);
  }
  .single > .thumbnail__child-category-title {
    font-size: min(1.9827586207vw, 23px);
    margin-left: min(2.6724137931vw, 31px);
    margin-top: min(2.1551724138vw, 25px);
  }
  .tagList {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 24px 0 24px 40px;
  }
  .tagList__title {
    color: var(--color-sub);
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }
  .tagList__list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x;
    white-space: nowrap;
  }
  .tagList__item {
    padding: 0 40px 0 8px;
    pointer-events: none;
    scroll-snap-align: start;
  }
  .tagList__item + .tagList__item {
    margin-left: -36px;
  }
  .postHead__thumbnail .thumbnail__inner {
    padding: min(2.4137931034vw, 28px);
  }
  .postHead__thumbnail .thumbnail__logo {
    width: min(21.5517241379vw, 250px);
  }
  .postHead__thumbnail .thumbnail__title {
    font-size: min(3.6206896552vw, 4.2rem);
  }
  .postHead__thumbnail .thumbnail__author {
    -moz-column-gap: min(1.2068965517vw, 14px);
         column-gap: min(1.2068965517vw, 14px);
    height: min(4.8275862069vw, 56px);
    margin-top: min(3.4482758621vw, 40px);
  }
  .postHead__thumbnail .thumbnail__authorIcon {
    height: min(4.8275862069vw, 56px);
    width: min(4.8275862069vw, 56px);
  }
  .postHead__thumbnail .thumbnail__authorName {
    font-size: min(1.5517241379vw, 1.8rem);
  }
  .recommend__list {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .recommend__button {
    margin-top: 32px;
  }
  .pickup {
    gap: 16px 80px;
    margin-top: 0;
  }
  .pickup .slick-slide {
    padding: 0 12px;
    width: 368px;
  }
  .pickup .slick-arrow.slick-prev {
    margin-left: 40px;
  }
  .pickup .slick-arrow.slick-next {
    margin-right: 40px;
  }
  .pickup .thumbnail__title {
    font-size: 2rem;
  }
  .mailmagazine {
    padding-top: 40px;
  }
  .mailmagazine__recommend {
    margin: 56px auto 0;
    max-width: 1160px;
    padding: 0 40px;
  }
  .mailmagazineContent {
    background: url(/_/mailmagazine-background-pc.png) center/1366px;
    margin-top: 40px;
    padding: 40px 0;
  }
  .mailmagazineContent__inner {
    grid-template-columns: 52% 1fr;
    -moz-column-gap: 80px;
         column-gap: 80px;
    max-width: 1160px;
    padding: 0 40px;
  }
  .mailmagazineContent__detail {
    padding: 32px 24px;
    row-gap: 40px;
  }
  .mailmagazineContent__detailTitle {
    font-size: 28px;
  }
  .mailmagazineContent__form {
    height: 100%;
    padding: 32px 24px;
  }
  .no-blog--search {
    margin-top: 16px;
  }
  .search-form_button svg {
    min-width: 24px;
  }
}

@media screen and (max-width: 1023px){
  .hide-max-pc {
    display: none !important;
  }
}

@media (hover: hover) and (pointer: fine){
  .headerNav a:hover {
    background: var(--color-main-light);
  }
  .sidebar__banner:hover img {
    transform: scale3d(1.05, 1.05, 1);
  }
  .button:hover {
    background: var(--color-main-hover);
  }
  .button.-accent:hover {
    background: var(--color-accent-hover);
  }
  .secondaryButton:hover {
    background: var(--color-main-light);
  }
  a:hover .thumbnail__inner {
    transform: scale3d(1.05, 1.05, 1);
  }
  .card__link:hover {
    color: var(--color-main);
  }
  .card__title:hover {
    color: var(--color-main);
  }
  .tag:hover {
    background: var(--color-main-light);
  }
  .posts__title:hover {
    color: var(--color-main);
  }
}

@media (prefers-reduced-motion: no-preference){
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :not(:active):focus-visible {
    transition-duration: 0.25s;
  }
}