@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
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 body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

:root {
  --basic-font-weight: 400;
  --basic-font-size: 16px;
  --basic-line-height: 1.8;
  --color-text: #222;
  --color-text-light: #666;
  --color-primary: #253f68;
  --color-primary-light: #f5f6fb;
  --color-primary-lighter: #eef0f6;
  --color-secondary: #ff7183;
  --color-primary-darker: #a5a9c2;
  --color-new: #ff7183;
  --color-border: #d9d9d9;
  --color-white: #fff;
  --color-gray: #f4f4f5;
  --color-gray-dark: #98989e;
  --color-black: #000;
  --font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",
    "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体",
    "Meiryo", "メイリオ", sans-serif;
}
@media screen and (max-width: 767px) {
  :root {
    --basic-font-size: 15px;
  }
}

body {
  font-family: var(--font-family);
  font-weight: var(--basic-font-weight);
  font-size: var(--basic-font-size);
  line-height: var(--basic-line-height);
  color: var(--color-text);
  background: var(--color-primary-light);
}

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

h1,
h2,
h3,
h4 {
  text-wrap: wrap;
}

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

li {
  margin: 0;
  padding: 0;
}

img,
iframe {
  vertical-align: bottom;
}

b,
strong {
  font-weight: 700;
}

.no-scroll {
  overflow: hidden;
}

:root {
  --content-max-width: 1360px;
  --content-total-width: var(--content-max-width);
  --viewport-width: 100vi;
  --actual-viewport-width: var(
    --js-viewport-width,
    var(--viewport-width, 100vw)
  );
  --content-margin: calc(
    (var(--actual-viewport-width) - var(--content-total-width)) / 2
  );
  --content-margin-positive: max(
    0px,
    var(--content-margin)
  );
  --content-margin-total: calc(
    var(--content-margin-positive) * 2
  );
}

.l-content {
  max-width: var(--content-max-width);
  padding: 60px 20px 120px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-content {
    padding: 40px 20px 60px;
  }
}
.l-content--sidebar-on {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .l-content--sidebar-on {
    flex-direction: column;
    gap: 60px;
  }
}
.l-content .l-section:first-child {
  padding-top: 0;
}
.l-content .l-section:last-child {
  padding-bottom: 0;
}
.l-content .l-section--bg > *:first-child,
.l-content .l-section > *:first-child {
  margin-top: 0;
}
.l-content .l-section--bg > *:last-child,
.l-content .l-section > *:last-child {
  margin-bottom: 0;
}

.l-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 40px 0 60px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 0;
  }
}

.l-footer__row {
  max-width: 1360px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
.l-footer__row + .l-footer__row {
  padding-top: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer__row + .l-footer__row {
    padding-top: 24px;
    margin-top: 24px;
  }
}
.l-footer__row + .l-footer__row::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.l-footer__inner {
  max-width: 960px;
  margin: 0 auto;
}

.l-footer__navList {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer__navList {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.l-footer__navItem {
  width: calc((100% - 160px) / 5);
}
@media screen and (max-width: 767px) {
  .l-footer__navItem {
    width: calc((100% - 20px) / 2);
  }
}

.l-footer__navLink {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer__navLink {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    font-weight: 500;
    font-size: 15px;
  }
}
@media (any-hover: hover) {
  .l-footer__navLink:hover {
    opacity: 0.7;
  }
}

.l-footer__navLink img {
  display: block;
  margin: 0 auto 8px;
  width: 24px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__navLink img {
    margin: 0;
    width: 15px;
  }
}

.l-footer__mainWrapper {
  display: grid;
  grid-template-columns: 296px 1fr;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .l-footer__mainWrapper {
    grid-template-columns: 1fr;
  }
}

.l-footer__logo {
  max-width: 221px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    max-width: 177px;
  }
}
.l-footer__logo a {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__logo a:hover {
    opacity: 0.7;
  }
}

.l-footer__btnWrapper {
  margin-top: 24px;
}

.l-footer__btnInquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-primary);
  background: var(--color-white);
  border: solid 1px var(--color-white);
  border-radius: 100px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer__btnInquiry {
    color: var(--color-white);
    background: none;
  }
}
@media (any-hover: hover) {
  .l-footer__btnInquiry:hover {
    opacity: 0.7;
  }
}
.l-footer__btnInquiry span {
  display: block;
  width: 16px;
}
.l-footer__btnInquiry span img {
  width: 100%;
  height: auto;
}

.l-footer__subNav {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__subNav {
    width: 100%;
    margin: auto;
  }
}

.l-footer__subNavList {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 16px 80px;
}
@media screen and (max-width: 767px) {
  .l-footer__subNavList {
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
  }
}

.l-footer__subNavListItem {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .l-footer__subNavListItem {
    font-weight: 400;
    font-size: 12px;
  }
}

.l-footer__subNavLink {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__subNavLink:hover {
    opacity: 0.7;
  }
}

.l-footer__copyright {
  margin-top: 32px;
  display: block;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin-top: 24px;
  }
}

:root {
  --header-height: 86px;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 52px;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding-top: var(--header-height);
  }
}

.l-header {
  width: 100%;
  height: var(--header-height);
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  }
}

.l-header__inner {
  max-width: 1360px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header__logo {
  max-width: 221px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    max-width: 142px;
  }
}
.l-header__logo a {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__navList {
  display: flex;
  gap: 24px;
}

.l-header__navItem {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}
.l-header__navItem--contact {
  padding-left: 24px;
  position: relative;
}
.l-header__navItem--contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background-color: var(--color-border);
}
.l-header__navItem .l-header__navLink {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-header__navItem .l-header__navLink img {
  width: 16px;
  height: auto;
}

.l-header__navLink {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__navLink:hover {
    opacity: 0.7;
  }
}

.l-header__hamburger {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-left: auto;
  padding: 0;
  width: 36px;
  height: 36px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: block;
  }
}
.l-header__hamburger.is-active .l-header__hamburgerIcon {
  top: calc(50% - 4px);
  transform: translateY(-50%);
}
.l-header__hamburger.is-active .l-header__hamburgerIcon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header__hamburger.is-active .l-header__hamburgerIcon span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburgerIcon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.l-header__hamburgerIcon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  margin: auto;
  transition: all 0.3s ease;
}
.l-header__hamburgerIcon span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
  transform-origin: center;
}

.l-header__hamburgerText {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-weight: 400;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
  color: var(--color-text);
  margin-top: 2px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.l-header__mobileMenu {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__mobileMenu {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-primary);
    color: var(--color-white);
    z-index: 9998;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 40px 20px;
  }
  .l-header__mobileMenu.is-open {
    transform: translateX(0);
  }
}

.l-header__mobileMenuNavBtnWrapper {
  margin-top: 24px;
}

.l-header__mobileMenuNavBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  background: none;
  border: solid 1px var(--color-white);
  border-radius: 100px;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__mobileMenuNavBtn:hover {
    opacity: 0.7;
  }
}
.l-header__mobileMenuNavBtn img {
  width: 16px;
  height: auto;
}

.l-header__mobileMenuNavTitle {
  padding-bottom: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
}

.l-header__mobileMenuNav {
  padding: 28px 0;
  border-top: solid 1px var(--color-primary-darker);
  border-bottom: solid 1px var(--color-primary-darker);
}

.l-header__mobileMenuNavList {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.l-header__mobileMenuNavItem {
  width: 100%;
}

.l-header__mobileMenuNavLink {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__mobileMenuNavLink:hover {
    opacity: 0.7;
  }
}
.l-header__mobileMenuNavLink--arrow {
  box-sizing: content-box;
  display: block;
  margin-left: auto;
  padding-right: 20px;
  width: 11px;
  height: auto;
}
.l-header__mobileMenuNavLink--arrow img {
  width: 100% !important;
  height: auto !important;
}

.l-header__mobileMenuNavLink img {
  display: block;
  width: 20px;
  height: auto;
}

.l-header__mobileMenuSubNav {
  width: 100%;
  margin-top: 24px;
}

.l-header__mobileMenuSubNavList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}

.l-header__mobileMenuSubNavListItem {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-white);
}

.l-header__mobileMenuSubNavLink {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__mobileMenuSubNavLink:hover {
    opacity: 0.7;
  }
}

.l-main {
  flex: 1;
}

.l-section {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 30px 0;
  }
}
.l-section + .l-section {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .l-section + .l-section {
    padding-top: 30px;
  }
}

.l-section--bg {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .l-section--bg {
    padding: 30px 0;
  }
}
.l-section--bg + .l-section--bg {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .l-section--bg + .l-section--bg {
    padding-top: 30px;
  }
}
.l-section--bg::after {
  content: "";
  background-color: var(--color-white);
  position: absolute;
  top: 0;
  margin: 0 calc(var(--content-margin-positive) * -1 - 20px);
  z-index: -1;
  width: var(--actual-viewport-width);
  height: 100%;
}

.l-section--bg-primary::after {
  background-color: var(--color-primary-light);
}

.l-sidebar {
  position: relative;
  z-index: 1;
  width: 296px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .l-sidebar {
    width: 100%;
  }
}
.l-sidebar .c-sectionTitle + * {
  margin-top: 24px;
}
.l-sidebar .c-sectionTitle + .c-tag__list {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .l-sidebar .c-sectionTitle + .c-tag__list {
    margin-top: 24px;
  }
}

