@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-size: 100%;
}
@media (max-width: 1250px) {
  html {
    font-size: 1.28vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 750px) {
  html {
    font-size: 2.1333333333vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #414242;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* 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,
ul,
li {
  margin: 0;
}

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

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

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

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

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

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll 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;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1250px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.c-btn1 {
  min-width: 22.5rem;
  padding: 0.5625rem 1.625rem;
  background-color: #F27522;
  border-radius: 0.6875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  -webkit-box-shadow: 0.1875rem 0.25rem 0.25rem rgba(0, 0, 0, .25);
          box-shadow: 0.1875rem 0.25rem 0.25rem rgba(0, 0, 0, .25);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn1 {
    font-size: 1.5rem;
    line-height: 1.25;
    padding: 1.125rem 1.5625rem 1.125rem 1.3125rem;
    gap: 1.5rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 39.25rem;
  }
}
.c-btn1:after {
  content: "";
  display: block;
  width: 1.6875rem;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/arrow1.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .c-btn1:after {
    width: 2.0625rem;
  }
}

@media (any-hover: hover) {
  .c-btn1:hover {
    opacity: 1;
    translate: 0.125rem 0.125rem;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.c-card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .c-card a {
    height: auto;
  }
}
.c-card a:hover {
  opacity: 1;
}
.c-card a:hover .c-card__thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.c-card__thumbnail {
  overflow: hidden;
}
.c-card__thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 360/188;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-card__body {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100% - 12.5rem);
}
@media screen and (max-width: 768px) {
  .c-card__body {
    margin-top: 0.625rem;
  }
}

.c-card__title {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .c-card__title {
    font-size: 2rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.c-card__time {
  display: block;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  font-weight: 600;
  text-align: right;
  margin-top: 0.9375rem;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .c-card__time {
    font-size: 1.75rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
  }
}

.breadcrumb-item {
  font-size: 1rem;
  line-height: 1.1875;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .breadcrumb-item {
    font-size: 1.5rem;
  }
}

.breadcrumb-mark {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  line-height: 1.1875;
  letter-spacing: 0.01em;
  margin-inline: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .breadcrumb-mark {
    font-size: 1.5rem;
    margin-inline: 0.125rem;
  }
}

.p-archive__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive__list {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

.p-archive__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-archive__btnWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.75rem;
  }
}

.p-archive__pagination {
  translate: -50% 0;
}
@media screen and (max-width: 768px) {
  .p-archive__pagination {
    translate: 0 0;
  }
}

.p-archive__empty {
  padding-block: 3.125rem;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-archive__empty {
    font-size: 1.75rem;
    line-height: 1.2857142857;
  }
}
.p-archive__empty .p-sidebar__search {
  margin-top: 1.875rem;
}

.p-archive__search-title {
  padding-block: 1.25rem;
}

.p-archive__cta {
  margin-top: 3.75rem;
}

.p-comfirm__title {
  font-size: 2rem;
  line-height: 1.40625;
  letter-spacing: 0.1em;
  color: #F27522;
  text-align: center;
}

.p-comfirm__icon {
  width: 8.3125rem;
  margin-inline: auto;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-comfirm__icon {
    width: 12rem;
  }
}

.p-comfirm__text {
  margin-top: 3.125rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #424242;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-comfirm__text {
    text-align: left;
  }
}
.p-comfirm__text p {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-comfirm__text p {
    font-size: 1.75rem;
  }
}
.p-comfirm__text p + p {
  margin-top: 1em;
}

.p-cta {
  padding: 1.5625rem 2.1875rem 2.1875rem 2.8125rem;
  background-color: #FFFED9;
}
@media screen and (max-width: 768px) {
  .p-cta {
    padding: 1.5625rem 2.4375rem 1.5625rem 1.125rem;
  }
}

.p-cta__text {
  font-size: 1rem;
  line-height: 2.1875;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-cta__text {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.p-cta__btn {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-cta__btn {
    display: block;
  }
}

.p-cta__icon {
  width: 7.125rem;
}
@media screen and (max-width: 768px) {
  .p-cta__icon {
    width: 7.5rem;
    margin-inline: auto;
    margin-top: 0.9375rem;
  }
}

.p-cta__btnInner .c-btn1 {
  margin-top: 0.3125rem;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 768px) {
  .p-cta__btnInner .c-btn1 {
    margin-top: 0.375rem;
  }
}

.p-footer {
  background-color: #414242;
  padding-block: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding-bottom: 2.5rem;
  }
}

.p-footer__inner.l-inner {
  max-width: 87.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-footer__inner.l-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-inline: 1.5625rem;
  }
}

.p-footer__privacy {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .p-footer__privacy {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.p-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  margin-left: 3.625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__links {
    margin-left: auto;
  }
}

.p-footer__link {
  width: 5.9375rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-footer__link img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__copy {
  font-size: 1rem;
  line-height: 1.875;
  color: #fff;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-footer__copy {
    font-size: 1.25rem;
    line-height: 1.5;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 0.9375rem;
  }
}

.p-fv.--lower {
  max-width: 59.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-fv.--lower {
    max-width: 43.125rem;
  }
}
.p-fv.--lower img {
  width: 100%;
  height: 100%;
  aspect-ratio: 950/187;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-fv.--lower img {
    aspect-ratio: 530/116;
  }
}

.p-header {
  padding-block: 1.5625rem;
  -webkit-box-shadow: 0 0.25rem 1.125rem rgba(0, 0, 0, .25);
          box-shadow: 0 0.25rem 1.125rem rgba(0, 0, 0, .25);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 97;
}

.p-header__inner.l-inner {
  max-width: 82.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-header__logo {
  width: 18.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    width: 15.625rem;
  }
}

.p-header__btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-header__btn {
    width: 3rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-header__btn span {
    display: block;
    width: 100%;
    height: 0.25rem;
    background-color: #F27522;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.p-header__btn.is-active span:nth-child(1) {
  -webkit-transform: translateY(1.125rem) rotate(45deg);
          transform: translateY(1.125rem) rotate(45deg);
}
.p-header__btn.is-active span:nth-child(2) {
  opacity: 0;
}
.p-header__btn.is-active span:nth-child(3) {
  -webkit-transform: translateY(-1.125rem) rotate(-45deg);
          transform: translateY(-1.125rem) rotate(-45deg);
}

.p-header__drawer {
  display: none;
  position: fixed;
  top: 6.25rem;
  left: 0;
  right: 0;
  height: calc(100% - 6.25rem);
  overflow-y: auto;
  z-index: 96;
}

.p-links {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.125rem;
  margin-top: 2.1875rem;
  padding-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-links {
    padding-left: 0;
  }
}
.p-links span {
  display: inline-block;
  font-size: 1rem;
  line-height: 2.1875;
  color: #fff;
  padding: 0 0.625rem;
  background-color: #414242;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-links span {
    font-size: 1.5rem;
  }
}

.p-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}

.p-links__link {
  display: block;
}
.p-links__link.--x {
  width: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .p-links__link.--x {
    width: 2.9375rem;
  }
}
.p-links__link.--facebook {
  width: 2.25rem;
}
@media screen and (max-width: 768px) {
  .p-links__link.--facebook {
    width: 3.25rem;
  }
}
.p-links__link.--note {
  width: 6rem;
}
@media screen and (max-width: 768px) {
  .p-links__link.--note {
    width: 8.5625rem;
  }
}

.p-main {
  margin-top: 9.25rem;
}
@media screen and (max-width: 768px) {
  .p-main {
    margin-top: 8.4375rem;
  }
}

.p-main__contentsWrap {
  display: grid;
  grid-template-columns: 1fr 30.8333333333%;
  gap: 6.6666666667%;
  padding-block: 3rem;
  margin-top: 3rem;
  border-top: 1px solid #414242;
}
@media screen and (max-width: 768px) {
  .p-main__contentsWrap {
    grid-template-columns: 1fr;
  }
}

.p-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.p-pagination__item {
  width: 2.5rem;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .p-pagination__item {
    width: 3.75rem;
  }
}

.p-pagination__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #AFAFAF;
  color: #414242;
  font-size: 1rem;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-pagination__link {
    font-size: 1.5rem;
  }
}
.p-pagination__link:hover {
  background-color: #FFD974;
}

.p-pagination__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: #FFD974;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-pagination__current {
    font-size: 1.5rem;
  }
}

