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

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
}
/* =====================================
  Design Tokens
===================================== */
:root {
  /* color */
  --color-body: #fff;
  --color-text: #000;
  --color-link: #004b88;
  --color-line: #eff0f3;
  --yellow: #f4c530;
  --pink: #f39abb;
  --red: #e73245;
  --blue: #4169e2;
  --green: #00a692;
  /* typography */
  --font-base:
    "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-ex: "Special Gothic Expanded One", sans-serif;
  --font-size-base: 0.95rem;
  --line-height-base: 1.7;
  /* layout */
  --inner-width: 1180px;
  --content-padding: 2rem;
}

@media (max-width: 820px) {
  :root {
    --font-size-base: 0.95rem;
    --content-padding: 1.5rem;
  }
}
/* =====================================
  Functions
===================================== */
/* font-size px -> rem */
/* vw pc */
/* sp */
/* =====================================
  Base
===================================== */
html,
body {
  margin: 0;
  background-color: var(--color-body);
  color: var(--color-text);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-family: var(--font-base);
}

a {
  color: var(--color-link);
  text-decoration: underline;
  word-break: break-all;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* =====================================
  Layout
===================================== */
.l-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: var(--inner-width);
  margin: 0 auto;
  padding-inline: var(--content-padding);
  gap: 4rem;
}
@media (max-width: 820px) {
  .l-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.main {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 90px 4rem;
}
@media (max-width: 820px) {
  .main {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .main {
    padding-block: 5rem 0;
  }
}

.side {
  width: 250px;
  padding-block: 90px 4rem;
}
@media (max-width: 820px) {
  .side {
    width: 100%;
    padding: 0;
  }
}

.inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding-inline: var(--content-padding);
}

/* =====================================
  Header
===================================== */
.header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 0;
  background-color: transparent;
}
.header__logo {
  font-size: 30px;
  font-family: var(--font-ex);
}
.header__logo a {
  background-image: url(../images/logo--pc.svg);
  background-position-y: 0.5rem;
  background-size: 100%;
  background-repeat: no-repeat;
  color: var(--color-text);
  text-decoration: none;
}
@media (max-width: 767px) {
  .header__logo a {
    background-image: url(../images/logo--sp.svg);
    background-size: 10.6666666667vw;
  }
}
.header__logo a span {
  visibility: hidden;
}

/* =====================================
  footer
===================================== */
.footer__nav {
  margin: 0;
  padding: 1rem 0;
  list-style: none;
  text-align: center;
}
.footer__nav li {
  display: inline-block;
  margin: 0 0.5rem;
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__nav li {
    font-size: 3.7333333333vw;
  }
}
.footer__copy {
  display: block;
  padding-bottom: 1rem;
  font-size: 13px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__copy {
    font-size: 3.4666666667vw;
  }
}

.ad {
  position: relative;
  text-align: center;
}
.ad a {
  display: inline-block;
}

/* =====================================
  side
===================================== */
.side__section {
  padding-bottom: 2.5rem;
}
.side__section .wp-block-categories,
.side__section .wp-block-archives {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}
.side__section .wp-block-categories li,
.side__section .wp-block-archives li {
  font-size: 14px;
  line-height: 2;
  text-indent: 0.5em;
}
.side__section .wp-block-calendar caption {
  display: none;
}
.side__head {
  font-size: 16px;
}
@media (max-width: 767px) {
  .side__head {
    font-size: 4.2666666667vw;
  }
}

.searchbox__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.searchbox__input {
  width: 100%;
  height: 35px;
  padding: 0 35px 0 10px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background-color: transparent;
  font-size: 14px;
}
@media (max-width: 767px) {
  .searchbox__input {
    font-size: 3.7333333333vw;
  }
}
.searchbox__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 8px;
  right: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.searchbox__btn svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

/* =====================================
  Home
===================================== */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.breadcrumb {
  position: relative;
  margin: 0 auto;
  padding: 0 0 10px;
  list-style: none;
}
.breadcrumb li {
  display: inline;
  position: relative;
  padding-right: 20px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .breadcrumb li {
    font-size: 3.2vw;
  }
}
.breadcrumb li::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 6px;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb li a {
  text-decoration: underline;
}

.archive__header {
  padding-bottom: 2rem;
}
.archive__head {
  font-size: 22px;
}
@media (max-width: 767px) {
  .archive__head {
    font-size: 5.3333333333vw;
  }
}
.archive__sub {
  font-size: 16px;
}
@media (max-width: 767px) {
  .archive__sub {
    font-size: 4vw;
  }
}

.post__item {
  padding-bottom: 4rem;
}
.post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post__date {
  margin-right: 1rem;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .post__date {
    font-size: 3.7333333333vw;
  }
}
.post__cat {
  margin-right: 1rem;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .post__cat {
    font-size: 3.7333333333vw;
  }
}
.post__tags {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post__tags li {
  display: inline-block;
  margin-right: 1rem;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .post__tags li {
    font-size: 3.7333333333vw;
  }
}
.post__title {
  margin: 0.5rem 0;
  font-size: 20px;
}
@media (max-width: 767px) {
  .post__title {
    font-size: 4.8vw;
  }
}
.post__title a {
  color: var(--color-text);
  text-decoration: none;
}
.post__thumb {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 600px;
  margin: 0.5rem 0;
  overflow: hidden;
}
.post__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post__content h2 {
  margin: 1rem 0;
  font-size: 18px;
}
@media (max-width: 767px) {
  .post__content h2 {
    font-size: 4.8vw;
  }
}
.post__content h3 {
  margin: 1rem 0;
  font-size: 16px;
}
@media (max-width: 767px) {
  .post__content h3 {
    font-size: 4.2666666667vw;
  }
}
.post__content h4 {
  margin: 1rem 0;
  font-size: 15px;
}
@media (max-width: 767px) {
  .post__content h4 {
    font-size: 4vw;
  }
}
.post__content p {
  margin: 1rem 0;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .post__content p {
    font-size: 3.7333333333vw;
  }
}
.post__content ul,
.post__content ol {
  margin: 1rem 0;
}
.post__content ul li,
.post__content ol li {
  font-size: 14px;
}
@media (max-width: 767px) {
  .post__content ul li,
  .post__content ol li {
    font-size: 3.7333333333vw;
  }
}
.post__content figure {
  margin: 1rem 0;
}

.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: var(--inner-width);
  margin: 3rem auto;
  padding: 10px 0;
  gap: 1rem;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  list-style: none;
}
@media (max-width: 767px) {
  .pager {
    margin: 1rem auto;
  }
}
.pager li {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 767px) {
  .pager li {
    font-size: 3.7333333333vw;
  }
}
.pager li.current {
  padding: 0.5em;
  opacity: 0.5;
}
.pager li a {
  display: block;
  padding: 0.5em;
  color: var(--color-text);
  text-decoration: none;
}
.pager.pager--single {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/*# sourceMappingURL=style.css.map */