.l-sidebar__fixedContent {
  position: sticky;
  top: calc(var(--header-height) + 16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .l-sidebar__fixedContent {
    position: static;
  }
}

.l-sidebarBox {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: var(--color-white);
  padding: 40px 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-sidebarBox {
    background-color: transparent;
    padding: 44px 0;
    box-shadow: none;
  }
}
.l-sidebarBox .c-sectionTitle {
  margin-bottom: 24px;
}
.l-sidebarBox .c-sectionTitle__content {
  font-size: 18px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-sidebarBox .c-sectionTitle__content {
    letter-spacing: 0.05em;
  }
}
.l-sidebarBox .c-sectionTitle__content--en {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .l-sidebarBox .c-sectionTitle__content--en {
    font-size: 10px;
  }
}

.l-wrapper {
  overflow-x: clip;
}

@media screen and (max-width: 767px) {
  .p-top {
    background-color: var(--color-white);
  }
}
.p-top .l-content {
  padding-top: 64px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-top .l-content {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .l-content .l-main > :first-child {
    padding-top: 30px;
  }
}
.p-top .c-banner__mainContent {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-top .c-banner__mainContent {
    margin: 30px 0 60px !important;
  }
}

.p-top-fv {
  background-color: var(--color-white);
}
.p-top-fv .splide__track {
  overflow: visible;
}

.p-top-fv__inner {
  max-width: var(--content-max-width);
  padding: 48px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-fv__inner {
    padding: 20px 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-top-sectionSpBg {
    position: relative;
  }
  .p-top-sectionSpBg::after {
    content: "";
    background-color: var(--color-primary-light);
    position: absolute;
    top: 0;
    margin: 0 calc(var(--content-margin-positive) * -1 - 20px);
    z-index: -1;
    width: var(--actual-viewport-width);
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-top-accordionSection .c-accordion__content {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-accordionSection {
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-accordionSection + .p-top-accordionSection {
    padding-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-accordionSection--lastSection {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-accordionSection .c-accordion__content {
    width: calc(100% + 20px);
    margin-right: -20px;
  }
}
.p-top-accordionSection .c-accordion__content .js-postCardSlider {
  width: 100%;
  margin-right: 0;
}
.p-top-accordionSection .c-accordion__content > :not(.js-postCardSlider) {
  width: calc(100% - 20px);
  margin-right: 0;
}

body.single:not(.single-writer) {
  background-color: transparent;
}

.p-single .l-content {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-single .l-content {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.p-single__content {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.p-single__relatedPosts {
  margin-top: 60px;
}

.p-single__bannerArea {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-single__bannerArea {
    margin-top: 60px;
  }
}

.p-single__head {
  padding-bottom: 32px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-single__head {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.p-single__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}
.p-single__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: var(--color-primary);
}

.p-single__category {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__category {
    margin-bottom: 10px;
  }
}

.p-single__categoryItem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-light);
}
@media screen and (max-width: 767px) {
  .p-single__categoryItem {
    margin-bottom: 4px;
  }
}
.p-single__categoryItem .p-single__categoryImg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.p-single__categoryItem .p-single__categoryImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single__tag {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__tag {
    margin-top: 10px;
  }
}

.p-single__tagItem, .p-single__tagItem--pr {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  padding: 1px 16px;
  background-color: rgba(37, 63, 104, 0.08);
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .p-single__tagItem, .p-single__tagItem--pr {
    font-size: 10px;
  }
}
.p-single__tagItem--pr {
  padding: 0 15px;
  border: solid 1px var(--color-text-light);
  background-color: transparent;
}

.p-single__meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-single__meta {
    margin-top: 10px;
    justify-content: flex-start;
    flex-direction: column;
  }
}

.p-single__date {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .p-single__date {
    flex-direction: row;
    gap: 24px;
  }
}

.p-single__dateItem {
  display: flex;
  gap: 4px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-light);
}
@media screen and (max-width: 767px) {
  .p-single__dateItem {
    font-size: 12px;
  }
}

.p-single__author {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-light);
}
@media screen and (max-width: 767px) {
  .p-single__author {
    font-size: 12px;
  }
}

.p-single__authorLink {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-single__authorLink:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.p-single__authorIcon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-single__authorIcon {
    width: 40px;
    height: 40px;
  }
}
.p-single__authorIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 18px;
  }
}

.p-single__thumbnail {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail {
    margin-bottom: 24px;
  }
}
.p-single__thumbnail img {
  width: 100%;
  height: auto;
}

.p-single__categoryDescription,
.p-single__authorCardArea {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-single__categoryDescription,
  .p-single__authorCardArea {
    margin-top: 40px;
  }
}

.p-single__authorCardArea .c-authorCard__item {
  background: var(--color-gray);
}
.p-single__authorCardArea .c-authorCard__content {
  grid-template-columns: 120px 1fr;
  gap: 16px 16px;
}
@media screen and (max-width: 767px) {
  .p-single__authorCardArea .c-authorCard__content {
    grid-template-columns: 48px 1fr;
  }
}
.p-single__authorCardArea .c-authorCard__img {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .p-single__authorCardArea .c-authorCard__img {
    width: 48px;
    height: 48px;
  }
}

.p-single__authorCardArea--head {
  margin: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-single__authorCardArea--head {
    margin: 24px 0;
  }
}
.p-single__authorCardArea--head .c-authorCard__item {
  border: solid 1px var(--color-main, #253f68);
  background: var(--color-sub, #f4f4f5);
}
.p-single__authorCardArea--head .c-authorCard__name {
  color: var(--color-text);
}
.p-single__authorCardArea--head .c-authorCard__role {
  color: var(--color-text);
}

.p-single__authorCardAreaTitle {
  font-weight: 700;
  margin-bottom: 8px;
}

.p-single__toc {
  margin: 32px 0;
  border: solid 2px var(--color-border);
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .p-single__toc {
    margin: 24px 0;
  }
}
.p-single__toc .p-single__tocTitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  border-bottom: 2px dashed var(--color-border);
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-single__toc .p-single__tocTitle {
    font-size: 16px;
  }
}
.p-single__toc .p-single__tocListWrapper {
  padding-left: 4px;
}
.p-single__toc .p-single__tocList .p-single__tocItem {
  position: relative;
  padding-left: 12px;
}
.p-single__toc .p-single__tocList .p-single__tocItem::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-single__toc .p-single__tocList .p-single__tocItem::after {
    top: 10px;
  }
}
.p-single__toc .p-single__tocList .p-single__tocItem a {
  text-decoration: none !important;
  color: var(--color-text) !important;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-single__toc .p-single__tocList .p-single__tocItem a:hover {
    opacity: 0.7;
  }
}
.p-single__toc .p-single__tocList--child {
  padding-left: 0;
}
.p-single__toc .p-single__tocList--child .p-single__tocItem::after {
  top: 13px;
  width: 6px;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .p-single__toc .p-single__tocList--child .p-single__tocItem::after {
    top: 12px;
  }
}

.p-single__postContent .has-small-font-size, .p-page__postContent .has-small-font-size {
  font-size: 13px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__postContent .has-small-font-size, .p-page__postContent .has-small-font-size {
    font-size: 12px;
    line-height: 1.5;
  }
}
.p-single__postContent a:not([class]):not(.wp-element-button), .p-page__postContent a:not([class]):not(.wp-element-button),
.p-single__postContent a[class^=u-]:not(.wp-element-button),
.p-page__postContent a[class^=u-]:not(.wp-element-button),
.p-single__postContent a[class*=wp-]:not(.wp-element-button),
.p-page__postContent a[class*=wp-]:not(.wp-element-button) {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-single__postContent a:not([class]):not(.wp-element-button):hover, .p-page__postContent a:not([class]):not(.wp-element-button):hover,
  .p-single__postContent a[class^=u-]:not(.wp-element-button):hover,
  .p-page__postContent a[class^=u-]:not(.wp-element-button):hover,
  .p-single__postContent a[class*=wp-]:not(.wp-element-button):hover,
  .p-page__postContent a[class*=wp-]:not(.wp-element-button):hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.p-single__postContent figcaption:not([class]), .p-page__postContent figcaption:not([class]),
.p-single__postContent figcaption[class^=u-],
.p-page__postContent figcaption[class^=u-],
.p-single__postContent figcaption[class*=wp-],
.p-page__postContent figcaption[class*=wp-] {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-single__postContent figcaption:not([class]), .p-page__postContent figcaption:not([class]),
  .p-single__postContent figcaption[class^=u-],
  .p-page__postContent figcaption[class^=u-],
  .p-single__postContent figcaption[class*=wp-],
  .p-page__postContent figcaption[class*=wp-] {
    font-size: 12px;
  }
}
.p-single__postContent h2:not([class]), .p-page__postContent h2:not([class]),
.p-single__postContent h2[class^=u-],
.p-page__postContent h2[class^=u-],
.p-single__postContent h2[class*=wp-],
.p-page__postContent h2[class*=wp-] {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  border-left: 8px solid var(--color-main, #253f68);
  padding: 0 0.3em;
}
@media screen and (max-width: 767px) {
  .p-single__postContent h2:not([class]), .p-page__postContent h2:not([class]),
  .p-single__postContent h2[class^=u-],
  .p-page__postContent h2[class^=u-],
  .p-single__postContent h2[class*=wp-],
  .p-page__postContent h2[class*=wp-] {
    font-size: 18px;
  }
}
.p-single__postContent h3:not([class]), .p-page__postContent h3:not([class]),
.p-single__postContent h3[class^=u-],
.p-page__postContent h3[class^=u-],
.p-single__postContent h3[class*=wp-],
.p-page__postContent h3[class*=wp-] {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-white);
  background: var(--color-main, #253f68);
  padding: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-single__postContent h3:not([class]), .p-page__postContent h3:not([class]),
  .p-single__postContent h3[class^=u-],
  .p-page__postContent h3[class^=u-],
  .p-single__postContent h3[class*=wp-],
  .p-page__postContent h3[class*=wp-] {
    font-size: 16px;
  }
}
.p-single__postContent h4:not([class]), .p-page__postContent h4:not([class]),
.p-single__postContent h4[class^=u-],
.p-page__postContent h4[class^=u-],
.p-single__postContent h4[class*=wp-],
.p-page__postContent h4[class*=wp-],
.p-single__postContent h5:not([class]),
.p-page__postContent h5:not([class]),
.p-single__postContent h5[class^=u-],
.p-page__postContent h5[class^=u-],
.p-single__postContent h5[class*=wp-],
.p-page__postContent h5[class*=wp-],
.p-single__postContent h6:not([class]),
.p-page__postContent h6:not([class]),
.p-single__postContent h6[class^=u-],
.p-page__postContent h6[class^=u-],
.p-single__postContent h6[class*=wp-],
.p-page__postContent h6[class*=wp-] {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  border-bottom: 2px dashed var(--color-main, #253f68);
}
@media screen and (max-width: 767px) {
  .p-single__postContent h4:not([class]), .p-page__postContent h4:not([class]),
  .p-single__postContent h4[class^=u-],
  .p-page__postContent h4[class^=u-],
  .p-single__postContent h4[class*=wp-],
  .p-page__postContent h4[class*=wp-],
  .p-single__postContent h5:not([class]),
  .p-page__postContent h5:not([class]),
  .p-single__postContent h5[class^=u-],
  .p-page__postContent h5[class^=u-],
  .p-single__postContent h5[class*=wp-],
  .p-page__postContent h5[class*=wp-],
  .p-single__postContent h6:not([class]),
  .p-page__postContent h6:not([class]),
  .p-single__postContent h6[class^=u-],
  .p-page__postContent h6[class^=u-],
  .p-single__postContent h6[class*=wp-],
  .p-page__postContent h6[class*=wp-] {
    font-size: 16px;
  }
}
.p-single__postContent li:not([class]), .p-page__postContent li:not([class]),
.p-single__postContent li[class^=u-],
.p-page__postContent li[class^=u-],
.p-single__postContent li[class*=wp-],
.p-page__postContent li[class*=wp-] {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .p-single__postContent li:not([class]), .p-page__postContent li:not([class]),
  .p-single__postContent li[class^=u-],
  .p-page__postContent li[class^=u-],
  .p-single__postContent li[class*=wp-],
  .p-page__postContent li[class*=wp-] {
    padding-left: 19px;
    margin-bottom: 2px;
  }
}
.p-single__postContent li:not([class])::before, .p-page__postContent li:not([class])::before,
.p-single__postContent li[class^=u-]::before,
.p-page__postContent li[class^=u-]::before,
.p-single__postContent li[class*=wp-]::before,
.p-page__postContent li[class*=wp-]::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--color-text);
}
.p-single__postContent li:not([class]):last-child, .p-page__postContent li:not([class]):last-child,
.p-single__postContent li[class^=u-]:last-child,
.p-page__postContent li[class^=u-]:last-child,
.p-single__postContent li[class*=wp-]:last-child,
.p-page__postContent li[class*=wp-]:last-child {
  margin-bottom: 0;
}
.p-single__postContent li:not([class]) ul:not([class]), .p-page__postContent li:not([class]) ul:not([class]),
.p-single__postContent li:not([class]) ul[class^=u-],
.p-page__postContent li:not([class]) ul[class^=u-],
.p-single__postContent li:not([class]) ul[class*=wp-],
.p-page__postContent li:not([class]) ul[class*=wp-],
.p-single__postContent li:not([class]) ol:not([class]),
.p-page__postContent li:not([class]) ol:not([class]),
.p-single__postContent li:not([class]) ol[class^=u-],
.p-page__postContent li:not([class]) ol[class^=u-],
.p-single__postContent li:not([class]) ol[class*=wp-],
.p-page__postContent li:not([class]) ol[class*=wp-],
.p-single__postContent li[class^=u-] ul:not([class]),
.p-page__postContent li[class^=u-] ul:not([class]),
.p-single__postContent li[class^=u-] ul[class^=u-],
.p-page__postContent li[class^=u-] ul[class^=u-],
.p-single__postContent li[class^=u-] ul[class*=wp-],
.p-page__postContent li[class^=u-] ul[class*=wp-],
.p-single__postContent li[class^=u-] ol:not([class]),
.p-page__postContent li[class^=u-] ol:not([class]),
.p-single__postContent li[class^=u-] ol[class^=u-],
.p-page__postContent li[class^=u-] ol[class^=u-],
.p-single__postContent li[class^=u-] ol[class*=wp-],
.p-page__postContent li[class^=u-] ol[class*=wp-],
.p-single__postContent li[class*=wp-] ul:not([class]),
.p-page__postContent li[class*=wp-] ul:not([class]),
.p-single__postContent li[class*=wp-] ul[class^=u-],
.p-page__postContent li[class*=wp-] ul[class^=u-],
.p-single__postContent li[class*=wp-] ul[class*=wp-],
.p-page__postContent li[class*=wp-] ul[class*=wp-],
.p-single__postContent li[class*=wp-] ol:not([class]),
.p-page__postContent li[class*=wp-] ol:not([class]),
.p-single__postContent li[class*=wp-] ol[class^=u-],
.p-page__postContent li[class*=wp-] ol[class^=u-],
.p-single__postContent li[class*=wp-] ol[class*=wp-],
.p-page__postContent li[class*=wp-] ol[class*=wp-] {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-single__postContent li:not([class]) ul:not([class]), .p-page__postContent li:not([class]) ul:not([class]),
  .p-single__postContent li:not([class]) ul[class^=u-],
  .p-page__postContent li:not([class]) ul[class^=u-],
  .p-single__postContent li:not([class]) ul[class*=wp-],
  .p-page__postContent li:not([class]) ul[class*=wp-],
  .p-single__postContent li:not([class]) ol:not([class]),
  .p-page__postContent li:not([class]) ol:not([class]),
  .p-single__postContent li:not([class]) ol[class^=u-],
  .p-page__postContent li:not([class]) ol[class^=u-],
  .p-single__postContent li:not([class]) ol[class*=wp-],
  .p-page__postContent li:not([class]) ol[class*=wp-],
  .p-single__postContent li[class^=u-] ul:not([class]),
  .p-page__postContent li[class^=u-] ul:not([class]),
  .p-single__postContent li[class^=u-] ul[class^=u-],
  .p-page__postContent li[class^=u-] ul[class^=u-],
  .p-single__postContent li[class^=u-] ul[class*=wp-],
  .p-page__postContent li[class^=u-] ul[class*=wp-],
  .p-single__postContent li[class^=u-] ol:not([class]),
  .p-page__postContent li[class^=u-] ol:not([class]),
  .p-single__postContent li[class^=u-] ol[class^=u-],
  .p-page__postContent li[class^=u-] ol[class^=u-],
  .p-single__postContent li[class^=u-] ol[class*=wp-],
  .p-page__postContent li[class^=u-] ol[class*=wp-],
  .p-single__postContent li[class*=wp-] ul:not([class]),
  .p-page__postContent li[class*=wp-] ul:not([class]),
  .p-single__postContent li[class*=wp-] ul[class^=u-],
  .p-page__postContent li[class*=wp-] ul[class^=u-],
  .p-single__postContent li[class*=wp-] ul[class*=wp-],
  .p-page__postContent li[class*=wp-] ul[class*=wp-],
  .p-single__postContent li[class*=wp-] ol:not([class]),
  .p-page__postContent li[class*=wp-] ol:not([class]),
  .p-single__postContent li[class*=wp-] ol[class^=u-],
  .p-page__postContent li[class*=wp-] ol[class^=u-],
  .p-single__postContent li[class*=wp-] ol[class*=wp-],
  .p-page__postContent li[class*=wp-] ol[class*=wp-] {
    margin-top: 2px;
  }
}
.p-single__postContent li:not([class]) ul:not([class]) li:not([class]), .p-page__postContent li:not([class]) ul:not([class]) li:not([class]),
.p-single__postContent li:not([class]) ul:not([class]) li[class^=u-],
.p-page__postContent li:not([class]) ul:not([class]) li[class^=u-],
.p-single__postContent li:not([class]) ul:not([class]) li[class*=wp-],
.p-page__postContent li:not([class]) ul:not([class]) li[class*=wp-],
.p-single__postContent li:not([class]) ul[class^=u-] li:not([class]),
.p-page__postContent li:not([class]) ul[class^=u-] li:not([class]),
.p-single__postContent li:not([class]) ul[class^=u-] li[class^=u-],
.p-page__postContent li:not([class]) ul[class^=u-] li[class^=u-],
.p-single__postContent li:not([class]) ul[class^=u-] li[class*=wp-],
.p-page__postContent li:not([class]) ul[class^=u-] li[class*=wp-],
.p-single__postContent li:not([class]) ul[class*=wp-] li:not([class]),
.p-page__postContent li:not([class]) ul[class*=wp-] li:not([class]),
.p-single__postContent li:not([class]) ul[class*=wp-] li[class^=u-],
.p-page__postContent li:not([class]) ul[class*=wp-] li[class^=u-],
.p-single__postContent li:not([class]) ul[class*=wp-] li[class*=wp-],
.p-page__postContent li:not([class]) ul[class*=wp-] li[class*=wp-],
.p-single__postContent li:not([class]) ol:not([class]) li:not([class]),
.p-page__postContent li:not([class]) ol:not([class]) li:not([class]),
.p-single__postContent li:not([class]) ol:not([class]) li[class^=u-],
.p-page__postContent li:not([class]) ol:not([class]) li[class^=u-],
.p-single__postContent li:not([class]) ol:not([class]) li[class*=wp-],
.p-page__postContent li:not([class]) ol:not([class]) li[class*=wp-],
.p-single__postContent li:not([class]) ol[class^=u-] li:not([class]),
.p-page__postContent li:not([class]) ol[class^=u-] li:not([class]),
.p-single__postContent li:not([class]) ol[class^=u-] li[class^=u-],
.p-page__postContent li:not([class]) ol[class^=u-] li[class^=u-],
.p-single__postContent li:not([class]) ol[class^=u-] li[class*=wp-],
.p-page__postContent li:not([class]) ol[class^=u-] li[class*=wp-],
.p-single__postContent li:not([class]) ol[class*=wp-] li:not([class]),
.p-page__postContent li:not([class]) ol[class*=wp-] li:not([class]),
.p-single__postContent li:not([class]) ol[class*=wp-] li[class^=u-],
.p-page__postContent li:not([class]) ol[class*=wp-] li[class^=u-],
.p-single__postContent li:not([class]) ol[class*=wp-] li[class*=wp-],
.p-page__postContent li:not([class]) ol[class*=wp-] li[class*=wp-],
.p-single__postContent li[class^=u-] ul:not([class]) li:not([class]),
.p-page__postContent li[class^=u-] ul:not([class]) li:not([class]),
.p-single__postContent li[class^=u-] ul:not([class]) li[class^=u-],
.p-page__postContent li[class^=u-] ul:not([class]) li[class^=u-],
.p-single__postContent li[class^=u-] ul:not([class]) li[class*=wp-],
.p-page__postContent li[class^=u-] ul:not([class]) li[class*=wp-],
.p-single__postContent li[class^=u-] ul[class^=u-] li:not([class]),
.p-page__postContent li[class^=u-] ul[class^=u-] li:not([class]),
.p-single__postContent li[class^=u-] ul[class^=u-] li[class^=u-],
.p-page__postContent li[class^=u-] ul[class^=u-] li[class^=u-],
.p-single__postContent li[class^=u-] ul[class^=u-] li[class*=wp-],
.p-page__postContent li[class^=u-] ul[class^=u-] li[class*=wp-],
.p-single__postContent li[class^=u-] ul[class*=wp-] li:not([class]),
.p-page__postContent li[class^=u-] ul[class*=wp-] li:not([class]),
.p-single__postContent li[class^=u-] ul[class*=wp-] li[class^=u-],
.p-page__postContent li[class^=u-] ul[class*=wp-] li[class^=u-],
.p-single__postContent li[class^=u-] ul[class*=wp-] li[class*=wp-],
.p-page__postContent li[class^=u-] ul[class*=wp-] li[class*=wp-],
.p-single__postContent li[class^=u-] ol:not([class]) li:not([class]),
.p-page__postContent li[class^=u-] ol:not([class]) li:not([class]),
.p-single__postContent li[class^=u-] ol:not([class]) li[class^=u-],
.p-page__postContent li[class^=u-] ol:not([class]) li[class^=u-],
.p-single__postContent li[class^=u-] ol:not([class]) li[class*=wp-],
.p-page__postContent li[class^=u-] ol:not([class]) li[class*=wp-],
.p-single__postContent li[class^=u-] ol[class^=u-] li:not([class]),
.p-page__postContent li[class^=u-] ol[class^=u-] li:not([class]),
.p-single__postContent li[class^=u-] ol[class^=u-] li[class^=u-],
.p-page__postContent li[class^=u-] ol[class^=u-] li[class^=u-],
.p-single__postContent li[class^=u-] ol[class^=u-] li[class*=wp-],
.p-page__postContent li[class^=u-] ol[class^=u-] li[class*=wp-],
.p-single__postContent li[class^=u-] ol[class*=wp-] li:not([class]),
.p-page__postContent li[class^=u-] ol[class*=wp-] li:not([class]),
.p-single__postContent li[class^=u-] ol[class*=wp-] li[class^=u-],
.p-page__postContent li[class^=u-] ol[class*=wp-] li[class^=u-],
.p-single__postContent li[class^=u-] ol[class*=wp-] li[class*=wp-],
.p-page__postContent li[class^=u-] ol[class*=wp-] li[class*=wp-],
.p-single__postContent li[class*=wp-] ul:not([class]) li:not([class]),
.p-page__postContent li[class*=wp-] ul:not([class]) li:not([class]),
.p-single__postContent li[class*=wp-] ul:not([class]) li[class^=u-],
.p-page__postContent li[class*=wp-] ul:not([class]) li[class^=u-],
.p-single__postContent li[class*=wp-] ul:not([class]) li[class*=wp-],
.p-page__postContent li[class*=wp-] ul:not([class]) li[class*=wp-],
.p-single__postContent li[class*=wp-] ul[class^=u-] li:not([class]),
.p-page__postContent li[class*=wp-] ul[class^=u-] li:not([class]),
.p-single__postContent li[class*=wp-] ul[class^=u-] li[class^=u-],
.p-page__postContent li[class*=wp-] ul[class^=u-] li[class^=u-],
.p-single__postContent li[class*=wp-] ul[class^=u-] li[class*=wp-],
.p-page__postContent li[class*=wp-] ul[class^=u-] li[class*=wp-],
.p-single__postContent li[class*=wp-] ul[class*=wp-] li:not([class]),
.p-page__postContent li[class*=wp-] ul[class*=wp-] li:not([class]),
.p-single__postContent li[class*=wp-] ul[class*=wp-] li[class^=u-],
.p-page__postContent li[class*=wp-] ul[class*=wp-] li[class^=u-],
.p-single__postContent li[class*=wp-] ul[class*=wp-] li[class*=wp-],
.p-page__postContent li[class*=wp-] ul[class*=wp-] li[class*=wp-],
.p-single__postContent li[class*=wp-] ol:not([class]) li:not([class]),
.p-page__postContent li[class*=wp-] ol:not([class]) li:not([class]),
.p-single__postContent li[class*=wp-] ol:not([class]) li[class^=u-],
.p-page__postContent li[class*=wp-] ol:not([class]) li[class^=u-],
.p-single__postContent li[class*=wp-] ol:not([class]) li[class*=wp-],
.p-page__postContent li[class*=wp-] ol:not([class]) li[class*=wp-],
.p-single__postContent li[class*=wp-] ol[class^=u-] li:not([class]),
.p-page__postContent li[class*=wp-] ol[class^=u-] li:not([class]),
.p-single__postContent li[class*=wp-] ol[class^=u-] li[class^=u-],
.p-page__postContent li[class*=wp-] ol[class^=u-] li[class^=u-],
.p-single__postContent li[class*=wp-] ol[class^=u-] li[class*=wp-],
.p-page__postContent li[class*=wp-] ol[class^=u-] li[class*=wp-],
.p-single__postContent li[class*=wp-] ol[class*=wp-] li:not([class]),
.p-page__postContent li[class*=wp-] ol[class*=wp-] li:not([class]),
.p-single__postContent li[class*=wp-] ol[class*=wp-] li[class^=u-],
.p-page__postContent li[class*=wp-] ol[class*=wp-] li[class^=u-],
.p-single__postContent li[class*=wp-] ol[class*=wp-] li[class*=wp-],
.p-page__postContent li[class*=wp-] ol[class*=wp-] li[class*=wp-] {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-single__postContent li:not([class]) ul:not([class]) li:not([class]), .p-page__postContent li:not([class]) ul:not([class]) li:not([class]),
  .p-single__postContent li:not([class]) ul:not([class]) li[class^=u-],
  .p-page__postContent li:not([class]) ul:not([class]) li[class^=u-],
  .p-single__postContent li:not([class]) ul:not([class]) li[class*=wp-],
  .p-page__postContent li:not([class]) ul:not([class]) li[class*=wp-],
  .p-single__postContent li:not([class]) ul[class^=u-] li:not([class]),
  .p-page__postContent li:not([class]) ul[class^=u-] li:not([class]),
  .p-single__postContent li:not([class]) ul[class^=u-] li[class^=u-],
  .p-page__postContent li:not([class]) ul[class^=u-] li[class^=u-],
  .p-single__postContent li:not([class]) ul[class^=u-] li[class*=wp-],
  .p-page__postContent li:not([class]) ul[class^=u-] li[class*=wp-],
  .p-single__postContent li:not([class]) ul[class*=wp-] li:not([class]),
  .p-page__postContent li:not([class]) ul[class*=wp-] li:not([class]),
  .p-single__postContent li:not([class]) ul[class*=wp-] li[class^=u-],
  .p-page__postContent li:not([class]) ul[class*=wp-] li[class^=u-],
  .p-single__postContent li:not([class]) ul[class*=wp-] li[class*=wp-],
  .p-page__postContent li:not([class]) ul[class*=wp-] li[class*=wp-],
  .p-single__postContent li:not([class]) ol:not([class]) li:not([class]),
  .p-page__postContent li:not([class]) ol:not([class]) li:not([class]),
  .p-single__postContent li:not([class]) ol:not([class]) li[class^=u-],
  .p-page__postContent li:not([class]) ol:not([class]) li[class^=u-],
  .p-single__postContent li:not([class]) ol:not([class]) li[class*=wp-],
  .p-page__postContent li:not([class]) ol:not([class]) li[class*=wp-],
  .p-single__postContent li:not([class]) ol[class^=u-] li:not([class]),
  .p-page__postContent li:not([class]) ol[class^=u-] li:not([class]),
  .p-single__postContent li:not([class]) ol[class^=u-] li[class^=u-],
  .p-page__postContent li:not([class]) ol[class^=u-] li[class^=u-],
  .p-single__postContent li:not([class]) ol[class^=u-] li[class*=wp-],
  .p-page__postContent li:not([class]) ol[class^=u-] li[class*=wp-],
  .p-single__postContent li:not([class]) ol[class*=wp-] li:not([class]),
  .p-page__postContent li:not([class]) ol[class*=wp-] li:not([class]),
  .p-single__postContent li:not([class]) ol[class*=wp-] li[class^=u-],
  .p-page__postContent li:not([class]) ol[class*=wp-] li[class^=u-],
  .p-single__postContent li:not([class]) ol[class*=wp-] li[class*=wp-],
  .p-page__postContent li:not([class]) ol[class*=wp-] li[class*=wp-],
  .p-single__postContent li[class^=u-] ul:not([class]) li:not([class]),
  .p-page__postContent li[class^=u-] ul:not([class]) li:not([class]),
  .p-single__postContent li[class^=u-] ul:not([class]) li[class^=u-],
  .p-page__postContent li[class^=u-] ul:not([class]) li[class^=u-],
  .p-single__postContent li[class^=u-] ul:not([class]) li[class*=wp-],
  .p-page__postContent li[class^=u-] ul:not([class]) li[class*=wp-],
  .p-single__postContent li[class^=u-] ul[class^=u-] li:not([class]),
  .p-page__postContent li[class^=u-] ul[class^=u-] li:not([class]),
  .p-single__postContent li[class^=u-] ul[class^=u-] li[class^=u-],
  .p-page__postContent li[class^=u-] ul[class^=u-] li[class^=u-],
  .p-single__postContent li[class^=u-] ul[class^=u-] li[class*=wp-],
  .p-page__postContent li[class^=u-] ul[class^=u-] li[class*=wp-],
  .p-single__postContent li[class^=u-] ul[class*=wp-] li:not([class]),
  .p-page__postContent li[class^=u-] ul[class*=wp-] li:not([class]),
  .p-single__postContent li[class^=u-] ul[class*=wp-] li[class^=u-],
  .p-page__postContent li[class^=u-] ul[class*=wp-] li[class^=u-],
  .p-single__postContent li[class^=u-] ul[class*=wp-] li[class*=wp-],
  .p-page__postContent li[class^=u-] ul[class*=wp-] li[class*=wp-],
  .p-single__postContent li[class^=u-] ol:not([class]) li:not([class]),
  .p-page__postContent li[class^=u-] ol:not([class]) li:not([class]),
  .p-single__postContent li[class^=u-] ol:not([class]) li[class^=u-],
  .p-page__postContent li[class^=u-] ol:not([class]) li[class^=u-],
  .p-single__postContent li[class^=u-] ol:not([class]) li[class*=wp-],
  .p-page__postContent li[class^=u-] ol:not([class]) li[class*=wp-],
  .p-single__postContent li[class^=u-] ol[class^=u-] li:not([class]),
  .p-page__postContent li[class^=u-] ol[class^=u-] li:not([class]),
  .p-single__postContent li[class^=u-] ol[class^=u-] li[class^=u-],
  .p-page__postContent li[class^=u-] ol[class^=u-] li[class^=u-],
  .p-single__postContent li[class^=u-] ol[class^=u-] li[class*=wp-],
  .p-page__postContent li[class^=u-] ol[class^=u-] li[class*=wp-],
  .p-single__postContent li[class^=u-] ol[class*=wp-] li:not([class]),
  .p-page__postContent li[class^=u-] ol[class*=wp-] li:not([class]),
  .p-single__postContent li[class^=u-] ol[class*=wp-] li[class^=u-],
  .p-page__postContent li[class^=u-] ol[class*=wp-] li[class^=u-],
  .p-single__postContent li[class^=u-] ol[class*=wp-] li[class*=wp-],
  .p-page__postContent li[class^=u-] ol[class*=wp-] li[class*=wp-],
  .p-single__postContent li[class*=wp-] ul:not([class]) li:not([class]),
  .p-page__postContent li[class*=wp-] ul:not([class]) li:not([class]),
  .p-single__postContent li[class*=wp-] ul:not([class]) li[class^=u-],
  .p-page__postContent li[class*=wp-] ul:not([class]) li[class^=u-],
  .p-single__postContent li[class*=wp-] ul:not([class]) li[class*=wp-],
  .p-page__postContent li[class*=wp-] ul:not([class]) li[class*=wp-],
  .p-single__postContent li[class*=wp-] ul[class^=u-] li:not([class]),
  .p-page__postContent li[class*=wp-] ul[class^=u-] li:not([class]),
  .p-single__postContent li[class*=wp-] ul[class^=u-] li[class^=u-],
  .p-page__postContent li[class*=wp-] ul[class^=u-] li[class^=u-],
  .p-single__postContent li[class*=wp-] ul[class^=u-] li[class*=wp-],
  .p-page__postContent li[class*=wp-] ul[class^=u-] li[class*=wp-],
  .p-single__postContent li[class*=wp-] ul[class*=wp-] li:not([class]),
  .p-page__postContent li[class*=wp-] ul[class*=wp-] li:not([class]),
  .p-single__postContent li[class*=wp-] ul[class*=wp-] li[class^=u-],
  .p-page__postContent li[class*=wp-] ul[class*=wp-] li[class^=u-],
  .p-single__postContent li[class*=wp-] ul[class*=wp-] li[class*=wp-],
  .p-page__postContent li[class*=wp-] ul[class*=wp-] li[class*=wp-],
  .p-single__postContent li[class*=wp-] ol:not([class]) li:not([class]),
  .p-page__postContent li[class*=wp-] ol:not([class]) li:not([class]),
  .p-single__postContent li[class*=wp-] ol:not([class]) li[class^=u-],
  .p-page__postContent li[class*=wp-] ol:not([class]) li[class^=u-],
  .p-single__postContent li[class*=wp-] ol:not([class]) li[class*=wp-],
  .p-page__postContent li[class*=wp-] ol:not([class]) li[class*=wp-],
  .p-single__postContent li[class*=wp-] ol[class^=u-] li:not([class]),
  .p-page__postContent li[class*=wp-] ol[class^=u-] li:not([class]),
  .p-single__postContent li[class*=wp-] ol[class^=u-] li[class^=u-],
  .p-page__postContent li[class*=wp-] ol[class^=u-] li[class^=u-],
  .p-single__postContent li[class*=wp-] ol[class^=u-] li[class*=wp-],
  .p-page__postContent li[class*=wp-] ol[class^=u-] li[class*=wp-],
  .p-single__postContent li[class*=wp-] ol[class*=wp-] li:not([class]),
  .p-page__postContent li[class*=wp-] ol[class*=wp-] li:not([class]),
  .p-single__postContent li[class*=wp-] ol[class*=wp-] li[class^=u-],
  .p-page__postContent li[class*=wp-] ol[class*=wp-] li[class^=u-],
  .p-single__postContent li[class*=wp-] ol[class*=wp-] li[class*=wp-],
  .p-page__postContent li[class*=wp-] ol[class*=wp-] li[class*=wp-] {
    margin-top: 2px;
  }
}
.p-single__postContent li:not([class]) ul:not([class]) li:not([class]):last-child, .p-page__postContent li:not([class]) ul:not([class]) li:not([class]):last-child,
.p-single__postContent li:not([class]) ul:not([class]) li[class^=u-]:last-child,
.p-page__postContent li:not([class]) ul:not([class]) li[class^=u-]:last-child,
.p-single__postContent li:not([class]) ul:not([class]) li[class*=wp-]:last-child,
.p-page__postContent li:not([class]) ul:not([class]) li[class*=wp-]:last-child,
.p-single__postContent li:not([class]) ul[class^=u-] li:not([class]):last-child,
.p-page__postContent li:not([class]) ul[class^=u-] li:not([class]):last-child,
.p-single__postContent li:not([class]) ul[class^=u-] li[class^=u-]:last-child,
.p-page__postContent li:not([class]) ul[class^=u-] li[class^=u-]:last-child,
.p-single__postContent li:not([class]) ul[class^=u-] li[class*=wp-]:last-child,
.p-page__postContent li:not([class]) ul[class^=u-] li[class*=wp-]:last-child,
.p-single__postContent li:not([class]) ul[class*=wp-] li:not([class]):last-child,
.p-page__postContent li:not([class]) ul[class*=wp-] li:not([class]):last-child,
.p-single__postContent li:not([class]) ul[class*=wp-] li[class^=u-]:last-child,
.p-page__postContent li:not([class]) ul[class*=wp-] li[class^=u-]:last-child,
.p-single__postContent li:not([class]) ul[class*=wp-] li[class*=wp-]:last-child,
.p-page__postContent li:not([class]) ul[class*=wp-] li[class*=wp-]:last-child,
.p-single__postContent li:not([class]) ol:not([class]) li:not([class]):last-child,
.p-page__postContent li:not([class]) ol:not([class]) li:not([class]):last-child,
.p-single__postContent li:not([class]) ol:not([class]) li[class^=u-]:last-child,
.p-page__postContent li:not([class]) ol:not([class]) li[class^=u-]:last-child,
.p-single__postContent li:not([class]) ol:not([class]) li[class*=wp-]:last-child,
.p-page__postContent li:not([class]) ol:not([class]) li[class*=wp-]:last-child,
.p-single__postContent li:not([class]) ol[class^=u-] li:not([class]):last-child,
.p-page__postContent li:not([class]) ol[class^=u-] li:not([class]):last-child,
.p-single__postContent li:not([class]) ol[class^=u-] li[class^=u-]:last-child,
.p-page__postContent li:not([class]) ol[class^=u-] li[class^=u-]:last-child,
.p-single__postContent li:not([class]) ol[class^=u-] li[class*=wp-]:last-child,
.p-page__postContent li:not([class]) ol[class^=u-] li[class*=wp-]:last-child,
.p-single__postContent li:not([class]) ol[class*=wp-] li:not([class]):last-child,
.p-page__postContent li:not([class]) ol[class*=wp-] li:not([class]):last-child,
.p-single__postContent li:not([class]) ol[class*=wp-] li[class^=u-]:last-child,
.p-page__postContent li:not([class]) ol[class*=wp-] li[class^=u-]:last-child,
.p-single__postContent li:not([class]) ol[class*=wp-] li[class*=wp-]:last-child,
.p-page__postContent li:not([class]) ol[class*=wp-] li[class*=wp-]:last-child,
.p-single__postContent li[class^=u-] ul:not([class]) li:not([class]):last-child,
.p-page__postContent li[class^=u-] ul:not([class]) li:not([class]):last-child,
.p-single__postContent li[class^=u-] ul:not([class]) li[class^=u-]:last-child,
.p-page__postContent li[class^=u-] ul:not([class]) li[class^=u-]:last-child,
.p-single__postContent li[class^=u-] ul:not([class]) li[class*=wp-]:last-child,
.p-page__postContent li[class^=u-] ul:not([class]) li[class*=wp-]:last-child,
.p-single__postContent li[class^=u-] ul[class^=u-] li:not([class]):last-child,
.p-page__postContent li[class^=u-] ul[class^=u-] li:not([class]):last-child,
.p-single__postContent li[class^=u-] ul[class^=u-] li[class^=u-]:last-child,
.p-page__postContent li[class^=u-] ul[class^=u-] li[class^=u-]:last-child,
.p-single__postContent li[class^=u-] ul[class^=u-] li[class*=wp-]:last-child,
.p-page__postContent li[class^=u-] ul[class^=u-] li[class*=wp-]:last-child,
.p-single__postContent li[class^=u-] ul[class*=wp-] li:not([class]):last-child,
.p-page__postContent li[class^=u-] ul[class*=wp-] li:not([class]):last-child,
.p-single__postContent li[class^=u-] ul[class*=wp-] li[class^=u-]:last-child,
.p-page__postContent li[class^=u-] ul[class*=wp-] li[class^=u-]:last-child,
.p-single__postContent li[class^=u-] ul[class*=wp-] li[class*=wp-]:last-child,
.p-page__postContent li[class^=u-] ul[class*=wp-] li[class*=wp-]:last-child,
.p-single__postContent li[class^=u-] ol:not([class]) li:not([class]):last-child,
.p-page__postContent li[class^=u-] ol:not([class]) li:not([class]):last-child,
.p-single__postContent li[class^=u-] ol:not([class]) li[class^=u-]:last-child,
.p-page__postContent li[class^=u-] ol:not([class]) li[class^=u-]:last-child,
.p-single__postContent li[class^=u-] ol:not([class]) li[class*=wp-]:last-child,
.p-page__postContent li[class^=u-] ol:not([class]) li[class*=wp-]:last-child,
.p-single__postContent li[class^=u-] ol[class^=u-] li:not([class]):last-child,
.p-page__postContent li[class^=u-] ol[class^=u-] li:not([class]):last-child,
.p-single__postContent li[class^=u-] ol[class^=u-] li[class^=u-]:last-child,
.p-page__postContent li[class^=u-] ol[class^=u-] li[class^=u-]:last-child,
.p-single__postContent li[class^=u-] ol[class^=u-] li[class*=wp-]:last-child,
.p-page__postContent li[class^=u-] ol[class^=u-] li[class*=wp-]:last-child,
.p-single__postContent li[class^=u-] ol[class*=wp-] li:not([class]):last-child,
.p-page__postContent li[class^=u-] ol[class*=wp-] li:not([class]):last-child,
.p-single__postContent li[class^=u-] ol[class*=wp-] li[class^=u-]:last-child,
.p-page__postContent li[class^=u-] ol[class*=wp-] li[class^=u-]:last-child,
.p-single__postContent li[class^=u-] ol[class*=wp-] li[class*=wp-]:last-child,
.p-page__postContent li[class^=u-] ol[class*=wp-] li[class*=wp-]:last-child,
.p-single__postContent li[class*=wp-] ul:not([class]) li:not([class]):last-child,
.p-page__postContent li[class*=wp-] ul:not([class]) li:not([class]):last-child,
.p-single__postContent li[class*=wp-] ul:not([class]) li[class^=u-]:last-child,
.p-page__postContent li[class*=wp-] ul:not([class]) li[class^=u-]:last-child,
.p-single__postContent li[class*=wp-] ul:not([class]) li[class*=wp-]:last-child,
.p-page__postContent li[class*=wp-] ul:not([class]) li[class*=wp-]:last-child,
.p-single__postContent li[class*=wp-] ul[class^=u-] li:not([class]):last-child,
.p-page__postContent li[class*=wp-] ul[class^=u-] li:not([class]):last-child,
.p-single__postContent li[class*=wp-] ul[class^=u-] li[class^=u-]:last-child,
.p-page__postContent li[class*=wp-] ul[class^=u-] li[class^=u-]:last-child,
.p-single__postContent li[class*=wp-] ul[class^=u-] li[class*=wp-]:last-child,
.p-page__postContent li[class*=wp-] ul[class^=u-] li[class*=wp-]:last-child,
.p-single__postContent li[class*=wp-] ul[class*=wp-] li:not([class]):last-child,
.p-page__postContent li[class*=wp-] ul[class*=wp-] li:not([class]):last-child,
.p-single__postContent li[class*=wp-] ul[class*=wp-] li[class^=u-]:last-child,
.p-page__postContent li[class*=wp-] ul[class*=wp-] li[class^=u-]:last-child,
.p-single__postContent li[class*=wp-] ul[class*=wp-] li[class*=wp-]:last-child,
.p-page__postContent li[class*=wp-] ul[class*=wp-] li[class*=wp-]:last-child,
.p-single__postContent li[class*=wp-] ol:not([class]) li:not([class]):last-child,
.p-page__postContent li[class*=wp-] ol:not([class]) li:not([class]):last-child,
.p-single__postContent li[class*=wp-] ol:not([class]) li[class^=u-]:last-child,
.p-page__postContent li[class*=wp-] ol:not([class]) li[class^=u-]:last-child,
.p-single__postContent li[class*=wp-] ol:not([class]) li[class*=wp-]:last-child,
.p-page__postContent li[class*=wp-] ol:not([class]) li[class*=wp-]:last-child,
.p-single__postContent li[class*=wp-] ol[class^=u-] li:not([class]):last-child,
.p-page__postContent li[class*=wp-] ol[class^=u-] li:not([class]):last-child,
.p-single__postContent li[class*=wp-] ol[class^=u-] li[class^=u-]:last-child,
.p-page__postContent li[class*=wp-] ol[class^=u-] li[class^=u-]:last-child,
.p-single__postContent li[class*=wp-] ol[class^=u-] li[class*=wp-]:last-child,
.p-page__postContent li[class*=wp-] ol[class^=u-] li[class*=wp-]:last-child,
.p-single__postContent li[class*=wp-] ol[class*=wp-] li:not([class]):last-child,
.p-page__postContent li[class*=wp-] ol[class*=wp-] li:not([class]):last-child,
.p-single__postContent li[class*=wp-] ol[class*=wp-] li[class^=u-]:last-child,
.p-page__postContent li[class*=wp-] ol[class*=wp-] li[class^=u-]:last-child,
.p-single__postContent li[class*=wp-] ol[class*=wp-] li[class*=wp-]:last-child,
.p-page__postContent li[class*=wp-] ol[class*=wp-] li[class*=wp-]:last-child {
  margin-bottom: 0;
}
.p-single__postContent ol:not([class]), .p-page__postContent ol:not([class]),
.p-single__postContent ol[class^=u-],
.p-page__postContent ol[class^=u-],
.p-single__postContent ol[class*=wp-],
.p-page__postContent ol[class*=wp-] {
  list-style: decimal;
}
.p-single__postContent ol:not([class]) li:not([class]), .p-page__postContent ol:not([class]) li:not([class]),
.p-single__postContent ol:not([class]) li[class^=u-],
.p-page__postContent ol:not([class]) li[class^=u-],
.p-single__postContent ol:not([class]) li[class*=wp-],
.p-page__postContent ol:not([class]) li[class*=wp-],
.p-single__postContent ol[class^=u-] li:not([class]),
.p-page__postContent ol[class^=u-] li:not([class]),
.p-single__postContent ol[class^=u-] li[class^=u-],
.p-page__postContent ol[class^=u-] li[class^=u-],
.p-single__postContent ol[class^=u-] li[class*=wp-],
.p-page__postContent ol[class^=u-] li[class*=wp-],
.p-single__postContent ol[class*=wp-] li:not([class]),
.p-page__postContent ol[class*=wp-] li:not([class]),
.p-single__postContent ol[class*=wp-] li[class^=u-],
.p-page__postContent ol[class*=wp-] li[class^=u-],
.p-single__postContent ol[class*=wp-] li[class*=wp-],
.p-page__postContent ol[class*=wp-] li[class*=wp-] {
  margin-left: 20px;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .p-single__postContent ol:not([class]) li:not([class]), .p-page__postContent ol:not([class]) li:not([class]),
  .p-single__postContent ol:not([class]) li[class^=u-],
  .p-page__postContent ol:not([class]) li[class^=u-],
  .p-single__postContent ol:not([class]) li[class*=wp-],
  .p-page__postContent ol:not([class]) li[class*=wp-],
  .p-single__postContent ol[class^=u-] li:not([class]),
  .p-page__postContent ol[class^=u-] li:not([class]),
  .p-single__postContent ol[class^=u-] li[class^=u-],
  .p-page__postContent ol[class^=u-] li[class^=u-],
  .p-single__postContent ol[class^=u-] li[class*=wp-],
  .p-page__postContent ol[class^=u-] li[class*=wp-],
  .p-single__postContent ol[class*=wp-] li:not([class]),
  .p-page__postContent ol[class*=wp-] li:not([class]),
  .p-single__postContent ol[class*=wp-] li[class^=u-],
  .p-page__postContent ol[class*=wp-] li[class^=u-],
  .p-single__postContent ol[class*=wp-] li[class*=wp-],
  .p-page__postContent ol[class*=wp-] li[class*=wp-] {
    margin-left: 19px;
  }
}
.p-single__postContent ol:not([class]) li:not([class])::marker, .p-page__postContent ol:not([class]) li:not([class])::marker,
.p-single__postContent ol:not([class]) li[class^=u-]::marker,
.p-page__postContent ol:not([class]) li[class^=u-]::marker,
.p-single__postContent ol:not([class]) li[class*=wp-]::marker,
.p-page__postContent ol:not([class]) li[class*=wp-]::marker,
.p-single__postContent ol[class^=u-] li:not([class])::marker,
.p-page__postContent ol[class^=u-] li:not([class])::marker,
.p-single__postContent ol[class^=u-] li[class^=u-]::marker,
.p-page__postContent ol[class^=u-] li[class^=u-]::marker,
.p-single__postContent ol[class^=u-] li[class*=wp-]::marker,
.p-page__postContent ol[class^=u-] li[class*=wp-]::marker,
.p-single__postContent ol[class*=wp-] li:not([class])::marker,
.p-page__postContent ol[class*=wp-] li:not([class])::marker,
.p-single__postContent ol[class*=wp-] li[class^=u-]::marker,
.p-page__postContent ol[class*=wp-] li[class^=u-]::marker,
.p-single__postContent ol[class*=wp-] li[class*=wp-]::marker,
.p-page__postContent ol[class*=wp-] li[class*=wp-]::marker {
  font-weight: 700;
}
.p-single__postContent ol:not([class]) li:not([class])::before, .p-page__postContent ol:not([class]) li:not([class])::before,
.p-single__postContent ol:not([class]) li[class^=u-]::before,
.p-page__postContent ol:not([class]) li[class^=u-]::before,
.p-single__postContent ol:not([class]) li[class*=wp-]::before,
.p-page__postContent ol:not([class]) li[class*=wp-]::before,
.p-single__postContent ol[class^=u-] li:not([class])::before,
.p-page__postContent ol[class^=u-] li:not([class])::before,
.p-single__postContent ol[class^=u-] li[class^=u-]::before,
.p-page__postContent ol[class^=u-] li[class^=u-]::before,
.p-single__postContent ol[class^=u-] li[class*=wp-]::before,
.p-page__postContent ol[class^=u-] li[class*=wp-]::before,
.p-single__postContent ol[class*=wp-] li:not([class])::before,
.p-page__postContent ol[class*=wp-] li:not([class])::before,
.p-single__postContent ol[class*=wp-] li[class^=u-]::before,
.p-page__postContent ol[class*=wp-] li[class^=u-]::before,
.p-single__postContent ol[class*=wp-] li[class*=wp-]::before,
.p-page__postContent ol[class*=wp-] li[class*=wp-]::before {
  display: none;
}
.p-single__postContent figure:not([class]), .p-page__postContent figure:not([class]),
.p-single__postContent figure[class^=u-],
.p-page__postContent figure[class^=u-],
.p-single__postContent figure[class*=wp-],
.p-page__postContent figure[class*=wp-] {
  width: 100%;
}
.p-single__postContent figure:not([class]) img, .p-page__postContent figure:not([class]) img,
.p-single__postContent figure[class^=u-] img,
.p-page__postContent figure[class^=u-] img,
.p-single__postContent figure[class*=wp-] img,
.p-page__postContent figure[class*=wp-] img {
  display: block;
  width: 100%;
  height: auto;
}
.p-single__postContent .wp-embedded-content, .p-page__postContent .wp-embedded-content {
  width: 100% !important;
}
.p-single__postContent .wp-block-buttons.is-center, .p-page__postContent .wp-block-buttons.is-center {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-single__postContent .wp-block-button, .p-page__postContent .wp-block-button {
    width: 100%;
  }
}
.p-single__postContent .wp-block-button__link, .p-page__postContent .wp-block-button__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 304px;
  width: -moz-fit-content;
  width: fit-content;
  height: 72px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-primary);
  padding: 24px 60px;
  border-radius: 100px;
  border: solid 1px var(--color-primary);
  background: none;
  position: relative;
  transition: opacity 0.3s ease;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .p-single__postContent .wp-block-button__link, .p-page__postContent .wp-block-button__link {
    min-width: inherit;
    width: 100%;
    height: auto;
    font-size: 14px;
    padding: 8px 42px;
  }
}
@media (any-hover: hover) {
  .p-single__postContent .wp-block-button__link:hover, .p-page__postContent .wp-block-button__link:hover {
    opacity: 0.7;
  }
}
.p-single__postContent .wp-block-button__link span, .p-page__postContent .wp-block-button__link span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-single__postContent .wp-block-button__link span, .p-page__postContent .wp-block-button__link span {
    display: inline-block;
    font-size: 14px;
  }
}
.p-single__postContent .wp-block-button__link::after, .p-page__postContent .wp-block-button__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../../assets/img/common/icon-circle-primary-arrow.svg");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-single__postContent .wp-block-button__link::after, .p-page__postContent .wp-block-button__link::after {
    right: 15px;
    width: 17px;
    height: 17px;
  }
}
.p-single__postContent .wp-block-spacer, .p-page__postContent .wp-block-spacer {
  margin-bottom: 0;
}
.p-single__postContent figure.wp-block-table th, .p-page__postContent figure.wp-block-table th {
  background-color: var(--color-sub, #f4f4f5);
}
.p-single__postContent > :first-child, .p-page__postContent > :first-child,
.p-single__postContent div > :first-child,
.p-page__postContent div > :first-child {
  margin-top: 0 !important;
}
.p-single__postContent > :last-child, .p-page__postContent > :last-child,
.p-single__postContent div > :last-child,
.p-page__postContent div > :last-child {
  margin-bottom: 0 !important;
}
.p-single__postContent > *, .p-page__postContent > * {
  margin-bottom: 35px;
}
.p-single__postContent > ul:not([class]), .p-page__postContent > ul:not([class]),
.p-single__postContent > ul[class^=u-],
.p-page__postContent > ul[class^=u-],
.p-single__postContent > ul[class*=wp-],
.p-page__postContent > ul[class*=wp-],
.p-single__postContent > ol:not([class]),
.p-page__postContent > ol:not([class]),
.p-single__postContent > ol[class^=u-],
.p-page__postContent > ol[class^=u-],
.p-single__postContent > ol[class*=wp-],
.p-page__postContent > ol[class*=wp-] {
  margin: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-single__postContent > ul:not([class]), .p-page__postContent > ul:not([class]),
  .p-single__postContent > ul[class^=u-],
  .p-page__postContent > ul[class^=u-],
  .p-single__postContent > ul[class*=wp-],
  .p-page__postContent > ul[class*=wp-],
  .p-single__postContent > ol:not([class]),
  .p-page__postContent > ol:not([class]),
  .p-single__postContent > ol[class^=u-],
  .p-page__postContent > ol[class^=u-],
  .p-single__postContent > ol[class*=wp-],
  .p-page__postContent > ol[class*=wp-] {
    margin: 24px 0;
  }
}
.p-single__postContent > h2:not([class]), .p-page__postContent > h2:not([class]),
.p-single__postContent > h2[class^=u-],
.p-page__postContent > h2[class^=u-],
.p-single__postContent > h2[class*=wp-],
.p-page__postContent > h2[class*=wp-] {
  margin: 80px 0 32px;
}
@media screen and (max-width: 767px) {
  .p-single__postContent > h2:not([class]), .p-page__postContent > h2:not([class]),
  .p-single__postContent > h2[class^=u-],
  .p-page__postContent > h2[class^=u-],
  .p-single__postContent > h2[class*=wp-],
  .p-page__postContent > h2[class*=wp-] {
    margin: 40px 0 24px;
  }
}
.p-single__postContent > h2:not([class]) + *, .p-page__postContent > h2:not([class]) + *,
.p-single__postContent > h2[class^=u-] + *,
.p-page__postContent > h2[class^=u-] + *,
.p-single__postContent > h2[class*=wp-] + *,
.p-page__postContent > h2[class*=wp-] + * {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-single__postContent > h2:not([class]) + *, .p-page__postContent > h2:not([class]) + *,
  .p-single__postContent > h2[class^=u-] + *,
  .p-page__postContent > h2[class^=u-] + *,
  .p-single__postContent > h2[class*=wp-] + *,
  .p-page__postContent > h2[class*=wp-] + * {
    margin-top: 24px;
  }
}
.p-single__postContent > h3:not([class]), .p-page__postContent > h3:not([class]),
.p-single__postContent > h3[class^=u-],
.p-page__postContent > h3[class^=u-],
.p-single__postContent > h3[class*=wp-],
.p-page__postContent > h3[class*=wp-] {
  margin: 80px 0 16px;
}
@media screen and (max-width: 767px) {
  .p-single__postContent > h3:not([class]), .p-page__postContent > h3:not([class]),
  .p-single__postContent > h3[class^=u-],
  .p-page__postContent > h3[class^=u-],
  .p-single__postContent > h3[class*=wp-],
  .p-page__postContent > h3[class*=wp-] {
    margin: 40px 0 8px;
  }
}
.p-single__postContent > h3:not([class]) + *, .p-page__postContent > h3:not([class]) + *,
.p-single__postContent > h3[class^=u-] + *,
.p-page__postContent > h3[class^=u-] + *,
.p-single__postContent > h3[class*=wp-] + *,
.p-page__postContent > h3[class*=wp-] + * {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-single__postContent > h3:not([class]) + *, .p-page__postContent > h3:not([class]) + *,
  .p-single__postContent > h3[class^=u-] + *,
  .p-page__postContent > h3[class^=u-] + *,
  .p-single__postContent > h3[class*=wp-] + *,
  .p-page__postContent > h3[class*=wp-] + * {
    margin-top: 8px;
  }
}
.p-single__postContent > h4:not([class]), .p-page__postContent > h4:not([class]),
.p-single__postContent > h4[class^=u-],
.p-page__postContent > h4[class^=u-],
.p-single__postContent > h4[class*=wp-],
.p-page__postContent > h4[class*=wp-],
.p-single__postContent > h5:not([class]),
.p-page__postContent > h5:not([class]),
.p-single__postContent > h5[class^=u-],
.p-page__postContent > h5[class^=u-],
.p-single__postContent > h5[class*=wp-],
.p-page__postContent > h5[class*=wp-],
.p-single__postContent > h6:not([class]),
.p-page__postContent > h6:not([class]),
.p-single__postContent > h6[class^=u-],
.p-page__postContent > h6[class^=u-],
.p-single__postContent > h6[class*=wp-],
.p-page__postContent > h6[class*=wp-] {
  margin: 60px 0 16px;
}
@media screen and (max-width: 767px) {
  .p-single__postContent > h4:not([class]), .p-page__postContent > h4:not([class]),
  .p-single__postContent > h4[class^=u-],
  .p-page__postContent > h4[class^=u-],
  .p-single__postContent > h4[class*=wp-],
  .p-page__postContent > h4[class*=wp-],
  .p-single__postContent > h5:not([class]),
  .p-page__postContent > h5:not([class]),
  .p-single__postContent > h5[class^=u-],
  .p-page__postContent > h5[class^=u-],
  .p-single__postContent > h5[class*=wp-],
  .p-page__postContent > h5[class*=wp-],
  .p-single__postContent > h6:not([class]),
  .p-page__postContent > h6:not([class]),
  .p-single__postContent > h6[class^=u-],
  .p-page__postContent > h6[class^=u-],
  .p-single__postContent > h6[class*=wp-],
  .p-page__postContent > h6[class*=wp-] {
    margin: 24px 0 8px;
  }
}
.p-single__postContent > h4:not([class]) + *, .p-page__postContent > h4:not([class]) + *,
.p-single__postContent > h4[class^=u-] + *,
.p-page__postContent > h4[class^=u-] + *,
.p-single__postContent > h4[class*=wp-] + *,
.p-page__postContent > h4[class*=wp-] + *,
.p-single__postContent > h5:not([class]) + *,
.p-page__postContent > h5:not([class]) + *,
.p-single__postContent > h5[class^=u-] + *,
.p-page__postContent > h5[class^=u-] + *,
.p-single__postContent > h5[class*=wp-] + *,
.p-page__postContent > h5[class*=wp-] + *,
.p-single__postContent > h6:not([class]) + *,
.p-page__postContent > h6:not([class]) + *,
.p-single__postContent > h6[class^=u-] + *,
.p-page__postContent > h6[class^=u-] + *,
.p-single__postContent > h6[class*=wp-] + *,
.p-page__postContent > h6[class*=wp-] + * {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-single__postContent > h4:not([class]) + *, .p-page__postContent > h4:not([class]) + *,
  .p-single__postContent > h4[class^=u-] + *,
  .p-page__postContent > h4[class^=u-] + *,
  .p-single__postContent > h4[class*=wp-] + *,
  .p-page__postContent > h4[class*=wp-] + *,
  .p-single__postContent > h5:not([class]) + *,
  .p-page__postContent > h5:not([class]) + *,
  .p-single__postContent > h5[class^=u-] + *,
  .p-page__postContent > h5[class^=u-] + *,
  .p-single__postContent > h5[class*=wp-] + *,
  .p-page__postContent > h5[class*=wp-] + *,
  .p-single__postContent > h6:not([class]) + *,
  .p-page__postContent > h6:not([class]) + *,
  .p-single__postContent > h6[class^=u-] + *,
  .p-page__postContent > h6[class^=u-] + *,
  .p-single__postContent > h6[class*=wp-] + *,
  .p-page__postContent > h6[class*=wp-] + * {
    margin-top: 8px;
  }
}
.p-single__postContent > figure:not([class]), .p-page__postContent > figure:not([class]),
.p-single__postContent > figure[class^=u-],
.p-page__postContent > figure[class^=u-],
.p-single__postContent > figure[class*=wp-],
.p-page__postContent > figure[class*=wp-] {
  margin: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-single__postContent > figure:not([class]), .p-page__postContent > figure:not([class]),
  .p-single__postContent > figure[class^=u-],
  .p-page__postContent > figure[class^=u-],
  .p-single__postContent > figure[class*=wp-],
  .p-page__postContent > figure[class*=wp-] {
    margin: 24px 0;
  }
}
.p-single__postContent > .c-overview, .p-page__postContent > .c-overview,
.p-single__postContent > .c-map,
.p-page__postContent > .c-map,
.p-single__postContent > figure.wp-block-table,
.p-page__postContent > figure.wp-block-table {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-single__postContent > .c-overview, .p-page__postContent > .c-overview,
  .p-single__postContent > .c-map,
  .p-page__postContent > .c-map,
  .p-single__postContent > figure.wp-block-table,
  .p-page__postContent > figure.wp-block-table {
    margin: 24px 0;
  }
}
.p-single__postContent hr, .p-page__postContent hr {
  border: none;
  border-top: solid 1px var(--color-border);
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-single__postContent hr, .p-page__postContent hr {
    margin: 24px 0;
  }
}
.p-single__postContent .wp-block-buttons, .p-page__postContent .wp-block-buttons {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-single__postContent .wp-block-buttons, .p-page__postContent .wp-block-buttons {
    margin: 24px 0;
  }
}
.p-single__postContent figure.wp-block-image, .p-page__postContent figure.wp-block-image {
  margin: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-single__postContent figure.wp-block-image, .p-page__postContent figure.wp-block-image {
    margin: 24px 0;
  }
}

.p-page .l-content {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-page .l-content {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.p-page__head .c-sectionTitle {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-page__head .c-sectionTitle {
    margin-bottom: 24px;
  }
}

.p-page__content {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.p-journal .p-journal__fv {
  position: relative;
  width: 100%;
  aspect-ratio: 1432/555;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-journal .p-journal__fv {
    aspect-ratio: auto;
    padding: 54px 20px 24px;
    height: auto;
  }
}
.p-journal .p-journal__fvImg {
  position: absolute;
  top: 16.036036036%;
  right: 0;
  width: 43.5055865922%;
}
@media screen and (max-width: 767px) {
  .p-journal .p-journal__fvImg {
    position: static;
    width: 100%;
    margin-top: 24px;
  }
}
.p-journal .p-journal__fvImg img {
  width: 100%;
  height: auto;
}
.p-journal .p-journal__fvContent {
  position: absolute;
  top: 16.036036036%;
  left: 15.6424581006%;
}
@media screen and (max-width: 767px) {
  .p-journal .p-journal__fvContent {
    position: static;
  }
}
.p-journal .p-journal__fvLogo {
  max-width: 250px;
  width: 100%;
  margin-bottom: 1.6759776536vw;
}
@media screen and (max-width: 767px) {
  .p-journal .p-journal__fvLogo {
    display: none;
  }
}
.p-journal .p-journal__fvLogo img {
  width: 100%;
  height: auto;
}
.p-journal .p-journal__fvTitle {
  font-weight: 800;
  font-size: 3.3519553073vw;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-journal .p-journal__fvTitle {
    font-size: 8vw;
    line-height: 1.7;
  }
}
.p-journal .p-journal__fvTitle span {
  font-weight: 800;
  font-size: 2.5139664804vw;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-journal .p-journal__fvTitle span {
    font-size: 6.4vw;
    line-height: 1.7;
  }
}
.p-journal .p-journal__fvLead {
  margin-top: 1.6759776536vw;
  font-weight: 600;
  font-size: 1.3966480447vw;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-journal .p-journal__fvLead {
    margin-top: 2.1333333333vw;
    font-size: 4.2666666667vw;
  }
}

.p-advertising .p-advertising__fv {
  position: relative;
  width: 100%;
  aspect-ratio: 1432/504;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-advertising .p-advertising__fv {
    aspect-ratio: auto;
    padding: 54px 20px 0;
    height: auto;
  }
}
.p-advertising .p-advertising__fvImg {
  position: absolute;
  bottom: 1.9841269841%;
  right: 0;
  width: 42.4581005587%;
}
@media screen and (max-width: 767px) {
  .p-advertising .p-advertising__fvImg {
    position: static;
    width: calc(100% + 20px);
    margin-right: -20px;
    margin-top: 24px;
  }
}
.p-advertising .p-advertising__fvImg img {
  width: 100%;
  height: auto;
}
.p-advertising .p-advertising__fvContent {
  position: absolute;
  bottom: 1.9841269841%;
  left: 15.6424581006%;
}
@media screen and (max-width: 767px) {
  .p-advertising .p-advertising__fvContent {
    position: static;
  }
}
.p-advertising .p-advertising__fvLogo {
  max-width: 250px;
  width: 100%;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .p-advertising .p-advertising__fvLogo {
    display: none;
  }
}
.p-advertising .p-advertising__fvLogo img {
  width: 100%;
  height: auto;
}
.p-advertising .p-advertising__fvTitle {
  font-weight: 800;
  font-size: 2.2346368715vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-advertising .p-advertising__fvTitle {
    font-size: 6.1333333333vw;
  }
}
.p-advertising .p-advertising__fvTitle--bold {
  font-weight: 800;
  font-size: 3.3519553073vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-advertising .p-advertising__fvTitle--bold {
    font-size: 10.1333333333vw;
  }
}
.p-advertising .p-advertising__fvTitle--highlight {
  position: relative;
  font-weight: 900;
  font-size: 3.4916201117vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-advertising .p-advertising__fvTitle--highlight {
    font-size: 10.6666666667vw;
  }
}
.p-advertising .p-advertising__fvTitle--highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
}
.p-advertising .p-advertising__fvLead {
  margin-top: 1.6759776536vw;
  font-weight: 600;
  font-size: 1.3966480447vw;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-advertising .p-advertising__fvLead {
    margin-top: 2.1333333333vw;
    font-size: 4.2666666667vw;
  }
}

body.other {
  background-color: transparent;
}
body.other .l-content {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  body.other .l-content {
    padding-top: 60px;
  }
}
body.other .c-sectionTitle {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  body.other .c-sectionTitle {
    margin-bottom: 24px;
  }
}
body.other .c-sectionTitle + * {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  body.other .c-sectionTitle + * {
    margin-top: 24px;
  }
}
body.other .wp-block-buttons {
  margin: 32px 0;
}
@media screen and (max-width: 767px) {
  body.other .wp-block-buttons {
    margin: 24px 0;
  }
}
body.other .l-section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  body.other .l-section {
    padding: 60px 0;
  }
}
body.other .l-section + body.other .l-section {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  body.other .l-section + body.other .l-section {
    padding-top: 60px;
  }
}
body.other .l-section--bg {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  body.other .l-section--bg {
    padding: 60px 0;
  }
}
body.other .l-section--bg + body.other .l-section--bg {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  body.other .l-section--bg + body.other .l-section--bg {
    padding-top: 60px;
  }
}

.p-other .p-other__head {
  min-height: 31px;
  position: relative;
  z-index: 1;
}
.p-other .p-other__head .c-breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: auto;
}
.p-other .p-other__head .p-other__fv img {
  width: 100%;
  height: auto;
}
.p-other .p-other__sectionInner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.p-other .p-other__sectionInner--wide {
  max-width: 984px;
  width: 100%;
  margin: 0 auto;
}
.p-other .p-other__box,
.p-other .p-other__missionbox {
  border: solid 1px var(--color-primary-darker);
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__box,
  .p-other .p-other__missionbox {
    padding: 24px;
  }
}
.p-other .p-other__box h2,
.p-other .p-other__missionbox h2 {
  font-size: 26px;
  margin-bottom: 32px;
  padding: 0;
  border-left: 0;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__box h2,
  .p-other .p-other__missionbox h2 {
    font-size: 18px;
  }
}
.p-other .p-other__box p,
.p-other .p-other__missionbox p {
  font-weight: 500;
}
.p-other .p-other__box > * + *,
.p-other .p-other__missionbox > * + * {
  margin-top: 20px;
}
.p-other .p-other__missionbox {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__missionbox {
    margin-top: 40px;
  }
}
.p-other .p-other__missionbox p {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__missionbox p {
    font-size: 15px;
    line-height: 1.7;
  }
}
.p-other .p-other__exampleBox {
  padding: 20px 40px;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__exampleBox {
    padding: 16px;
  }
}
.p-other .p-other__exampleBox > * + * {
  margin-top: 8px;
}
.p-other .p-other__categoryWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 42px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__categoryWrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px 0;
  }
}
.p-other .p-other__categoryLink {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__categoryLink {
    align-items: flex-start;
  }
}
@media (any-hover: hover) {
  .p-other .p-other__categoryLink:hover {
    opacity: 0.7;
  }
}
.p-other .p-other__categoryHead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__categoryHead {
    flex-direction: row;
    gap: 16px;
  }
}
.p-other .p-other__categoryHead img {
  width: 40px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__categoryHead img {
    width: 24px;
  }
}
.p-other .p-other__categoryBody {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}
.p-other .p-other__feature {
  max-width: 680px;
  width: 100%;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__feature {
    margin: 40px auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}
.p-other .p-other__feature .p-other__featureItem {
  max-width: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__feature .p-other__featureItem {
    max-width: 100%;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
}
.p-other .p-other__feature .p-other__featureItemHead {
  margin: 0 auto 28px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__feature .p-other__featureItemHead {
    flex-shrink: 0;
    width: 152px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.p-other .p-other__feature .p-other__featureItemImg {
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__feature .p-other__featureItemImg {
    flex-shrink: 0;
    max-width: auto;
    width: 100px;
    margin: 0;
  }
}
.p-other .p-other__feature .p-other__featureItemImg img {
  width: 100%;
  height: auto;
}
.p-other .p-other__feature .p-other__featureItemNum {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__feature .p-other__featureItemNum {
    position: static;
    transform: none;
    font-size: 30px;
  }
}
.p-other .p-other__feature .p-other__featureItemTitle {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__feature .p-other__featureItemTitle {
    font-size: 20px;
    text-align: left;
  }
}
.p-other .p-other__feature .p-other__featureItemTitle span {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__feature .p-other__featureItemTitle span {
    font-size: 16px;
  }
}
.p-other .p-other__missionWrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__missionWrapper {
    gap: 40px;
    margin: 40px 0;
  }
}
.p-other .p-other__mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title img" "body img";
  gap: 24px 60px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__mission {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "title" "img" "body";
    gap: 16px 0;
  }
}
.p-other .p-other__mission:nth-child(even) {
  grid-template-areas: "img title" "img body";
}
@media screen and (max-width: 767px) {
  .p-other .p-other__mission:nth-child(even) {
    grid-template-areas: "title" "img" "body";
  }
}
.p-other .p-other__missionTitle {
  grid-area: title;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.7;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__missionTitle {
    font-size: 24px;
    line-height: 1.5;
  }
}
.p-other .p-other__missionTitle--num {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-primary);
  padding-left: 12px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__missionTitle--num {
    font-size: 10px;
    padding-left: 7px;
    margin-bottom: 4px;
  }
}
.p-other .p-other__missionTitle--num span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__missionTitle--num span {
    font-size: 14px;
  }
}
.p-other .p-other__missionTitle--num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__missionTitle--num::before {
    width: 3px;
    height: 14px;
  }
}
.p-other .p-other__missionImg {
  grid-area: img;
}
.p-other .p-other__missionImg img {
  width: 100%;
  height: auto;
}
.p-other .p-other__missionBody {
  grid-area: body;
}
.p-other .p-other__missionBody > :first-child,
.p-other .p-other__missionBody div > :first-child {
  margin-top: 0 !important;
}
.p-other .p-other__missionBody > :last-child,
.p-other .p-other__missionBody div > :last-child {
  margin-bottom: 0 !important;
}
.p-other .p-other__missionBody > * {
  margin-bottom: 20px;
}
.p-other .p-other__pointWrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__pointWrapper {
    gap: 30px;
    margin: 24px 0;
  }
}
.p-other .p-other__pointTitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-primary);
  padding-bottom: 8px;
  border-bottom: solid 1px var(--color-primary);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__pointTitle {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.p-other .p-other__pointTitle--num {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-primary);
  padding-left: 12px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__pointTitle--num {
    font-size: 10px;
    padding-left: 7px;
    margin-bottom: 4px;
  }
}
.p-other .p-other__pointTitle--num span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__pointTitle--num span {
    font-size: 14px;
  }
}
.p-other .p-other__pointTitle--num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__pointTitle--num::before {
    width: 3px;
    height: 14px;
  }
}
.p-other .p-other__pointImg img {
  width: 100%;
  height: auto;
}
.p-other .p-other__pointBody {
  margin-top: 16px;
}
.p-other .p-other__pointBody > :first-child,
.p-other .p-other__pointBody div > :first-child {
  margin-top: 0 !important;
}
.p-other .p-other__pointBody > :last-child,
.p-other .p-other__pointBody div > :last-child {
  margin-bottom: 0 !important;
}
.p-other .p-other__pointBody > * {
  margin-bottom: 20px;
}
.p-other .p-other__planWrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__planWrapper {
    gap: 16px;
    margin: 24px 0;
  }
}
.p-other .p-other__plan {
  padding: 40px;
  background: var(--color-gray);
  display: grid;
  grid-template-columns: 1fr 190px;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title img" "body img";
  gap: 24px 50px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__plan {
    padding: 20px 16px;
    grid-template-columns: 1fr 100px;
    grid-template-areas: "title img" "body body";
    gap: 8px 24px;
  }
}
.p-other .p-other__plan--noImg {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "title" "body";
}
@media screen and (max-width: 767px) {
  .p-other .p-other__plan--noImg {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "title" "body";
  }
}
.p-other .p-other__planTitleWrapper {
  grid-area: title;
}
.p-other .p-other__planTitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-primary);
  padding-bottom: 8px;
  border-bottom: solid 1px var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__planTitle {
    font-size: 16px;
  }
}
.p-other .p-other__planTitle > span:not([class]) {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__planTitle > span:not([class]) {
    display: block;
    font-size: 14px;
  }
}
.p-other .p-other__planTitle--num {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-primary);
  padding-left: 12px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__planTitle--num {
    font-size: 10px;
    padding-left: 7px;
    margin-bottom: 4px;
  }
}
.p-other .p-other__planTitle--num span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__planTitle--num span {
    font-size: 14px;
  }
}
.p-other .p-other__planTitle--num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-other .p-other__planTitle--num::before {
    width: 3px;
    height: 14px;
  }
}
.p-other .p-other__planImg {
  grid-area: img;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-other .p-other__planImg img {
  width: 100%;
  height: auto;
}
.p-other .p-other__planBody {
  grid-area: body;
}
.p-other .p-other__planBody > :first-child,
.p-other .p-other__planBody div > :first-child {
  margin-top: 0 !important;
}
.p-other .p-other__planBody > :last-child,
.p-other .p-other__planBody div > :last-child {
  margin-bottom: 0 !important;
}
.p-other .p-other__planBody > * {
  margin-bottom: 20px;
}
.p-other .p-other__planLabel {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}
.p-other .p-other__planBoxWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__planBoxWrapper {
    flex-direction: column;
    gap: 8px;
  }
}
.p-other .p-other__planBox {
  width: calc((100% - 24px) / 2);
  color: var(--color-text);
  background: var(--color-white);
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__planBox {
    width: 100%;
    padding: 20px 16px;
  }
}
.p-other .p-other__planBoxTitle {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-other .p-other__planBoxTitle {
    font-size: 15px;
  }
}