.p-pagination__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .p-pagination__dots {
    font-size: 1.5rem;
  }
}

.p-post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.25rem;
}

.p-post__category {
  display: inline-block;
  font-size: 1rem;
  line-height: 2.1875;
  font-weight: 600;
  text-align: center;
  padding-inline: 0.625rem;
  background-color: #D9D9D9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-post__category {
    font-size: 1.5rem;
  }
}
.p-post__category:hover {
  opacity: 1;
  color: #F27522;
}

.p-post__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-post__tag {
  font-size: 1rem;
  line-height: 2.1875;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-post__tag {
    font-size: 1.5rem;
  }
}
.p-post__tag:before {
  content: "#";
}

.p-post__thumbnail {
  margin-top: 1.25rem;
}
.p-post__thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 750/392;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-post__thumbnail img {
    aspect-ratio: 680/355;
  }
}

.p-post__title {
  font-size: 2rem;
  line-height: 1.4375;
  letter-spacing: 0.01em;
  font-weight: 900;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-post__title {
    font-size: 2.25rem;
    margin-top: 2.5rem;
  }
}

.p-post__meta2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #414242;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-post__meta2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 2.5rem;
  }
}

.p-post__auther {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
.p-post__auther .avatar {
  width: 3.75rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-post__auther .avatar {
    width: 5rem;
  }
}
.p-post__auther.--lower {
  margin-top: 1.25rem;
  padding-top: 3.125rem;
  border-top: 1px solid #414242;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.p-post__autherNameBox {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 1.875rem;
}

.p-post__autherName,
.p-post__autherPosition,
.p-post__time {
  display: block;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-post__autherName,
  .p-post__autherPosition,
  .p-post__time {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.p-post__autherDescription {
  font-size: 0.875rem;
  line-break: 1.4285714286;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-post__autherDescription {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-post__time {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .p-post__metaBox {
    margin-left: auto;
  }
}

.p-post__social {
  margin-top: 0.625rem;
}

.p-post__lead {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-post__lead {
    font-size: 1.75rem;
    line-height: 1.6071428571;
  }
}
.p-post__lead p + p {
  margin-top: 1em;
}

.rtoc-mokuji-content {
  max-width: 37.5rem;
  padding: 1.5625rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .rtoc-mokuji-content {
    padding: 1.5625rem 2.25rem;
  }
}

.rtoc-mokuji-content #rtoc-mokuji-title {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.01em;
  font-weight: 600;
  position: relative;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .rtoc-mokuji-content #rtoc-mokuji-title {
    font-size: 1.75rem;
    line-height: 1.0714285714;
  }
}
.rtoc-mokuji-content #rtoc-mokuji-title:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #AFAFAF;
  position: absolute;
  bottom: -0.125rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 768px) {
  .rtoc-mokuji-content #rtoc-mokuji-title:after {
    bottom: -0.25rem;
  }
}

.rtoc-mokuji-content {
  margin-block: 3.125rem;
}
@media screen and (max-width: 768px) {
  .rtoc-mokuji-content {
    margin-block: 4.375rem;
  }
}

.rtoc-mokuji-content .rtoc-mokuji.mokuji_ul.level-1 > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.01em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .rtoc-mokuji-content .rtoc-mokuji.mokuji_ul.level-1 > li > a {
    font-size: 1.75rem;
    line-height: 1.6071428571;
  }
}
.rtoc-mokuji-content .rtoc-mokuji.mokuji_ul.level-1 > li > a:before {
  content: "・";
  display: block;
}

