@charset "UTF-8";
:root {
  --basic-font-size: 16px;
  --basic-line-height: 1.8;
  --color-text: #3f3f41;
  --color-primary: #1a4d98;
  --color-primary-light: #f0f4f7;
  --color-primary-lighter: #f6f8f9;
  --color-primary-dark: #486b9f;
  --color-new: #ec250f;
  --color-border: #dbe2ec;
  --color-gray-1: #f2f2f2;
  --color-gray-2: #98989e;
  --color-gray-3: #ccc;
  --color-white: #fff;
  --color-black: #000;
  --font-family: "Noto Sans JP", sans-serif;
  --font-family-en: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  :root {
    --basic-font-size: 15px;
  }
}

/* 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;
}

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

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;
}

strong {
  font-weight: 700;
}

.no-scroll {
  overflow: hidden;
}

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

:root {
  --header-height: 112px;
}
@media screen and (max-width: 1023px) {
  :root {
    --header-height: 62px;
  }
}

body {
  padding-top: var(--header-height);
}

.l-header {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--color-white);
  border-bottom: solid 1px var(--color-primary);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-header .u-sp-only {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .l-header .u-sp-only {
    display: block !important;
  }
}
.l-header .u-pc-only {
  display: block !important;
}
@media screen and (max-width: 1023px) {
  .l-header .u-pc-only {
    display: none !important;
  }
}
.l-header.is-fixed {
  position: fixed;
  transform: translateY(0);
}
@media screen and (min-width: 1024px) {
  .l-header.is-fixed {
    height: 66px;
  }
}
.l-header.is-fixed.is-entering {
  transform: translateY(-100%);
  animation: headerSlideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.l-header.is-fixed.is-leaving {
  animation: headerSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.l-header.is-fixed .l-header__logo {
  max-width: 173px;
}
.l-header.is-fixed .l-header__navListItem > a:not(.l-header__btn),
.l-header.is-fixed .l-header__navListItem > button {
  font-size: 13px;
  line-height: 1.2;
}
.l-header.is-fixed .l-header__btn {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  padding: 12px 38px 12px 68px;
}
.l-header.is-fixed .l-header__btn svg {
  width: 18px;
  height: 18px;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes headerSlideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  max-width: 1240px;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
  gap: 16px;
}

.l-header__logo {
  max-width: 242px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__logo {
    max-width: 121px;
  }
}
.l-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.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: 30px;
  height: 30px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-header__hamburger {
    display: block;
  }
}
.l-header__hamburger.is-active .l-header__hamburgerIcon {
  top: 50%;
  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__hamburger.is-active .l-header__hamburgerText {
  opacity: 0;
  visibility: hidden;
}

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

.l-header__hamburgerText {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 8px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-top: 4px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.l-header__navList {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__navList {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }
}

.l-header__navListItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__navListItem {
    height: auto;
    border-bottom: 1px solid var(--color-border);
  }
  .l-header__navListItem.is-active .js-childNavSp::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
  }
}
.l-header__navListItem > a:not(.l-header__btn), .l-header__navListItem > button {
  position: relative;
  display: block;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 100px;
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-header__navListItem > a:not(.l-header__btn), .l-header__navListItem > button {
    letter-spacing: 0.05em;
    padding: 24px 16px 24px 16px;
    border-radius: 0;
  }
  .l-header__navListItem > a:not(.l-header__btn).js-childNavSp::before, .l-header__navListItem > a:not(.l-header__btn).js-childNavSp::after, .l-header__navListItem > button.js-childNavSp::before, .l-header__navListItem > button.js-childNavSp::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 14px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
  }
  .l-header__navListItem > a:not(.l-header__btn).js-childNavSp::before, .l-header__navListItem > button.js-childNavSp::before {
    transform: translateY(-50%);
  }
  .l-header__navListItem > a:not(.l-header__btn).js-childNavSp::after, .l-header__navListItem > button.js-childNavSp::after {
    transform: translateY(-50%) rotate(90deg);
  }
}
@media screen and (any-hover: hover) and (min-width: 1024px) {
  .l-header__navListItem > a:not(.l-header__btn):hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
}
@media screen and (any-hover: hover) and (min-width: 1024px) {
  .l-header__navListItem > button:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .l-header__navListItem > button:hover::after {
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
  }
}
.l-header__navListItem > button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 1024px) {
  .l-header__navListItem--hasChild > a:not(.l-header__btn), .l-header__navListItem--hasChild > button {
    position: relative;
    padding-right: 28px;
  }
  .l-header__navListItem--hasChild > a:not(.l-header__btn)::after, .l-header__navListItem--hasChild > button::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    width: 6px;
    height: 6px;
    margin-top: -1px;
    border-top: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
    transition: border-top 0.3s, border-right 0.3s;
  }
}
@media screen and (any-hover: hover) and (min-width: 1024px) {
  .l-header__navListItem--hasChild:hover .l-header__navListChildWrapper {
    opacity: 1;
    visibility: visible;
  }
}

.l-header__navListChildWrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  width: 100%;
  background: var(--color-white);
  transition: opacity 0.3s ease, visibility 0.6s ease;
}
@media screen and (max-width: 1023px) {
  .l-header__navListChildWrapper {
    opacity: 1;
    visibility: visible;
    position: static;
    overflow: hidden;
    transition: height 0.3s ease-out;
  }
}
@media screen and (min-width: 1024px) and (any-hover: hover) {
  .l-header__navListChildWrapper:hover {
    opacity: 1;
    visibility: visible;
  }
}

.l-header__navListChild {
  max-width: 1080px;
  width: 100%;
  padding: 16px 20px 32px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
@media screen and (max-width: 1023px) {
  .l-header__navListChild {
    flex-direction: column;
    padding: 0;
    gap: 16px;
  }
}

.l-header__navListChildItem {
  width: calc((100% - 56px) / 3);
}
@media screen and (max-width: 1023px) {
  .l-header__navListChildItem {
    width: 100%;
  }
  .l-header__navListChildItem:last-child {
    padding-bottom: 16px;
  }
}
.l-header__navListChildItem a {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .l-header__navListChildItem a {
    display: block;
    padding: 8px 16px;
  }
}
@media screen and (any-hover: hover) and (min-width: 1024px) {
  .l-header__navListChildItem a:hover .l-header__navListChildItemImg img {
    scale: 1.05;
  }
  .l-header__navListChildItem a:hover .l-header__navListChildItemText svg {
    transform: translateY(-50%) translateX(4px);
  }
}

.l-header__navListChildItemImg {
  max-width: 160px;
  aspect-ratio: 160/87;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .l-header__navListChildItemImg {
    display: none;
  }
}
.l-header__navListChildItemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: scale 0.3s;
}

.l-header__navListChildItemText {
  flex: 1;
  align-self: center;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-primary);
  padding: 0 42px 0 16px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-header__navListChildItemText {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    padding: 0;
  }
}
.l-header__navListChildItemText svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-header__navListChildItemText svg {
    display: none;
  }
}

.l-header__btnWrap {
  margin-left: 16px;
}
@media screen and (max-width: 1023px) {
  .l-header__btnWrap {
    margin-top: 16px;
    margin-left: 0;
    border-bottom: none;
  }
}

.l-header__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 8px;
  border: solid 2px var(--color-primary);
  padding: 15px 38px 15px 70px;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-header__btn {
    width: 100%;
    padding: 15px 38px 15px 38px;
    text-align: center;
  }
}
.l-header__btn svg {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.l-header__btn svg path {
  transition: stroke 0.3s;
  stroke: var(--color-white);
}
@media (any-hover: hover) {
  .l-header__btn:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .l-header__btn:hover path {
    stroke: var(--color-primary);
  }
}

.l-footer {
  position: relative;
}

.l-footer__wrapper {
  margin-top: 220px;
}
@media screen and (max-width: 767px) {
  .l-footer__wrapper {
    margin-top: 120px;
  }
}

.l-footer__breadcrumb {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-footer__breadcrumb {
    display: block;
    margin-bottom: 16px;
  }
  .l-footer__breadcrumb .c-breadcrumb {
    display: block;
  }
}

.l-footer__symbol {
  pointer-events: none;
  position: absolute;
  top: -100px;
  right: -15px;
  width: 638px;
}
@media screen and (max-width: 767px) {
  .l-footer__symbol {
    top: -80px;
    right: -34px;
    width: 314px;
  }
}
.l-footer__symbol img {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer__logoLink {
  display: block;
  max-width: 280px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer__logoLink {
    max-width: 213px;
  }
}
.l-footer__logoLink img {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer__logoText {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-white);
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .l-footer__logoText {
    font-size: 14px;
    margin-top: 16px;
  }
}

.l-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.l-footer__main {
  height: 454px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 100px 0 64px;
}
@media screen and (max-width: 767px) {
  .l-footer__main {
    height: auto;
    padding: 60px 0 40px;
  }
}
.l-footer__main .l-footer__inner {
  display: flex;
  gap: 13px;
}
@media screen and (max-width: 767px) {
  .l-footer__main .l-footer__inner {
    flex-direction: column;
    gap: 28px;
  }
}
.l-footer__main .l-footer__inner > *:nth-child(1) {
  width: 49.5192307692%;
}
@media screen and (max-width: 767px) {
  .l-footer__main .l-footer__inner > *:nth-child(1) {
    width: 100%;
  }
}
.l-footer__main .l-footer__inner > *:nth-child(2) {
  width: calc(50.4807692308% - 13px);
}
@media screen and (max-width: 767px) {
  .l-footer__main .l-footer__inner > *:nth-child(2) {
    width: 100%;
  }
}

.l-footer__navList {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  max-height: 310px;
  height: 100%;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .l-footer__navList {
    max-height: none;
    gap: 0;
  }
}

.l-footer__navListItem {
  width: calc((100% - 16px) / 2);
}
@media screen and (max-width: 767px) {
  .l-footer__navListItem {
    width: 100%;
    border-bottom: solid 1px var(--color-primary-dark);
  }
  .l-footer__navListItem:first-child {
    border-top: solid 1px var(--color-primary-dark);
  }
}
.l-footer__navListItem a,
.l-footer__navListItem button,
.l-footer__navListItem span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer__navListItem a,
  .l-footer__navListItem button,
  .l-footer__navListItem span {
    width: 100%;
    padding: 16px 24px 16px 8px;
    position: relative;
  }
  .l-footer__navListItem a.js-childNavSp::before, .l-footer__navListItem a.js-childNavSp::after,
  .l-footer__navListItem button.js-childNavSp::before,
  .l-footer__navListItem button.js-childNavSp::after,
  .l-footer__navListItem span.js-childNavSp::before,
  .l-footer__navListItem span.js-childNavSp::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 14px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
  }
  .l-footer__navListItem a.js-childNavSp::before,
  .l-footer__navListItem button.js-childNavSp::before,
  .l-footer__navListItem span.js-childNavSp::before {
    transform: translateY(-50%);
  }
  .l-footer__navListItem a.js-childNavSp::after,
  .l-footer__navListItem button.js-childNavSp::after,
  .l-footer__navListItem span.js-childNavSp::after {
    transform: translateY(-50%) rotate(90deg);
  }
}
@media (any-hover: hover) {
  .l-footer__navListItem a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__navListItem button,
  .l-footer__navListItem span {
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__navListItem.is-active .js-childNavSp::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
  }
}

.l-footer__navListChild {
  padding: 16px 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .l-footer__navListChild {
    padding: 0;
    gap: 16px;
    overflow: hidden;
    transition: height 0.3s ease-out;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__navListChildItem:last-child {
    padding-bottom: 16px;
  }
}
.l-footer__navListChildItem a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer__navListChildItem a {
    width: 100%;
    font-size: 14px;
    padding: 8px 16px;
  }
}
@media (any-hover: hover) {
  .l-footer__navListChildItem a:hover {
    opacity: 0.7;
  }
}

.l-footer__other {
  background-color: var(--color-gray-1);
  padding: 32px 0;
}

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

.l-footer__subNavItem a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text);
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__subNavItem a:hover {
    opacity: 0.7;
  }
}

.l-wrapper {
  overflow: clip;
}

.l-section {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .l-section {
    margin-top: 60px;
  }
}
.l-section--bg {
  background-color: var(--color-primary-light);
  margin-top: 120px;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .l-section--bg {
    margin-top: 60px;
    padding: 60px 0;
  }
}
.l-section--bg .c-btn {
  --btnBg: var(--color-white);
}

.l-section__inner {
  max-width: 1080px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.l-section__inner--lg {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.p-top .c-youTubePlayer {
  max-width: 688px;
  margin: 0 auto;
}
.p-top .c-sectionTitle {
  --font-color: var(--color-text);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--font-color);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top .c-sectionTitle {
    font-size: 26px;
    margin-bottom: 32px;
  }
}
.p-top .c-sectionTitle--en {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--font-color);
  margin: 0 0 8px;
  padding-left: 26px;
}
@media screen and (max-width: 767px) {
  .p-top .c-sectionTitle--en {
    font-size: 10px;
    margin: 0 0 4px;
    padding-left: 16px;
  }
}
.p-top .c-sectionTitle--en::before {
  left: 5px;
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 767px) {
  .p-top .c-sectionTitle--en::before {
    left: 4px;
    width: 6px;
    height: 6px;
  }
}

.p-top-fv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100dvh - var(--header-height));
}
@media screen and (max-width: 767px) {
  .p-top-fv {
    padding-bottom: 16px;
    height: auto;
  }
}
.p-top-fv .splide {
  width: 100%;
  height: 100%;
}
.p-top-fv .splide__track {
  height: 100%;
}
.p-top-fv .splide__slide picture,
.p-top-fv .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.p-top-fv .splide__pagination {
  display: flex;
  flex-direction: column;
  padding: 0;
  bottom: 100px;
  left: auto;
  right: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-fv .splide__pagination {
    flex-direction: row;
    bottom: -16px;
    left: 16px;
    right: auto;
  }
}
.p-top-fv .splide__pagination__page {
  display: block;
  opacity: 1 !important;
  margin: 4px 0;
}
@media screen and (max-width: 767px) {
  .p-top-fv .splide__pagination__page {
    margin: 0 4px;
  }
}
.p-top-fv .splide__pagination__page.is-active {
  background: var(--color-primary);
  transform: scale(1);
}

.p-top-fv__heading {
  position: absolute;
  left: 120px;
  bottom: 80px;
  z-index: 1;
  width: 37.4305555556%;
}
@media screen and (max-width: 767px) {
  .p-top-fv__heading {
    width: calc(100% - 40px);
    left: 0;
    right: 0;
    bottom: 40px;
    margin: 0 auto;
  }
}
.p-top-fv__heading img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-news {
  display: grid;
  grid-template: "title body" auto "btn body" 1fr/auto minmax(0, 688px);
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    grid-template: "title" auto "body" auto "btn" 1fr/minmax(0, 1fr);
    row-gap: 32px;
  }
}

.p-top-news__title {
  grid-area: title;
}
.p-top-news__title .c-sectionTitle {
  margin-bottom: 0;
}

.p-top-news__body {
  grid-area: body;
}

.p-top-news__btn {
  grid-area: btn;
}

.p-top-leftBrokenSection {
  display: flex;
  align-items: center;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .p-top-leftBrokenSection {
    flex-direction: column-reverse;
    gap: 60px;
  }
}
.p-top-leftBrokenSection img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-leftBrokenSection__col:first-child {
  flex: 1;
  margin-left: calc(50% - 50vw);
}
.p-top-leftBrokenSection__col:last-child {
  width: 49.2307692308%;
}
@media screen and (max-width: 767px) {
  .p-top-leftBrokenSection__col:last-child {
    width: 100%;
  }
}
.p-top-leftBrokenSection__col--img {
  border-radius: 0 40px 40px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-leftBrokenSection__col--img {
    border-radius: 0 16px 16px 0;
  }
}

.p-top-rightBrokenSection {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .p-top-rightBrokenSection {
    flex-direction: column-reverse;
    gap: 60px;
  }
}
.p-top-rightBrokenSection img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-rightBrokenSection__col:first-child {
  flex: 1;
  margin-right: calc(50% - 50vw);
}
.p-top-rightBrokenSection__col:last-child {
  width: 49.2307692308%;
}
@media screen and (max-width: 767px) {
  .p-top-rightBrokenSection__col:last-child {
    width: 100%;
  }
}
.p-top-rightBrokenSection__col--img {
  border-radius: 40px 0 0 40px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-rightBrokenSection__col--img {
    border-radius: 16px 0 0 16px;
  }
}

.p-top-banner {
  background-image: var(--bgImg);
  background-size: cover;
  background-position: var(--bgPos, center);
  padding: 94px 80px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-banner {
    background-image: none;
    padding: 0;
    border-radius: 0;
  }
}
.p-top-banner .c-sectionTitle {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-top-banner .c-sectionTitle {
    box-sizing: content-box;
    width: calc(100% - 20px);
    margin-left: -20px;
    padding: 40px 20px 35px;
    background-image: var(--bgImg);
    background-size: cover;
    background-position: var(--bgPos, center);
    border-radius: 0 16px 16px 0;
  }
}
.p-top-banner .c-btn__wrapper {
  margin-top: 0;
}
.p-top-banner + .p-top-banner {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-banner + .p-top-banner {
    margin-top: 80px;
  }
}

.p-top-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-banner__inner {
    gap: 24px;
  }
}
.p-top-banner__inner > * {
  max-width: 512px;
}
@media screen and (max-width: 767px) {
  .p-top-banner__inner > * {
    max-width: 100%;
  }
}

.p-top-sectionTitleWrapper {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .p-top-sectionTitleWrapper {
    margin-bottom: 32px;
  }
}
.p-top-sectionTitleWrapper .c-sectionTitle {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-sectionTitleWrapper .c-sectionTitle {
    margin-bottom: 16px;
  }
}

.p-otherPageEntry__head, .p-pageEntry__head {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__head, .p-pageEntry__head {
    margin-bottom: 60px;
  }
}

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

.p-otherPageEntry__body, .p-singleEntry, .p-pageEntry__body {
  max-width: 800px;
  margin: 0 auto;
}
.p-otherPageEntry__body a:not([class]), .p-singleEntry a:not([class]), .p-pageEntry__body a:not([class]),
.p-otherPageEntry__body a[class^=u-],
.p-singleEntry a[class^=u-],
.p-pageEntry__body a[class^=u-],
.p-otherPageEntry__body a[class*=wp-],
.p-singleEntry a[class*=wp-],
.p-pageEntry__body a[class*=wp-] {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-otherPageEntry__body a:not([class]):hover, .p-singleEntry a:not([class]):hover, .p-pageEntry__body a:not([class]):hover,
  .p-otherPageEntry__body a[class^=u-]:hover,
  .p-singleEntry a[class^=u-]:hover,
  .p-pageEntry__body a[class^=u-]:hover,
  .p-otherPageEntry__body a[class*=wp-]:hover,
  .p-singleEntry a[class*=wp-]:hover,
  .p-pageEntry__body a[class*=wp-]:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.p-otherPageEntry__body h2:not([class]), .p-singleEntry h2:not([class]), .p-pageEntry__body h2:not([class]),
.p-otherPageEntry__body h2[class^=u-],
.p-singleEntry h2[class^=u-],
.p-pageEntry__body h2[class^=u-],
.p-otherPageEntry__body h2[class*=wp-],
.p-singleEntry h2[class*=wp-],
.p-pageEntry__body h2[class*=wp-] {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body h2:not([class]), .p-singleEntry h2:not([class]), .p-pageEntry__body h2:not([class]),
  .p-otherPageEntry__body h2[class^=u-],
  .p-singleEntry h2[class^=u-],
  .p-pageEntry__body h2[class^=u-],
  .p-otherPageEntry__body h2[class*=wp-],
  .p-singleEntry h2[class*=wp-],
  .p-pageEntry__body h2[class*=wp-] {
    font-size: 20px;
    line-height: 1.2;
  }
}
.p-otherPageEntry__body h3:not([class]), .p-singleEntry h3:not([class]), .p-pageEntry__body h3:not([class]),
.p-otherPageEntry__body h3[class^=u-],
.p-singleEntry h3[class^=u-],
.p-pageEntry__body h3[class^=u-],
.p-otherPageEntry__body h3[class*=wp-],
.p-singleEntry h3[class*=wp-],
.p-pageEntry__body h3[class*=wp-],
.p-otherPageEntry__body h4:not([class]),
.p-singleEntry h4:not([class]),
.p-pageEntry__body h4:not([class]),
.p-otherPageEntry__body h4[class^=u-],
.p-singleEntry h4[class^=u-],
.p-pageEntry__body h4[class^=u-],
.p-otherPageEntry__body h4[class*=wp-],
.p-singleEntry h4[class*=wp-],
.p-pageEntry__body h4[class*=wp-],
.p-otherPageEntry__body h5:not([class]),
.p-singleEntry h5:not([class]),
.p-pageEntry__body h5:not([class]),
.p-otherPageEntry__body h5[class^=u-],
.p-singleEntry h5[class^=u-],
.p-pageEntry__body h5[class^=u-],
.p-otherPageEntry__body h5[class*=wp-],
.p-singleEntry h5[class*=wp-],
.p-pageEntry__body h5[class*=wp-],
.p-otherPageEntry__body h6:not([class]),
.p-singleEntry h6:not([class]),
.p-pageEntry__body h6:not([class]),
.p-otherPageEntry__body h6[class^=u-],
.p-singleEntry h6[class^=u-],
.p-pageEntry__body h6[class^=u-],
.p-otherPageEntry__body h6[class*=wp-],
.p-singleEntry h6[class*=wp-],
.p-pageEntry__body h6[class*=wp-] {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
}
.p-otherPageEntry__body li:not([class]), .p-singleEntry li:not([class]), .p-pageEntry__body li:not([class]),
.p-otherPageEntry__body li[class^=u-],
.p-singleEntry li[class^=u-],
.p-pageEntry__body li[class^=u-],
.p-otherPageEntry__body li[class*=wp-],
.p-singleEntry li[class*=wp-],
.p-pageEntry__body li[class*=wp-] {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body li:not([class]), .p-singleEntry li:not([class]), .p-pageEntry__body li:not([class]),
  .p-otherPageEntry__body li[class^=u-],
  .p-singleEntry li[class^=u-],
  .p-pageEntry__body li[class^=u-],
  .p-otherPageEntry__body li[class*=wp-],
  .p-singleEntry li[class*=wp-],
  .p-pageEntry__body li[class*=wp-] {
    padding-left: 19px;
    margin-bottom: 8px;
  }
}
.p-otherPageEntry__body li:not([class])::before, .p-singleEntry li:not([class])::before, .p-pageEntry__body li:not([class])::before,
.p-otherPageEntry__body li[class^=u-]::before,
.p-singleEntry li[class^=u-]::before,
.p-pageEntry__body li[class^=u-]::before,
.p-otherPageEntry__body li[class*=wp-]::before,
.p-singleEntry li[class*=wp-]::before,
.p-pageEntry__body li[class*=wp-]::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.p-otherPageEntry__body li:not([class]):last-child, .p-singleEntry li:not([class]):last-child, .p-pageEntry__body li:not([class]):last-child,
.p-otherPageEntry__body li[class^=u-]:last-child,
.p-singleEntry li[class^=u-]:last-child,
.p-pageEntry__body li[class^=u-]:last-child,
.p-otherPageEntry__body li[class*=wp-]:last-child,
.p-singleEntry li[class*=wp-]:last-child,
.p-pageEntry__body li[class*=wp-]:last-child {
  margin-bottom: 0;
}
.p-otherPageEntry__body li:not([class]) ul:not([class]), .p-singleEntry li:not([class]) ul:not([class]), .p-pageEntry__body li:not([class]) ul:not([class]),
.p-otherPageEntry__body li:not([class]) ul[class^=u-],
.p-singleEntry li:not([class]) ul[class^=u-],
.p-pageEntry__body li:not([class]) ul[class^=u-],
.p-otherPageEntry__body li:not([class]) ul[class*=wp-],
.p-singleEntry li:not([class]) ul[class*=wp-],
.p-pageEntry__body li:not([class]) ul[class*=wp-],
.p-otherPageEntry__body li:not([class]) ol:not([class]),
.p-singleEntry li:not([class]) ol:not([class]),
.p-pageEntry__body li:not([class]) ol:not([class]),
.p-otherPageEntry__body li:not([class]) ol[class^=u-],
.p-singleEntry li:not([class]) ol[class^=u-],
.p-pageEntry__body li:not([class]) ol[class^=u-],
.p-otherPageEntry__body li:not([class]) ol[class*=wp-],
.p-singleEntry li:not([class]) ol[class*=wp-],
.p-pageEntry__body li:not([class]) ol[class*=wp-],
.p-otherPageEntry__body li[class^=u-] ul:not([class]),
.p-singleEntry li[class^=u-] ul:not([class]),
.p-pageEntry__body li[class^=u-] ul:not([class]),
.p-otherPageEntry__body li[class^=u-] ul[class^=u-],
.p-singleEntry li[class^=u-] ul[class^=u-],
.p-pageEntry__body li[class^=u-] ul[class^=u-],
.p-otherPageEntry__body li[class^=u-] ul[class*=wp-],
.p-singleEntry li[class^=u-] ul[class*=wp-],
.p-pageEntry__body li[class^=u-] ul[class*=wp-],
.p-otherPageEntry__body li[class^=u-] ol:not([class]),
.p-singleEntry li[class^=u-] ol:not([class]),
.p-pageEntry__body li[class^=u-] ol:not([class]),
.p-otherPageEntry__body li[class^=u-] ol[class^=u-],
.p-singleEntry li[class^=u-] ol[class^=u-],
.p-pageEntry__body li[class^=u-] ol[class^=u-],
.p-otherPageEntry__body li[class^=u-] ol[class*=wp-],
.p-singleEntry li[class^=u-] ol[class*=wp-],
.p-pageEntry__body li[class^=u-] ol[class*=wp-],
.p-otherPageEntry__body li[class*=wp-] ul:not([class]),
.p-singleEntry li[class*=wp-] ul:not([class]),
.p-pageEntry__body li[class*=wp-] ul:not([class]),
.p-otherPageEntry__body li[class*=wp-] ul[class^=u-],
.p-singleEntry li[class*=wp-] ul[class^=u-],
.p-pageEntry__body li[class*=wp-] ul[class^=u-],
.p-otherPageEntry__body li[class*=wp-] ul[class*=wp-],
.p-singleEntry li[class*=wp-] ul[class*=wp-],
.p-pageEntry__body li[class*=wp-] ul[class*=wp-],
.p-otherPageEntry__body li[class*=wp-] ol:not([class]),
.p-singleEntry li[class*=wp-] ol:not([class]),
.p-pageEntry__body li[class*=wp-] ol:not([class]),
.p-otherPageEntry__body li[class*=wp-] ol[class^=u-],
.p-singleEntry li[class*=wp-] ol[class^=u-],
.p-pageEntry__body li[class*=wp-] ol[class^=u-],
.p-otherPageEntry__body li[class*=wp-] ol[class*=wp-],
.p-singleEntry li[class*=wp-] ol[class*=wp-],
.p-pageEntry__body li[class*=wp-] ol[class*=wp-] {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body li:not([class]) ul:not([class]), .p-singleEntry li:not([class]) ul:not([class]), .p-pageEntry__body li:not([class]) ul:not([class]),
  .p-otherPageEntry__body li:not([class]) ul[class^=u-],
  .p-singleEntry li:not([class]) ul[class^=u-],
  .p-pageEntry__body li:not([class]) ul[class^=u-],
  .p-otherPageEntry__body li:not([class]) ul[class*=wp-],
  .p-singleEntry li:not([class]) ul[class*=wp-],
  .p-pageEntry__body li:not([class]) ul[class*=wp-],
  .p-otherPageEntry__body li:not([class]) ol:not([class]),
  .p-singleEntry li:not([class]) ol:not([class]),
  .p-pageEntry__body li:not([class]) ol:not([class]),
  .p-otherPageEntry__body li:not([class]) ol[class^=u-],
  .p-singleEntry li:not([class]) ol[class^=u-],
  .p-pageEntry__body li:not([class]) ol[class^=u-],
  .p-otherPageEntry__body li:not([class]) ol[class*=wp-],
  .p-singleEntry li:not([class]) ol[class*=wp-],
  .p-pageEntry__body li:not([class]) ol[class*=wp-],
  .p-otherPageEntry__body li[class^=u-] ul:not([class]),
  .p-singleEntry li[class^=u-] ul:not([class]),
  .p-pageEntry__body li[class^=u-] ul:not([class]),
  .p-otherPageEntry__body li[class^=u-] ul[class^=u-],
  .p-singleEntry li[class^=u-] ul[class^=u-],
  .p-pageEntry__body li[class^=u-] ul[class^=u-],
  .p-otherPageEntry__body li[class^=u-] ul[class*=wp-],
  .p-singleEntry li[class^=u-] ul[class*=wp-],
  .p-pageEntry__body li[class^=u-] ul[class*=wp-],
  .p-otherPageEntry__body li[class^=u-] ol:not([class]),
  .p-singleEntry li[class^=u-] ol:not([class]),
  .p-pageEntry__body li[class^=u-] ol:not([class]),
  .p-otherPageEntry__body li[class^=u-] ol[class^=u-],
  .p-singleEntry li[class^=u-] ol[class^=u-],
  .p-pageEntry__body li[class^=u-] ol[class^=u-],
  .p-otherPageEntry__body li[class^=u-] ol[class*=wp-],
  .p-singleEntry li[class^=u-] ol[class*=wp-],
  .p-pageEntry__body li[class^=u-] ol[class*=wp-],
  .p-otherPageEntry__body li[class*=wp-] ul:not([class]),
  .p-singleEntry li[class*=wp-] ul:not([class]),
  .p-pageEntry__body li[class*=wp-] ul:not([class]),
  .p-otherPageEntry__body li[class*=wp-] ul[class^=u-],
  .p-singleEntry li[class*=wp-] ul[class^=u-],
  .p-pageEntry__body li[class*=wp-] ul[class^=u-],
  .p-otherPageEntry__body li[class*=wp-] ul[class*=wp-],
  .p-singleEntry li[class*=wp-] ul[class*=wp-],
  .p-pageEntry__body li[class*=wp-] ul[class*=wp-],
  .p-otherPageEntry__body li[class*=wp-] ol:not([class]),
  .p-singleEntry li[class*=wp-] ol:not([class]),
  .p-pageEntry__body li[class*=wp-] ol:not([class]),
  .p-otherPageEntry__body li[class*=wp-] ol[class^=u-],
  .p-singleEntry li[class*=wp-] ol[class^=u-],
  .p-pageEntry__body li[class*=wp-] ol[class^=u-],
  .p-otherPageEntry__body li[class*=wp-] ol[class*=wp-],
  .p-singleEntry li[class*=wp-] ol[class*=wp-],
  .p-pageEntry__body li[class*=wp-] ol[class*=wp-] {
    margin-top: 4px;
  }
}
.p-otherPageEntry__body li:not([class]) ul:not([class]) li:not([class]), .p-singleEntry li:not([class]) ul:not([class]) li:not([class]), .p-pageEntry__body li:not([class]) ul:not([class]) li:not([class]),
.p-otherPageEntry__body li:not([class]) ul:not([class]) li[class^=u-],
.p-singleEntry li:not([class]) ul:not([class]) li[class^=u-],
.p-pageEntry__body li:not([class]) ul:not([class]) li[class^=u-],
.p-otherPageEntry__body li:not([class]) ul:not([class]) li[class*=wp-],
.p-singleEntry li:not([class]) ul:not([class]) li[class*=wp-],
.p-pageEntry__body li:not([class]) ul:not([class]) li[class*=wp-],
.p-otherPageEntry__body li:not([class]) ul[class^=u-] li:not([class]),
.p-singleEntry li:not([class]) ul[class^=u-] li:not([class]),
.p-pageEntry__body li:not([class]) ul[class^=u-] li:not([class]),
.p-otherPageEntry__body li:not([class]) ul[class^=u-] li[class^=u-],
.p-singleEntry li:not([class]) ul[class^=u-] li[class^=u-],
.p-pageEntry__body li:not([class]) ul[class^=u-] li[class^=u-],
.p-otherPageEntry__body li:not([class]) ul[class^=u-] li[class*=wp-],
.p-singleEntry li:not([class]) ul[class^=u-] li[class*=wp-],
.p-pageEntry__body li:not([class]) ul[class^=u-] li[class*=wp-],
.p-otherPageEntry__body li:not([class]) ul[class*=wp-] li:not([class]),
.p-singleEntry li:not([class]) ul[class*=wp-] li:not([class]),
.p-pageEntry__body li:not([class]) ul[class*=wp-] li:not([class]),
.p-otherPageEntry__body li:not([class]) ul[class*=wp-] li[class^=u-],
.p-singleEntry li:not([class]) ul[class*=wp-] li[class^=u-],
.p-pageEntry__body li:not([class]) ul[class*=wp-] li[class^=u-],
.p-otherPageEntry__body li:not([class]) ul[class*=wp-] li[class*=wp-],
.p-singleEntry li:not([class]) ul[class*=wp-] li[class*=wp-],
.p-pageEntry__body li:not([class]) ul[class*=wp-] li[class*=wp-],
.p-otherPageEntry__body li:not([class]) ol:not([class]) li:not([class]),
.p-singleEntry li:not([class]) ol:not([class]) li:not([class]),
.p-pageEntry__body li:not([class]) ol:not([class]) li:not([class]),
.p-otherPageEntry__body li:not([class]) ol:not([class]) li[class^=u-],
.p-singleEntry li:not([class]) ol:not([class]) li[class^=u-],
.p-pageEntry__body li:not([class]) ol:not([class]) li[class^=u-],
.p-otherPageEntry__body li:not([class]) ol:not([class]) li[class*=wp-],
.p-singleEntry li:not([class]) ol:not([class]) li[class*=wp-],
.p-pageEntry__body li:not([class]) ol:not([class]) li[class*=wp-],
.p-otherPageEntry__body li:not([class]) ol[class^=u-] li:not([class]),
.p-singleEntry li:not([class]) ol[class^=u-] li:not([class]),
.p-pageEntry__body li:not([class]) ol[class^=u-] li:not([class]),
.p-otherPageEntry__body li:not([class]) ol[class^=u-] li[class^=u-],
.p-singleEntry li:not([class]) ol[class^=u-] li[class^=u-],
.p-pageEntry__body li:not([class]) ol[class^=u-] li[class^=u-],
.p-otherPageEntry__body li:not([class]) ol[class^=u-] li[class*=wp-],
.p-singleEntry li:not([class]) ol[class^=u-] li[class*=wp-],
.p-pageEntry__body li:not([class]) ol[class^=u-] li[class*=wp-],
.p-otherPageEntry__body li:not([class]) ol[class*=wp-] li:not([class]),
.p-singleEntry li:not([class]) ol[class*=wp-] li:not([class]),
.p-pageEntry__body li:not([class]) ol[class*=wp-] li:not([class]),
.p-otherPageEntry__body li:not([class]) ol[class*=wp-] li[class^=u-],
.p-singleEntry li:not([class]) ol[class*=wp-] li[class^=u-],
.p-pageEntry__body li:not([class]) ol[class*=wp-] li[class^=u-],
.p-otherPageEntry__body li:not([class]) ol[class*=wp-] li[class*=wp-],
.p-singleEntry li:not([class]) ol[class*=wp-] li[class*=wp-],
.p-pageEntry__body li:not([class]) ol[class*=wp-] li[class*=wp-],
.p-otherPageEntry__body li[class^=u-] ul:not([class]) li:not([class]),
.p-singleEntry li[class^=u-] ul:not([class]) li:not([class]),
.p-pageEntry__body li[class^=u-] ul:not([class]) li:not([class]),
.p-otherPageEntry__body li[class^=u-] ul:not([class]) li[class^=u-],
.p-singleEntry li[class^=u-] ul:not([class]) li[class^=u-],
.p-pageEntry__body li[class^=u-] ul:not([class]) li[class^=u-],
.p-otherPageEntry__body li[class^=u-] ul:not([class]) li[class*=wp-],
.p-singleEntry li[class^=u-] ul:not([class]) li[class*=wp-],
.p-pageEntry__body li[class^=u-] ul:not([class]) li[class*=wp-],
.p-otherPageEntry__body li[class^=u-] ul[class^=u-] li:not([class]),
.p-singleEntry li[class^=u-] ul[class^=u-] li:not([class]),
.p-pageEntry__body li[class^=u-] ul[class^=u-] li:not([class]),
.p-otherPageEntry__body li[class^=u-] ul[class^=u-] li[class^=u-],
.p-singleEntry li[class^=u-] ul[class^=u-] li[class^=u-],
.p-pageEntry__body li[class^=u-] ul[class^=u-] li[class^=u-],
.p-otherPageEntry__body li[class^=u-] ul[class^=u-] li[class*=wp-],
.p-singleEntry li[class^=u-] ul[class^=u-] li[class*=wp-],
.p-pageEntry__body li[class^=u-] ul[class^=u-] li[class*=wp-],
.p-otherPageEntry__body li[class^=u-] ul[class*=wp-] li:not([class]),
.p-singleEntry li[class^=u-] ul[class*=wp-] li:not([class]),
.p-pageEntry__body li[class^=u-] ul[class*=wp-] li:not([class]),
.p-otherPageEntry__body li[class^=u-] ul[class*=wp-] li[class^=u-],
.p-singleEntry li[class^=u-] ul[class*=wp-] li[class^=u-],
.p-pageEntry__body li[class^=u-] ul[class*=wp-] li[class^=u-],
.p-otherPageEntry__body li[class^=u-] ul[class*=wp-] li[class*=wp-],
.p-singleEntry li[class^=u-] ul[class*=wp-] li[class*=wp-],
.p-pageEntry__body li[class^=u-] ul[class*=wp-] li[class*=wp-],
.p-otherPageEntry__body li[class^=u-] ol:not([class]) li:not([class]),
.p-singleEntry li[class^=u-] ol:not([class]) li:not([class]),
.p-pageEntry__body li[class^=u-] ol:not([class]) li:not([class]),
.p-otherPageEntry__body li[class^=u-] ol:not([class]) li[class^=u-],
.p-singleEntry li[class^=u-] ol:not([class]) li[class^=u-],
.p-pageEntry__body li[class^=u-] ol:not([class]) li[class^=u-],
.p-otherPageEntry__body li[class^=u-] ol:not([class]) li[class*=wp-],
.p-singleEntry li[class^=u-] ol:not([class]) li[class*=wp-],
.p-pageEntry__body li[class^=u-] ol:not([class]) li[class*=wp-],
.p-otherPageEntry__body li[class^=u-] ol[class^=u-] li:not([class]),
.p-singleEntry li[class^=u-] ol[class^=u-] li:not([class]),
.p-pageEntry__body li[class^=u-] ol[class^=u-] li:not([class]),
.p-otherPageEntry__body li[class^=u-] ol[class^=u-] li[class^=u-],
.p-singleEntry li[class^=u-] ol[class^=u-] li[class^=u-],
.p-pageEntry__body li[class^=u-] ol[class^=u-] li[class^=u-],
.p-otherPageEntry__body li[class^=u-] ol[class^=u-] li[class*=wp-],
.p-singleEntry li[class^=u-] ol[class^=u-] li[class*=wp-],
.p-pageEntry__body li[class^=u-] ol[class^=u-] li[class*=wp-],
.p-otherPageEntry__body li[class^=u-] ol[class*=wp-] li:not([class]),
.p-singleEntry li[class^=u-] ol[class*=wp-] li:not([class]),
.p-pageEntry__body li[class^=u-] ol[class*=wp-] li:not([class]),
.p-otherPageEntry__body li[class^=u-] ol[class*=wp-] li[class^=u-],
.p-singleEntry li[class^=u-] ol[class*=wp-] li[class^=u-],
.p-pageEntry__body li[class^=u-] ol[class*=wp-] li[class^=u-],
.p-otherPageEntry__body li[class^=u-] ol[class*=wp-] li[class*=wp-],
.p-singleEntry li[class^=u-] ol[class*=wp-] li[class*=wp-],
.p-pageEntry__body li[class^=u-] ol[class*=wp-] li[class*=wp-],
.p-otherPageEntry__body li[class*=wp-] ul:not([class]) li:not([class]),
.p-singleEntry li[class*=wp-] ul:not([class]) li:not([class]),
.p-pageEntry__body li[class*=wp-] ul:not([class]) li:not([class]),
.p-otherPageEntry__body li[class*=wp-] ul:not([class]) li[class^=u-],
.p-singleEntry li[class*=wp-] ul:not([class]) li[class^=u-],
.p-pageEntry__body li[class*=wp-] ul:not([class]) li[class^=u-],
.p-otherPageEntry__body li[class*=wp-] ul:not([class]) li[class*=wp-],
.p-singleEntry li[class*=wp-] ul:not([class]) li[class*=wp-],
.p-pageEntry__body li[class*=wp-] ul:not([class]) li[class*=wp-],
.p-otherPageEntry__body li[class*=wp-] ul[class^=u-] li:not([class]),
.p-singleEntry li[class*=wp-] ul[class^=u-] li:not([class]),
.p-pageEntry__body li[class*=wp-] ul[class^=u-] li:not([class]),
.p-otherPageEntry__body li[class*=wp-] ul[class^=u-] li[class^=u-],
.p-singleEntry li[class*=wp-] ul[class^=u-] li[class^=u-],
.p-pageEntry__body li[class*=wp-] ul[class^=u-] li[class^=u-],
.p-otherPageEntry__body li[class*=wp-] ul[class^=u-] li[class*=wp-],
.p-singleEntry li[class*=wp-] ul[class^=u-] li[class*=wp-],
.p-pageEntry__body li[class*=wp-] ul[class^=u-] li[class*=wp-],
.p-otherPageEntry__body li[class*=wp-] ul[class*=wp-] li:not([class]),
.p-singleEntry li[class*=wp-] ul[class*=wp-] li:not([class]),
.p-pageEntry__body li[class*=wp-] ul[class*=wp-] li:not([class]),
.p-otherPageEntry__body li[class*=wp-] ul[class*=wp-] li[class^=u-],
.p-singleEntry li[class*=wp-] ul[class*=wp-] li[class^=u-],
.p-pageEntry__body li[class*=wp-] ul[class*=wp-] li[class^=u-],
.p-otherPageEntry__body li[class*=wp-] ul[class*=wp-] li[class*=wp-],
.p-singleEntry li[class*=wp-] ul[class*=wp-] li[class*=wp-],
.p-pageEntry__body li[class*=wp-] ul[class*=wp-] li[class*=wp-],
.p-otherPageEntry__body li[class*=wp-] ol:not([class]) li:not([class]),
.p-singleEntry li[class*=wp-] ol:not([class]) li:not([class]),
.p-pageEntry__body li[class*=wp-] ol:not([class]) li:not([class]),
.p-otherPageEntry__body li[class*=wp-] ol:not([class]) li[class^=u-],
.p-singleEntry li[class*=wp-] ol:not([class]) li[class^=u-],
.p-pageEntry__body li[class*=wp-] ol:not([class]) li[class^=u-],
.p-otherPageEntry__body li[class*=wp-] ol:not([class]) li[class*=wp-],
.p-singleEntry li[class*=wp-] ol:not([class]) li[class*=wp-],
.p-pageEntry__body li[class*=wp-] ol:not([class]) li[class*=wp-],
.p-otherPageEntry__body li[class*=wp-] ol[class^=u-] li:not([class]),
.p-singleEntry li[class*=wp-] ol[class^=u-] li:not([class]),
.p-pageEntry__body li[class*=wp-] ol[class^=u-] li:not([class]),
.p-otherPageEntry__body li[class*=wp-] ol[class^=u-] li[class^=u-],
.p-singleEntry li[class*=wp-] ol[class^=u-] li[class^=u-],
.p-pageEntry__body li[class*=wp-] ol[class^=u-] li[class^=u-],
.p-otherPageEntry__body li[class*=wp-] ol[class^=u-] li[class*=wp-],
.p-singleEntry li[class*=wp-] ol[class^=u-] li[class*=wp-],
.p-pageEntry__body li[class*=wp-] ol[class^=u-] li[class*=wp-],
.p-otherPageEntry__body li[class*=wp-] ol[class*=wp-] li:not([class]),
.p-singleEntry li[class*=wp-] ol[class*=wp-] li:not([class]),
.p-pageEntry__body li[class*=wp-] ol[class*=wp-] li:not([class]),
.p-otherPageEntry__body li[class*=wp-] ol[class*=wp-] li[class^=u-],
.p-singleEntry li[class*=wp-] ol[class*=wp-] li[class^=u-],
.p-pageEntry__body li[class*=wp-] ol[class*=wp-] li[class^=u-],
.p-otherPageEntry__body li[class*=wp-] ol[class*=wp-] li[class*=wp-],
.p-singleEntry li[class*=wp-] ol[class*=wp-] li[class*=wp-],
.p-pageEntry__body li[class*=wp-] ol[class*=wp-] li[class*=wp-] {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body li:not([class]) ul:not([class]) li:not([class]), .p-singleEntry li:not([class]) ul:not([class]) li:not([class]), .p-pageEntry__body li:not([class]) ul:not([class]) li:not([class]),
  .p-otherPageEntry__body li:not([class]) ul:not([class]) li[class^=u-],
  .p-singleEntry li:not([class]) ul:not([class]) li[class^=u-],
  .p-pageEntry__body li:not([class]) ul:not([class]) li[class^=u-],
  .p-otherPageEntry__body li:not([class]) ul:not([class]) li[class*=wp-],
  .p-singleEntry li:not([class]) ul:not([class]) li[class*=wp-],
  .p-pageEntry__body li:not([class]) ul:not([class]) li[class*=wp-],
  .p-otherPageEntry__body li:not([class]) ul[class^=u-] li:not([class]),
  .p-singleEntry li:not([class]) ul[class^=u-] li:not([class]),
  .p-pageEntry__body li:not([class]) ul[class^=u-] li:not([class]),
  .p-otherPageEntry__body li:not([class]) ul[class^=u-] li[class^=u-],
  .p-singleEntry li:not([class]) ul[class^=u-] li[class^=u-],
  .p-pageEntry__body li:not([class]) ul[class^=u-] li[class^=u-],
  .p-otherPageEntry__body li:not([class]) ul[class^=u-] li[class*=wp-],
  .p-singleEntry li:not([class]) ul[class^=u-] li[class*=wp-],
  .p-pageEntry__body li:not([class]) ul[class^=u-] li[class*=wp-],
  .p-otherPageEntry__body li:not([class]) ul[class*=wp-] li:not([class]),
  .p-singleEntry li:not([class]) ul[class*=wp-] li:not([class]),
  .p-pageEntry__body li:not([class]) ul[class*=wp-] li:not([class]),
  .p-otherPageEntry__body li:not([class]) ul[class*=wp-] li[class^=u-],
  .p-singleEntry li:not([class]) ul[class*=wp-] li[class^=u-],
  .p-pageEntry__body li:not([class]) ul[class*=wp-] li[class^=u-],
  .p-otherPageEntry__body li:not([class]) ul[class*=wp-] li[class*=wp-],
  .p-singleEntry li:not([class]) ul[class*=wp-] li[class*=wp-],
  .p-pageEntry__body li:not([class]) ul[class*=wp-] li[class*=wp-],
  .p-otherPageEntry__body li:not([class]) ol:not([class]) li:not([class]),
  .p-singleEntry li:not([class]) ol:not([class]) li:not([class]),
  .p-pageEntry__body li:not([class]) ol:not([class]) li:not([class]),
  .p-otherPageEntry__body li:not([class]) ol:not([class]) li[class^=u-],
  .p-singleEntry li:not([class]) ol:not([class]) li[class^=u-],
  .p-pageEntry__body li:not([class]) ol:not([class]) li[class^=u-],
  .p-otherPageEntry__body li:not([class]) ol:not([class]) li[class*=wp-],
  .p-singleEntry li:not([class]) ol:not([class]) li[class*=wp-],
  .p-pageEntry__body li:not([class]) ol:not([class]) li[class*=wp-],
  .p-otherPageEntry__body li:not([class]) ol[class^=u-] li:not([class]),
  .p-singleEntry li:not([class]) ol[class^=u-] li:not([class]),
  .p-pageEntry__body li:not([class]) ol[class^=u-] li:not([class]),
  .p-otherPageEntry__body li:not([class]) ol[class^=u-] li[class^=u-],
  .p-singleEntry li:not([class]) ol[class^=u-] li[class^=u-],
  .p-pageEntry__body li:not([class]) ol[class^=u-] li[class^=u-],
  .p-otherPageEntry__body li:not([class]) ol[class^=u-] li[class*=wp-],
  .p-singleEntry li:not([class]) ol[class^=u-] li[class*=wp-],
  .p-pageEntry__body li:not([class]) ol[class^=u-] li[class*=wp-],
  .p-otherPageEntry__body li:not([class]) ol[class*=wp-] li:not([class]),
  .p-singleEntry li:not([class]) ol[class*=wp-] li:not([class]),
  .p-pageEntry__body li:not([class]) ol[class*=wp-] li:not([class]),
  .p-otherPageEntry__body li:not([class]) ol[class*=wp-] li[class^=u-],
  .p-singleEntry li:not([class]) ol[class*=wp-] li[class^=u-],
  .p-pageEntry__body li:not([class]) ol[class*=wp-] li[class^=u-],
  .p-otherPageEntry__body li:not([class]) ol[class*=wp-] li[class*=wp-],
  .p-singleEntry li:not([class]) ol[class*=wp-] li[class*=wp-],
  .p-pageEntry__body li:not([class]) ol[class*=wp-] li[class*=wp-],
  .p-otherPageEntry__body li[class^=u-] ul:not([class]) li:not([class]),
  .p-singleEntry li[class^=u-] ul:not([class]) li:not([class]),
  .p-pageEntry__body li[class^=u-] ul:not([class]) li:not([class]),
  .p-otherPageEntry__body li[class^=u-] ul:not([class]) li[class^=u-],
  .p-singleEntry li[class^=u-] ul:not([class]) li[class^=u-],
  .p-pageEntry__body li[class^=u-] ul:not([class]) li[class^=u-],
  .p-otherPageEntry__body li[class^=u-] ul:not([class]) li[class*=wp-],
  .p-singleEntry li[class^=u-] ul:not([class]) li[class*=wp-],
  .p-pageEntry__body li[class^=u-] ul:not([class]) li[class*=wp-],
  .p-otherPageEntry__body li[class^=u-] ul[class^=u-] li:not([class]),
  .p-singleEntry li[class^=u-] ul[class^=u-] li:not([class]),
  .p-pageEntry__body li[class^=u-] ul[class^=u-] li:not([class]),
  .p-otherPageEntry__body li[class^=u-] ul[class^=u-] li[class^=u-],
  .p-singleEntry li[class^=u-] ul[class^=u-] li[class^=u-],
  .p-pageEntry__body li[class^=u-] ul[class^=u-] li[class^=u-],
  .p-otherPageEntry__body li[class^=u-] ul[class^=u-] li[class*=wp-],
  .p-singleEntry li[class^=u-] ul[class^=u-] li[class*=wp-],
  .p-pageEntry__body li[class^=u-] ul[class^=u-] li[class*=wp-],
  .p-otherPageEntry__body li[class^=u-] ul[class*=wp-] li:not([class]),
  .p-singleEntry li[class^=u-] ul[class*=wp-] li:not([class]),
  .p-pageEntry__body li[class^=u-] ul[class*=wp-] li:not([class]),
  .p-otherPageEntry__body li[class^=u-] ul[class*=wp-] li[class^=u-],
  .p-singleEntry li[class^=u-] ul[class*=wp-] li[class^=u-],
  .p-pageEntry__body li[class^=u-] ul[class*=wp-] li[class^=u-],
  .p-otherPageEntry__body li[class^=u-] ul[class*=wp-] li[class*=wp-],
  .p-singleEntry li[class^=u-] ul[class*=wp-] li[class*=wp-],
  .p-pageEntry__body li[class^=u-] ul[class*=wp-] li[class*=wp-],
  .p-otherPageEntry__body li[class^=u-] ol:not([class]) li:not([class]),
  .p-singleEntry li[class^=u-] ol:not([class]) li:not([class]),
  .p-pageEntry__body li[class^=u-] ol:not([class]) li:not([class]),
  .p-otherPageEntry__body li[class^=u-] ol:not([class]) li[class^=u-],
  .p-singleEntry li[class^=u-] ol:not([class]) li[class^=u-],
  .p-pageEntry__body li[class^=u-] ol:not([class]) li[class^=u-],
  .p-otherPageEntry__body li[class^=u-] ol:not([class]) li[class*=wp-],
  .p-singleEntry li[class^=u-] ol:not([class]) li[class*=wp-],
  .p-pageEntry__body li[class^=u-] ol:not([class]) li[class*=wp-],
  .p-otherPageEntry__body li[class^=u-] ol[class^=u-] li:not([class]),
  .p-singleEntry li[class^=u-] ol[class^=u-] li:not([class]),
  .p-pageEntry__body li[class^=u-] ol[class^=u-] li:not([class]),
  .p-otherPageEntry__body li[class^=u-] ol[class^=u-] li[class^=u-],
  .p-singleEntry li[class^=u-] ol[class^=u-] li[class^=u-],
  .p-pageEntry__body li[class^=u-] ol[class^=u-] li[class^=u-],
  .p-otherPageEntry__body li[class^=u-] ol[class^=u-] li[class*=wp-],
  .p-singleEntry li[class^=u-] ol[class^=u-] li[class*=wp-],
  .p-pageEntry__body li[class^=u-] ol[class^=u-] li[class*=wp-],
  .p-otherPageEntry__body li[class^=u-] ol[class*=wp-] li:not([class]),
  .p-singleEntry li[class^=u-] ol[class*=wp-] li:not([class]),
  .p-pageEntry__body li[class^=u-] ol[class*=wp-] li:not([class]),
  .p-otherPageEntry__body li[class^=u-] ol[class*=wp-] li[class^=u-],
  .p-singleEntry li[class^=u-] ol[class*=wp-] li[class^=u-],
  .p-pageEntry__body li[class^=u-] ol[class*=wp-] li[class^=u-],
  .p-otherPageEntry__body li[class^=u-] ol[class*=wp-] li[class*=wp-],
  .p-singleEntry li[class^=u-] ol[class*=wp-] li[class*=wp-],
  .p-pageEntry__body li[class^=u-] ol[class*=wp-] li[class*=wp-],
  .p-otherPageEntry__body li[class*=wp-] ul:not([class]) li:not([class]),
  .p-singleEntry li[class*=wp-] ul:not([class]) li:not([class]),
  .p-pageEntry__body li[class*=wp-] ul:not([class]) li:not([class]),
  .p-otherPageEntry__body li[class*=wp-] ul:not([class]) li[class^=u-],
  .p-singleEntry li[class*=wp-] ul:not([class]) li[class^=u-],
  .p-pageEntry__body li[class*=wp-] ul:not([class]) li[class^=u-],
  .p-otherPageEntry__body li[class*=wp-] ul:not([class]) li[class*=wp-],
  .p-singleEntry li[class*=wp-] ul:not([class]) li[class*=wp-],
  .p-pageEntry__body li[class*=wp-] ul:not([class]) li[class*=wp-],
  .p-otherPageEntry__body li[class*=wp-] ul[class^=u-] li:not([class]),
  .p-singleEntry li[class*=wp-] ul[class^=u-] li:not([class]),
  .p-pageEntry__body li[class*=wp-] ul[class^=u-] li:not([class]),
  .p-otherPageEntry__body li[class*=wp-] ul[class^=u-] li[class^=u-],
  .p-singleEntry li[class*=wp-] ul[class^=u-] li[class^=u-],
  .p-pageEntry__body li[class*=wp-] ul[class^=u-] li[class^=u-],
  .p-otherPageEntry__body li[class*=wp-] ul[class^=u-] li[class*=wp-],
  .p-singleEntry li[class*=wp-] ul[class^=u-] li[class*=wp-],
  .p-pageEntry__body li[class*=wp-] ul[class^=u-] li[class*=wp-],
  .p-otherPageEntry__body li[class*=wp-] ul[class*=wp-] li:not([class]),
  .p-singleEntry li[class*=wp-] ul[class*=wp-] li:not([class]),
  .p-pageEntry__body li[class*=wp-] ul[class*=wp-] li:not([class]),
  .p-otherPageEntry__body li[class*=wp-] ul[class*=wp-] li[class^=u-],
  .p-singleEntry li[class*=wp-] ul[class*=wp-] li[class^=u-],
  .p-pageEntry__body li[class*=wp-] ul[class*=wp-] li[class^=u-],
  .p-otherPageEntry__body li[class*=wp-] ul[class*=wp-] li[class*=wp-],
  .p-singleEntry li[class*=wp-] ul[class*=wp-] li[class*=wp-],
  .p-pageEntry__body li[class*=wp-] ul[class*=wp-] li[class*=wp-],
  .p-otherPageEntry__body li[class*=wp-] ol:not([class]) li:not([class]),
  .p-singleEntry li[class*=wp-] ol:not([class]) li:not([class]),
  .p-pageEntry__body li[class*=wp-] ol:not([class]) li:not([class]),
  .p-otherPageEntry__body li[class*=wp-] ol:not([class]) li[class^=u-],
  .p-singleEntry li[class*=wp-] ol:not([class]) li[class^=u-],
  .p-pageEntry__body li[class*=wp-] ol:not([class]) li[class^=u-],
  .p-otherPageEntry__body li[class*=wp-] ol:not([class]) li[class*=wp-],
  .p-singleEntry li[class*=wp-] ol:not([class]) li[class*=wp-],
  .p-pageEntry__body li[class*=wp-] ol:not([class]) li[class*=wp-],
  .p-otherPageEntry__body li[class*=wp-] ol[class^=u-] li:not([class]),
  .p-singleEntry li[class*=wp-] ol[class^=u-] li:not([class]),
  .p-pageEntry__body li[class*=wp-] ol[class^=u-] li:not([class]),
  .p-otherPageEntry__body li[class*=wp-] ol[class^=u-] li[class^=u-],
  .p-singleEntry li[class*=wp-] ol[class^=u-] li[class^=u-],
  .p-pageEntry__body li[class*=wp-] ol[class^=u-] li[class^=u-],
  .p-otherPageEntry__body li[class*=wp-] ol[class^=u-] li[class*=wp-],
  .p-singleEntry li[class*=wp-] ol[class^=u-] li[class*=wp-],
  .p-pageEntry__body li[class*=wp-] ol[class^=u-] li[class*=wp-],
  .p-otherPageEntry__body li[class*=wp-] ol[class*=wp-] li:not([class]),
  .p-singleEntry li[class*=wp-] ol[class*=wp-] li:not([class]),
  .p-pageEntry__body li[class*=wp-] ol[class*=wp-] li:not([class]),
  .p-otherPageEntry__body li[class*=wp-] ol[class*=wp-] li[class^=u-],
  .p-singleEntry li[class*=wp-] ol[class*=wp-] li[class^=u-],
  .p-pageEntry__body li[class*=wp-] ol[class*=wp-] li[class^=u-],
  .p-otherPageEntry__body li[class*=wp-] ol[class*=wp-] li[class*=wp-],
  .p-singleEntry li[class*=wp-] ol[class*=wp-] li[class*=wp-],
  .p-pageEntry__body li[class*=wp-] ol[class*=wp-] li[class*=wp-] {
    margin-bottom: 4px;
  }
}
.p-otherPageEntry__body li:not([class]) ul:not([class]) li:not([class]):last-child, .p-singleEntry li:not([class]) ul:not([class]) li:not([class]):last-child, .p-pageEntry__body li:not([class]) ul:not([class]) li:not([class]):last-child,
.p-otherPageEntry__body li:not([class]) ul:not([class]) li[class^=u-]:last-child,
.p-singleEntry li:not([class]) ul:not([class]) li[class^=u-]:last-child,
.p-pageEntry__body li:not([class]) ul:not([class]) li[class^=u-]:last-child,
.p-otherPageEntry__body li:not([class]) ul:not([class]) li[class*=wp-]:last-child,
.p-singleEntry li:not([class]) ul:not([class]) li[class*=wp-]:last-child,
.p-pageEntry__body li:not([class]) ul:not([class]) li[class*=wp-]:last-child,
.p-otherPageEntry__body li:not([class]) ul[class^=u-] li:not([class]):last-child,
.p-singleEntry li:not([class]) ul[class^=u-] li:not([class]):last-child,
.p-pageEntry__body li:not([class]) ul[class^=u-] li:not([class]):last-child,
.p-otherPageEntry__body li:not([class]) ul[class^=u-] li[class^=u-]:last-child,
.p-singleEntry li:not([class]) ul[class^=u-] li[class^=u-]:last-child,
.p-pageEntry__body li:not([class]) ul[class^=u-] li[class^=u-]:last-child,
.p-otherPageEntry__body li:not([class]) ul[class^=u-] li[class*=wp-]:last-child,
.p-singleEntry li:not([class]) ul[class^=u-] li[class*=wp-]:last-child,
.p-pageEntry__body li:not([class]) ul[class^=u-] li[class*=wp-]:last-child,
.p-otherPageEntry__body li:not([class]) ul[class*=wp-] li:not([class]):last-child,
.p-singleEntry li:not([class]) ul[class*=wp-] li:not([class]):last-child,
.p-pageEntry__body li:not([class]) ul[class*=wp-] li:not([class]):last-child,
.p-otherPageEntry__body li:not([class]) ul[class*=wp-] li[class^=u-]:last-child,
.p-singleEntry li:not([class]) ul[class*=wp-] li[class^=u-]:last-child,
.p-pageEntry__body li:not([class]) ul[class*=wp-] li[class^=u-]:last-child,
.p-otherPageEntry__body li:not([class]) ul[class*=wp-] li[class*=wp-]:last-child,
.p-singleEntry li:not([class]) ul[class*=wp-] li[class*=wp-]:last-child,
.p-pageEntry__body li:not([class]) ul[class*=wp-] li[class*=wp-]:last-child,
.p-otherPageEntry__body li:not([class]) ol:not([class]) li:not([class]):last-child,
.p-singleEntry li:not([class]) ol:not([class]) li:not([class]):last-child,
.p-pageEntry__body li:not([class]) ol:not([class]) li:not([class]):last-child,
.p-otherPageEntry__body li:not([class]) ol:not([class]) li[class^=u-]:last-child,
.p-singleEntry li:not([class]) ol:not([class]) li[class^=u-]:last-child,
.p-pageEntry__body li:not([class]) ol:not([class]) li[class^=u-]:last-child,
.p-otherPageEntry__body li:not([class]) ol:not([class]) li[class*=wp-]:last-child,
.p-singleEntry li:not([class]) ol:not([class]) li[class*=wp-]:last-child,
.p-pageEntry__body li:not([class]) ol:not([class]) li[class*=wp-]:last-child,
.p-otherPageEntry__body li:not([class]) ol[class^=u-] li:not([class]):last-child,
.p-singleEntry li:not([class]) ol[class^=u-] li:not([class]):last-child,
.p-pageEntry__body li:not([class]) ol[class^=u-] li:not([class]):last-child,
.p-otherPageEntry__body li:not([class]) ol[class^=u-] li[class^=u-]:last-child,
.p-singleEntry li:not([class]) ol[class^=u-] li[class^=u-]:last-child,
.p-pageEntry__body li:not([class]) ol[class^=u-] li[class^=u-]:last-child,
.p-otherPageEntry__body li:not([class]) ol[class^=u-] li[class*=wp-]:last-child,
.p-singleEntry li:not([class]) ol[class^=u-] li[class*=wp-]:last-child,
.p-pageEntry__body li:not([class]) ol[class^=u-] li[class*=wp-]:last-child,
.p-otherPageEntry__body li:not([class]) ol[class*=wp-] li:not([class]):last-child,
.p-singleEntry li:not([class]) ol[class*=wp-] li:not([class]):last-child,
.p-pageEntry__body li:not([class]) ol[class*=wp-] li:not([class]):last-child,
.p-otherPageEntry__body li:not([class]) ol[class*=wp-] li[class^=u-]:last-child,
.p-singleEntry li:not([class]) ol[class*=wp-] li[class^=u-]:last-child,
.p-pageEntry__body li:not([class]) ol[class*=wp-] li[class^=u-]:last-child,
.p-otherPageEntry__body li:not([class]) ol[class*=wp-] li[class*=wp-]:last-child,
.p-singleEntry li:not([class]) ol[class*=wp-] li[class*=wp-]:last-child,
.p-pageEntry__body li:not([class]) ol[class*=wp-] li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class^=u-] ul:not([class]) li:not([class]):last-child,
.p-singleEntry li[class^=u-] ul:not([class]) li:not([class]):last-child,
.p-pageEntry__body li[class^=u-] ul:not([class]) li:not([class]):last-child,
.p-otherPageEntry__body li[class^=u-] ul:not([class]) li[class^=u-]:last-child,
.p-singleEntry li[class^=u-] ul:not([class]) li[class^=u-]:last-child,
.p-pageEntry__body li[class^=u-] ul:not([class]) li[class^=u-]:last-child,
.p-otherPageEntry__body li[class^=u-] ul:not([class]) li[class*=wp-]:last-child,
.p-singleEntry li[class^=u-] ul:not([class]) li[class*=wp-]:last-child,
.p-pageEntry__body li[class^=u-] ul:not([class]) li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class^=u-] ul[class^=u-] li:not([class]):last-child,
.p-singleEntry li[class^=u-] ul[class^=u-] li:not([class]):last-child,
.p-pageEntry__body li[class^=u-] ul[class^=u-] li:not([class]):last-child,
.p-otherPageEntry__body li[class^=u-] ul[class^=u-] li[class^=u-]:last-child,
.p-singleEntry li[class^=u-] ul[class^=u-] li[class^=u-]:last-child,
.p-pageEntry__body li[class^=u-] ul[class^=u-] li[class^=u-]:last-child,
.p-otherPageEntry__body li[class^=u-] ul[class^=u-] li[class*=wp-]:last-child,
.p-singleEntry li[class^=u-] ul[class^=u-] li[class*=wp-]:last-child,
.p-pageEntry__body li[class^=u-] ul[class^=u-] li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class^=u-] ul[class*=wp-] li:not([class]):last-child,
.p-singleEntry li[class^=u-] ul[class*=wp-] li:not([class]):last-child,
.p-pageEntry__body li[class^=u-] ul[class*=wp-] li:not([class]):last-child,
.p-otherPageEntry__body li[class^=u-] ul[class*=wp-] li[class^=u-]:last-child,
.p-singleEntry li[class^=u-] ul[class*=wp-] li[class^=u-]:last-child,
.p-pageEntry__body li[class^=u-] ul[class*=wp-] li[class^=u-]:last-child,
.p-otherPageEntry__body li[class^=u-] ul[class*=wp-] li[class*=wp-]:last-child,
.p-singleEntry li[class^=u-] ul[class*=wp-] li[class*=wp-]:last-child,
.p-pageEntry__body li[class^=u-] ul[class*=wp-] li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class^=u-] ol:not([class]) li:not([class]):last-child,
.p-singleEntry li[class^=u-] ol:not([class]) li:not([class]):last-child,
.p-pageEntry__body li[class^=u-] ol:not([class]) li:not([class]):last-child,
.p-otherPageEntry__body li[class^=u-] ol:not([class]) li[class^=u-]:last-child,
.p-singleEntry li[class^=u-] ol:not([class]) li[class^=u-]:last-child,
.p-pageEntry__body li[class^=u-] ol:not([class]) li[class^=u-]:last-child,
.p-otherPageEntry__body li[class^=u-] ol:not([class]) li[class*=wp-]:last-child,
.p-singleEntry li[class^=u-] ol:not([class]) li[class*=wp-]:last-child,
.p-pageEntry__body li[class^=u-] ol:not([class]) li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class^=u-] ol[class^=u-] li:not([class]):last-child,
.p-singleEntry li[class^=u-] ol[class^=u-] li:not([class]):last-child,
.p-pageEntry__body li[class^=u-] ol[class^=u-] li:not([class]):last-child,
.p-otherPageEntry__body li[class^=u-] ol[class^=u-] li[class^=u-]:last-child,
.p-singleEntry li[class^=u-] ol[class^=u-] li[class^=u-]:last-child,
.p-pageEntry__body li[class^=u-] ol[class^=u-] li[class^=u-]:last-child,
.p-otherPageEntry__body li[class^=u-] ol[class^=u-] li[class*=wp-]:last-child,
.p-singleEntry li[class^=u-] ol[class^=u-] li[class*=wp-]:last-child,
.p-pageEntry__body li[class^=u-] ol[class^=u-] li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class^=u-] ol[class*=wp-] li:not([class]):last-child,
.p-singleEntry li[class^=u-] ol[class*=wp-] li:not([class]):last-child,
.p-pageEntry__body li[class^=u-] ol[class*=wp-] li:not([class]):last-child,
.p-otherPageEntry__body li[class^=u-] ol[class*=wp-] li[class^=u-]:last-child,
.p-singleEntry li[class^=u-] ol[class*=wp-] li[class^=u-]:last-child,
.p-pageEntry__body li[class^=u-] ol[class*=wp-] li[class^=u-]:last-child,
.p-otherPageEntry__body li[class^=u-] ol[class*=wp-] li[class*=wp-]:last-child,
.p-singleEntry li[class^=u-] ol[class*=wp-] li[class*=wp-]:last-child,
.p-pageEntry__body li[class^=u-] ol[class*=wp-] li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ul:not([class]) li:not([class]):last-child,
.p-singleEntry li[class*=wp-] ul:not([class]) li:not([class]):last-child,
.p-pageEntry__body li[class*=wp-] ul:not([class]) li:not([class]):last-child,
.p-otherPageEntry__body li[class*=wp-] ul:not([class]) li[class^=u-]:last-child,
.p-singleEntry li[class*=wp-] ul:not([class]) li[class^=u-]:last-child,
.p-pageEntry__body li[class*=wp-] ul:not([class]) li[class^=u-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ul:not([class]) li[class*=wp-]:last-child,
.p-singleEntry li[class*=wp-] ul:not([class]) li[class*=wp-]:last-child,
.p-pageEntry__body li[class*=wp-] ul:not([class]) li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ul[class^=u-] li:not([class]):last-child,
.p-singleEntry li[class*=wp-] ul[class^=u-] li:not([class]):last-child,
.p-pageEntry__body li[class*=wp-] ul[class^=u-] li:not([class]):last-child,
.p-otherPageEntry__body li[class*=wp-] ul[class^=u-] li[class^=u-]:last-child,
.p-singleEntry li[class*=wp-] ul[class^=u-] li[class^=u-]:last-child,
.p-pageEntry__body li[class*=wp-] ul[class^=u-] li[class^=u-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ul[class^=u-] li[class*=wp-]:last-child,
.p-singleEntry li[class*=wp-] ul[class^=u-] li[class*=wp-]:last-child,
.p-pageEntry__body li[class*=wp-] ul[class^=u-] li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ul[class*=wp-] li:not([class]):last-child,
.p-singleEntry li[class*=wp-] ul[class*=wp-] li:not([class]):last-child,
.p-pageEntry__body li[class*=wp-] ul[class*=wp-] li:not([class]):last-child,
.p-otherPageEntry__body li[class*=wp-] ul[class*=wp-] li[class^=u-]:last-child,
.p-singleEntry li[class*=wp-] ul[class*=wp-] li[class^=u-]:last-child,
.p-pageEntry__body li[class*=wp-] ul[class*=wp-] li[class^=u-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ul[class*=wp-] li[class*=wp-]:last-child,
.p-singleEntry li[class*=wp-] ul[class*=wp-] li[class*=wp-]:last-child,
.p-pageEntry__body li[class*=wp-] ul[class*=wp-] li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ol:not([class]) li:not([class]):last-child,
.p-singleEntry li[class*=wp-] ol:not([class]) li:not([class]):last-child,
.p-pageEntry__body li[class*=wp-] ol:not([class]) li:not([class]):last-child,
.p-otherPageEntry__body li[class*=wp-] ol:not([class]) li[class^=u-]:last-child,
.p-singleEntry li[class*=wp-] ol:not([class]) li[class^=u-]:last-child,
.p-pageEntry__body li[class*=wp-] ol:not([class]) li[class^=u-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ol:not([class]) li[class*=wp-]:last-child,
.p-singleEntry li[class*=wp-] ol:not([class]) li[class*=wp-]:last-child,
.p-pageEntry__body li[class*=wp-] ol:not([class]) li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ol[class^=u-] li:not([class]):last-child,
.p-singleEntry li[class*=wp-] ol[class^=u-] li:not([class]):last-child,
.p-pageEntry__body li[class*=wp-] ol[class^=u-] li:not([class]):last-child,
.p-otherPageEntry__body li[class*=wp-] ol[class^=u-] li[class^=u-]:last-child,
.p-singleEntry li[class*=wp-] ol[class^=u-] li[class^=u-]:last-child,
.p-pageEntry__body li[class*=wp-] ol[class^=u-] li[class^=u-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ol[class^=u-] li[class*=wp-]:last-child,
.p-singleEntry li[class*=wp-] ol[class^=u-] li[class*=wp-]:last-child,
.p-pageEntry__body li[class*=wp-] ol[class^=u-] li[class*=wp-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ol[class*=wp-] li:not([class]):last-child,
.p-singleEntry li[class*=wp-] ol[class*=wp-] li:not([class]):last-child,
.p-pageEntry__body li[class*=wp-] ol[class*=wp-] li:not([class]):last-child,
.p-otherPageEntry__body li[class*=wp-] ol[class*=wp-] li[class^=u-]:last-child,
.p-singleEntry li[class*=wp-] ol[class*=wp-] li[class^=u-]:last-child,
.p-pageEntry__body li[class*=wp-] ol[class*=wp-] li[class^=u-]:last-child,
.p-otherPageEntry__body li[class*=wp-] ol[class*=wp-] li[class*=wp-]:last-child,
.p-singleEntry li[class*=wp-] ol[class*=wp-] li[class*=wp-]:last-child,
.p-pageEntry__body li[class*=wp-] ol[class*=wp-] li[class*=wp-]:last-child {
  margin-bottom: 0;
}
.p-otherPageEntry__body ul.wp-block-list.is-style-number, .p-singleEntry ul.wp-block-list.is-style-number, .p-pageEntry__body ul.wp-block-list.is-style-number {
  counter-reset: num 0;
}
.p-otherPageEntry__body ul.wp-block-list.is-style-number li:not([class]), .p-singleEntry ul.wp-block-list.is-style-number li:not([class]), .p-pageEntry__body ul.wp-block-list.is-style-number li:not([class]),
.p-otherPageEntry__body ul.wp-block-list.is-style-number li[class^=u-],
.p-singleEntry ul.wp-block-list.is-style-number li[class^=u-],
.p-pageEntry__body ul.wp-block-list.is-style-number li[class^=u-],
.p-otherPageEntry__body ul.wp-block-list.is-style-number li[class*=wp-],
.p-singleEntry ul.wp-block-list.is-style-number li[class*=wp-],
.p-pageEntry__body ul.wp-block-list.is-style-number li[class*=wp-] {
  counter-increment: num 1;
  padding-left: 48px;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body ul.wp-block-list.is-style-number li:not([class]), .p-singleEntry ul.wp-block-list.is-style-number li:not([class]), .p-pageEntry__body ul.wp-block-list.is-style-number li:not([class]),
  .p-otherPageEntry__body ul.wp-block-list.is-style-number li[class^=u-],
  .p-singleEntry ul.wp-block-list.is-style-number li[class^=u-],
  .p-pageEntry__body ul.wp-block-list.is-style-number li[class^=u-],
  .p-otherPageEntry__body ul.wp-block-list.is-style-number li[class*=wp-],
  .p-singleEntry ul.wp-block-list.is-style-number li[class*=wp-],
  .p-pageEntry__body ul.wp-block-list.is-style-number li[class*=wp-] {
    padding-left: 38px;
  }
}
.p-otherPageEntry__body ul.wp-block-list.is-style-number li:not([class])::before, .p-singleEntry ul.wp-block-list.is-style-number li:not([class])::before, .p-pageEntry__body ul.wp-block-list.is-style-number li:not([class])::before,
.p-otherPageEntry__body ul.wp-block-list.is-style-number li[class^=u-]::before,
.p-singleEntry ul.wp-block-list.is-style-number li[class^=u-]::before,
.p-pageEntry__body ul.wp-block-list.is-style-number li[class^=u-]::before,
.p-otherPageEntry__body ul.wp-block-list.is-style-number li[class*=wp-]::before,
.p-singleEntry ul.wp-block-list.is-style-number li[class*=wp-]::before,
.p-pageEntry__body ul.wp-block-list.is-style-number li[class*=wp-]::before {
  display: none;
}
.p-otherPageEntry__body ul.wp-block-list.is-style-number li:not([class])::after, .p-singleEntry ul.wp-block-list.is-style-number li:not([class])::after, .p-pageEntry__body ul.wp-block-list.is-style-number li:not([class])::after,
.p-otherPageEntry__body ul.wp-block-list.is-style-number li[class^=u-]::after,
.p-singleEntry ul.wp-block-list.is-style-number li[class^=u-]::after,
.p-pageEntry__body ul.wp-block-list.is-style-number li[class^=u-]::after,
.p-otherPageEntry__body ul.wp-block-list.is-style-number li[class*=wp-]::after,
.p-singleEntry ul.wp-block-list.is-style-number li[class*=wp-]::after,
.p-pageEntry__body ul.wp-block-list.is-style-number li[class*=wp-]::after {
  content: "（" counter(num) "）";
  position: absolute;
  top: 0;
  left: 0;
}
.p-otherPageEntry__body ol:not([class]), .p-singleEntry ol:not([class]), .p-pageEntry__body ol:not([class]),
.p-otherPageEntry__body ol[class^=u-],
.p-singleEntry ol[class^=u-],
.p-pageEntry__body ol[class^=u-],
.p-otherPageEntry__body ol[class*=wp-],
.p-singleEntry ol[class*=wp-],
.p-pageEntry__body ol[class*=wp-] {
  list-style: decimal;
}
.p-otherPageEntry__body ol:not([class]) li:not([class]), .p-singleEntry ol:not([class]) li:not([class]), .p-pageEntry__body ol:not([class]) li:not([class]),
.p-otherPageEntry__body ol:not([class]) li[class^=u-],
.p-singleEntry ol:not([class]) li[class^=u-],
.p-pageEntry__body ol:not([class]) li[class^=u-],
.p-otherPageEntry__body ol:not([class]) li[class*=wp-],
.p-singleEntry ol:not([class]) li[class*=wp-],
.p-pageEntry__body ol:not([class]) li[class*=wp-],
.p-otherPageEntry__body ol[class^=u-] li:not([class]),
.p-singleEntry ol[class^=u-] li:not([class]),
.p-pageEntry__body ol[class^=u-] li:not([class]),
.p-otherPageEntry__body ol[class^=u-] li[class^=u-],
.p-singleEntry ol[class^=u-] li[class^=u-],
.p-pageEntry__body ol[class^=u-] li[class^=u-],
.p-otherPageEntry__body ol[class^=u-] li[class*=wp-],
.p-singleEntry ol[class^=u-] li[class*=wp-],
.p-pageEntry__body ol[class^=u-] li[class*=wp-],
.p-otherPageEntry__body ol[class*=wp-] li:not([class]),
.p-singleEntry ol[class*=wp-] li:not([class]),
.p-pageEntry__body ol[class*=wp-] li:not([class]),
.p-otherPageEntry__body ol[class*=wp-] li[class^=u-],
.p-singleEntry ol[class*=wp-] li[class^=u-],
.p-pageEntry__body ol[class*=wp-] li[class^=u-],
.p-otherPageEntry__body ol[class*=wp-] li[class*=wp-],
.p-singleEntry ol[class*=wp-] li[class*=wp-],
.p-pageEntry__body ol[class*=wp-] li[class*=wp-] {
  margin-left: 24px;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body ol:not([class]) li:not([class]), .p-singleEntry ol:not([class]) li:not([class]), .p-pageEntry__body ol:not([class]) li:not([class]),
  .p-otherPageEntry__body ol:not([class]) li[class^=u-],
  .p-singleEntry ol:not([class]) li[class^=u-],
  .p-pageEntry__body ol:not([class]) li[class^=u-],
  .p-otherPageEntry__body ol:not([class]) li[class*=wp-],
  .p-singleEntry ol:not([class]) li[class*=wp-],
  .p-pageEntry__body ol:not([class]) li[class*=wp-],
  .p-otherPageEntry__body ol[class^=u-] li:not([class]),
  .p-singleEntry ol[class^=u-] li:not([class]),
  .p-pageEntry__body ol[class^=u-] li:not([class]),
  .p-otherPageEntry__body ol[class^=u-] li[class^=u-],
  .p-singleEntry ol[class^=u-] li[class^=u-],
  .p-pageEntry__body ol[class^=u-] li[class^=u-],
  .p-otherPageEntry__body ol[class^=u-] li[class*=wp-],
  .p-singleEntry ol[class^=u-] li[class*=wp-],
  .p-pageEntry__body ol[class^=u-] li[class*=wp-],
  .p-otherPageEntry__body ol[class*=wp-] li:not([class]),
  .p-singleEntry ol[class*=wp-] li:not([class]),
  .p-pageEntry__body ol[class*=wp-] li:not([class]),
  .p-otherPageEntry__body ol[class*=wp-] li[class^=u-],
  .p-singleEntry ol[class*=wp-] li[class^=u-],
  .p-pageEntry__body ol[class*=wp-] li[class^=u-],
  .p-otherPageEntry__body ol[class*=wp-] li[class*=wp-],
  .p-singleEntry ol[class*=wp-] li[class*=wp-],
  .p-pageEntry__body ol[class*=wp-] li[class*=wp-] {
    margin-left: 19px;
  }
}
.p-otherPageEntry__body ol:not([class]) li:not([class])::before, .p-singleEntry ol:not([class]) li:not([class])::before, .p-pageEntry__body ol:not([class]) li:not([class])::before,
.p-otherPageEntry__body ol:not([class]) li[class^=u-]::before,
.p-singleEntry ol:not([class]) li[class^=u-]::before,
.p-pageEntry__body ol:not([class]) li[class^=u-]::before,
.p-otherPageEntry__body ol:not([class]) li[class*=wp-]::before,
.p-singleEntry ol:not([class]) li[class*=wp-]::before,
.p-pageEntry__body ol:not([class]) li[class*=wp-]::before,
.p-otherPageEntry__body ol[class^=u-] li:not([class])::before,
.p-singleEntry ol[class^=u-] li:not([class])::before,
.p-pageEntry__body ol[class^=u-] li:not([class])::before,
.p-otherPageEntry__body ol[class^=u-] li[class^=u-]::before,
.p-singleEntry ol[class^=u-] li[class^=u-]::before,
.p-pageEntry__body ol[class^=u-] li[class^=u-]::before,
.p-otherPageEntry__body ol[class^=u-] li[class*=wp-]::before,
.p-singleEntry ol[class^=u-] li[class*=wp-]::before,
.p-pageEntry__body ol[class^=u-] li[class*=wp-]::before,
.p-otherPageEntry__body ol[class*=wp-] li:not([class])::before,
.p-singleEntry ol[class*=wp-] li:not([class])::before,
.p-pageEntry__body ol[class*=wp-] li:not([class])::before,
.p-otherPageEntry__body ol[class*=wp-] li[class^=u-]::before,
.p-singleEntry ol[class*=wp-] li[class^=u-]::before,
.p-pageEntry__body ol[class*=wp-] li[class^=u-]::before,
.p-otherPageEntry__body ol[class*=wp-] li[class*=wp-]::before,
.p-singleEntry ol[class*=wp-] li[class*=wp-]::before,
.p-pageEntry__body ol[class*=wp-] li[class*=wp-]::before {
  display: none;
}
.p-otherPageEntry__body figure:not([class]), .p-singleEntry figure:not([class]), .p-pageEntry__body figure:not([class]),
.p-otherPageEntry__body figure[class^=u-],
.p-singleEntry figure[class^=u-],
.p-pageEntry__body figure[class^=u-],
.p-otherPageEntry__body figure[class*=wp-],
.p-singleEntry figure[class*=wp-],
.p-pageEntry__body figure[class*=wp-] {
  width: 100%;
}
.p-otherPageEntry__body figure:not([class]) img, .p-singleEntry figure:not([class]) img, .p-pageEntry__body figure:not([class]) img,
.p-otherPageEntry__body figure[class^=u-] img,
.p-singleEntry figure[class^=u-] img,
.p-pageEntry__body figure[class^=u-] img,
.p-otherPageEntry__body figure[class*=wp-] img,
.p-singleEntry figure[class*=wp-] img,
.p-pageEntry__body figure[class*=wp-] img {
  display: block;
  width: 100%;
  height: auto;
}
.p-otherPageEntry__body hr, .p-singleEntry hr, .p-pageEntry__body hr {
  border: none;
  border-top: solid 1px var(--color-border);
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body hr, .p-singleEntry hr, .p-pageEntry__body hr {
    margin: 60px 0;
  }
}
.p-otherPageEntry__body hr + *, .p-singleEntry hr + *, .p-pageEntry__body hr + * {
  margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body hr + *, .p-singleEntry hr + *, .p-pageEntry__body hr + * {
    margin-top: 60px !important;
  }
}
.p-otherPageEntry__body .wp-block-spacer, .p-singleEntry .wp-block-spacer, .p-pageEntry__body .wp-block-spacer {
  margin-bottom: 0;
}
.p-otherPageEntry__body > :first-child, .p-singleEntry > :first-child, .p-pageEntry__body > :first-child,
.p-otherPageEntry__body div > :first-child,
.p-singleEntry div > :first-child,
.p-pageEntry__body div > :first-child {
  margin-top: 0 !important;
}
.p-otherPageEntry__body > :last-child, .p-singleEntry > :last-child, .p-pageEntry__body > :last-child,
.p-otherPageEntry__body div > :last-child,
.p-singleEntry div > :last-child,
.p-pageEntry__body div > :last-child {
  margin-bottom: 0 !important;
}
.p-otherPageEntry__body > *, .p-singleEntry > *, .p-pageEntry__body > * {
  margin-bottom: 16px;
}
.p-otherPageEntry__body > ul:not([class]), .p-singleEntry > ul:not([class]), .p-pageEntry__body > ul:not([class]),
.p-otherPageEntry__body > ul[class^=u-],
.p-singleEntry > ul[class^=u-],
.p-pageEntry__body > ul[class^=u-],
.p-otherPageEntry__body > ul[class*=wp-],
.p-singleEntry > ul[class*=wp-],
.p-pageEntry__body > ul[class*=wp-],
.p-otherPageEntry__body > ol:not([class]),
.p-singleEntry > ol:not([class]),
.p-pageEntry__body > ol:not([class]),
.p-otherPageEntry__body > ol[class^=u-],
.p-singleEntry > ol[class^=u-],
.p-pageEntry__body > ol[class^=u-],
.p-otherPageEntry__body > ol[class*=wp-],
.p-singleEntry > ol[class*=wp-],
.p-pageEntry__body > ol[class*=wp-] {
  margin: 24px 0;
}
.p-otherPageEntry__body > h2:not([class]), .p-singleEntry > h2:not([class]), .p-pageEntry__body > h2:not([class]),
.p-otherPageEntry__body > h2[class^=u-],
.p-singleEntry > h2[class^=u-],
.p-pageEntry__body > h2[class^=u-],
.p-otherPageEntry__body > h2[class*=wp-],
.p-singleEntry > h2[class*=wp-],
.p-pageEntry__body > h2[class*=wp-] {
  margin: 40px 0 24px;
}
.p-otherPageEntry__body > h3:not([class]), .p-singleEntry > h3:not([class]), .p-pageEntry__body > h3:not([class]),
.p-otherPageEntry__body > h3[class^=u-],
.p-singleEntry > h3[class^=u-],
.p-pageEntry__body > h3[class^=u-],
.p-otherPageEntry__body > h3[class*=wp-],
.p-singleEntry > h3[class*=wp-],
.p-pageEntry__body > h3[class*=wp-],
.p-otherPageEntry__body > h4:not([class]),
.p-singleEntry > h4:not([class]),
.p-pageEntry__body > h4:not([class]),
.p-otherPageEntry__body > h4[class^=u-],
.p-singleEntry > h4[class^=u-],
.p-pageEntry__body > h4[class^=u-],
.p-otherPageEntry__body > h4[class*=wp-],
.p-singleEntry > h4[class*=wp-],
.p-pageEntry__body > h4[class*=wp-],
.p-otherPageEntry__body > h5:not([class]),
.p-singleEntry > h5:not([class]),
.p-pageEntry__body > h5:not([class]),
.p-otherPageEntry__body > h5[class^=u-],
.p-singleEntry > h5[class^=u-],
.p-pageEntry__body > h5[class^=u-],
.p-otherPageEntry__body > h5[class*=wp-],
.p-singleEntry > h5[class*=wp-],
.p-pageEntry__body > h5[class*=wp-],
.p-otherPageEntry__body > h6:not([class]),
.p-singleEntry > h6:not([class]),
.p-pageEntry__body > h6:not([class]),
.p-otherPageEntry__body > h6[class^=u-],
.p-singleEntry > h6[class^=u-],
.p-pageEntry__body > h6[class^=u-],
.p-otherPageEntry__body > h6[class*=wp-],
.p-singleEntry > h6[class*=wp-],
.p-pageEntry__body > h6[class*=wp-] {
  margin: 40px 0 16px;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body > h3:not([class]), .p-singleEntry > h3:not([class]), .p-pageEntry__body > h3:not([class]),
  .p-otherPageEntry__body > h3[class^=u-],
  .p-singleEntry > h3[class^=u-],
  .p-pageEntry__body > h3[class^=u-],
  .p-otherPageEntry__body > h3[class*=wp-],
  .p-singleEntry > h3[class*=wp-],
  .p-pageEntry__body > h3[class*=wp-],
  .p-otherPageEntry__body > h4:not([class]),
  .p-singleEntry > h4:not([class]),
  .p-pageEntry__body > h4:not([class]),
  .p-otherPageEntry__body > h4[class^=u-],
  .p-singleEntry > h4[class^=u-],
  .p-pageEntry__body > h4[class^=u-],
  .p-otherPageEntry__body > h4[class*=wp-],
  .p-singleEntry > h4[class*=wp-],
  .p-pageEntry__body > h4[class*=wp-],
  .p-otherPageEntry__body > h5:not([class]),
  .p-singleEntry > h5:not([class]),
  .p-pageEntry__body > h5:not([class]),
  .p-otherPageEntry__body > h5[class^=u-],
  .p-singleEntry > h5[class^=u-],
  .p-pageEntry__body > h5[class^=u-],
  .p-otherPageEntry__body > h5[class*=wp-],
  .p-singleEntry > h5[class*=wp-],
  .p-pageEntry__body > h5[class*=wp-],
  .p-otherPageEntry__body > h6:not([class]),
  .p-singleEntry > h6:not([class]),
  .p-pageEntry__body > h6:not([class]),
  .p-otherPageEntry__body > h6[class^=u-],
  .p-singleEntry > h6[class^=u-],
  .p-pageEntry__body > h6[class^=u-],
  .p-otherPageEntry__body > h6[class*=wp-],
  .p-singleEntry > h6[class*=wp-],
  .p-pageEntry__body > h6[class*=wp-] {
    margin: 40px 0 24px;
  }
}
.p-otherPageEntry__body > .c-sectionTitle, .p-singleEntry > .c-sectionTitle, .p-pageEntry__body > .c-sectionTitle {
  margin: 120px 0 64px;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body > .c-sectionTitle, .p-singleEntry > .c-sectionTitle, .p-pageEntry__body > .c-sectionTitle {
    margin: 80px 0 40px;
  }
}
.p-otherPageEntry__body > figure:not([class]), .p-singleEntry > figure:not([class]), .p-pageEntry__body > figure:not([class]),
.p-otherPageEntry__body > figure[class^=u-],
.p-singleEntry > figure[class^=u-],
.p-pageEntry__body > figure[class^=u-],
.p-otherPageEntry__body > figure[class*=wp-],
.p-singleEntry > figure[class*=wp-],
.p-pageEntry__body > figure[class*=wp-] {
  margin: 32px auto;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body > figure:not([class]), .p-singleEntry > figure:not([class]), .p-pageEntry__body > figure:not([class]),
  .p-otherPageEntry__body > figure[class^=u-],
  .p-singleEntry > figure[class^=u-],
  .p-pageEntry__body > figure[class^=u-],
  .p-otherPageEntry__body > figure[class*=wp-],
  .p-singleEntry > figure[class*=wp-],
  .p-pageEntry__body > figure[class*=wp-] {
    margin: 24px auto;
  }
}
.p-otherPageEntry__body > .c-overview, .p-singleEntry > .c-overview, .p-pageEntry__body > .c-overview {
  margin: 40px 0;
}
.p-otherPageEntry__body > .p-company-groupCompany, .p-singleEntry > .p-company-groupCompany, .p-pageEntry__body > .p-company-groupCompany {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-otherPageEntry__body > .p-company-groupCompany, .p-singleEntry > .p-company-groupCompany, .p-pageEntry__body > .p-company-groupCompany {
    margin-top: 60px;
  }
}

.p-pageEntry__body--wide {
  max-width: 100%;
}
.p-pageEntry__body a:not([class]),
.p-pageEntry__body a[class^=u-],
.p-pageEntry__body a[class*=wp-] {
  color: var(--color-primary);
  text-decoration: underline;
}
.p-pageEntry__body h3:not([class]),
.p-pageEntry__body h3[class^=u-],
.p-pageEntry__body h3[class*=wp-],
.p-pageEntry__body h4:not([class]),
.p-pageEntry__body h4[class^=u-],
.p-pageEntry__body h4[class*=wp-],
.p-pageEntry__body h5:not([class]),
.p-pageEntry__body h5[class^=u-],
.p-pageEntry__body h5[class*=wp-],
.p-pageEntry__body h6:not([class]),
.p-pageEntry__body h6[class^=u-],
.p-pageEntry__body h6[class*=wp-] {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-pageEntry__body h3:not([class]),
  .p-pageEntry__body h3[class^=u-],
  .p-pageEntry__body h3[class*=wp-],
  .p-pageEntry__body h4:not([class]),
  .p-pageEntry__body h4[class^=u-],
  .p-pageEntry__body h4[class*=wp-],
  .p-pageEntry__body h5:not([class]),
  .p-pageEntry__body h5[class^=u-],
  .p-pageEntry__body h5[class*=wp-],
  .p-pageEntry__body h6:not([class]),
  .p-pageEntry__body h6[class^=u-],
  .p-pageEntry__body h6[class*=wp-] {
    font-size: 20px;
    line-height: 1.2;
  }
}

.p-archive__body {
  max-width: 800px;
  margin: 0 auto;
}
.p-archive__body > :first-child,
.p-archive__body div > :first-child {
  margin-top: 0 !important;
}
.p-archive__body > :last-child,
.p-archive__body div > :last-child {
  margin-bottom: 0 !important;
}

.p-single__head {
  max-width: 800px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .p-single__head {
    margin: 0 auto 40px;
  }
}

.p-single__body {
  max-width: 800px;
  margin: 0 auto;
}
.p-single__body > :first-child,
.p-single__body div > :first-child {
  margin-top: 0 !important;
}
.p-single__body > :last-child,
.p-single__body div > :last-child {
  margin-bottom: 0 !important;
}

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

.p-single__thumbnail {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail {
    margin-bottom: 20px;
  }
}
.p-single__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.p-single__date {
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-single__date {
    font-weight: 500;
    font-size: 14px;
  }
}

.p-single__category {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.p-single__categoryItem, .p-single__categoryItem--new {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--color-gray-2);
  height: 21px;
  padding: 0 12px;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  color: var(--color-gray-2);
}
@media screen and (max-width: 767px) {
  .p-single__categoryItem, .p-single__categoryItem--new {
    height: 16px;
    padding: 0 8px;
    font-size: 10px;
  }
}
.p-single__categoryItem--new {
  font-family: var(--font-family-en);
  font-weight: 600;
  border: solid 1px var(--color-new);
  color: var(--color-new);
}

.p-singleEntry {
  max-width: 100%;
}
.p-singleEntry h2:not([class]),
.p-singleEntry h2[class^=u-],
.p-singleEntry h2[class*=wp-] {
  font-weight: 400;
}
.p-singleEntry h3:not([class]),
.p-singleEntry h3[class^=u-],
.p-singleEntry h3[class*=wp-],
.p-singleEntry h4:not([class]),
.p-singleEntry h4[class^=u-],
.p-singleEntry h4[class*=wp-],
.p-singleEntry h5:not([class]),
.p-singleEntry h5[class^=u-],
.p-singleEntry h5[class*=wp-],
.p-singleEntry h6:not([class]),
.p-singleEntry h6[class^=u-],
.p-singleEntry h6[class*=wp-] {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-primary);
}
.p-singleEntry small {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}
.p-singleEntry figure:not([class]),
.p-singleEntry figure[class^=u-],
.p-singleEntry figure[class*=wp-] {
  width: 100%;
}
.p-singleEntry figure:not([class]) img,
.p-singleEntry figure[class^=u-] img,
.p-singleEntry figure[class*=wp-] img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.p-singleEntry > figure:not([class]),
.p-singleEntry > figure[class^=u-],
.p-singleEntry > figure[class*=wp-] {
  margin: 80px auto;
}
@media screen and (max-width: 767px) {
  .p-singleEntry > figure:not([class]),
  .p-singleEntry > figure[class^=u-],
  .p-singleEntry > figure[class*=wp-] {
    margin: 40px auto;
  }
}

.p-sustainability-intro {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.p-sustainability-intro .p-sustainability-intro__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-sustainability-intro .p-sustainability-intro__text {
    font-size: 15px;
  }
}
.p-sustainability-intro > * {
  margin-bottom: 16px;
}
.p-sustainability-intro > *:last-child {
  margin-bottom: 0;
}

.p-sustainability-thumbnail {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-thumbnail {
    border-radius: 16px;
    margin-top: 24px;
  }
}
.p-sustainability-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.p-sustainability-mainContent {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent {
    margin-top: 80px;
  }
}
.p-sustainability-mainContent .c-sectionTitle {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent .c-sectionTitle {
    margin-bottom: 40px;
  }
}
.p-sustainability-mainContent .p-sustainability-mainContent__lead {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent .p-sustainability-mainContent__lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.p-sustainability-mainContent .p-sustainability-mainContent__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px 48px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent .p-sustainability-mainContent__list {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }
}
.p-sustainability-mainContent .p-sustainability-mainContent__itemTextBox {
  padding: 16px 16px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent .p-sustainability-mainContent__itemTextBox {
    padding: 12px 12px 0;
  }
}
.p-sustainability-mainContent .p-sustainability-mainContent__itemTextBox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 66px);
  background-color: var(--color-primary-lighter);
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent .p-sustainability-mainContent__itemTextBox::after {
    height: calc(100% + 60px);
  }
}
.p-sustainability-mainContent .p-sustainability-mainContent__itemTitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  padding-bottom: 11px;
  margin-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent .p-sustainability-mainContent__itemTitle {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.p-sustainability-mainContent .p-sustainability-mainContent__itemTitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 3px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent .p-sustainability-mainContent__itemTitle::after {
    width: 20px;
    height: 2px;
  }
}
.p-sustainability-mainContent .p-sustainability-mainContent__itemDescription {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent .p-sustainability-mainContent__itemDescription {
    font-size: 13px;
    line-height: 1.5;
  }
}
.p-sustainability-mainContent .p-sustainability-mainContent__itemIconList {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 16px 0;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent .p-sustainability-mainContent__itemIconList {
    padding: 0 12px 0;
    margin-top: 12px;
  }
}
.p-sustainability-mainContent .p-sustainability-mainContent__itemIcon {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent .p-sustainability-mainContent__itemIcon {
    width: calc((100% - 8px) / 3);
  }
}
.p-sustainability-mainContent .p-sustainability-mainContent__itemIcon img {
  display: block;
  width: 100%;
  height: auto;
}
.p-sustainability-mainContent .p-sustainability-mainContent__bottomImg {
  margin: 80px auto 0;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-sustainability-mainContent .p-sustainability-mainContent__bottomImg {
    margin: 40px -4px 0;
    width: calc(100% + 8px);
  }
}
.p-sustainability-mainContent .p-sustainability-mainContent__bottomImg img {
  display: block;
  width: 100%;
  height: auto;
}

.p-sustainability-subContent {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent {
    margin-top: 60px;
  }
}
.p-sustainability-subContent .p-sustainability-subContent__row {
  padding: 80px 0;
  border-top: solid 1px var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent .p-sustainability-subContent__row {
    padding: 60px 0;
  }
}
.p-sustainability-subContent .p-sustainability-subContent__row:last-child {
  border-bottom: solid 1px var(--color-border);
}
.p-sustainability-subContent .p-sustainability-subContent__head {
  display: grid;
  grid-template-columns: 612px 1fr;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent .p-sustainability-subContent__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-sustainability-subContent .p-sustainability-subContent__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent .p-sustainability-subContent__title {
    font-size: 20px;
    line-height: 1.2;
  }
}
.p-sustainability-subContent .p-sustainability-subContent__lead {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent .p-sustainability-subContent__lead {
    font-size: 15px;
  }
}
.p-sustainability-subContent .p-sustainability-subContent__box {
  border-radius: 8px;
  border: solid 1px var(--color-primary);
  overflow: hidden;
}
.p-sustainability-subContent .p-sustainability-subContent__boxTitle {
  padding: 4px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  background: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent .p-sustainability-subContent__boxTitle {
    font-size: 15px;
  }
}
.p-sustainability-subContent .p-sustainability-subContent__boxList {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent .p-sustainability-subContent__boxList {
    padding: 12px;
  }
}
.p-sustainability-subContent .p-sustainability-subContent__boxItem + .p-sustainability-subContent__boxItem {
  margin-top: 8px;
}
.p-sustainability-subContent .p-sustainability-subContent__boxItem {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent .p-sustainability-subContent__boxItem {
    font-size: 13px;
  }
}
.p-sustainability-subContent .p-sustainability-subContent__boxItem::before {
  content: "・";
}
.p-sustainability-subContent .p-sustainability-subContent__icon {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding: 16px;
  background: var(--color-primary-lighter);
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent .p-sustainability-subContent__icon {
    flex-direction: column;
    margin-top: 24px;
    padding: 12px;
  }
}
.p-sustainability-subContent .p-sustainability-subContent__iconItem {
  flex: 1;
  display: flex;
  justify-content: center;
}
.p-sustainability-subContent .p-sustainability-subContent__iconItemInner {
  max-width: 318px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent .p-sustainability-subContent__iconItemInner {
    max-width: 100%;
    flex-direction: row-reverse;
  }
}
.p-sustainability-subContent .p-sustainability-subContent__iconImg {
  flex-shrink: 0;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent .p-sustainability-subContent__iconImg {
    width: 80px;
  }
}
.p-sustainability-subContent .p-sustainability-subContent__iconImg img {
  display: block;
  width: 100%;
  height: auto;
}
.p-sustainability-subContent .p-sustainability-subContent__iconDescription {
  flex: 1;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-sustainability-subContent .p-sustainability-subContent__iconDescription {
    line-height: 1.5;
  }
}

.p-sustainability-governance {
  display: grid;
  grid-template-columns: 1fr 612px;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-governance {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.p-sustainability-governance .p-sustainability-governance__body .p-sustainability-governance__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-sustainability-governance .p-sustainability-governance__body .p-sustainability-governance__text {
    font-size: 15px;
  }
}
.p-sustainability-governance .p-sustainability-governance__body .c-textLinkCard {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .p-sustainability-governance .p-sustainability-governance__body .c-textLinkCard {
    margin-top: 40px;
  }
}

.p-recruitment .c-pageTitle {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/495;
  background-image: url("/wp/wp-content/themes/hitotohito/assets/img/recruitment/recruitment-title-bg.jpg");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-recruitment .c-pageTitle {
    aspect-ratio: 376/520;
    background-image: url("/wp/wp-content/themes/hitotohito/assets/img/recruitment/recruitment-title-bg-sp.jpg");
  }
}
.p-recruitment .c-pageTitle::after {
  display: none;
}
.p-recruitment .c-pageTitle__subtitle {
  color: var(--color-white);
  border-bottom: solid 1px var(--color-white);
}
.p-recruitment .c-pageTitle__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-recruitment .c-pageTitle__inner {
    top: 53.8461538462%;
    transform: translate(-50%, 0);
  }
}
.p-recruitment .c-pageTitle__title {
  color: var(--color-white);
}
.p-recruitment .c-breadcrumb__link,
.p-recruitment .c-breadcrumb__current {
  color: var(--color-white);
}
.p-recruitment .c-breadcrumb__item:not(:last-child)::after {
  color: var(--color-white);
}

.p-recruitment-intro {
  position: relative;
  max-width: 634px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruitment-intro {
    text-align: left;
  }
}
.p-recruitment-intro .p-recruitment-intro__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-recruitment-intro .p-recruitment-intro__title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
}
.p-recruitment-intro .p-recruitment-intro__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-recruitment-intro .p-recruitment-intro__text {
    font-size: 15px;
  }
}
.p-recruitment-intro > * {
  margin-bottom: 16px;
}
.p-recruitment-intro > *:last-child {
  margin-bottom: 0;
}
.p-recruitment-intro .p-recruitment-intro__img--left {
  margin: 0;
  position: absolute;
  top: 50%;
  left: -340px;
  transform: translateY(-50%);
  width: 300px;
}
@media screen and (max-width: 767px) {
  .p-recruitment-intro .p-recruitment-intro__img--left {
    position: static;
    width: 100%;
    margin-bottom: 16px;
    transform: none;
  }
}
.p-recruitment-intro .p-recruitment-intro__img--left img {
  display: block;
  width: 100%;
  height: auto;
}
.p-recruitment-intro .p-recruitment-intro__img--right {
  margin: 0;
  position: absolute;
  top: 50%;
  right: -360px;
  transform: translateY(-50%);
  width: 280px;
}
@media screen and (max-width: 767px) {
  .p-recruitment-intro .p-recruitment-intro__img--right {
    display: none;
  }
}
.p-recruitment-intro .p-recruitment-intro__img--right img {
  display: block;
  width: 100%;
  height: auto;
}

.p-recruitment-info {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-recruitment-info {
    margin-top: 80px;
  }
}
.p-recruitment-info .c-textLinkCard {
  grid-area: link;
}
.p-recruitment-info .c-textLinkCard__item {
  flex: 0 0 100%;
}

.p-recruitment-info__lead {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-recruitment-info__lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.p-recruitment-info__row {
  display: grid;
  grid-template: "description img" auto "link img" auto/408px 1fr;
  gap: 36px 48px;
}
@media screen and (max-width: 767px) {
  .p-recruitment-info__row {
    grid-template: "description" auto "img" auto "link" auto/100%;
    gap: 24px;
  }
}
.p-recruitment-info__row + .p-recruitment-info__row {
  margin-top: 80px;
  padding-top: 80px;
  border-top: solid 1px var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-recruitment-info__row + .p-recruitment-info__row {
    margin-top: 40px;
    padding-top: 40px;
  }
}

.p-recruitment-info__img {
  grid-area: img;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 584/320;
}
@media screen and (max-width: 767px) {
  .p-recruitment-info__img {
    border-radius: 8px;
  }
}
.p-recruitment-info__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-recruitment-info__description {
  grid-area: description;
}

.p-recruitment-info__logo {
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .p-recruitment-info__logo {
    margin-bottom: 24px;
  }
}
.p-recruitment-info__logo img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.p-recruitment-info__logo + .p-recruitment-info__logo {
  margin-top: -8px;
}

.p-recruitment-info__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-recruitment-info__text {
    font-size: 15px;
  }
}
.p-recruitment-info__text + .p-recruitment-info__text {
  margin-top: 16px;
}

.p-company-groupCompany .c-overview a:not([class]) {
  color: var(--color-primary);
}
.p-company-groupCompany .p-company-groupCompany__item + .p-company-groupCompany__item {
  margin-top: 80px;
  padding-top: 80px;
  border-top: solid 1px var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-company-groupCompany .p-company-groupCompany__item + .p-company-groupCompany__item {
    margin-top: 60px;
    padding-top: 60px;
  }
}
.p-company-groupCompany .p-company-groupCompany__logo {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-company-groupCompany .p-company-groupCompany__logo {
    margin-bottom: 24px;
  }
}
.p-company-groupCompany .p-company-groupCompany__logo img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.p-company-groupCompany .p-company-groupCompany__name {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-company-groupCompany .p-company-groupCompany__name {
    margin-bottom: 24px;
  }
}
.p-company-groupCompany .p-company-groupCompany__name .c-blankLink,
.p-company-groupCompany .p-company-groupCompany__name * {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-text);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-company-groupCompany .p-company-groupCompany__name .c-blankLink,
  .p-company-groupCompany .p-company-groupCompany__name * {
    font-size: 16px;
  }
}
.p-company-groupCompany .p-company-groupCompany__name .c-blankLink::after,
.p-company-groupCompany .p-company-groupCompany__name *::after {
  width: 19px;
  height: 19px;
}
.p-company-groupCompany .p-company-groupCompany__address {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-company-groupCompany .p-company-groupCompany__address {
    flex-direction: column;
    gap: 8px;
  }
}
.p-company-groupCompany .p-company-groupCompany__googleMapLink {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  text-decoration-line: underline;
  color: var(--color-new);
}
.p-company-groupCompany .p-company-groupCompany__googleMapLink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("/wp/wp-content/themes/hitotohito/assets/img/common/icon-map.svg");
  background-size: cover;
}

.p-company-message .p-company-message__body {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-company-message .p-company-message__body {
    flex-direction: column;
  }
}
.p-company-message .p-company-message__imgBox {
  width: 320px;
}
@media screen and (max-width: 767px) {
  .p-company-message .p-company-message__imgBox {
    width: 100%;
  }
}
.p-company-message .p-company-message__textBox {
  width: calc(100% - 320px - 40px - 100px);
}
@media screen and (max-width: 767px) {
  .p-company-message .p-company-message__textBox {
    width: 100%;
  }
}
.p-company-message .p-company-message__img {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 320/460;
}
@media screen and (max-width: 767px) {
  .p-company-message .p-company-message__img {
    border-radius: 8px;
    aspect-ratio: 336/336;
  }
}
.p-company-message .p-company-message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.p-company-message .p-company-message__textHead {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-company-message .p-company-message__textHead {
    margin-bottom: 40px;
  }
}
.p-company-message .p-company-message__textBody {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-company-message .p-company-message__textBody {
    font-size: 18px;
    line-height: 1.8;
  }
}
.p-company-message .p-company-message__textBottom {
  text-align: right;
  margin-top: 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.p-company-policy .p-company-policy__item + .p-company-policy__item {
  margin-top: 24px;
}
.p-company-policy .p-company-policy__item {
  display: flex;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-company-policy .p-company-policy__item {
    flex-direction: column;
    padding: 0;
    gap: 4px;
  }
}
.p-company-policy .p-company-policy__title {
  width: 240px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  color: var(--color-text);
  border-right: solid 1px var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-company-policy .p-company-policy__title {
    width: 100%;
    padding-right: 0;
    border-right: none;
  }
}
.p-company-policy .p-company-policy__title span {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
}
.p-company-policy .p-company-policy__body {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 80px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.8;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-company-policy .p-company-policy__body {
    padding-left: 0;
    font-size: 20px;
    line-height: 1.2;
  }
}

.p-company-history {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .p-company-history {
    margin-top: 40px;
  }
}
.p-company-history .p-company-history__item {
  display: grid;
  grid-template-columns: 129px 1fr;
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-company-history .p-company-history__item {
    grid-template-columns: 1fr;
    padding-left: 24px;
  }
}
.p-company-history .p-company-history__item:last-child {
  padding-bottom: 0;
}
.p-company-history .p-company-history__item:last-child .p-company-history__contentItem + .p-company-history__contentItem:last-child::before {
  display: none;
}
.p-company-history .p-company-history__item:last-child .p-company-history__contentItem:only-child::before {
  display: none;
}
.p-company-history .p-company-history__year {
  white-space: nowrap;
  text-align: right;
  padding-right: 36px;
  font-family: var(--font-family-en);
  font-weight: 300;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-company-history .p-company-history__year {
    text-align: left;
    padding-right: 0;
    padding-bottom: 8px;
    font-weight: 400;
    font-size: 24px;
  }
}
.p-company-history .p-company-history__date {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  flex-shrink: 0;
  width: 47px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-company-history .p-company-history__date {
    width: 38px;
    font-size: 14px;
  }
}
.p-company-history .p-company-history__date span {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-company-history .p-company-history__date span {
    font-size: 17px;
  }
}
.p-company-history .p-company-history__contentItem {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 28px;
  display: flex;
  align-items: baseline;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company-history .p-company-history__contentItem {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
}
.p-company-history .p-company-history__contentItem::after {
  content: "";
  position: absolute;
  top: 15px;
  left: -9px;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-company-history .p-company-history__contentItem::after {
    top: 8px;
    left: -17px;
  }
}
.p-company-history .p-company-history__contentItem::before {
  content: "";
  position: absolute;
  top: 16px;
  left: -5px;
  width: 1px;
  height: calc(100% + 32px);
  background-color: rgba(26, 77, 152, 0.5);
}
@media screen and (max-width: 767px) {
  .p-company-history .p-company-history__contentItem::before {
    top: 8px;
    left: -13px;
    height: calc(100% + 32px + 37px);
  }
}
.p-company-history .p-company-history__contentItem + .p-company-history__contentItem {
  margin-top: 32px;
}
.p-company-history .p-company-history__textBox {
  flex: 1;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-company-history .p-company-history__textBox {
    padding-left: 8px;
  }
}
.p-company-history .p-company-history__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
}
.p-company-history .p-company-history__logo img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.p-business-detailsAbout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .p-business-detailsAbout {
    gap: 24px;
  }
}
.p-business-detailsAbout .p-business-detailsAbout__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-business-detailsAbout .p-business-detailsAbout__text {
    font-size: 15px;
  }
}
.p-business-detailsAbout .p-business-detailsAbout__text * + * {
  margin-top: 16px;
}
.p-business-detailsAbout .p-business-detailsAbout__img {
  flex-shrink: 0;
  max-width: 680px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-business-detailsAbout .p-business-detailsAbout__img {
    margin: 0 auto;
  }
}
.p-business-detailsAbout .p-business-detailsAbout__img img {
  display: block;
  width: 100%;
  height: auto;
}

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

.p-business-details__heading {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .p-business-details__heading {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
}

.p-business-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 16px;
}
@media screen and (max-width: 767px) {
  .p-business-details {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-business-details .p-business-details__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-business-details .p-business-details__text {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
  }
}
.p-business-details .p-business-details__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-primary);
  padding-bottom: 16px;
  border-bottom: solid 1px var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-business-details .p-business-details__title {
    font-size: 16px;
    padding-bottom: 8px;
  }
}
.p-business-details .p-business-details__title span {
  position: relative;
  display: block;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .p-business-details .p-business-details__title span {
    padding-right: 36px;
  }
}
.p-business-details .p-business-details__title span svg {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .p-business-details .p-business-details__title span svg {
    width: 20px;
    height: 20px;
  }
}
.p-business-details .p-business-details__img {
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 248/296;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-business-details .p-business-details__img {
    margin-bottom: 8px;
  }
}
.p-business-details .p-business-details__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: scale 0.3s;
}
.p-business-details .p-business-details__link {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-business-details .p-business-details__link:hover {
    opacity: 0.7;
  }
  .p-business-details .p-business-details__link:hover .p-business-details__img img {
    scale: 1.05;
  }
  .p-business-details .p-business-details__link:hover .p-business-details__title svg {
    transform: translateY(-50%) translateX(4px);
  }
}

.p-business-area + .p-business-area {
  margin-top: 80px;
  padding-top: 80px;
  border-top: solid 1px var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-business-area + .p-business-area {
    margin-top: 60px;
    padding-top: 60px;
  }
}
.p-business-area .p-business-area__row {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-business-area .p-business-area__row {
    flex-direction: column;
    gap: 24px;
  }
}
.p-business-area .p-business-area__row + .p-business-area__row {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-business-area .p-business-area__row + .p-business-area__row {
    margin-top: 40px;
  }
}
.p-business-area .p-business-area__row + .p-pageEntry__body {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-business-area .p-business-area__row + .p-pageEntry__body {
    margin-top: 40px;
  }
}
.p-business-area .c-sectionTitle {
  margin-bottom: 40px;
}
.p-business-area .p-business-area__col:first-child {
  flex-shrink: 0;
  width: 408px;
}
@media screen and (max-width: 767px) {
  .p-business-area .p-business-area__col:first-child {
    width: 100%;
  }
}
.p-business-area .p-business-area__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-business-area .p-business-area__text {
    font-size: 15px;
  }
}
.p-business-area .p-business-area__text * + * {
  margin-top: 16px;
}
.p-business-area .p-business-area__box {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-primary);
  background: var(--color-primary-lighter);
  border-radius: 10px;
  padding: 24px;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-business-area .p-business-area__box {
    font-size: 13px;
    padding: 12px;
    margin-top: 24px;
  }
}
.p-business-area .p-business-area__img {
  width: 100%;
  aspect-ratio: 408/224;
  border-radius: 8px;
  overflow: hidden;
}
.p-business-area .p-business-area__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-sitemap {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-sitemap {
    flex-direction: column;
    gap: 0;
  }
}
.p-sitemap .p-sitemap__left,
.p-sitemap .p-sitemap__right {
  width: calc((100% - 48px) / 2);
}
@media screen and (max-width: 767px) {
  .p-sitemap .p-sitemap__left,
  .p-sitemap .p-sitemap__right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-sitemap .p-sitemap__right .p-sitemap__list .p-sitemap__item:first-child {
    border-top: none;
  }
}
.p-sitemap .p-sitemap__item {
  display: flex;
  padding: 24px 0;
  border-top: solid 1px var(--color-border);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-sitemap .p-sitemap__item {
    padding: 16px 0;
    font-size: 15px;
  }
}
.p-sitemap .p-sitemap__item:last-child {
  border-bottom: solid 1px var(--color-border);
}
.p-sitemap .p-sitemap__item a {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-sitemap .p-sitemap__item a:hover {
    opacity: 0.7;
  }
}
.p-sitemap .p-sitemap__subList {
  margin-left: auto;
  flex-shrink: 0;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-sitemap .p-sitemap__subList {
    width: 57.1428571429%;
    gap: 8px;
  }
}
.p-sitemap .p-sitemap__subList .p-sitemap__subItem {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-sitemap .p-sitemap__subList .p-sitemap__subItem {
    font-size: 14px;
  }
}

body:not(.page-template-page-contact) .grecaptcha-badge {
  visibility: hidden;
}

.p-contact-step {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-contact-step {
    margin-bottom: 60px;
  }
}

.p-contact-step__bar {
  max-width: 264px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.p-contact-step__barItem {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-contact-step__barItem--current .p-contact-step__text {
  color: var(--color-primary);
}
.p-contact-step__barItem--current .p-contact-step__num {
  border: solid 1px var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}
.p-contact-step__barItem:last-child .p-contact-step__num::after {
  display: none;
}
.p-contact-step__barItem .p-contact-step__num::after {
  content: "";
  width: 65px;
  height: 1px;
  background: var(--color-gray-2);
  position: absolute;
  right: -65px;
  top: 50%;
  z-index: -1;
  transform: translate(0, -50%);
}

.p-contact-step__num {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: solid 1px var(--color-gray-2);
  background: var(--color-white);
  color: var(--color-gray-2);
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-contact-step__text {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  color: var(--color-gray-2);
  margin-top: 4px;
}

.p-contact-step__lead {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-contact-step__lead {
    font-size: 15px;
    text-align: left;
  }
}

.p-contact-form .wpcf7-spinner {
  display: none !important;
}
.p-contact-form--confirm .p-contact-form__label {
  min-height: auto;
}
.p-contact-form--confirm .p-contact-form__labelText {
  font-weight: 500;
  color: var(--color-text);
}
.p-contact-form--confirm .p-contact-form__input--postCode {
  font-weight: 400;
  color: var(--color-text);
}
.p-contact-form input {
  max-width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  padding: 15px 16px;
  background: var(--color-primary-lighter);
  border: solid 1px var(--color-border);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-contact-form input {
    font-size: 15px;
    padding: 12px 16px;
  }
}
.p-contact-form input::-moz-placeholder {
  color: var(--color-gray-3);
}
.p-contact-form input::placeholder {
  color: var(--color-gray-3);
}
.p-contact-form input[type=text],
.p-contact-form input[type=email],
.p-contact-form input[type=password] {
  width: 100%;
}
.p-contact-form select {
  min-width: 240px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-primary-lighter);
  border: solid 1px var(--color-border);
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../img/common/icon-select-arrow.svg");
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 24px center;
  padding: 15px 48px 15px 16px;
}
@media screen and (max-width: 767px) {
  .p-contact-form select {
    font-size: 15px;
    background-size: 12px auto;
    padding: 12px 48px 12px 16px;
  }
}
.p-contact-form .p-contact-form__checkbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-contact-form label:has(input[type=checkbox]),
.p-contact-form label:has(input[type=radio]) {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-contact-form label:has(input[type=checkbox]),
  .p-contact-form label:has(input[type=radio]) {
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 15px;
  }
}
.p-contact-form input[type=checkbox],
.p-contact-form input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  width: 24px;
  padding: 0;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--color-primary-lighter);
  border: solid 1px var(--color-border);
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .p-contact-form input[type=checkbox],
  .p-contact-form input[type=radio] {
    width: 22px;
  }
}
.p-contact-form input[type=checkbox]::before,
.p-contact-form input[type=radio]::before {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  border-left: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  rotate: -45deg;
  translate: 0 -1.5px;
  opacity: 0;
}
.p-contact-form input[type=checkbox]:checked::before,
.p-contact-form input[type=radio]:checked::before {
  opacity: 1;
}
.p-contact-form textarea {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  padding: 15px 16px;
  background: var(--color-primary-lighter);
  border: solid 1px var(--color-border);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-contact-form textarea {
    font-size: 15px;
    padding: 12px 16px;
  }
}
.p-contact-form textarea::-moz-placeholder {
  color: var(--color-gray-3);
}
.p-contact-form textarea::placeholder {
  color: var(--color-gray-3);
}

.p-contact-form__row {
  padding: 48px 0 24px;
  border-bottom: solid 1px var(--color-border);
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__row {
    padding: 24px 0;
    flex-direction: column;
    gap: 8px;
  }
}
.p-contact-form__row:first-child {
  padding-top: 0;
}

.p-contact-form__label {
  min-height: 55px;
  flex: 1;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__label {
    min-height: auto;
    justify-content: flex-start;
    padding-left: 0;
  }
}

.p-contact-form__labelText {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-contact-form__labelText {
    font-size: 15px;
  }
}
.p-contact-form__labelText span {
  display: block;
  font-size: 12px;
  color: var(--color-text);
}
.p-contact-form__labelText--required {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 21px;
  border: solid 1px var(--color-new);
  color: var(--color-new);
  flex-shrink: 0;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-contact-form__labelText--required {
    width: 44px;
    height: 19px;
    font-size: 10px;
  }
}

.p-contact-form__input {
  flex-shrink: 0;
  width: 546px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input {
    width: 100%;
  }
}
.p-contact-form__input--postCode {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-gray-2);
}
@media screen and (max-width: 767px) {
  .p-contact-form__input--postCode {
    gap: 8px;
    font-size: 15px;
  }
}
.p-contact-form__input--postCode input {
  max-width: 100px;
  width: 100%;
}

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

.p-contact-form__bottom .p-contact-form__checkbox {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-contact-form__bottom .p-contact-form__checkbox label:has(input[type=checkbox]),
.p-contact-form__bottom .p-contact-form__checkbox label:has(input[type=radio]) {
  font-weight: 700;
}

.p-contact-form__note {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-new);
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__note {
    font-size: 12px;
  }
}

.p-contact-form__button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__button {
    margin-top: 24px;
    flex-direction: column;
    gap: 24px;
  }
}
.p-contact-form__button input[type=button],
.p-contact-form__button input[type=submit],
.p-contact-form__button a {
  cursor: pointer;
  display: block;
  text-align: center;
  max-width: 280px;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  background: var(--color-primary);
  border: solid 1px var(--color-primary);
  border-radius: 8px;
  padding: 17px 16px;
  background-image: url("/wp/wp-content/themes/hitotohito/assets/img/common/icon-arrow.svg");
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: calc(100% - 24px) center;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact-form__button input[type=button],
  .p-contact-form__button input[type=submit],
  .p-contact-form__button a {
    max-width: 336px;
    padding: 11px 16px;
    background-size: 15px;
    background-position: calc(100% - 28px) center;
  }
}
@media (any-hover: hover) {
  .p-contact-form__button input[type=button]:hover,
  .p-contact-form__button input[type=submit]:hover,
  .p-contact-form__button a:hover {
    background-color: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-image: url("/wp/wp-content/themes/hitotohito/assets/img/common/icon-arrow-primary.svg");
  }
}
.p-contact-form__button input[type=button] {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-image: url("/wp/wp-content/themes/hitotohito/assets/img/common/icon-arrow-primary.svg");
}
@media (any-hover: hover) {
  .p-contact-form__button input[type=button]:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    background-image: url("/wp/wp-content/themes/hitotohito/assets/img/common/icon-arrow.svg");
  }
}

.c-youTubePlayer {
  width: 100%;
  aspect-ratio: 16/9;
}
.c-youTubePlayer iframe {
  width: 100%;
  height: 100%;
}

.c-sectionTitle {
  --font-color: var(--color-text);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--font-color);
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle {
    font-size: 24px;
    text-align: left;
    letter-spacing: 0.03em;
    margin-bottom: 40px;
  }
}
.c-sectionTitle--left {
  text-align: left;
}
.c-sectionTitle--left .c-sectionTitle--en {
  margin-left: 0;
  margin-right: auto;
}
.c-sectionTitle--en {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin: 0 auto 4px;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle--en {
    font-weight: 400;
    font-size: 10px;
    margin: 0 0 4px;
    padding-left: 16px;
  }
}
.c-sectionTitle--en::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background-color: var(--color-primary);
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle--en::before {
    width: 6px;
    height: 6px;
  }
}

.c-btn {
  --btnColor: var(--color-primary);
  --btnBg: var(--color-primary-light);
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.03em;
  padding: 18px 56px 20px 28px;
  color: var(--btnColor);
  background: var(--btnBg);
  border-radius: 12px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 14px;
    padding: 16px 56px 18px 28px;
  }
}
.c-btn svg {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
  .c-btn:hover svg {
    transform: translateY(-50%) translateX(4px);
  }
}

.c-btn__wrapper {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .c-btn__wrapper {
    margin-top: 32px;
  }
}

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

.c-newsCard__link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: solid 1px var(--color-border);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-newsCard__link {
    gap: 10px;
    padding-bottom: 20px;
  }
}
@media (any-hover: hover) {
  .c-newsCard__link:hover {
    opacity: 0.7;
  }
}

.c-newsCard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.c-newsCard__date {
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-newsCard__date {
    font-weight: 500;
    font-size: 14px;
  }
}

.c-newsCard__category {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.c-newsCard__categoryItem, .c-newsCard__categoryItem--new {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--color-gray-2);
  height: 21px;
  padding: 0 12px;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  color: var(--color-gray-2);
}
@media screen and (max-width: 767px) {
  .c-newsCard__categoryItem, .c-newsCard__categoryItem--new {
    height: 16px;
    padding: 0 8px;
    font-size: 10px;
  }
}
.c-newsCard__categoryItem--new {
  font-family: var(--font-family-en);
  font-weight: 600;
  border: solid 1px var(--color-new);
  color: var(--color-new);
}

.c-newsCard__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.c-textLinkCard {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px 16px;
}
@media screen and (max-width: 767px) {
  .c-textLinkCard {
    gap: 24px 16px;
  }
}

.c-textLinkCard__item {
  flex: 0 0 calc((100% - 16px) / 2);
}

.c-textLinkCard__link {
  display: flex;
  position: relative;
  padding-right: 26px;
  padding-bottom: 16px;
  border-bottom: solid 1px var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-textLinkCard__link {
    padding-right: 24px;
    padding-bottom: 12px;
    font-weight: 500;
  }
}
.c-textLinkCard__link svg {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  bottom: 16px;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .c-textLinkCard__link svg {
    width: 22px;
    height: 22px;
    bottom: 12px;
  }
}
@media (any-hover: hover) {
  .c-textLinkCard__link:hover {
    opacity: 0.7;
  }
  .c-textLinkCard__link:hover svg {
    transform: translateX(4px);
  }
}

.c-linkCard, .c-linkCard--3col {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
}
@media screen and (max-width: 767px) {
  .c-linkCard, .c-linkCard--3col {
    flex-direction: column;
    gap: 32px 0;
  }
}
.c-linkCard--3col {
  gap: 80px 28px;
}
@media screen and (max-width: 767px) {
  .c-linkCard--3col {
    gap: 32px 0;
  }
}
.c-linkCard--3col .c-linkCard__item {
  flex: 0 0 calc((100% - 56px) / 3);
}
@media screen and (max-width: 767px) {
  .c-linkCard--3col .c-linkCard__item {
    flex: 0 0 100%;
  }
}

.c-linkCard__item {
  flex: 0 0 calc((100% - 48px) / 2);
}
@media screen and (max-width: 767px) {
  .c-linkCard__item {
    flex: 0 0 100%;
  }
}

.c-linkCard__link {
  display: block;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-linkCard__link:hover {
    opacity: 0.7;
  }
  .c-linkCard__link:hover .c-linkCard__linkText svg {
    transform: translateX(4px);
  }
  .c-linkCard__link:hover .c-linkCard__linkImg img {
    scale: 1.05;
  }
}

.c-linkCard__linkImg {
  display: block;
  aspect-ratio: 248/135;
  width: 100%;
  margin-bottom: 36px;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-linkCard__linkImg {
    aspect-ratio: 112/61;
    margin-bottom: 16px;
  }
}
.c-linkCard__linkImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: scale 0.3s;
}

.c-linkCard__linkText {
  display: block;
  position: relative;
  padding-left: 8px;
  padding-right: 26px;
  padding-bottom: 16px;
  border-bottom: solid 1px var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-linkCard__linkText {
    padding-left: 0;
    padding-right: 24px;
    padding-bottom: 12px;
    font-weight: 500;
  }
}
.c-linkCard__linkText svg {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  bottom: 16px;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .c-linkCard__linkText svg {
    width: 22px;
    height: 22px;
    bottom: 12px;
  }
}

.c-fixedLogo {
  pointer-events: none;
  position: fixed;
  bottom: -358px;
  right: -15px;
  z-index: -1;
  width: 638px;
}
@media screen and (max-width: 767px) {
  .c-fixedLogo {
    bottom: -150px;
    right: -34px;
    width: 314px;
  }
}
.c-fixedLogo img {
  display: block;
  width: 100%;
  height: auto;
}

.c-breadcrumb {
  position: relative;
  z-index: 1;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    display: none;
    padding: 0;
  }
}

.c-breadcrumb__inner {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.c-breadcrumb__link,
.c-breadcrumb__current {
  font-weight: 500;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  white-space: nowrap;
}

.c-breadcrumb__current {
  color: var(--color-text);
}

.c-pageTitle {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 373px;
  background: var(--color-primary-light);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-pageTitle {
    height: 179px;
  }
}
.c-pageTitle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 479px;
  height: 377px;
  background-image: url("/wp/wp-content/themes/hitotohito/assets/img/common/page-title-bg.svg");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-pageTitle::after {
    width: 205px;
    height: 185px;
  }
}

.c-pageTitle__inner {
  max-width: 1080px;
  width: 100%;
  padding: 0 20px 120px;
  margin: auto auto 0;
}
@media screen and (max-width: 767px) {
  .c-pageTitle__inner {
    padding: 0 20px 60px;
  }
}

.c-pageTitle__title {
  font-weight: 400;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-pageTitle__title {
    font-weight: 500;
    font-size: 26px;
  }
}

.c-pageTitle__subtitle {
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: solid 1px var(--color-primary-dark);
}
@media screen and (max-width: 767px) {
  .c-pageTitle__subtitle {
    font-weight: 500;
    font-size: 10px;
    border-bottom: solid 1px var(--color-border);
  }
}

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

.c-overview__list {
  display: flex;
  gap: 0 28px;
}
@media screen and (max-width: 767px) {
  .c-overview__list {
    flex-direction: column;
    gap: 8px 0;
    padding-bottom: 16px;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .c-overview__list::before, .c-overview__list::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    border-bottom: solid 1px var(--color-gray-3);
  }
}
@media screen and (max-width: 767px) {
  .c-overview__list::after {
    width: 80px;
    border-bottom: solid 3px var(--color-primary);
  }
}

.c-overview__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
  flex: 0 0 160px;
  padding: 0 16px 13px;
  border-bottom: solid 3px var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-overview__title {
    font-size: 15px;
    flex: 0 0 auto;
    padding: 0;
    border-bottom: none;
  }
}

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

.c-otherPageLink {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}
@media screen and (max-width: 767px) {
  .c-otherPageLink {
    gap: 2px;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.c-otherPageLink__item {
  overflow: hidden;
  flex: 0 0 calc((100% - 2px) / 3);
  height: 160px;
}
@media screen and (max-width: 767px) {
  .c-otherPageLink__item {
    flex: 0 0 calc((100% - 2px) / 2);
    height: 80px;
  }
}

.c-otherPageLink__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.c-otherPageLink__link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.27) 0%, rgba(0, 0, 0, 0.27) 50%, rgba(26, 77, 152, 0.54) 69.71%, rgba(0, 81, 147, 0.9) 100%);
}
@media screen and (max-width: 767px) {
  .c-otherPageLink__link::after {
    background: linear-gradient(270deg, rgba(26, 77, 152, 0.45) 19.35%, rgba(0, 81, 147, 0.9) 80.51%);
  }
}
@media (any-hover: hover) {
  .c-otherPageLink__link:hover .c-otherPageLink__img img {
    transform: scale(1.05);
  }
  .c-otherPageLink__link:hover .c-otherPageLink__text svg {
    transform: translateY(-50%) translateX(4px);
  }
}

.c-otherPageLink__img {
  width: 100%;
  height: 100%;
}
.c-otherPageLink__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}

.c-otherPageLink__text {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 34px;
  position: absolute;
  left: 24px;
  bottom: 16px;
  z-index: 1;
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-otherPageLink__text {
    padding-right: 30px;
    left: 20px;
    bottom: 50%;
    transform: translateY(50%);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
  }
}
.c-otherPageLink__text svg {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .c-otherPageLink__text svg {
    width: 14px;
    height: 14px;
  }
}

.c-blankLink {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-decoration-line: underline;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-blankLink {
    font-size: 15px;
  }
}
.c-blankLink::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("/wp/wp-content/themes/hitotohito/assets/img/common/icon-blank.svg");
  background-size: cover;
}
.c-blankLink--black {
  color: var(--color-text);
}
.c-blankLink--black::after {
  background-image: url("/wp/wp-content/themes/hitotohito/assets/img/common/icon-blank-black.svg");
}

.c-localNav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .c-localNav {
    flex-direction: column;
    gap: 0;
  }
}

.c-localNav__item {
  max-width: 328px;
  flex: 1;
}
.c-localNav__item::before {
  display: none;
}

.c-localNav__link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 16px 56px 15px 16px;
  border-bottom: solid 1px var(--color-primary);
  background: var(--color-primary-lighter);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-localNav__link {
    padding: 13px 56px 12px 16px;
    font-size: 14px;
  }
}
.c-localNav__link svg {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .c-localNav__link:hover {
    opacity: 0.7;
  }
}

.c-tab__list {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .c-tab__list {
    gap: 2px;
  }
}

.c-tab__panel {
  padding-top: 64px;
}
@media screen and (max-width: 767px) {
  .c-tab__panel {
    padding-top: 40px;
  }
}

.c-tab__panel[aria-hidden=true] {
  display: none;
}

.c-tab__list {
  border-bottom: 4px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-tab__list {
    border-bottom: 2px solid var(--color-primary);
  }
}

.c-tab__list-item {
  width: min(400px, 100%);
}
@media screen and (max-width: 767px) {
  .c-tab__list-item {
    width: min(150px, 100%);
  }
}

.c-tab__button {
  width: 100%;
  text-align: center;
  color: var(--color-gray-2);
  background-color: var(--color-gray-1);
  height: 100%;
  min-height: 72px;
  display: grid;
  place-content: center;
  border-radius: 16px 16px 0 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-tab__button {
    min-height: 68px;
    border-radius: 8px 8px 0 0;
    font-size: 14px;
  }
}

.c-tab__button[aria-selected=true] {
  color: var(--color-white);
  background: var(--color-primary);
}

.c-pagination {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 60px;
  }
}

.c-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .c-pagination__list {
    gap: 16px;
  }
}

.c-pagination__item--current .c-pagination__link {
  border-bottom-color: var(--color-primary);
  font-weight: 600;
  color: var(--color-primary);
}

.c-pagination__item--prev {
  padding-right: 48px;
}
@media screen and (max-width: 767px) {
  .c-pagination__item--prev {
    padding-right: 30px;
  }
}
.c-pagination__item--prev .c-pagination__link {
  padding-bottom: 0;
  border-bottom: none;
  font-size: 0;
  line-height: 1;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-pagination__item--prev .c-pagination__link:hover {
    opacity: 0.7;
  }
}
.c-pagination__item--prev .c-pagination__link svg {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .c-pagination__item--prev .c-pagination__link svg {
    width: 48px;
    height: 48px;
  }
}

.c-pagination__item--next {
  padding-left: 48px;
}
@media screen and (max-width: 767px) {
  .c-pagination__item--next {
    padding-left: 30px;
  }
}
.c-pagination__item--next .c-pagination__link {
  padding-bottom: 0;
  border-bottom: none;
  font-size: 0;
  line-height: 1;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-pagination__item--next .c-pagination__link:hover {
    opacity: 0.7;
  }
}
.c-pagination__item--next .c-pagination__link svg {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .c-pagination__item--next .c-pagination__link svg {
    width: 48px;
    height: 48px;
  }
}

.c-pagination__link {
  display: block;
  padding-bottom: 4px;
  border-bottom: solid 2px transparent;
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-gray-2);
  transition: border-bottom-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-pagination__link {
    font-size: 15px;
  }
}

@media (any-hover: hover) {
  a.c-pagination__link:hover {
    border-bottom-color: var(--color-primary);
    color: var(--color-primary);
  }
}

.c-search {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .c-search {
    padding: 24px 12px;
    margin-bottom: 60px;
  }
}

.c-search__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .c-search__content {
    gap: 24px;
  }
}

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

.c-search__title {
  flex-shrink: 0;
  width: 144px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-search__title {
    width: 100%;
    font-size: 15px;
  }
}

.c-search__input {
  flex: 1;
}

.c-search__checkboxGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-search__checkboxGroup .c-search__checkboxItem {
  position: relative;
}
.c-search__checkboxGroup .c-search__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-search__checkboxGroup .c-search__checkboxLabel {
  cursor: pointer;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 15px;
  background: var(--color-white);
  border: 1px solid transparent;
  border-radius: 100px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .c-search__checkboxGroup .c-search__checkboxLabel:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
  }
}
.c-search__checkboxGroup .c-search__checkbox:checked + .c-search__checkboxLabel {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.c-search__select {
  min-width: 210px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-primary-lighter);
  border: solid 1px var(--color-border);
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../img/common/icon-select-arrow.svg");
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 24px center;
  padding: 7px 48px 7px 16px;
}
@media screen and (max-width: 767px) {
  .c-search__select {
    font-size: 15px;
    background-size: 12px auto;
    padding: 4px 48px 4px 16px;
  }
}

.c-search__buttonWrapper {
  display: flex;
  justify-content: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: solid 1px var(--color-border);
}
@media screen and (max-width: 767px) {
  .c-search__buttonWrapper {
    padding-top: 24px;
    margin-top: 24px;
  }
}

.c-search__button {
  cursor: pointer;
  display: block;
  text-align: center;
  max-width: 280px;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  background: var(--color-primary);
  border: solid 1px var(--color-primary);
  border-radius: 8px;
  padding: 17px 16px;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-search__button {
    padding: 11px 16px;
    background-size: 15px;
  }
}
@media (any-hover: hover) {
  .c-search__button:hover {
    background-color: var(--color-white);
    border-color: var(--color-primary);
    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-center-spLeft {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .u-text-center-spLeft {
    text-align: left;
  }
}

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

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

.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;
}

.block-editor-block-list__block.wp-block.is-style-number {
  list-style: none;
}

ul.wp-block-list.is-style-number {
  counter-reset: num 0;
}
ul.wp-block-list.is-style-number li:not([class]),
ul.wp-block-list.is-style-number li[class^=u-],
ul.wp-block-list.is-style-number li[class*=wp-] {
  counter-increment: num 1;
  padding-left: 48px;
}
@media screen and (max-width: 767px) {
  ul.wp-block-list.is-style-number li:not([class]),
  ul.wp-block-list.is-style-number li[class^=u-],
  ul.wp-block-list.is-style-number li[class*=wp-] {
    padding-left: 38px;
  }
}
ul.wp-block-list.is-style-number li:not([class])::before,
ul.wp-block-list.is-style-number li[class^=u-]::before,
ul.wp-block-list.is-style-number li[class*=wp-]::before {
  display: none;
}
ul.wp-block-list.is-style-number li:not([class])::after,
ul.wp-block-list.is-style-number li[class^=u-]::after,
ul.wp-block-list.is-style-number li[class*=wp-]::after {
  content: "（" counter(num) "）";
  position: absolute;
  top: 0;
  left: 0;
}

.has-primary-color-color {
  color: var(--color-primary) !important;
}

.has-secondary-color-color {
  color: var(--color-new) !important;
}/*# sourceMappingURL=style.css.map */