.p-archive .l-content {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-archive .l-content {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.p-archive__bottom {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-archive__bottom {
    margin-top: 60px;
  }
}

.p-author .c-postCard__wrapper {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-author .c-postCard__wrapper {
    margin-top: 24px;
  }
}

.p-special .l-content {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-special .l-content {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.p-special .c-postCard__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-special .c-postCard__title {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-special .c-postCard__title {
    margin-bottom: 0;
  }
}
.p-special .c-postCard__date {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .p-special .c-postCard__link {
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-special .c-postCard__thumbnail {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}

.p-special__content {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.p-terminology__section + .p-terminology__section {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-terminology__section + .p-terminology__section {
    margin-top: 40px;
  }
}

.p-terminology__localNav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-terminology__localNav {
    flex-direction: column;
    gap: 20px;
  }
}

.p-terminology__localNavItem {
  width: calc((100% - 48px) / 3);
}
@media screen and (max-width: 767px) {
  .p-terminology__localNavItem {
    width: 100%;
  }
}

.p-terminology__localNavLink {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  position: relative;
  display: block;
  background: var(--color-white);
  padding: 20px 50px 20px 20px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-terminology__localNavLink {
    font-size: 16px;
    padding: 16px 48px 16px 20px;
  }
}
@media (any-hover: hover) {
  .p-terminology__localNavLink:hover {
    opacity: 0.7;
  }
}
.p-terminology__localNavLink span {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-terminology__localNavLink span {
    font-size: 13px;
  }
}
.p-terminology__localNavLink img {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .p-terminology__localNavLink img {
    width: 18px;
    height: 18px;
  }
}

.p-terminology__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
}
@media screen and (max-width: 767px) {
  .p-terminology__list {
    flex-direction: column;
    gap: 20px;
  }
}

.p-terminology__listItem {
  width: calc((100% - 48px) / 3);
}
@media screen and (max-width: 767px) {
  .p-terminology__listItem {
    width: 100%;
  }
}

.p-terminology__listLink {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-primary);
  padding-left: 12px;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-terminology__listLink {
    font-size: 15px;
  }
}
@media (any-hover: hover) {
  .p-terminology__listLink:hover {
    opacity: 0.7;
  }
}
.p-terminology__listLink:before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: solid 1px var(--color-primary);
  border-right: solid 1px var(--color-primary);
}

.p-terminologySingle .p-single__head {
  padding-bottom: 0;
}
.p-terminologySingle .p-single__head::after, .p-terminologySingle .p-single__head::before {
  display: none;
}

.c-box {
  padding: 20px;
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .c-box {
    margin: 30px 0;
  }
}

.c-box--01 {
  background: var(--color-sub, #f4f4f5);
  border: 1px solid var(--color-sub, #f4f4f5);
}

.c-box--02 {
  background: #fff8e8;
  border-left: 10px solid #ffc06e;
}

.c-box--03 {
  padding: 0;
}
.c-box--03 .c-box__title {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: #ff96b9;
  padding: 3px 10px;
  color: #fff;
  border-radius: 5px 5px 0 0;
}
.c-box--03 .c-box__content {
  padding: 20px;
  background: #fff0f5;
  border: 2px solid #ff96b9;
  border-radius: 0 5px 5px 5px;
}

.c-box--04 {
  border: 3px solid #c1c1c1;
}

.c-balloon {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .c-balloon {
    margin: 30px 0;
    gap: 10px;
  }
}
.c-balloon__icon {
  flex-shrink: 0;
  text-align: center;
}
.c-balloon__icon img {
  display: block;
  margin: 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-balloon__icon img {
    width: 50px;
    height: 50px;
  }
}
.c-balloon__name {
  font-size: 12px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .c-balloon__name {
    font-size: 11px;
  }
}
.c-balloon__content {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 15px;
  background: var(--color-gray);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-balloon__content {
    padding: 12px;
  }
}
.c-balloon__content::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
}
.c-balloon__content p {
  margin: 0;
}
.c-balloon--left .c-balloon__content::before {
  left: -20px;
  border-right-color: var(--color-gray);
}
.c-balloon--right {
  flex-direction: row-reverse;
}
.c-balloon--right .c-balloon__content::before {
  right: -20px;
  border-left-color: var(--color-gray);
}

.c-sectionTitle {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding-top: 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle {
    width: calc(100% + 20px);
    gap: 12px;
    padding-top: 12px;
    margin-right: -20px;
    margin-bottom: 24px;
  }
}
.c-sectionTitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}
.c-sectionTitle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: var(--color-primary);
}
.c-sectionTitle + * {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle + * {
    margin-top: 24px;
  }
}

.c-sectionTitle__content {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__content {
    font-size: 18px;
  }
}
.c-sectionTitle__content--en {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  padding-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__content--en {
    font-size: 10px;
  }
}

.c-sectionTitle__link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__link {
    display: none;
  }
}
.c-sectionTitle__link img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .c-sectionTitle__link:hover {
    opacity: 0.7;
  }
  .c-sectionTitle__link:hover img {
    transform: translateX(4px);
  }
}