.rtoc-mokuji-content .rtoc-mokuji.mokuji_ul.level-1 > li + li {
  margin-top: 1.0625rem;
}

.rtoc-mokuji-content .rtoc-mokuji.mokuji_ul.level-1.is_close {
  display: none;
}

.rtoc-mokuji-content .rtoc-mokuji.mokuji_ol.level-2 {
  padding-left: 1.875rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .rtoc-mokuji-content .rtoc-mokuji.mokuji_ol.level-2 {
    padding-left: 3.75rem;
  }
}

.rtoc-mokuji-content .rtoc-mokuji.mokuji_ol.level-2 > li {
  list-style: decimal;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .rtoc-mokuji-content .rtoc-mokuji.mokuji_ol.level-2 > li {
    font-size: 1.75rem;
    line-height: 1.6071428571;
  }
}

.rtoc-mokuji-content.rtoc_close #rtoc-mokuji-title .rtoc_open_close,
.rtoc-mokuji-content.rtoc_open #rtoc-mokuji-title .rtoc_open_close {
  background-color: transparent;
  scale: 1 0.8;
  color: #AFAFAF;
}

.p-post__main {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-post__main {
    margin-top: 4.375rem;
  }
}
.p-post__main h2 {
  font-size: 2rem;
  line-height: 0.9375;
  letter-spacing: 0.01em;
  font-weight: 900;
  padding-bottom: 0.625rem;
  border-bottom: 6px solid #ffd974;
  margin-block: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-post__main h2 {
    font-size: 2.25rem;
    line-height: 1.3888888889;
  }
}
.p-post__main h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
  margin-block: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-post__main h3 {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.p-post__main h3:before {
  content: "";
  display: block;
  width: 0.375rem;
  height: atuo;
  background-color: #ffd974;
}
.p-post__main h4 {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 900;
  margin-top: 2.5rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-post__main h4 {
    font-size: 1.75rem;
    line-height: 1.0714285714;
  }
}
.p-post__main p {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.01em;
  margin-block: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-post__main p {
    font-size: 1.75rem;
    line-height: 1.6071428571;
    margin-block: 2.5rem;
  }
}
.p-post__main .wp-block-quote {
  margin-block: 3.125rem;
  border: 0.25rem solid #ffd974;
}
@media screen and (max-width: 768px) {
  .p-post__main .wp-block-quote {
    margin-block: 4.375rem;
  }
}
.p-post__main .wp-block-quote p {
  margin-block: 0;
  padding: 0.3125rem 1.25rem;
  background-color: #ffd974;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.01em;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .p-post__main .wp-block-quote p {
    padding: 0.625rem 1.25rem;
    font-size: 1.75rem;
    line-height: 1.0714285714;
  }
}
.p-post__main .wp-block-list {
  padding: 1.5625rem 1.875rem;
}
.p-post__main .wp-block-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-post__main .wp-block-list li {
    font-size: 1.75rem;
    line-height: 1.6071428571;
  }
}
.p-post__main .wp-block-list li:before {
  content: "・";
  display: block;
}