.js-topFvSlider {
  padding-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .js-topFvSlider {
    padding-bottom: 28px;
  }
}
.js-topFvSlider .splide__pagination {
  bottom: 0;
}
.js-topFvSlider .splide__pagination__page {
  display: block;
  margin: 0 4px;
  width: 12px;
  height: 12px;
  background: var(--color-primary-lighter);
  border: solid 1px rgba(45, 67, 146, 0.08);
  opacity: 1;
}
.js-topFvSlider .splide__pagination__page.is-active {
  transform: scale(1);
  background: var(--color-primary);
  border: solid 1px var(--color-primary);
}
.js-topFvSlider.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid var(--color-primary) !important;
  outline-offset: 2px !important;
}
.js-topFvSlider .splide__arrow {
  width: 40px;
  height: 40px;
  background: none;
  opacity: 1;
  top: calc(50% - 18px);
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .js-topFvSlider .splide__arrow {
    display: none;
  }
}
@media (any-hover: hover) {
  .js-topFvSlider .splide__arrow:hover {
    opacity: 0.7;
  }
}
.js-topFvSlider .splide__arrow--next {
  right: -20px;
  background-image: url("../../assets/img/top/fv-splide-right.svg");
  background-size: cover;
}
.js-topFvSlider .splide__arrow--prev {
  left: -20px;
  background-image: url("../../assets/img/top/fv-splide-left.svg");
  background-size: cover;
}
.js-topFvSlider .c-postCard {
  flex-wrap: unset;
  flex-direction: unset;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .js-topFvSlider .c-postCard__content {
    display: block;
  }
}
.js-topFvSlider .c-postCard__thumbnail {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .js-topFvSlider .c-postCard__thumbnail {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .js-topFvSlider .c-postCard__body {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .js-topFvSlider .c-postCard__category {
    padding-left: 10px;
  }
}
.js-topFvSlider .c-postCard__textBox {
  padding-right: 56px;
}
@media screen and (max-width: 767px) {
  .js-topFvSlider .c-postCard__textBox {
    padding-right: 0;
  }
}
.js-topFvSlider .c-postCard__title {
  font-size: 24px;
  padding-right: 28px;
  border-right: solid 1px var(--color-border);
  position: relative;
}
@media screen and (max-width: 767px) {
  .js-topFvSlider .c-postCard__title {
    font-size: 18px;
    padding-right: 0;
    border-right: none;
  }
}
.js-topFvSlider .c-postCard__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../../assets/img/common/icon-arrow-right.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .js-topFvSlider .c-postCard__title::after {
    display: none;
  }
}
.js-topFvSlider .c-postCard__meta {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .js-topFvSlider .c-postCard__meta {
    margin-top: 8px;
  }
}

@media screen and (max-width: 767px) {
  .js-postCardSlider {
    width: calc(100% + 20px);
    margin-right: -20px;
  }
}
@media screen and (min-width: 768px) {
  .js-postCardSlider.is-initialized:not(.is-active) .splide__list {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .js-postCardSlider .c-postCard {
    flex-wrap: unset;
    flex-direction: unset;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .js-postCardSlider .c-postCard__content {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .js-postCardSlider .c-postCard__thumbnail {
    width: 100%;
    margin-bottom: 8px;
  }
}

.c-postCard__wrapper--2col {
  display: grid;
  grid-template-columns: 424px 1fr;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .c-postCard__wrapper--2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.c-postCard__wrapper--2col .c-postCard:nth-child(even) .c-postCard__item {
  width: calc((100% - 24px) / 2);
}
@media screen and (max-width: 767px) {
  .c-postCard__wrapper--2col .c-postCard:nth-child(even) .c-postCard__item {
    width: 100%;
  }
}

.c-postCard {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
}
@media screen and (max-width: 767px) {
  .c-postCard {
    flex-direction: column;
    gap: 20px;
  }
}

.c-postCard__item {
  width: calc((100% - 48px) / 3);
}
@media screen and (max-width: 767px) {
  .c-postCard__item {
    width: 100%;
  }
}
.c-postCard__item--new .c-postCard__thumbnail {
  position: relative;
}
.c-postCard__item--new .c-postCard__thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 44px;
  background-image: url("../../assets/img/common/icon-new.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.c-postCard__item--large {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--large .c-postCard__link {
    padding: 10px;
    background-color: var(--color-white);
  }
}
.c-postCard__item--large .c-postCard__thumbnail {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--large .c-postCard__thumbnail {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .c-postCard__item--large .c-postCard__content {
    display: block;
  }
}
.c-postCard__item--large .c-postCard__body {
  padding: 16px 28px 16px 28px;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-postCard__item--large .c-postCard__body {
    padding: 0;
  }
}
.c-postCard__item--large .c-postCard__textBox {
  padding-right: 28px;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--large .c-postCard__textBox {
    padding-right: 0;
  }
}
.c-postCard__item--large .c-postCard__title {
  margin-bottom: 16px;
  font-size: 24px;
  padding-right: 28px;
  border-right: solid 1px var(--color-border);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--large .c-postCard__title {
    margin-bottom: 0;
    font-size: 16px;
    padding-right: 0;
    border-right: none;
  }
}
.c-postCard__item--large .c-postCard__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../../assets/img/common/icon-arrow-right.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--large .c-postCard__title::after {
    display: none;
  }
}
.c-postCard__item--large .c-postCard__lead {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-postCard__item--large .c-postCard__lead {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-postCard__item--large .c-postCard__category {
    padding-left: 10px;
  }
}
.c-postCard__item--large .c-postCard__meta {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--large .c-postCard__meta {
    margin-top: 8px;
  }
}
.c-postCard__item--wide {
  width: 100%;
}
.c-postCard__item--wide .c-postCard__link {
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-postCard__item--wide .c-postCard__link {
    padding: 10px;
  }
}
.c-postCard__item--wide .c-postCard__thumbnail {
  width: 43.0894308943%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--wide .c-postCard__thumbnail {
    width: 100%;
    margin-bottom: 8px;
  }
}
.c-postCard__item--wide .c-postCard__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--wide .c-postCard__content {
    display: block;
  }
}
.c-postCard__item--wide .c-postCard__body {
  padding: 22px 56px 22px 28px;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--wide .c-postCard__body {
    padding: 0;
  }
}
.c-postCard__item--wide .c-postCard__textBox {
  padding-right: 28px;
  border-right: solid 1px var(--color-border);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--wide .c-postCard__textBox {
    padding-right: 0;
    border-right: none;
  }
}
.c-postCard__item--wide .c-postCard__textBox::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../../assets/img/common/icon-arrow-right.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--wide .c-postCard__textBox::after {
    display: none;
  }
}
.c-postCard__item--wide .c-postCard__title {
  margin-bottom: 8px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--wide .c-postCard__title {
    margin-bottom: 0;
    font-size: 16px;
  }
}
.c-postCard__item--wide .c-postCard__lead {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-postCard__item--wide .c-postCard__lead {
    display: none;
  }
}
.c-postCard__item--wide .c-postCard__category {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--wide .c-postCard__category {
    margin-bottom: 4px;
    padding-left: 10px;
  }
}
.c-postCard__item--wide .c-postCard__meta {
  margin-top: 16px;
  padding-right: 28px;
}
@media screen and (max-width: 767px) {
  .c-postCard__item--wide .c-postCard__meta {
    margin-top: 8px;
    padding-right: 0;
  }
}

.c-postCard__link {
  display: block;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-postCard__link:hover {
    opacity: 0.7;
  }
  .c-postCard__link:hover .c-postCard__thumbnail img {
    transform: scale(1.05);
  }
}

.c-postCard__category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-light);
}
@media screen and (max-width: 767px) {
  .c-postCard__category {
    margin-bottom: 4px;
  }
}
.c-postCard__category .c-postCard__categoryImg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.c-postCard__category .c-postCard__categoryImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-postCard__thumbnail {
  width: 100%;
  aspect-ratio: 312/208;
  overflow: hidden;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-postCard__thumbnail {
    flex-shrink: 0;
    width: 104px;
    aspect-ratio: 104/69;
    margin-bottom: 0;
  }
}
.c-postCard__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 767px) {
  .c-postCard__content {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
}

.c-postCard__body {
  flex: 1;
}

.c-postCard__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
}
.c-postCard__title--label {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 4px;
  padding: 1px 11px;
  border: solid 1px var(--color-text-light);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-text);
}

.c-postCard__meta {
  margin-top: 8px;
  display: flex;
}

.c-postCard__author {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-light);
}
@media screen and (max-width: 767px) {
  .c-postCard__author {
    font-size: 11px;
  }
}

.c-postCard__authorIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-postCard__authorIcon {
    width: 18px;
    height: 18px;
  }
}
.c-postCard__authorIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-postCard__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-postCard__date {
    font-size: 11px;
  }
}

.c-banner {
  width: 100%;
}

.c-banner__wrapper {
  list-style: none;
  padding: 0;
}

.c-banner__link {
  display: block;
  position: relative;
  aspect-ratio: 312/155;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-banner__link {
    aspect-ratio: 336/167;
  }
}
.c-banner__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

@media (any-hover: hover) {
  a.c-banner__link:hover {
    opacity: 0.7;
  }
  a.c-banner__link:hover img {
    transform: scale(1.05);
  }
}

.c-banner__label {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 1px 6px;
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background: var(--color-border);
}

.c-banner__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-banner__mainContent .c-banner__wrapper,
.c-banner__bottomContent .c-banner__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .c-banner__mainContent .c-banner__wrapper,
  .c-banner__bottomContent .c-banner__wrapper {
    gap: 16px;
  }
}
.c-banner__mainContent .c-banner,
.c-banner__bottomContent .c-banner {
  max-width: 312px;
  width: calc((100% - 48px) / 3);
}
@media screen and (max-width: 767px) {
  .c-banner__mainContent .c-banner,
  .c-banner__bottomContent .c-banner {
    max-width: 100%;
    width: 100%;
  }
}