.p-post__related-item {
  padding: 1.5625rem 2.1875rem;
  border: 1px solid #AFAFAF;
  background-color: #F8F8F8;
  padding: 1.5625rem;
}
.p-post__related-item a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-post__related-item a {
    gap: 1.25rem;
  }
}

.p-post__related-img {
  width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-post__related-img {
    width: 17.875rem;
  }
}
.p-post__related-img img {
	width: 100%;
	height: auto;
  aspect-ratio: 120/63;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-post__related-img img {
    aspect-ratio: 286/150;
  }
}

.p-post__related-content span {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  padding: 0 0.625rem;
  background-color: #414242;
}
@media screen and (max-width: 768px) {
  .p-post__related-content span {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.p-post__related-item-title {
  font-size: 1rem;
  line-height: 1.5625;
  font-weight: 500;
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-post__related-item-title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-post__social {
  margin-top: 1.25rem;
}
.p-post__social .p-share-btn {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.p-post__cta {
  margin-top: 3.125rem;
}

.p-recommend {
  margin-top: 3.125rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #414242;
}

.p-recommend__text {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-recommend__text {
    font-size: 1.75rem;
    line-height: 1.4285714286;
  }
}

.p-recommend__post {
  margin-top: 2.5rem;
  padding: 1.875rem;
  background-color: #F8F8F8;
  border: 1px solid #AFAFAF;
}
.p-recommend__post span {
  display: inline-block;
  font-size: 1rem;
  line-height: 2.1875;
  color: #fff;
  padding: 0 0.625rem;
  background-color: #414242;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-recommend__post span {
    font-size: 1.5rem;
  }
}

.p-recommend__list {
  margin-top: 1.25rem;
}

.p-recommend__item {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.6;
}
.p-recommend__item:before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.4em;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
}
@media screen and (max-width: 768px) {
  .p-recommend__item:before {
    width: 0.36em;
    top: 1.5em;
  }
}
.p-recommend__item:nth-child(n+2) {
  margin-top: 1.25rem;
}
.p-recommend__item a {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .p-recommend__item a {
    font-size: 1.5rem;
    line-height: 1.875;
  }
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}

.contact-item {
  border: 1px solid #333;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 256/189;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contect-icon {
  width: 50%;
  height: auto;
  margin-inline: auto;
}

.contact-item__text {
  display: block;
  text-align: center;
}

.p-share-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-share-btn {
    gap: 0.4375rem;
  }
}
.p-share-btn a img {
  width: 4.6875rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-share-btn a img {
    width: 11.25rem;
  }
}

.p-sidebar {
  background-color: #F8F8F8;
  padding: 1.875rem 1.25rem;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-sidebar {
    position: static;
    padding: 3.4375rem;
  }
}

.p-sidebar__search {
  margin-bottom: 2.5rem;
}

.p-sidebar__search input[type=text] {
  width: 100%;
  padding: 0.4375rem 1.875rem;
  border: 1px solid #707070;
  border-radius: 6.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #707070;
  background: url("../images/icon_search.svg") no-repeat center right 0.9375rem;
  background-size: 1.25rem 1.25rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-sidebar__search input[type=text] {
    font-size: 1.75rem;
    background-size: 2.5rem 2.5rem;
    padding: 0.625rem 1.875rem;
  }
}

.p-sidebar__block:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-sidebar__block:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}