.c-banner__sidebarContent .c-banner__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-localNav {
  background-color: var(--color-primary);
  padding: 24px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-localNav {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .c-localNav {
    z-index: 999;
  }
}
.c-localNav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.c-localNav.is-fixed.is-animating {
  animation: slideDown 0.4s ease-out;
}
.c-localNav.is-fixed .c-localNav__logo {
  display: block;
  width: 149px;
}
.c-localNav.is-fixed .c-localNav__logo img {
  width: 100%;
  height: auto;
}
.c-localNav.is-fixed .c-localNav__item {
  width: auto;
}
.c-localNav.is-fixed .c-localNav__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  font-size: 15px;
}
.c-localNav.is-fixed .c-localNav__link img {
  width: 20px;
  margin: 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.c-localNav__logo {
  display: none;
}
.c-localNav__logo a {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-localNav__logo a:hover {
    opacity: 0.7;
  }
}

.c-localNav__list {
  max-width: 960px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
}

.c-localNav__item {
  width: calc((100% - 160px) / 5);
}

.c-localNav__link {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-localNav__link:hover {
    opacity: 0.7;
  }
}

.c-localNav__link img {
  display: block;
  margin: 0 auto 8px;
  width: 24px;
  height: auto;
}

.c-sidebarPostCard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-sidebarPostCard__content {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.c-sidebarPostCard__thumbnail {
  flex-shrink: 0;
  width: 88px;
  aspect-ratio: 88/59;
  overflow: hidden;
}
.c-sidebarPostCard__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.c-sidebarPostCard__body {
  flex: 1;
}

.c-sidebarPostCard__title {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text);
}

.c-sidebarPostCard__link {
  display: block;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-sidebarPostCard__link:hover {
    opacity: 0.7;
  }
  .c-sidebarPostCard__link:hover .c-sidebarPostCard__thumbnail img {
    transform: scale(1.05);
  }
}

.c-tag__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
}

.c-tag .c-tag__link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 16px;
  background: var(--color-primary);
  border-radius: 100px;
  color: var(--color-white);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-tag .c-tag__link:hover {
    opacity: 0.7;
  }
}

.c-breadcrumb {
  max-width: 1360px;
  width: 100%;
  padding: 8px 20px;
  margin: 0 auto;
}

.c-breadcrumb__list {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.c-breadcrumb__item {
  display: flex;
  gap: 4px;
  font-size: 10px;
  line-height: 1.5;
  color: var(--color-text);
  flex-shrink: 0;
  white-space: nowrap;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: var(--color-text);
}

.c-breadcrumb__link {
  display: flex;
  gap: 2px;
  color: var(--color-primary);
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-breadcrumb__link:hover {
    opacity: 0.7;
  }
}
.c-breadcrumb__link svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.c-btn__wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .c-btn__wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-primary-lighter);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-primary);
  padding: 10px 16px;
  max-width: 336px;
  width: 100%;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .c-accordion--spOnly .c-accordion__content {
    overflow: visible !important;
    height: auto !important;
  }
}

.c-accordion__buttonWrapper {
  margin-bottom: 0;
}

.c-accordion__button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-left: auto;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  background-color: var(--color-primary-light);
  position: relative;
}
.c-accordion__button::before, .c-accordion__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-accordion__button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.c-accordion.is-open .c-accordion__button::after {
  transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}