.p-sidebar__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background-color: #414242;
  padding: 0.4375rem 1.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-sidebar__title {
    font-size: 1.75rem;
    padding: 0.9375rem 1.25rem;
  }
}

.p-sidebar__title img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-sidebar__title img {
    width: 1.875rem;
    height: 2.3125rem;
  }
}

.p-sidebar__item:nth-child(n+2) {
  margin-top: 0.625rem;
}
.p-sidebar__item:not(:last-child) {
  border-bottom: 1px solid #AFAFAF;
}

.p-sidebar__item a {
  display: block;
  padding: 0 0.8125rem;
  font-size: 1rem;
  line-height: 2.1875;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-sidebar__item a {
    font-size: 1.75rem;
  }
}

@media (any-hover: hover) {
  .p-sidebar__item a:hover {
    opacity: 1;
    color: #F27522;
  }
}
.p-sidebar__popular .p-sidebar__item:not(:last-child) {
  border-bottom: none;
}
.p-sidebar__popular .p-sidebar__item:nth-child(n+2) {
  margin-top: 0.9375rem;
}
.p-sidebar__popular .p-sidebar__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  padding-inline: 0;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .p-sidebar__popular .p-sidebar__item a {
    gap: 1.25rem;
    font-size: 1.75rem;
    line-height: 1.2857142857;
  }
}

.p-sidebar__thumbnail {
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-sidebar__thumbnail img {
  width: 7.5rem;
  height: 100%;
  aspect-ratio: 120/63;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-sidebar__thumbnail img {
    width: 12.5rem;
    aspect-ratio: 200/104;
  }
}

@media (any-hover: hover) {
  .p-sidebar__item a:hover .p-sidebar__thumbnail img {
    scale: 1.05;
  }
}
.p-test {
  color: red;
  font-size: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-test {
    font-size: 3.125rem;
  }
}

.u-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