.c-accordion__content {
  overflow: hidden;
  transition: height 0.3s ease-out;
}
.c-accordion__content > :first-child {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .c-accordion__content > :first-child {
    margin-top: 24px;
  }
}

.c-fixedTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .c-fixedTop {
    display: none;
  }
}
.c-fixedTop .c-fixedTop__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 1px var(--color-primary);
  border-radius: 100%;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
}

.c-authorCard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-authorCard--noLink {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-authorCard--noLink .c-authorCard__content {
  grid-template-rows: auto auto;
  grid-template-areas: "thumbnail head" "thumbnail body";
}
@media screen and (max-width: 767px) {
  .c-authorCard--noLink .c-authorCard__content {
    grid-template-areas: "thumbnail head" "body body";
  }
}

.c-authorCard--noImg {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-authorCard--noImg .c-authorCard__content {
  display: flex;
  flex-direction: column;
}
.c-authorCard--noImg .c-authorCard__thumbnail {
  display: none;
}

.c-authorCard__item {
  background: var(--color-white);
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .c-authorCard__item {
    padding: 20px 15px;
  }
}

.c-authorCard__content {
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "thumbnail head" "thumbnail body" "thumbnail foot";
  gap: 20px 16px;
}
@media screen and (max-width: 767px) {
  .c-authorCard__content {
    grid-template-columns: 48px 1fr;
    grid-template-areas: "thumbnail head" "body body" "foot foot";
    gap: 16px 16px;
  }
}

.c-authorCard__thumbnail {
  grid-area: thumbnail;
}

.c-authorCard__head {
  grid-area: head;
}
@media screen and (max-width: 767px) {
  .c-authorCard__head {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.c-authorCard__body {
  grid-area: body;
}
.c-authorCard__body a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-authorCard__body a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.c-authorCard__foot {
  grid-area: foot;
}

.c-authorCard__img {
  width: 140px;
  height: 140px;
  overflow: hidden;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-authorCard__img {
    width: 48px;
    height: 48px;
  }
}
.c-authorCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-authorCard__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-authorCard__name {
    font-size: 16px;
  }
}

.c-authorCard__role {
  margin-top: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-authorCard__role {
    margin-top: 2px;
    font-size: 12px;
  }
}

.c-authorCard__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}

.c-authorCard__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-primary);
  padding: 8px 47px;
  border-radius: 100px;
  border: solid 1px var(--color-primary);
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-authorCard__btn {
    width: 100%;
    font-size: 14px;
    padding: 8px 42px;
  }
}
@media (any-hover: hover) {
  .c-authorCard__btn:hover {
    opacity: 0.7;
  }
}
.c-authorCard__btn img {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-authorCard__btn img {
    width: 17px;
  }
}

.c-map {
  width: 100%;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 767px) {
  .c-map {
    aspect-ratio: 1/1;
  }
}
.c-map iframe {
  width: 100%;
  height: 100%;
}

.c-overview {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}

.c-overview__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-overview__list {
    flex-direction: column;
    gap: 2px 0;
    padding: 8px 0;
    border-bottom: solid 1px var(--color-border);
  }
}

.c-overview__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: var(--color-text);
  flex: 0 0 200px;
  padding: 0 16px 8px;
  border-bottom: solid 1px var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-overview__title {
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
    flex: 0 0 auto;
    padding: 0;
    border-bottom: none;
  }
}

.c-overview__body {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  flex: 1;
  padding: 0 0 8px 16px;
  border-bottom: solid 1px var(--color-border);
}
@media screen and (max-width: 767px) {
  .c-overview__body {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
    border-bottom: none;
  }
}
.c-overview__body * {
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .c-overview__body * {
    margin-bottom: 8px;
  }
}
.c-overview__body *:last-child {
  margin-bottom: 0 !important;
}
.c-overview__body > iframe,
.c-overview__body > img {
  margin-bottom: 8px;
}

.c-overview__customer {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-overview__customer {
    flex-direction: column;
    gap: 2px 0;
  }
}
.c-overview__customer span {
  flex-shrink: 0;
  width: 8em;
  margin-bottom: 0;
}

.c-pagination {
  margin: 120px auto 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin: 60px auto 0;
  }
}
.c-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .c-pagination .nav-links {
    gap: 20px;
  }
}
.c-pagination .c-pagination__arrow {
  display: block;
  width: 60px;
  height: 60px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination .c-pagination__arrow {
    width: 48px;
    height: 48px;
  }
}
@media (any-hover: hover) {
  .c-pagination .c-pagination__arrow:hover {
    opacity: 0.7;
  }
}
.c-pagination .c-pagination__arrow--prev {
  background-image: url("../../assets/img/common/icon-pagination-arrow-prev.svg");
}
@media screen and (max-width: 767px) {
  .c-pagination .c-pagination__arrow--prev {
    background-image: url("../../assets/img/common/icon-pagination-arrow-prev-sp.svg");
  }
}
.c-pagination .c-pagination__arrow--next {
  background-image: url("../../assets/img/common/icon-pagination-arrow-next.svg");
}
@media screen and (max-width: 767px) {
  .c-pagination .c-pagination__arrow--next {
    background-image: url("../../assets/img/common/icon-pagination-arrow-next-sp.svg");
  }
}
.c-pagination .page-numbers {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-gray-dark);
  text-align: center;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-pagination .page-numbers:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers {
    font-size: 15px;
  }
}
.c-pagination .page-numbers.prev {
  margin-right: 48px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers.prev {
    margin-right: 12px;
  }
}
.c-pagination .page-numbers.next {
  margin-left: 48px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers.next {
    margin-left: 12px;
  }
}
.c-pagination .page-numbers.current {
  font-weight: 500;
  color: var(--color-primary);
}
.c-pagination .page-numbers.current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

.u-pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

.u-clear {
  overflow: hidden !important;
}

.u-text-underline {
  text-decoration: underline;
}

.u-text-bold {
  font-weight: bold;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-text-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

html {
  margin-top: 0 !important;
}

.admin-bar #wpadminbar {
  top: auto;
  bottom: 0;
}/*# sourceMappingURL=style.css.map */