@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

ul,
ol {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

table {
  border-collapse: collapse;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  text-align: justify;
  background-color: #fff;
}
body.home {
  background-color: transparent;
}

.grecaptcha-badge {
  visibility: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  color: #fff;
  background-color: #222;
}
.skip-link:focus {
  top: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  transition: background 0.3s;
}
.l-header.is-scrolled {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}
.l-header__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
}
@media (width >= 1000px) {
  .l-header__inner {
    height: 80px;
    padding: 0 clamp(16px, 2.5vw, 40px);
  }
}
.l-header__logo {
  flex-shrink: 0;
  margin: 0;
}
.l-header__logo-link {
  display: block;
  text-decoration: none;
}
.l-header__logo-link img {
  display: block;
  width: auto;
  height: 36px;
}
@media (width >= 1000px) {
  .l-header__logo-link img {
    height: 44px;
  }
}
.l-header__logo-text {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #222;
}
@media (width >= 1000px) {
  .l-header__logo-text {
    font-size: 24px;
  }
}
.l-header__nav {
  display: none;
}
@media (width >= 1000px) {
  .l-header__nav {
    display: block;
    margin-left: auto;
  }
}
.l-header__nav-list {
  display: flex;
  gap: 0;
  align-items: center;
  height: 44px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.l-header__nav-item {
  display: flex;
  align-items: center;
}
.l-header__nav-link {
  position: relative;
  display: block;
  padding: 0 clamp(10px, 1.5vw, 24px);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 44px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
}
.l-header__nav-link::after {
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 1px;
  content: "";
  background-color: #222;
  transition: width 0.3s ease, left 0.3s ease;
}
.l-header__nav-link:hover::after {
  left: clamp(10px, 1.5vw, 24px);
  width: calc(100% - clamp(10px, 1.5vw, 24px) * 2);
}
.l-header__nav-link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.l-header__nav-item--has-sub {
  position: relative;
  padding-right: clamp(10px, 1.5vw, 24px);
}
.l-header__nav-item--has-sub .l-header__nav-link {
  padding-right: 10px;
}
.l-header__sub-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  margin-right: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.l-header__sub-toggle:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.l-header__sub-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  transition: transform 0.3s;
}
.l-header__sub-toggle[aria-expanded=true] .l-header__sub-toggle-icon {
  transform: rotate(180deg);
}
.l-header__sub-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 110;
  display: none;
  min-width: 760px;
  padding: 40px 50px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
}
.l-header__sub-menu::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 18px;
  content: "";
}
.l-header__nav-item--has-sub:hover .l-header__sub-menu, .l-header__sub-toggle[aria-expanded=true] + .l-header__sub-menu {
  display: block;
}
.l-header__sub-menu-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.l-header__sub-menu-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}
.l-header__sub-menu-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.l-header__sub-menu-list li {
  margin: 0 0 10px;
}
.l-header__sub-menu-list li:last-child {
  margin: 0;
}
.l-header__sub-menu-list a {
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: #3c3c3c;
  text-decoration: none;
}
.l-header__sub-menu-list a::after {
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  content: "";
  background-color: #3c3c3c;
  transition: width 0.3s ease, left 0.3s ease;
}
.l-header__sub-menu-list a:hover::after {
  left: 0;
  width: 100%;
}
.l-header__sub-menu-list a:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.l-header__cta {
  display: none;
}
@media (width >= 1000px) {
  .l-header__cta {
    display: flex;
    gap: 0;
    align-items: center;
  }
}
.l-header__cta-link {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 clamp(12px, 1.3vw, 20px);
  font-size: clamp(13px, 1vw, 15px);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.l-header__cta-link:hover {
  opacity: 0.75;
}
.l-header__cta-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -2px;
}
.l-header__cta-link--download {
  color: #fff;
  background-color: #3c3c3c;
}
.l-header__cta-link--contact {
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #3c3c3c;
}
.l-header__cta-text {
  position: relative;
}
.l-header__cta-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #222;
  background-color: #fff;
  border-radius: 50%;
}
.l-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
}
@media (width >= 1000px) {
  .l-header__burger {
    display: none;
  }
}
.l-header__burger:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.l-header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #222;
}

.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (width >= 1000px) {
  .l-drawer {
    display: none;
  }
}
.l-drawer.is-open {
  visibility: visible;
  opacity: 1;
}
.l-drawer__header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
}
.l-drawer__logo a {
  display: block;
  text-decoration: none;
}
.l-drawer__logo img {
  display: block;
  width: auto;
  height: 36px;
}
.l-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
}
.l-drawer__close:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.l-drawer__close-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}
.l-drawer__close-icon::before, .l-drawer__close-icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #222;
}
.l-drawer__close-icon::before {
  transform: rotate(45deg);
}
.l-drawer__close-icon::after {
  transform: rotate(-45deg);
}
.l-drawer__body {
  flex: 1;
  padding-bottom: 40px;
  overflow-y: auto;
}
.l-drawer__menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.l-drawer__menu-item {
  border-bottom: 1px solid #f5f5f5;
}
.l-drawer__menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 0 20px 0 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #222;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  background-color: #f5f5f5;
  border: none;
}
.l-drawer__menu-link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: -2px;
}
.l-drawer__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #c8c8c8;
}
.l-drawer__sub {
  display: block;
}
.l-drawer__sub-group {
  border-bottom: 1px solid #c8c8c8;
}
.l-drawer__sub-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #2c8ff1;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.l-drawer__sub-title:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: -2px;
}
.l-drawer__sub-chevron {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background-color: #2c8ff1;
  border-radius: 50%;
  transition: transform 0.3s;
}
.js-drawer-sub-accordion[aria-expanded=true] .l-drawer__sub-chevron {
  transform: rotate(180deg);
}
.l-drawer__sub-list {
  max-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  list-style: none;
  transition: max-height 0.3s ease;
}
.l-drawer__sub-list li {
  border-top: 1px solid #c8c8c8;
}
.l-drawer__sub-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 12px 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #3c3c3c;
  text-decoration: none;
}
.l-drawer__sub-list a:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: -2px;
}
.l-drawer__cta {
  display: flex;
  flex-direction: column;
}
.l-drawer__cta-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px 0 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
}
.l-drawer__cta-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -2px;
}
.l-drawer__cta-link--contact {
  background-color: #3c3c3c;
}
.l-drawer__cta-link--download {
  background-color: #787878;
}
.l-drawer__cta-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 50%;
}
.l-drawer__footer {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #c8c8c8;
}
.l-drawer__footer li {
  border-bottom: 1px solid #c8c8c8;
}
.l-drawer__footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 12px 0 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #222;
  text-decoration: none;
}
.l-drawer__footer-link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: -2px;
}

.l-footer {
  background-color: #f5f5f5;
}
.l-footer__inner {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media (width >= 768px) {
  .l-footer__inner {
    padding-top: 60px;
    padding-bottom: 24px;
  }
}
.l-footer__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid #222;
}
@media (width >= 1080px) {
  .l-footer__top {
    flex-direction: row;
    gap: 0;
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
}
.l-footer__brand {
  flex-shrink: 0;
  text-align: center;
}
@media (width >= 768px) {
  .l-footer__brand {
    text-align: left;
  }
}
@media (width >= 1080px) {
  .l-footer__brand {
    order: -1;
    margin-right: auto;
  }
}
.l-footer__logo {
  margin: 0 0 20px;
}
.l-footer__logo img {
  display: block;
  width: auto;
  height: 40px;
  margin: 0 auto;
}
@media (width >= 768px) {
  .l-footer__logo img {
    margin: 0;
  }
}
.l-footer__logo-text {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #222;
}
.l-footer__address {
  font-style: normal;
}
.l-footer__address-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #222;
  text-align: center;
}
@media (width >= 768px) {
  .l-footer__address-text {
    text-align: left;
  }
}
.l-footer__address-text a {
  color: inherit;
  text-decoration: none;
}
.l-footer__address-text a:hover {
  text-decoration: underline;
}
@media (width >= 768px) {
  .l-footer__tel-link {
    pointer-events: none;
  }
}
.l-footer__address-line {
  white-space: nowrap;
}
.l-footer__nav {
  display: none;
}
@media (width >= 768px) {
  .l-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (width >= 1080px) {
  .l-footer__nav {
    flex-wrap: nowrap;
    gap: 40px;
  }
}
.l-footer__nav-group {
  margin: 0 0 24px;
}
@media (width >= 768px) {
  .l-footer__nav-group {
    margin: 0;
  }
}
.l-footer__nav-group:last-child {
  margin-bottom: 0;
}
.l-footer__nav-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.07;
  color: #222;
}
.l-footer__nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.l-footer__nav-item {
  line-height: 1.2;
}
.l-footer__nav-item + .l-footer__nav-item {
  margin-top: 14px;
}
.l-footer__nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
}
.l-footer__nav-link::after {
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  content: "";
  background-color: #222;
  transition: width 0.3s ease, left 0.3s ease;
}
.l-footer__nav-link:hover::after {
  left: 0;
  width: 100%;
}
.l-footer__nav-link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.l-footer__bottom {
  text-align: center;
}
.l-footer__copyright {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #222;
}

.l-main {
  padding-top: 64px;
}
@media (width >= 768px) {
  .l-main {
    padding-top: 80px;
  }
}
.home .l-main {
  padding-top: 0;
}

.l-container {
  width: 100%;
  max-width: 1140px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.l-container--narrow {
  max-width: 840px;
}

@keyframes arrow-bounce {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.7);
  }
  75% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
.c-button {
  position: relative;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-width: 200px;
  height: 60px;
  padding: 0 20px 0 30px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #222;
  border-radius: 30px;
}
@media (width >= 768px) {
  .c-button {
    font-size: 16px;
    transition: color 0.15s ease;
  }
}
.c-button::before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  width: 11px;
  height: 11px;
  pointer-events: none;
  content: "";
  background-color: #3c3c3c;
  border-radius: 50%;
  transform: translate(0, -50%) scale(0);
}
@media (width >= 768px) {
  .c-button::before {
    transition: transform 0.3s ease;
    transform: translate(0, -50%) scale(1);
  }
}
@media (width >= 768px) {
  .c-button:not(:hover)::before {
    transition: transform 0.3s ease;
    transform: translate(0, -50%) scale(0);
  }
  .c-button:hover {
    color: #fff;
    transition: color 0.2s ease 0.25s;
  }
  .c-button:hover::before {
    transition: transform 0.5s ease 0.25s;
    transform: translate(0, -50%) scale(60);
  }
}
.c-button:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.c-button__text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.c-button__arrow {
  position: relative;
  z-index: 2;
  display: block;
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  background-color: #222;
  border-radius: 50%;
}
@media (width >= 768px) {
  .c-button__arrow {
    transition: background-color 0.15s ease;
  }
}
@media (width >= 768px) {
  .c-button:hover .c-button__arrow {
    background-color: #fff;
    transition: background-color 0.2s ease 0.25s;
    animation: arrow-bounce 0.35s ease;
  }
}
.c-button--wide {
  min-width: 264px;
}

.c-heading {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  margin: 0 0 24px;
}
@media (width >= 768px) {
  .c-heading {
    flex-flow: row wrap;
    gap: 0 12px;
    align-items: center;
    margin: 0 0 32px;
  }
}
.c-heading__en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
  color: #222;
  letter-spacing: 0.03em;
}
@media (width >= 768px) {
  .c-heading__en {
    font-size: clamp(48px, 6.1vw, 88px);
  }
}
.c-heading__ja {
  display: block;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  color: #222;
}
@media (width >= 768px) {
  .c-heading__ja {
    font-size: 16px;
  }
}
@media (width >= 768px) {
  .c-heading__ja {
    transform: translateY(4px);
  }
}

.c-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
  padding: 24px 0 18px;
}
@media (width >= 768px) {
  .c-filter-tabs {
    gap: 16px 12px;
    padding: 68px 0 40px;
  }
}
.c-filter-tabs__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 18px;
  transition: opacity 0.2s ease;
}
@media (width >= 768px) {
  .c-filter-tabs__tab {
    height: 40px;
    padding: 0 14px;
    font-size: 15px;
    line-height: 1;
    border-radius: 20px;
  }
}
@media (width >= 1080px) {
  .c-filter-tabs__tab {
    font-size: 18px;
  }
}
.c-filter-tabs__tab:hover {
  opacity: 0.6;
}
.c-filter-tabs__tab.is-active {
  background-color: #ebebeb;
}
.c-filter-tabs__tab:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}

.c-pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}
@media (width >= 768px) {
  .c-pagination {
    margin-top: 60px;
  }
}
.c-pagination ul {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-pagination li {
  display: flex;
}
.c-pagination li .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 13px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  border: 1px solid #c8c8c8;
  border-radius: 50%;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.c-pagination li .page-numbers:hover {
  background-color: #f5f5f5;
}
.c-pagination li .page-numbers:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.c-pagination li .page-numbers.current {
  color: #222;
  background-color: #ebebeb;
  border-color: #ebebeb;
}

.c-article {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #222;
  text-align: justify;
}
@media (width >= 768px) {
  .c-article {
    font-size: 17px;
    line-height: 2;
  }
}
.c-article h1 {
  margin: 48px 0 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}
@media (width >= 768px) {
  .c-article h1 {
    margin: 64px 0 32px;
    font-size: 30px;
  }
}
.c-article h2 {
  padding-bottom: 12px;
  margin: 48px 0 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  border-bottom: 2px solid #787878;
}
@media (width >= 768px) {
  .c-article h2 {
    margin: 64px 0 32px;
    font-size: 26px;
  }
}
.c-article h3 {
  padding-left: 16px;
  margin: 40px 0 20px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  border-left: 4px solid #787878;
}
@media (width >= 768px) {
  .c-article h3 {
    margin: 48px 0 24px;
    font-size: 22px;
  }
}
.c-article h4 {
  margin: 32px 0 16px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .c-article h4 {
    margin: 40px 0 20px;
    font-size: 19px;
  }
}
.c-article > :first-child {
  margin-top: 0;
}
.c-article p {
  margin: 0 0 1.2em;
}
.c-article ul {
  padding-left: 1.5em;
  margin: 0 0 24px;
  list-style-type: disc;
}
@media (width >= 768px) {
  .c-article ul {
    margin: 0 0 28px;
  }
}
.c-article ol {
  padding-left: 1.5em;
  margin: 0 0 24px;
  list-style-type: decimal;
}
@media (width >= 768px) {
  .c-article ol {
    margin: 0 0 28px;
  }
}
.c-article li {
  margin-bottom: 8px;
  line-height: 1.8;
}
.c-article li p {
  margin-bottom: 0;
}
.c-article ul ul,
.c-article ol ol,
.c-article ul ol,
.c-article ol ul {
  margin-top: 8px;
  margin-bottom: 0;
}
.c-article blockquote {
  padding: 20px 24px;
  margin: 0 0 24px;
  font-style: normal;
  background-color: #f5f5f5;
  border-left: 4px solid #c8c8c8;
}
@media (width >= 768px) {
  .c-article blockquote {
    padding: 24px 32px;
    margin: 0 0 28px;
  }
}
.c-article blockquote p {
  margin-bottom: 12px;
}
.c-article blockquote p:last-child {
  margin-bottom: 0;
}
.c-article blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-style: normal;
  color: #999;
}
.c-article table {
  width: 100%;
  margin: 0 0 24px;
  font-size: 14px;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .c-article table {
    margin: 0 0 28px;
    font-size: 15px;
  }
}
.c-article th,
.c-article td {
  padding: 10px 12px;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .c-article th,
  .c-article td {
    padding: 14px 20px;
  }
}
.c-article th {
  font-weight: 700;
  color: #fff;
  background-color: #3c3c3c;
}
.c-article tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}
.c-article tbody tr:last-child td {
  border-bottom: 0;
}
.c-article {
  /* stylelint-disable declaration-no-important */
}
.c-article table[style] {
  width: 100% !important;
  height: auto !important;
}
.c-article {
  /* stylelint-enable declaration-no-important */
}
.c-article img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.c-article img.c-article-img-border {
  border: 1px solid #c8c8c8;
}
.c-article figure {
  margin: 0 0 24px;
}
@media (width >= 768px) {
  .c-article figure {
    margin: 0 0 32px;
  }
}
.c-article figcaption {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #999;
  text-align: center;
}
.c-article strong {
  font-weight: 700;
}
.c-article em {
  font-style: italic;
}
.c-article a {
  color: #222;
  text-decoration: underline;
}
.c-article a:hover {
  text-decoration: none;
}
.c-article a:focus-visible {
  outline: 2px solid #222;
  outline-offset: 2px;
}
.c-article hr {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .c-article hr {
    margin: 40px 0;
  }
}
.c-article pre {
  padding: 16px 20px;
  margin: 0 0 24px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  background-color: #f5f5f5;
  border-radius: 4px;
}
@media (width >= 768px) {
  .c-article pre {
    padding: 20px 24px;
    margin: 0 0 28px;
  }
}
.c-article code {
  padding: 2px 6px;
  font-size: 0.9em;
  background-color: #f5f5f5;
  border-radius: 2px;
}
.c-article pre code {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}
.c-article {
  /* stylelint-disable selector-class-pattern */
}
.c-article .wp-block-image {
  margin: 0 0 24px;
}
@media (width >= 768px) {
  .c-article .wp-block-image {
    margin: 0 0 32px;
  }
}
.c-article .wp-block-image img {
  border-radius: 4px;
}
.c-article .wp-block-image figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #999;
  text-align: center;
}
.c-article .wp-block-separator {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .c-article .wp-block-separator {
    margin: 40px 0;
  }
}
.c-article .wp-block-quote {
  padding: 20px 24px;
  margin: 0 0 24px;
  background-color: #f5f5f5;
  border-left: 4px solid #c8c8c8;
}
@media (width >= 768px) {
  .c-article .wp-block-quote {
    padding: 24px 32px;
    margin: 0 0 28px;
  }
}
.c-article .c-article-gray-box {
  padding: 20px 24px;
  margin: 0 0 24px;
  background-color: #f5f5f5;
  border-radius: 4px;
}
@media (width >= 768px) {
  .c-article .c-article-gray-box {
    padding: 24px 32px;
    margin: 0 0 28px;
  }
}
.c-article .c-article-gray-box > :last-child {
  margin-bottom: 0;
}
.c-article .c-article-border-box {
  padding: 20px 24px;
  margin: 0 0 24px;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
}
@media (width >= 768px) {
  .c-article .c-article-border-box {
    padding: 24px 32px;
    margin: 0 0 28px;
  }
}
.c-article .c-article-border-box > :last-child {
  margin-bottom: 0;
}
.c-article .c-article-point-box {
  padding: 20px 24px;
  margin: 0 0 24px;
  background-color: #eef5fd;
  border-left: 4px solid #2c8ff1;
  border-radius: 0 4px 4px 0;
}
@media (width >= 768px) {
  .c-article .c-article-point-box {
    padding: 24px 32px;
    margin: 0 0 28px;
  }
}
.c-article .c-article-point-box > :last-child {
  margin-bottom: 0;
}
.c-article .c-article-marker-yellow {
  background: linear-gradient(transparent 60%, #fff59d 60%);
}
.c-article .c-article-marker-blue {
  background: linear-gradient(transparent 60%, #bbdefb 60%);
}
.c-article .c-article-text-red {
  font-weight: 700;
  color: #f60b0d;
}
.c-article .c-article-cta {
  padding: 32px 24px;
  margin: 48px 0;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 8px;
}
@media (width >= 768px) {
  .c-article .c-article-cta {
    padding: 48px;
    margin: 64px 0;
  }
}
.c-article .c-article-cta > :first-child {
  margin-top: 0;
}
.c-article .c-article-cta > :last-child {
  margin-bottom: 0;
}
.c-article .c-article-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 0;
}
@media (width >= 768px) {
  .c-article .c-article-cta__buttons {
    gap: 16px;
    margin: 32px 0 0;
  }
}
.c-article .c-article-cta__note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #999;
}
.c-article .c-button {
  text-decoration: none;
}
.c-article .c-button:hover {
  text-decoration: none;
}
.c-article {
  /* stylelint-enable selector-class-pattern */
}

.c-breadcrumb {
  padding: 12px 0 32px;
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-breadcrumb__item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  font-size: 12px;
  line-height: 1.4;
  color: #999;
}
.c-breadcrumb__item:last-child {
  flex-shrink: 1;
  min-width: 0;
}
.c-breadcrumb__separator {
  display: flex;
  align-items: center;
  padding: 0 6px;
  color: #c8c8c8;
}
.c-breadcrumb__separator .icon-chevron {
  width: 8px;
  height: 8px;
}
.c-breadcrumb__link {
  color: #999;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-breadcrumb__link:hover {
  opacity: 0.7;
}
.c-breadcrumb__link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.c-breadcrumb__current {
  overflow: hidden;
  color: #666;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (width >= 768px) {
  .c-form .wpcf7-form {
    gap: 40px;
  }
}
.c-form .wpcf7-spinner,
.c-form .hidden-fields-container {
  display: none;
}
.c-form .wpcf7-form-control-wrap {
  display: block;
  padding: 0;
  margin: 0;
}
.c-form__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-form__group > p:not([class]) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.c-form__label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .c-form__label {
    font-size: 16px;
  }
}
.c-form__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}
@media (width >= 768px) {
  .c-form__note {
    font-size: 14px;
  }
}
.c-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background-color: #222;
  border-radius: 2px;
}
.c-form .wpcf7-text,
.c-form .wpcf7-email,
.c-form .wpcf7-tel {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #222;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 0;
  transition: border-color 0.3s ease;
}
@media (width >= 768px) {
  .c-form .wpcf7-text,
  .c-form .wpcf7-email,
  .c-form .wpcf7-tel {
    height: 56px;
  }
}
.c-form .wpcf7-text:focus,
.c-form .wpcf7-email:focus,
.c-form .wpcf7-tel:focus {
  border-color: #2c8ff1;
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.c-form .wpcf7-text::placeholder,
.c-form .wpcf7-email::placeholder,
.c-form .wpcf7-tel::placeholder {
  color: #999;
}
.c-form .wpcf7-textarea {
  width: 100%;
  height: 160px;
  min-height: 120px;
  padding: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  resize: vertical;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 0;
  transition: border-color 0.3s ease;
}
@media (width >= 768px) {
  .c-form .wpcf7-textarea {
    height: 200px;
  }
}
.c-form .wpcf7-textarea:focus {
  border-color: #2c8ff1;
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.c-form .wpcf7-textarea::placeholder {
  color: #999;
}
.c-form .wpcf7-checkbox,
.c-form .wpcf7-acceptance {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}
@media (width >= 768px) {
  .c-form .wpcf7-checkbox,
  .c-form .wpcf7-acceptance {
    gap: 16px;
  }
}
.c-form .wpcf7-list-item {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
.c-form .wpcf7-list-item label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  line-height: 1.5;
  color: #222;
  cursor: pointer;
}
@media (width >= 768px) {
  .c-form .wpcf7-list-item label {
    font-size: 16px;
  }
}
.c-form .wpcf7-list-item input[type=checkbox] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  accent-color: #2c8ff1;
  cursor: pointer;
}
.c-form__error {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #f60b0d;
}
.c-form .is-invalid {
  border-color: #f60b0d;
}
.c-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #f60b0d;
}
.c-form .wpcf7-response-output {
  display: none;
}
.c-form__submit {
  margin-top: 8px;
  text-align: center;
}
@media (width >= 768px) {
  .c-form__submit {
    margin-top: 16px;
  }
}
.c-form__submit > p:not([class]) {
  padding: 0;
  margin: 0;
  text-align: center;
}
.c-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 264px;
  height: 60px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  cursor: pointer;
  background-color: #222;
  border: 1px solid #222;
  transition: opacity 0.3s ease;
}
@media (width >= 768px) {
  .c-form .wpcf7-submit {
    font-size: 16px;
  }
}
.c-form .wpcf7-submit:hover {
  opacity: 0.7;
}
.c-form .wpcf7-submit:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.c-form .wpcf7-submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.c-form__confirm-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .c-form__confirm-item {
    padding: 24px 0;
  }
}
.c-form__confirm-item:first-child {
  border-top: 1px solid #c8c8c8;
}
.c-form__confirm-value {
  padding: 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #222;
  white-space: pre-wrap;
}
@media (width >= 768px) {
  .c-form__confirm-value {
    font-size: 16px;
  }
}
.c-form__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 264px;
  height: 60px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  transition: opacity 0.3s ease;
}
@media (width >= 768px) {
  .c-form__back {
    font-size: 16px;
  }
}
.c-form__back:hover {
  opacity: 0.7;
}
.c-form__back:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.c-form__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 264px;
  height: 60px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  cursor: pointer;
  background-color: #222;
  border: 1px solid #222;
  transition: opacity 0.3s ease;
}
@media (width >= 768px) {
  .c-form__send {
    font-size: 16px;
  }
}
.c-form__send:hover {
  opacity: 0.7;
}
.c-form__send:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.c-form__privacy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.c-form__privacy-link {
  font-size: 14px;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .c-form__privacy-link {
    font-size: 15px;
  }
}
.c-form__privacy-link a {
  color: #2c8ff1;
  text-decoration: underline;
}
.c-form__privacy-link a:hover {
  text-decoration: none;
}
.c-form__privacy-link a:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.c-form__recaptcha {
  margin: 40px 0 0;
  font-size: 12px;
  line-height: 1.8;
  color: #999;
  text-align: center;
}
.c-form__recaptcha a {
  color: #999;
  text-decoration: underline;
}
.c-form__recaptcha a:hover {
  text-decoration: none;
}
.c-form__recaptcha a:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}

.c-cta {
  margin-bottom: 48px;
}
@media (width >= 768px) {
  .c-cta {
    margin-bottom: 64px;
  }
}
.c-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 15px;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 0;
}
@media (width >= 768px) {
  .c-cta__inner {
    padding: 56px 48px;
  }
}
.c-cta__title {
  margin: 0 0 20px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
}
@media (width >= 768px) {
  .c-cta__title {
    margin: 0 0 24px;
    font-size: 24px;
  }
}
.c-cta__lead {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: #222;
}
@media (width >= 768px) {
  .c-cta__lead {
    margin: 0 0 24px;
    font-size: 15px;
  }
}
.c-cta__divider {
  display: block;
  width: 40px;
  height: 1px;
  margin-bottom: 20px;
  background-color: #c8c8c8;
}
@media (width >= 768px) {
  .c-cta__divider {
    margin-bottom: 24px;
  }
}
.c-cta__text {
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #666;
}
@media (width >= 768px) {
  .c-cta__text {
    margin: 0 0 36px;
    font-size: 15px;
  }
}

.c-author {
  margin-bottom: 48px;
}
@media (width >= 768px) {
  .c-author {
    margin-bottom: 64px;
  }
}
.c-author__heading {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .c-author__heading {
    margin: 0 0 24px;
    font-size: 20px;
  }
}
.c-author__card {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 80px 1fr;
  gap: 12px 20px;
  padding: 24px 20px;
  border: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .c-author__card {
    grid-template-columns: 100px 1fr;
    gap: 12px 28px;
    padding: 32px;
  }
}
.c-author__photo {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  width: 80px;
  height: 80px;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
}
@media (width >= 768px) {
  .c-author__photo {
    grid-row: 1/-1;
    align-self: start;
    width: 100px;
    height: 100px;
  }
}
.c-author__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-author__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 11px;
  color: #999;
  background-color: #ebebeb;
}
.c-author__info {
  display: flex;
  flex-direction: column-reverse;
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  min-width: 0;
}
@media (width >= 768px) {
  .c-author__info {
    flex-direction: row;
    align-items: baseline;
  }
}
.c-author__name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .c-author__name {
    display: inline;
    margin: 0;
    font-size: 18px;
  }
}
.c-author__position {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #999;
}
@media (width >= 768px) {
  .c-author__position {
    margin: 0;
    font-size: 14px;
    color: #666;
  }
  .c-author__position::before {
    content: "｜";
  }
}
.c-author__name-en {
  margin: 0 0 12px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #999;
}
@media (width >= 768px) {
  .c-author__name-en {
    margin: 0 0 16px;
    font-size: 13px;
  }
}
.c-author__bio {
  grid-row: 2;
  grid-column: 1/-1;
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
}
@media (width >= 768px) {
  .c-author__bio {
    grid-column: 2;
    font-size: 14px;
  }
}

.c-toc {
  margin-top: 32px;
  margin-bottom: 32px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
}
@media (width >= 768px) {
  .c-toc {
    margin-top: 40px;
    margin-bottom: 48px;
  }
}

.c-toc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  background-color: #f5f5f5;
  border-bottom: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .c-toc__header {
    padding: 16px 20px;
  }
}
.c-toc.is-closed .c-toc__header {
  border-bottom-color: transparent;
}

.c-toc__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  letter-spacing: 0.08em;
}
@media (width >= 768px) {
  .c-toc__title {
    font-size: 15px;
  }
}

.c-toc__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
}

.c-toc__toggle-icon {
  position: relative;
  display: block;
  width: 12px;
  height: 2px;
  background-color: #999;
  transition: transform 0.3s ease;
}
.c-toc__toggle-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #999;
  transition: transform 0.3s ease;
  transform: rotate(0);
}

.c-toc.is-closed .c-toc__toggle-icon::after {
  transform: rotate(90deg);
}

.c-toc.c-toc a {
  text-decoration: none;
}

.c-toc.c-toc ul {
  padding-left: 0;
  list-style-type: none;
}

.c-toc.c-toc li {
  display: block;
  margin-bottom: 0;
  line-height: inherit;
  list-style-type: none;
}

.c-toc__list {
  padding: 12px 20px 16px;
  margin: 0;
  list-style: none;
  counter-reset: toc-h2;
}
@media (width >= 768px) {
  .c-toc__list {
    padding: 16px 28px 20px;
  }
}
.c-toc.c-toc .c-toc__list {
  padding: 12px 20px 16px;
  margin: 0;
  list-style: none;
}
@media (width >= 768px) {
  .c-toc.c-toc .c-toc__list {
    padding: 16px 28px 20px;
  }
}

.c-toc__item {
  position: relative;
  list-style-type: none;
}
.c-toc__item + .c-toc__item {
  margin-top: 0;
}

.c-toc__link {
  position: relative;
  display: flex;
  align-items: baseline;
  padding: 4px 8px 4px 0;
  font-size: 13px;
  line-height: 1.5;
  color: #222;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (width >= 768px) {
  .c-toc__link {
    padding: 4px 10px 4px 0;
    font-size: 14px;
  }
}
.c-toc__link::before {
  flex-shrink: 0;
  width: 24px;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-align: center;
  text-decoration: none;
}
@media (width >= 768px) {
  .c-toc__link::before {
    width: 28px;
    font-size: 13px;
  }
}
.c-toc__item--h2 > .c-toc__link::before {
  content: counter(toc-h2) ".";
}
.c-toc__item--h3 > .c-toc__link::before {
  width: 16px;
  font-size: 8px;
  content: "●";
}
@media (width >= 768px) {
  .c-toc__item--h3 > .c-toc__link::before {
    width: 20px;
  }
}
.c-toc__link:hover {
  background-color: #f5f5f5;
}
.c-toc__link.is-active {
  font-weight: 700;
  color: #3c3c3c;
  background-color: #f5f5f5;
}

.c-toc__item--h2 {
  counter-reset: toc-h3;
  counter-increment: toc-h2;
}
.c-toc__item--h2 + .c-toc__item--h2 {
  margin-top: 4px;
}
.c-toc__item--h2 > .c-toc__link {
  font-size: 14px;
  font-weight: 700;
}
@media (width >= 768px) {
  .c-toc__item--h2 > .c-toc__link {
    font-size: 15px;
  }
}

.c-toc__item--h3 {
  margin-left: 20px;
  counter-increment: toc-h3;
}
@media (width >= 768px) {
  .c-toc__item--h3 {
    margin-left: 24px;
  }
}

.c-table-wrap {
  margin: 0 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (width >= 768px) {
  .c-table-wrap {
    margin: 0 0 28px;
    overflow-x: visible;
  }
}
.c-table-wrap table {
  margin-bottom: 0;
}

.c-table {
  width: 100%;
  font-size: 14px;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .c-table {
    font-size: 15px;
  }
}
.c-table th,
.c-table td {
  padding: 10px 12px;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .c-table th,
  .c-table td {
    padding: 14px 20px;
  }
}
.c-table th {
  font-weight: 700;
  color: #fff;
  background-color: #3c3c3c;
}
.c-table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}
.c-table tbody tr:last-child td {
  border-bottom: 0;
}
.c-table tbody tr:first-child td {
  font-weight: 700;
}
.c-table thead + tbody tr:first-child td {
  font-weight: 400;
}
.c-table caption {
  padding: 8px 0;
  font-size: 13px;
  color: #666;
  text-align: left;
  caption-side: bottom;
}
.c-table {
  /* stylelint-disable declaration-no-important */
}
.c-table[style] {
  width: 100% !important;
  height: auto !important;
}
.c-table {
  /* stylelint-enable declaration-no-important */
}

.c-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.c-card__link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.c-card__img {
  aspect-ratio: 4/5;
  margin: 0 0 22px;
  overflow: hidden;
  background-color: #e0e0e0;
}
.c-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width >= 768px) {
  .c-card__img img {
    transition: transform 0.3s ease;
  }
}
@media (width >= 768px) {
  .c-card__link:hover .c-card__img img {
    transform: scale(1.05);
  }
}
.c-card__title {
  margin: 0 0 20px;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.89;
  color: #222;
}
.c-card__meta {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.07;
  color: #3c3c3c;
}

.c-news-item {
  border-bottom: 1px solid #787878;
}
.c-news-item__link {
  display: block;
  padding: 20px 0;
  color: inherit;
  text-decoration: none;
}
@media (width >= 768px) {
  .c-news-item__link {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0 15px;
    align-items: baseline;
  }
}
@media (width >= 1080px) {
  .c-news-item__link {
    grid-template-columns: 300px 1fr;
  }
}
.c-news-item__link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: -2px;
}
.c-news-item__meta {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .c-news-item__meta {
    margin: 0;
    font-size: 15px;
    line-height: 1.87;
  }
}
.c-news-item__cat {
  margin-left: 1em;
}
.c-news-item__title {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #666;
}
@media (width >= 768px) {
  .c-news-item__title {
    font-size: 15px;
    line-height: 1.87;
    transition: color 0.3s ease, transform 0.3s ease;
  }
}
@media (width >= 768px) {
  .c-news-item__link:hover .c-news-item__title {
    color: #222;
    transform: translateX(8px);
  }
}

.c-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-faq-item__question {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  cursor: pointer;
  background-color: #999;
  border: none;
}
@media (width >= 768px) {
  .c-faq-item__question {
    min-height: 60px;
    padding: 12px 24px;
  }
}
.c-faq-item__question:hover {
  opacity: 0.85;
}
.c-faq-item__question:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.c-faq-item__q-label {
  flex-shrink: 0;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (width >= 768px) {
  .c-faq-item__q-label {
    font-size: 24px;
  }
}
.c-faq-item__q-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  text-align: left;
}
@media (width >= 768px) {
  .c-faq-item__q-text {
    font-size: 18px;
  }
}
.c-faq-item__q-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: auto;
  color: #fff;
  transition: transform 0.3s;
}
.c-faq-item__question[aria-expanded=true] .c-faq-item__q-icon {
  transform: rotate(180deg);
}
.c-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.c-faq-item__a-body {
  padding: 16px;
}
@media (width >= 768px) {
  .c-faq-item__a-body {
    padding: 20px 24px 20px 60px;
  }
}
.c-faq-item__a-body > :last-child {
  margin-bottom: 0;
}
.c-faq-item__a-text {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .c-faq-item__a-text {
    font-size: 15px;
  }
}
.c-faq-item__a-text:last-child {
  margin-bottom: 0;
}
.c-faq-item__a-list {
  padding: 0 0 0 20px;
  margin: 8px 0 0;
  list-style: disc;
}
.c-faq-item__a-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .c-faq-item__a-list li {
    font-size: 15px;
  }
}
.c-faq-item__a-text + .c-faq-item__a-list {
  margin-top: 12px;
}

.c-fixed-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(100%);
}
.c-fixed-banner.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.c-fixed-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background-color: #3c3c3c;
}
@media (width >= 768px) {
  .c-fixed-banner__inner {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
  }
}
.c-fixed-banner__text {
  display: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
@media (width >= 768px) {
  .c-fixed-banner__text {
    display: block;
    font-size: 15px;
  }
}
.c-fixed-banner__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  border-radius: 24px;
  transition: opacity 0.2s ease;
}
@media (width >= 768px) {
  .c-fixed-banner__link {
    height: 48px;
    padding: 0 28px;
    font-size: 15px;
  }
  .c-fixed-banner__link:hover {
    opacity: 0.85;
  }
}
.c-fixed-banner__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.c-fixed-banner__link--primary {
  background-color: #2c8ff1;
}
@media (width >= 768px) {
  .c-fixed-banner__link--primary {
    min-width: 280px;
  }
}
.c-fixed-banner__link--secondary {
  display: none;
}
@media (width >= 768px) {
  .c-fixed-banner__link--secondary {
    display: flex;
    min-width: 160px;
    background-color: transparent;
    border: 1px solid #fff;
  }
}

@property --mask-edge {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 8%;
}
@property --bg-g1-x {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 22%;
}
@property --bg-g1-y {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 60%;
}
@property --bg-g2-x {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 45%;
}
@property --bg-g2-y {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 35%;
}
@property --bg-g3-x {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 30%;
}
@property --bg-g3-y {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 48%;
}
@property --bg-o1-x {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 75%;
}
@property --bg-o1-y {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 40%;
}
@property --bg-o2-x {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 58%;
}
@property --bg-o2-y {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 65%;
}
@property --bg-o3-x {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 82%;
}
@property --bg-o3-y {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 30%;
}
.p-hero {
  position: relative;
  height: 470px;
  overflow: hidden;
}
@media (width >= 768px) {
  .p-hero {
    height: 780px;
  }
}
.p-hero__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  --bg-g1-x: 22%;
  --bg-g1-y: 60%;
  --bg-g2-x: 45%;
  --bg-g2-y: 35%;
  --bg-g3-x: 30%;
  --bg-g3-y: 48%;
  --bg-o1-x: 75%;
  --bg-o1-y: 40%;
  --bg-o2-x: 58%;
  --bg-o2-y: 65%;
  --bg-o3-x: 82%;
  --bg-o3-y: 30%;
  background: radial-gradient(ellipse 65% 55% at var(--bg-g1-x) var(--bg-g1-y), rgba(140, 195, 240, 0.35) 0%, rgba(155, 205, 245, 0.12) 50%, transparent 85%), radial-gradient(ellipse 60% 50% at var(--bg-g2-x) var(--bg-g2-y), rgba(135, 190, 238, 0.3) 0%, rgba(150, 200, 242, 0.1) 48%, transparent 82%), radial-gradient(ellipse 55% 42% at var(--bg-g3-x) var(--bg-g3-y), rgba(145, 198, 242, 0.25) 0%, rgba(140, 195, 240, 0.08) 45%, transparent 80%), #fff;
  animation: none;
}
@media (width >= 768px) {
  .p-hero__bg {
    animation: blue-drift 50s ease-in-out infinite, orange-drift 45s ease-in-out infinite;
  }
}
.p-hero__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: transparent;
  background-image: radial-gradient(ellipse 65% 55% at var(--bg-o1-x) var(--bg-o1-y), rgba(245, 175, 110, 0.28) 0%, rgba(248, 185, 125, 0.1) 50%, transparent 85%), radial-gradient(ellipse 60% 50% at var(--bg-o2-x) var(--bg-o2-y), rgba(242, 170, 105, 0.24) 0%, rgba(245, 180, 120, 0.08) 48%, transparent 82%), radial-gradient(ellipse 55% 42% at var(--bg-o3-x) var(--bg-o3-y), rgba(240, 165, 100, 0.2) 0%, rgba(242, 175, 115, 0.06) 45%, transparent 80%);
  animation: tint-initial 1.5s ease-out forwards;
}
@media (width >= 768px) {
  .p-hero__bg::before {
    animation: tint-initial 1.5s ease-out forwards, tint-shift 30s ease-in-out 1.5s infinite;
  }
}
.p-hero__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: radial-gradient(ellipse 40% 32% at var(--bg-g1-x) var(--bg-g1-y), rgba(115, 180, 238, 0.6) 0%, rgba(130, 192, 242, 0.22) 50%, transparent 80%), radial-gradient(ellipse 35% 28% at var(--bg-g2-x) var(--bg-g2-y), rgba(110, 175, 235, 0.52) 0%, rgba(125, 188, 240, 0.18) 48%, transparent 78%), radial-gradient(ellipse 32% 25% at var(--bg-g3-x) var(--bg-g3-y), rgba(120, 182, 240, 0.45) 0%, rgba(115, 178, 238, 0.15) 45%, transparent 75%), radial-gradient(ellipse 40% 32% at var(--bg-o1-x) var(--bg-o1-y), rgba(240, 155, 75, 0.52) 0%, rgba(242, 165, 90, 0.18) 50%, transparent 80%), radial-gradient(ellipse 35% 28% at var(--bg-o2-x) var(--bg-o2-y), rgba(238, 150, 70, 0.45) 0%, rgba(240, 160, 85, 0.15) 48%, transparent 78%), radial-gradient(ellipse 32% 25% at var(--bg-o3-x) var(--bg-o3-y), rgba(235, 145, 65, 0.38) 0%, rgba(238, 155, 80, 0.12) 45%, transparent 75%), #fff;
  opacity: var(--scroll-blend, 0);
}
.p-hero__ripple {
  position: absolute;
  z-index: 1;
  transform: perspective(900px) rotateX(65deg);
}
.p-hero__ripple--01 {
  top: 45%;
  left: 50%;
}
@media (width >= 768px) {
  .p-hero__ripple--01 {
    top: 42%;
    left: 55%;
  }
}
.p-hero__ripple--02 {
  top: 35%;
  left: 25%;
}
@media (width >= 768px) {
  .p-hero__ripple--02 {
    top: 30%;
    left: 30%;
  }
}
.p-hero__ripple--03 {
  top: 55%;
  left: 70%;
}
@media (width >= 768px) {
  .p-hero__ripple--03 {
    top: 55%;
    left: 65%;
  }
}
.p-hero__ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 1000px;
  height: 1000px;
  margin: -500px 0 0 -500px;
  background: repeating-radial-gradient(circle, transparent 0, rgba(200, 210, 220, 0.1) 30px, rgba(255, 255, 255, 0.92) 42px, rgba(200, 210, 220, 0.04) 52px, transparent 95px);
  border-radius: 50%;
  opacity: 0;
  -webkit-mask-image: radial-gradient(circle, transparent 3%, black 5%, black var(--mask-edge), transparent calc(var(--mask-edge) + 4%));
  mask-image: radial-gradient(circle, transparent 3%, black 5%, black var(--mask-edge), transparent calc(var(--mask-edge) + 4%));
  transform: scale(0.08);
  animation: ripple-expand 27s linear 1.2s infinite;
}
.p-hero__ring:nth-child(3), .p-hero__ring:nth-child(4) {
  display: none;
}
@media (width >= 768px) {
  .p-hero__ring:nth-child(3), .p-hero__ring:nth-child(4) {
    display: block;
  }
}
@media (width >= 768px) {
  .p-hero__ring {
    width: 1500px;
    height: 1500px;
    margin: -750px 0 0 -750px;
  }
}
.p-hero__ripple--01 .p-hero__ring:nth-child(2) {
  animation-delay: 2.2s;
}
.p-hero__ripple--01 .p-hero__ring:nth-child(3) {
  animation-delay: 3.2s;
}
.p-hero__ripple--01 .p-hero__ring:nth-child(4) {
  animation-delay: 4.2s;
}
.p-hero__ripple--02 .p-hero__ring {
  animation-delay: 10.2s;
}
.p-hero__ripple--02 .p-hero__ring:nth-child(2) {
  animation-delay: 11.2s;
}
.p-hero__ripple--02 .p-hero__ring:nth-child(3) {
  animation-delay: 12.2s;
}
.p-hero__ripple--02 .p-hero__ring:nth-child(4) {
  animation-delay: 13.2s;
}
.p-hero__ripple--03 .p-hero__ring {
  animation-delay: 19.2s;
}
.p-hero__ripple--03 .p-hero__ring:nth-child(2) {
  animation-delay: 20.2s;
}
.p-hero__ripple--03 .p-hero__ring:nth-child(3) {
  animation-delay: 21.2s;
}
.p-hero__ripple--03 .p-hero__ring:nth-child(4) {
  animation-delay: 22.2s;
}
.p-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (width >= 768px) {
  .p-hero__inner {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.p-hero__heading {
  margin: 0 0 24px;
  opacity: 0;
  animation: fade-up 0.8s ease-out 0.3s forwards;
}
@media (width >= 768px) {
  .p-hero__heading {
    margin: 0 0 39px;
  }
}
.p-hero__heading-en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 0.975;
  color: #222;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #222 0%, #222 40%, rgb(125, 168, 225) 45%, rgb(220, 140, 80) 55%, #222 60%, #222 100%);
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 400% 100%;
  -webkit-text-fill-color: transparent;
  animation: text-shine 2s ease-in-out 0.9s forwards;
}
@media (width >= 768px) {
  .p-hero__heading-en {
    font-size: clamp(40px, 8.5vw, 123px);
  }
}
.p-hero__heading-amp {
  font-size: 24px;
}
@media (width >= 768px) {
  .p-hero__heading-amp {
    font-size: clamp(32px, 6.9vw, 100px);
  }
}
.p-hero__subheading {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.47;
  color: #222;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fade-up 0.8s ease-out 0.8s forwards;
}
@media (width >= 768px) {
  .p-hero__subheading {
    margin: 0 0 36px;
    font-size: 32px;
    line-height: 1.47;
  }
}
@media (width >= 1080px) {
  .p-hero__subheading-br {
    display: none;
  }
}
.p-hero__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
  color: #222;
  opacity: 0;
  animation: fade-up 0.8s ease-out 0.8s forwards;
}
@media (width >= 768px) {
  .p-hero__text {
    font-size: 20px;
    line-height: 1.6;
  }
}

@keyframes blue-drift {
  0%, 100% {
    --bg-g1-x: 22%;
    --bg-g1-y: 60%;
    --bg-g2-x: 45%;
    --bg-g2-y: 35%;
    --bg-g3-x: 30%;
    --bg-g3-y: 48%;
  }
  33% {
    --bg-g1-x: 42%;
    --bg-g1-y: 38%;
    --bg-g2-x: 18%;
    --bg-g2-y: 62%;
    --bg-g3-x: 48%;
    --bg-g3-y: 28%;
  }
  66% {
    --bg-g1-x: 28%;
    --bg-g1-y: 30%;
    --bg-g2-x: 38%;
    --bg-g2-y: 68%;
    --bg-g3-x: 15%;
    --bg-g3-y: 45%;
  }
}
@keyframes orange-drift {
  0%, 100% {
    --bg-o1-x: 75%;
    --bg-o1-y: 40%;
    --bg-o2-x: 58%;
    --bg-o2-y: 65%;
    --bg-o3-x: 82%;
    --bg-o3-y: 30%;
  }
  33% {
    --bg-o1-x: 58%;
    --bg-o1-y: 55%;
    --bg-o2-x: 72%;
    --bg-o2-y: 28%;
    --bg-o3-x: 65%;
    --bg-o3-y: 68%;
  }
  66% {
    --bg-o1-x: 68%;
    --bg-o1-y: 25%;
    --bg-o2-x: 55%;
    --bg-o2-y: 48%;
    --bg-o3-x: 78%;
    --bg-o3-y: 58%;
  }
}
@keyframes tint-initial {
  0%, 65% {
    background-color: transparent;
    opacity: 1;
  }
  100% {
    background-color: #fff;
    opacity: 0;
  }
}
@keyframes tint-shift {
  0%, 44% {
    opacity: 0;
  }
  46%, 94% {
    opacity: 1;
  }
  96%, 100% {
    opacity: 0;
  }
}
@keyframes ripple-expand {
  0% {
    --mask-edge: 8%;
    opacity: 0;
    transform: scale(0.08);
  }
  1.5% {
    --mask-edge: 10%;
    opacity: 0.9;
    transform: scale(0.12);
  }
  5% {
    --mask-edge: 18%;
    opacity: 0.85;
    transform: scale(0.22);
  }
  10% {
    --mask-edge: 35%;
    opacity: 0.7;
    transform: scale(0.4);
  }
  17% {
    --mask-edge: 60%;
    opacity: 0.45;
    transform: scale(0.65);
  }
  24% {
    --mask-edge: 85%;
    opacity: 0.2;
    transform: scale(0.85);
  }
  29.6% {
    --mask-edge: 100%;
    opacity: 0;
    transform: scale(1);
  }
  29.7%, 100% {
    --mask-edge: 8%;
    opacity: 0;
    transform: scale(0.08);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.home .l-header {
  opacity: 0;
  animation: fade-in-hero 0.6s ease-out 1s forwards;
}

@keyframes fade-in-hero {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text-shine {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0% 0;
  }
}
.p-concept {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background-color: rgba(254, 254, 254, 0.75);
}
@media (width >= 768px) {
  .p-concept {
    padding: 100px 0;
  }
}
.p-concept__inner {
  position: relative;
  z-index: 1;
}
.p-concept__btn-wrap {
  text-align: center;
}
@media (width >= 768px) {
  .p-concept__btn-wrap {
    text-align: left;
  }
}
.p-concept__text {
  margin: 0 0 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.86;
  color: #222;
}
@media (width >= 768px) {
  .p-concept__text {
    margin: 0 0 60px;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 2.1;
  }
}

.p-project-story {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background-color: #fff;
}
@media (width >= 768px) {
  .p-project-story {
    padding: 100px 0;
  }
}
body:not(.home) .p-project-story {
  padding: 40px 0;
  margin-bottom: 60px;
  background-color: transparent;
}
@media (width >= 768px) {
  body:not(.home) .p-project-story {
    padding: 50px 0 60px;
    margin-bottom: 100px;
  }
}
.p-project-story__bg {
  position: absolute;
  right: -4px;
  bottom: -4px;
  left: -4px;
  height: 55%;
  background-image: url("../images/front_project-story_01.jpg");
  filter: blur(2px);
  background-position: center;
  background-size: cover;
  border-radius: 0;
  opacity: 0.8;
}
.p-project-story__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
  background: linear-gradient(to bottom, #fff 0%, transparent 100%);
}
@media (width >= 768px) {
  .p-project-story__bg {
    top: -4px;
    left: auto;
    width: 50%;
    height: auto;
  }
  .p-project-story__bg::after {
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
  }
}
.p-project-story__inner {
  position: relative;
  z-index: 1;
}
@media (width >= 768px) {
  .p-project-story__inner {
    position: static;
  }
}
.p-project-story.is-visible .c-heading__en {
  background: linear-gradient(90deg, #222 0%, #222 40%, rgb(125, 168, 225) 45%, rgb(220, 140, 80) 55%, #222 60%, #222 100%);
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 400% 100%;
  -webkit-text-fill-color: transparent;
  animation: ps-text-shine 2s ease-in-out forwards;
}
@media (width >= 768px) {
  .p-project-story .c-heading {
    position: relative;
    z-index: 1;
  }
}
.p-project-story__card {
  padding: 0;
}
@media (width >= 768px) {
  .p-project-story__card {
    position: relative;
    z-index: 1;
  }
}
.p-project-story__lead {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.86;
  color: #222;
}
@media (width >= 768px) {
  .p-project-story__lead {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 2.1;
  }
}
.p-project-story__title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.64;
  color: #222;
}
@media (width >= 768px) {
  .p-project-story__title {
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 1.5625;
  }
}
.p-project-story__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 24px;
}
@media (width >= 768px) {
  .p-project-story__meta {
    margin: 0 0 32px;
  }
}
.p-project-story__btn-wrap {
  text-align: center;
}
@media (width >= 768px) {
  .p-project-story__btn-wrap {
    text-align: left;
  }
}
.p-project-story__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #2c8ff1;
  border-radius: 12px;
}
.p-project-story__result {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}
@media (width >= 768px) {
  .p-project-story__result {
    font-size: 16px;
  }
}

@keyframes ps-text-shine {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0% 0;
  }
}
.p-service {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background-color: rgba(254, 254, 254, 0.75);
}
@media (width >= 768px) {
  .p-service {
    padding: 100px 0;
  }
}
.p-service__inner {
  position: relative;
}
.p-service__lead {
  margin: 0 0 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.86;
  color: #222;
}
@media (width >= 768px) {
  .p-service__lead {
    margin: 0 0 50px;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 2.1;
  }
}
.p-service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin: 0 0 48px;
}
@media (width >= 768px) {
  .p-service__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4.5vw, 51px);
    margin: 0 0 51px;
  }
}
.p-service__col-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.1em;
}
@media (width >= 768px) {
  .p-service__col-title {
    font-size: clamp(21px, 2.4vw, 28px);
    line-height: 1.3;
  }
}
.p-service__col-desc {
  margin: 0 0 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.86;
  color: #222;
}
@media (width >= 768px) {
  .p-service__col-desc {
    font-size: clamp(13px, 1.3vw, 15px);
    line-height: 1.87;
  }
}
.p-service__list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid #c8c8c8;
}
.p-service__item {
  border-top: 1px solid #c8c8c8;
}
.p-service__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8px;
  color: inherit;
  text-decoration: none;
}
.p-service__item-link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: -2px;
}
.p-service__item-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
  color: #3c3c3c;
}
@media (width >= 768px) {
  .p-service__item-text {
    font-size: clamp(14px, 1.6vw, 18px);
    transition: color 0.3s ease, transform 0.3s ease;
  }
}
@media (width >= 768px) {
  .p-service__item-link:hover .p-service__item-text {
    color: #222;
    transform: translateX(8px);
  }
}
.p-service__item-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #3c3c3c;
  background-color: #f5f5f5;
  border-radius: 50%;
}
@media (width >= 768px) {
  .p-service__item-icon {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
}
@media (width >= 768px) {
  .p-service__item-link:hover .p-service__item-icon {
    color: #fff;
    background-color: #3c3c3c;
  }
}
.p-service__cta {
  display: flex;
  justify-content: center;
}

.p-works {
  padding: 60px 0;
  background-color: #fff;
}
@media (width >= 768px) {
  .p-works {
    padding: 100px 0;
  }
}
body:not(.home) .p-works {
  padding-top: 0;
  background-color: transparent;
}
@media (width >= 768px) {
  body:not(.home) .p-works {
    padding-top: 0;
  }
}
.p-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 0 0 48px;
}
@media (width >= 768px) {
  .p-works__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4.5vw, 51px);
    margin: 0 0 60px;
  }
}
.p-works__cta {
  display: flex;
  justify-content: center;
}

.p-contact__panels {
  display: flex;
  flex-direction: column;
}
@media (width >= 768px) {
  .p-contact__panels {
    flex-direction: row;
  }
}
.p-contact__panel {
  position: relative;
  display: flex;
  flex: 1;
  min-height: 320px;
  padding: 30px 20px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
@media (width >= 768px) {
  .p-contact__panel {
    min-height: 380px;
    padding: 30px;
  }
}
@media (width >= 1080px) {
  .p-contact__panel {
    min-height: 485px;
  }
}
.p-contact__panel:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}
.p-contact__panel-bg {
  position: absolute;
  inset: 0;
  background-color: #e0e0e0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.p-contact__panel--contact .p-contact__panel-bg {
  background-image: url("../images/contact_bg_contact.jpg");
}
.p-contact__panel--download .p-contact__panel-bg {
  background-image: url("../images/contact_bg_download.jpg");
}
.p-contact__panel-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}
.p-contact__panel--contact .p-contact__panel-overlay {
  background-color: #222;
  opacity: 0.7;
}
@media (width >= 768px) {
  .p-contact__panel--contact .p-contact__panel-overlay {
    opacity: 1;
  }
}
.p-contact__panel--download .p-contact__panel-overlay {
  background-color: #787878;
  opacity: 0.8;
}
@media (width >= 768px) {
  .p-contact__panel--download .p-contact__panel-overlay {
    opacity: 1;
  }
}
@media (width >= 768px) {
  .p-contact__panel--contact:hover .p-contact__panel-overlay {
    opacity: 0.5;
  }
}
@media (width >= 768px) {
  .p-contact__panel--download:hover .p-contact__panel-overlay {
    opacity: 0.7;
  }
}
.p-contact__panel-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}
@media (width >= 768px) {
  .p-contact__panel-inner {
    justify-content: flex-end;
    padding-right: 100px;
  }
}
.p-contact__panel-heading {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  margin: 0 0 18px;
}
@media (width >= 768px) {
  .p-contact__panel-heading {
    flex-flow: row wrap;
    gap: 0 16px;
    align-items: center;
  }
}
.p-contact__panel-en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.75;
  color: #fff;
  letter-spacing: 0.03em;
}
@media (width >= 768px) {
  .p-contact__panel-en {
    font-size: clamp(40px, 4.4vw, 64px);
  }
}
.p-contact__panel-ja {
  display: block;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
@media (width >= 768px) {
  .p-contact__panel-ja {
    font-size: 16px;
  }
}
.p-contact__panel-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.86;
  color: #fff;
}
@media (width >= 768px) {
  .p-contact__panel-text {
    font-size: clamp(13px, 1.3vw, 15px);
    line-height: 2;
  }
}
.p-contact__panel-cta {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-top: 28px;
  border-radius: 50%;
}
@media (width >= 768px) {
  .p-contact__panel-cta {
    position: absolute;
    right: 0;
    bottom: 30px;
    z-index: 1;
    margin-top: 0;
  }
}
.p-contact__panel--contact .p-contact__panel-cta {
  color: #222;
  background-color: #fff;
  border: none;
}
.p-contact__panel--download .p-contact__panel-cta {
  color: #222;
  background-color: #f5f5f5;
  border: none;
}
.p-contact__panel-cta .icon-chevron {
  width: 20px;
  height: 20px;
}
.p-contact__tel {
  padding: 16px 20px;
  background-color: #fff;
}
@media (width >= 768px) {
  .p-contact__tel {
    padding: 20px;
  }
}
.p-contact__tel-text {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.87;
  color: #222;
  text-align: center;
}
.p-contact__tel-text a {
  color: inherit;
  text-decoration: none;
}
.p-contact__tel-text a:hover {
  text-decoration: underline;
}
@media (width >= 768px) {
  .p-contact__tel-link {
    pointer-events: none;
  }
}

.p-page-hero {
  position: relative;
}
.p-page-hero__band {
  position: relative;
  height: 190px;
  padding-top: 60px;
  margin-top: -60px;
  overflow: hidden;
}
@media (width >= 768px) {
  .p-page-hero__band {
    height: 293px;
    padding-top: 80px;
    margin-top: -80px;
  }
}
.p-page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 55% 70% at 15% 50%, rgba(140, 195, 240, 0.3) 0%, rgba(155, 205, 245, 0.1) 50%, transparent 80%), radial-gradient(ellipse 50% 60% at 30% 35%, rgba(135, 190, 238, 0.22) 0%, rgba(150, 200, 242, 0.08) 48%, transparent 78%), radial-gradient(ellipse 55% 70% at 85% 50%, rgba(245, 175, 110, 0.24) 0%, rgba(248, 185, 125, 0.08) 50%, transparent 80%), radial-gradient(ellipse 50% 60% at 72% 65%, rgba(242, 170, 105, 0.18) 0%, rgba(245, 180, 120, 0.06) 48%, transparent 78%), #fff;
}
.p-page-hero__bg::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  content: "";
  background: linear-gradient(to top, #fff 0%, transparent 100%);
}
.p-page-hero__sparkle {
  position: absolute;
  z-index: 0;
  width: 40px;
  height: 40px;
  filter: blur(0.3px);
  opacity: 0.65;
}
.p-page-hero__sparkle::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: repeating-conic-gradient(from 0deg, #fff 0deg 2deg, transparent 2deg 15deg);
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle, #222 0%, #222 8%, transparent 65%);
  mask-image: radial-gradient(circle, #222 0%, #222 8%, transparent 65%);
  transform: perspective(200px) rotateX(25deg) rotateY(-15deg);
}
.p-page-hero__sparkle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  content: "";
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%);
}
@media (width >= 768px) {
  .p-page-hero__sparkle {
    width: 55px;
    height: 55px;
  }
  .p-page-hero__sparkle::after {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.8);
  }
}
.p-page-hero__sparkle--01 {
  top: 25%;
  left: 8%;
  width: 50px;
  height: 50px;
}
@media (width >= 768px) {
  .p-page-hero__sparkle--01 {
    top: 22%;
    left: 10%;
    width: 65px;
    height: 65px;
  }
}
.p-page-hero__sparkle--02 {
  top: 20%;
  left: 55%;
  width: 35px;
  height: 35px;
  opacity: 0.55;
}
.p-page-hero__sparkle--02::before {
  transform: perspective(200px) rotateX(-15deg) rotateY(20deg);
}
@media (width >= 768px) {
  .p-page-hero__sparkle--02 {
    top: 18%;
    left: 50%;
    width: 48px;
    height: 48px;
  }
}
.p-page-hero__sparkle--03 {
  top: 15%;
  left: 30%;
  width: 22px;
  height: 22px;
  opacity: 0.5;
}
.p-page-hero__sparkle--03::before {
  transform: perspective(200px) rotateX(20deg) rotateY(10deg);
}
@media (width >= 768px) {
  .p-page-hero__sparkle--03 {
    top: 12%;
    left: 32%;
    width: 30px;
    height: 30px;
  }
}
.p-page-hero__sparkle--04 {
  top: 30%;
  left: 25%;
  width: 85px;
  height: 85px;
  filter: blur(1.2px);
  opacity: 0.7;
}
.p-page-hero__sparkle--04::before {
  transform: perspective(200px) rotateX(10deg) rotateY(-10deg);
}
@media (width >= 768px) {
  .p-page-hero__sparkle--04 {
    top: 25%;
    left: 28%;
    width: 120px;
    height: 120px;
  }
}
.p-page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
}
.p-page-hero__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
}
@media (width >= 768px) {
  .p-page-hero__heading {
    flex-direction: row;
    gap: 21px;
    align-items: center;
  }
}
.p-page-hero__heading-en {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #222;
  letter-spacing: 0.03em;
}
@media (width >= 768px) {
  .p-page-hero__heading-en {
    font-size: 64px;
  }
}
@media (width >= 1080px) {
  .p-page-hero__heading-en {
    font-size: 88px;
  }
}
.p-page-hero__heading-ja {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}
@media (width >= 768px) {
  .p-page-hero__heading-ja {
    margin-top: 12px;
    font-size: 16px;
  }
}
.p-page-hero__heading-ja:only-child {
  margin-top: 0;
  font-size: 28px;
  letter-spacing: 2px;
}
@media (width >= 768px) {
  .p-page-hero__heading-ja:only-child {
    font-size: 40px;
  }
}
.p-page-hero__lead-wrap {
  padding-top: 8px;
  padding-bottom: 20px;
}
@media (width >= 768px) {
  .p-page-hero__lead-wrap {
    padding-top: 12px;
    padding-bottom: 28px;
  }
}
.p-page-hero__lead {
  max-width: 903px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-page-hero__lead {
    font-size: 15px;
    line-height: 2;
  }
}
@media (width >= 1080px) {
  .p-page-hero__lead {
    font-size: 18px;
  }
}

.p-service-detail-hero {
  position: relative;
}
.p-service-detail-hero__band {
  position: relative;
  margin-top: -60px;
  overflow: hidden;
}
@media (width >= 768px) {
  .p-service-detail-hero__band {
    margin-top: -80px;
  }
}
.p-service-detail-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 240px;
  background: radial-gradient(ellipse 55% 90% at 15% 40%, rgba(140, 195, 240, 0.25) 0%, rgba(155, 205, 245, 0.08) 50%, transparent 75%), radial-gradient(ellipse 50% 70% at 30% 25%, rgba(135, 190, 238, 0.15) 0%, transparent 70%), radial-gradient(ellipse 55% 90% at 85% 40%, rgba(245, 175, 110, 0.2) 0%, rgba(248, 185, 125, 0.06) 50%, transparent 75%), radial-gradient(ellipse 50% 70% at 70% 60%, rgba(242, 170, 105, 0.12) 0%, transparent 70%), #fff;
  mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
}
@media (width >= 768px) {
  .p-service-detail-hero__bg {
    height: 340px;
  }
}
.p-service-detail-hero__sparkle {
  position: absolute;
  z-index: 0;
  width: 40px;
  height: 40px;
  filter: blur(0.3px);
  opacity: 0.65;
}
.p-service-detail-hero__sparkle::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: repeating-conic-gradient(from 0deg, #fff 0deg 2deg, transparent 2deg 15deg);
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle, #222 0%, #222 8%, transparent 65%);
  mask-image: radial-gradient(circle, #222 0%, #222 8%, transparent 65%);
  transform: perspective(200px) rotateX(25deg) rotateY(-15deg);
}
.p-service-detail-hero__sparkle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  content: "";
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%);
}
@media (width >= 768px) {
  .p-service-detail-hero__sparkle {
    width: 55px;
    height: 55px;
  }
  .p-service-detail-hero__sparkle::after {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.8);
  }
}
.p-service-detail-hero__sparkle--01 {
  top: 18%;
  left: 8%;
  width: 50px;
  height: 50px;
}
@media (width >= 768px) {
  .p-service-detail-hero__sparkle--01 {
    top: 15%;
    left: 10%;
    width: 65px;
    height: 65px;
  }
}
.p-service-detail-hero__sparkle--02 {
  top: 12%;
  left: 50%;
  width: 35px;
  height: 35px;
  opacity: 0.55;
}
.p-service-detail-hero__sparkle--02::before {
  transform: perspective(200px) rotateX(-15deg) rotateY(20deg);
}
@media (width >= 768px) {
  .p-service-detail-hero__sparkle--02 {
    top: 10%;
    left: 48%;
    width: 48px;
    height: 48px;
  }
}
.p-service-detail-hero__sparkle--03 {
  top: 8%;
  left: 30%;
  width: 22px;
  height: 22px;
  opacity: 0.5;
}
.p-service-detail-hero__sparkle--03::before {
  transform: perspective(200px) rotateX(20deg) rotateY(10deg);
}
@media (width >= 768px) {
  .p-service-detail-hero__sparkle--03 {
    top: 6%;
    left: 32%;
    width: 30px;
    height: 30px;
  }
}
.p-service-detail-hero__sparkle--04 {
  top: 20%;
  left: 25%;
  width: 85px;
  height: 85px;
  filter: blur(1.2px);
  opacity: 0.7;
}
.p-service-detail-hero__sparkle--04::before {
  transform: perspective(200px) rotateX(10deg) rotateY(-10deg);
}
@media (width >= 768px) {
  .p-service-detail-hero__sparkle--04 {
    top: 15%;
    left: 28%;
    width: 120px;
    height: 120px;
  }
}
.p-service-detail-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (width >= 768px) {
  .p-service-detail-hero__inner {
    padding-top: 170px;
    padding-bottom: 90px;
  }
}
.p-service-detail-hero__label {
  margin: 0 0 8px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #999;
  letter-spacing: 2px;
}
@media (width >= 768px) {
  .p-service-detail-hero__label {
    font-size: 20px;
  }
}
.p-service-detail-hero__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: #222;
  letter-spacing: 2px;
}
@media (width >= 768px) {
  .p-service-detail-hero__title {
    margin: 0 0 24px;
    font-size: 40px;
  }
}
.p-service-detail-hero__lead {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #222;
}
@media (width >= 768px) {
  .p-service-detail-hero__lead {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.8;
  }
}
.p-service-detail-hero__desc {
  max-width: 903px;
}
.p-service-detail-hero__desc p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-service-detail-hero__desc p {
    font-size: 15px;
    line-height: 1.87;
  }
}
.p-service-detail-hero__nav {
  background-color: #f5f5f5;
}
.p-service-detail-hero__nav-inner {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  height: 83px;
}
@media (width >= 768px) {
  .p-service-detail-hero__nav-inner {
    gap: 100px;
    height: 66px;
  }
}
.p-service-detail-hero__nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
}
@media (width >= 768px) {
  .p-service-detail-hero__nav-link {
    flex-direction: row;
    font-size: 15px;
  }
}
.p-service-detail-hero__nav-link:hover {
  opacity: 0.7;
}
.p-service-detail-hero__nav-link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-service-detail-hero__nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #222;
  border: 1px solid #222;
  border-radius: 50%;
}

.p-service-detail-strength {
  padding: 40px 0 60px;
}
@media (width >= 768px) {
  .p-service-detail-strength {
    padding: 100px 0;
  }
}
.p-service-detail-strength__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 40px;
}
@media (width >= 768px) {
  .p-service-detail-strength__heading {
    margin: 0 0 60px;
  }
}
.p-service-detail-strength__heading-en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #222;
  letter-spacing: 0.03em;
}
@media (width >= 768px) {
  .p-service-detail-strength__heading-en {
    font-size: 64px;
  }
}
.p-service-detail-strength__heading-ja {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}
@media (width >= 768px) {
  .p-service-detail-strength__heading-ja {
    margin-top: 12px;
    font-size: 16px;
  }
}
.p-service-detail-strength__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (width >= 768px) {
  .p-service-detail-strength__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (width >= 768px) {
  .p-service-detail-strength__item {
    text-align: center;
  }
}
.p-service-detail-strength__item-head {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0 0 16px;
}
@media (width >= 768px) {
  .p-service-detail-strength__item-head {
    display: block;
  }
}
.p-service-detail-strength__num {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: #999;
}
@media (width >= 768px) {
  .p-service-detail-strength__num {
    font-size: 48px;
  }
}
.p-service-detail-strength__item-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}
@media (width >= 768px) {
  .p-service-detail-strength__item-title {
    margin: 12px 0 0;
    font-size: 22px;
  }
}
.p-service-detail-strength__item-text {
  max-width: 500px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-service-detail-strength__item-text {
    margin: 20px auto 0;
    font-size: 15px;
    text-align: left;
  }
}

.p-service-detail-flow {
  padding: 0 0 60px;
}
@media (width >= 768px) {
  .p-service-detail-flow {
    padding: 0 0 100px;
  }
}
.p-service-detail-flow__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 40px;
}
@media (width >= 768px) {
  .p-service-detail-flow__heading {
    margin: 0 0 60px;
  }
}
.p-service-detail-flow__heading-en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #222;
  letter-spacing: 0.03em;
}
@media (width >= 768px) {
  .p-service-detail-flow__heading-en {
    font-size: 64px;
  }
}
.p-service-detail-flow__heading-ja {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}
@media (width >= 768px) {
  .p-service-detail-flow__heading-ja {
    margin-top: 12px;
    font-size: 16px;
  }
}
.p-service-detail-flow__summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (width >= 768px) {
  .p-service-detail-flow__summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 50px;
  }
}
.p-service-detail-flow__col {
  border-top: 1px solid #999;
}
.p-service-detail-flow__col + .p-service-detail-flow__col {
  border-top: none;
}
@media (width >= 768px) {
  .p-service-detail-flow__col + .p-service-detail-flow__col {
    border-top: 1px solid #999;
  }
}
.p-service-detail-flow__step {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #999;
}
@media (width >= 768px) {
  .p-service-detail-flow__step {
    padding: 20px 0;
  }
}
.p-service-detail-flow__step-num {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: #999;
}
@media (width >= 768px) {
  .p-service-detail-flow__step-num {
    font-size: 24px;
  }
}
.p-service-detail-flow__step-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
}
@media (width >= 768px) {
  .p-service-detail-flow__step-name {
    font-size: 20px;
  }
}
.p-service-detail-flow__toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media (width >= 768px) {
  .p-service-detail-flow__toggle-wrap {
    margin-top: 48px;
  }
}
.p-service-detail-flow__toggle {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  height: 50px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  background-color: #f5f5f5;
  border: none;
}
@media (width >= 768px) {
  .p-service-detail-flow__toggle {
    min-width: 440px;
    height: 62px;
    font-size: 16px;
  }
}
.p-service-detail-flow__toggle:hover {
  opacity: 0.7;
}
.p-service-detail-flow__toggle:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-service-detail-flow__toggle-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #222;
  border: 1px solid #222;
  border-radius: 50%;
  transition: transform 0.3s;
}
.p-service-detail-flow__toggle[aria-expanded=true] .p-service-detail-flow__toggle-icon {
  transform: rotate(180deg);
}
.p-service-detail-flow__detail {
  max-height: 0;
  margin-top: 32px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
@media (width >= 768px) {
  .p-service-detail-flow__detail {
    margin-top: 48px;
  }
}
.p-service-detail-flow__detail-step {
  padding: 20px 0;
  border-bottom: 1px solid #999;
}
@media (width >= 768px) {
  .p-service-detail-flow__detail-step {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    align-items: center;
    min-height: 104.1px;
    padding: 24px 0;
  }
}
.p-service-detail-flow__detail-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
@media (width >= 768px) {
  .p-service-detail-flow__detail-head {
    margin-bottom: 0;
  }
}
.p-service-detail-flow__detail-head .p-service-detail-flow__step-name {
  font-size: 18px;
}
@media (width >= 768px) {
  .p-service-detail-flow__detail-head .p-service-detail-flow__step-name {
    font-size: 20px;
  }
}
.p-service-detail-flow__detail-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-service-detail-flow__detail-text {
    font-size: 15px;
  }
}

.p-service-detail-faq {
  padding: 0 0 60px;
}
@media (width >= 768px) {
  .p-service-detail-faq {
    padding: 0 0 100px;
  }
}

.p-service-detail-other {
  padding: 60px 0;
}
@media (width >= 768px) {
  .p-service-detail-other {
    padding: 100px 0;
  }
}
.p-service-detail-other__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 32px;
}
@media (width >= 768px) {
  .p-service-detail-other__heading {
    margin: 0 0 40px;
  }
}
.p-service-detail-other__heading-en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #222;
  letter-spacing: 0.03em;
}
@media (width >= 768px) {
  .p-service-detail-other__heading-en {
    font-size: 40px;
  }
}
.p-service-detail-other__heading-ja {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}
@media (width >= 768px) {
  .p-service-detail-other__heading-ja {
    margin-top: 12px;
    font-size: 16px;
  }
}
.p-service-detail-other__divider {
  width: 200px;
  height: 1px;
  margin: 0 auto 32px;
  background-color: #999;
}
@media (width >= 768px) {
  .p-service-detail-other__divider {
    width: 236px;
    margin: 0 auto 40px;
  }
}
.p-service-detail-other__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (width >= 768px) {
  .p-service-detail-other__list {
    flex-flow: row wrap;
    gap: 24px;
    justify-content: center;
  }
}
.p-service-detail-other__link {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 2px;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
@media (width >= 768px) {
  .p-service-detail-other__link {
    font-size: 18px;
  }
}
.p-service-detail-other__link:hover {
  border-bottom-color: #222;
}
.p-service-detail-other__link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-service-detail-other__link-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #222;
  background-color: #f5f5f5;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}
.p-service-detail-other__link:hover .p-service-detail-other__link-icon {
  color: #fff;
  background-color: #222;
}

.p-service-list {
  padding: 16px 0 60px;
}
@media (width >= 768px) {
  .p-service-list {
    padding: 36px 0 100px;
  }
}
.p-service-list__category + .p-service-list__category {
  margin-top: 48px;
}
@media (width >= 768px) {
  .p-service-list__category + .p-service-list__category {
    margin-top: 60px;
  }
}
.p-service-list__category-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 16px;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #222;
  letter-spacing: 0.3em;
  background-color: #f5f5f5;
}
@media (width >= 768px) {
  .p-service-list__category-heading {
    height: 66px;
    padding: 0 24px;
    margin: 0 0 40px;
    font-size: 20px;
    letter-spacing: 0.3em;
  }
}
.p-service-list__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (width >= 768px) {
  .p-service-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-service-list__item-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #222;
  background-color: #f5f5f5;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}
.p-service-list__item {
  position: relative;
  display: block;
  padding: 20px 0;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #c8c8c8;
  border-radius: 4px;
}
.p-service-list__item:last-child {
  border-bottom: none;
}
@media (width >= 768px) {
  .p-service-list__item {
    padding: 20px;
    border-bottom: none;
  }
}
.p-service-list__item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to left, rgba(34, 34, 34, 0.08) 0%, rgba(34, 34, 34, 0) 100%);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (width >= 768px) {
  .p-service-list__item:hover::after {
    opacity: 1;
  }
}
@media (width >= 768px) {
  .p-service-list__item:hover .p-service-list__item-icon {
    color: #fff;
    background-color: #222;
  }
}
.p-service-list__item:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-service-list__item-title {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
@media (width >= 768px) {
  .p-service-list__item-title {
    font-size: 22px;
  }
}
.p-service-list__item-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-service-list__item-text {
    font-size: 15px;
  }
}

.p-concept-page {
  padding: 16px 0 60px;
}
@media (width >= 768px) {
  .p-concept-page {
    padding: 36px 0 100px;
  }
}
.p-concept-page__thought {
  padding-bottom: 60px;
}
@media (width >= 768px) {
  .p-concept-page__thought {
    display: flex;
    gap: 36px;
    padding-bottom: 60px;
  }
}
@media (width >= 1080px) {
  .p-concept-page__thought {
    gap: 60px;
  }
}
.p-concept-page__thought-head {
  flex-shrink: 0;
  margin-bottom: 20px;
}
@media (width >= 768px) {
  .p-concept-page__thought-head {
    width: 160px;
    margin-bottom: 0;
  }
}
@media (width >= 1080px) {
  .p-concept-page__thought-head {
    width: 200px;
  }
}
.p-concept-page__thought-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-concept-page__thought-title {
    font-size: 24px;
    line-height: 2;
  }
}
.p-concept-page__thought-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: #222;
}
@media (width >= 768px) {
  .p-concept-page__thought-body {
    flex: 1;
    max-width: 740px;
    font-size: 16px;
    line-height: 2;
  }
}
.p-concept-page__thought-body p {
  margin: 0 0 1em;
}
.p-concept-page__thought-body p:last-child {
  margin-bottom: 0;
}
.p-concept-page__feature-bar {
  padding-top: 0;
  padding-bottom: 0;
}
.p-concept-page__feature-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  letter-spacing: 0.3em;
  background-color: #f5f5f5;
}
@media (width >= 768px) {
  .p-concept-page__feature-label {
    height: 66px;
    font-size: 20px;
  }
}
.p-concept-page__tagline {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
@media (width >= 768px) {
  .p-concept-page__tagline {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-concept-page__tagline-text {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #222;
  letter-spacing: 0.05em;
}
@media (width >= 768px) {
  .p-concept-page__tagline-text {
    font-size: 28px;
    line-height: 1.36;
    letter-spacing: 0.1em;
  }
}
.p-concept-page__features {
  padding-top: 0;
  padding-bottom: 0;
}
@media (width >= 768px) {
  .p-concept-page__feature {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (width >= 1080px) {
  .p-concept-page__feature {
    gap: 40px;
  }
}
@media (width >= 768px) {
  .p-concept-page__feature--reverse {
    flex-direction: row-reverse;
  }
}
.p-concept-page__feature-content {
  margin-bottom: 24px;
}
@media (width >= 768px) {
  .p-concept-page__feature-content {
    display: grid;
    flex: 1;
    grid-template-columns: auto 1fr;
    gap: 16px 30px;
    margin-bottom: 0;
  }
}
@media (width >= 1080px) {
  .p-concept-page__feature-content {
    gap: 20px 60px;
  }
}
.p-concept-page__heading {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}
@media (width >= 768px) {
  .p-concept-page__heading {
    display: contents;
  }
}
.p-concept-page__num {
  display: block;
  flex-shrink: 0;
  font-family: "Lato", sans-serif;
  font-size: 44px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: #999;
}
@media (width >= 768px) {
  .p-concept-page__num {
    font-size: 48px;
  }
}
.p-concept-page__title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.05em;
}
@media (width >= 768px) {
  .p-concept-page__title {
    font-size: 24px;
    line-height: 1.5;
  }
}
.p-concept-page__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-concept-page__text {
    grid-column: 2;
    font-size: 15px;
  }
}
.p-concept-page__text {
  /* stylelint-disable-next-line no-descending-specificity */
}
.p-concept-page__text p {
  margin: 0 0 1em;
}
.p-concept-page__text p:last-child {
  margin-bottom: 0;
}
.p-concept-page__list {
  padding: 0;
  margin: 0 0 1em;
  list-style: none;
}
.p-concept-page__list li {
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (width >= 768px) {
  .p-concept-page__list li {
    letter-spacing: 0.1em;
  }
}
.p-concept-page__list li::before {
  content: "・";
}
.p-concept-page__feature-img {
  flex-shrink: 0;
}
@media (width >= 768px) {
  .p-concept-page__feature-img {
    width: 260px;
  }
}
@media (width >= 1080px) {
  .p-concept-page__feature-img {
    width: 342px;
  }
}
@media (width >= 768px) {
  .p-concept-page__feature--reverse .p-concept-page__feature-img {
    width: 230px;
  }
}
@media (width >= 1080px) {
  .p-concept-page__feature--reverse .p-concept-page__feature-img {
    width: 300px;
  }
}
.p-concept-page__feature-img img {
  width: 100%;
  height: auto;
}
.p-concept-page__divider {
  height: 1px;
  margin: 40px 0;
  background-color: #999;
  border: none;
}
@media (width >= 768px) {
  .p-concept-page__divider {
    margin: 50px 0;
  }
}

.p-company-message {
  padding: 16px 0 60px;
  overflow: hidden;
}
@media (width >= 768px) {
  .p-company-message {
    padding: 36px 0 100px;
  }
}
@media (width >= 768px) {
  .p-company-message__inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
}
@media (width >= 1024px) {
  .p-company-message__inner {
    gap: 100px;
  }
}
@media (width >= 768px) {
  .p-company-message__body {
    flex: 1;
  }
}
.p-company-message__body p {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #222;
}
@media (width >= 768px) {
  .p-company-message__body p {
    margin: 0 0 32px;
    font-size: 15px;
    line-height: 2.1;
  }
}
@media (width >= 1024px) {
  .p-company-message__body p {
    font-size: 18px;
  }
}
.p-company-message__body p:last-child {
  margin-bottom: 0;
}
.p-company-message__sign {
  margin-top: 32px;
  line-height: 1.8;
}
@media (width >= 768px) {
  .p-company-message__sign {
    margin-top: 40px;
  }
}
.p-company-message__images {
  position: relative;
  left: 50%;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 16px;
  width: 100vw;
  max-width: 300px;
  margin-top: 40px;
  transform: translateX(-50%);
}
@media (width >= 768px) {
  .p-company-message__images {
    position: static;
    left: auto;
    flex-shrink: 1;
    gap: 32px;
    width: 30%;
    max-width: 320px;
    margin-top: 0;
    transform: none;
  }
}
.p-company-message__img--main img {
  width: 100%;
  height: auto;
}
.p-company-message__img--sub {
  display: none;
}
.p-company-message__img--sub img {
  width: 100%;
  height: auto;
}

.p-company-philosophy__label-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: #f5f5f5;
}
@media (width >= 768px) {
  .p-company-philosophy__label-bar {
    height: 66px;
  }
}
.p-company-philosophy__label-text {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  letter-spacing: 4.8px;
}
@media (width >= 768px) {
  .p-company-philosophy__label-text {
    font-size: 20px;
    letter-spacing: 6px;
  }
}
.p-company-philosophy__inner {
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (width >= 768px) {
  .p-company-philosophy__inner {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
.p-company-philosophy__item {
  padding: 24px 0;
}
@media (width >= 768px) {
  .p-company-philosophy__item {
    display: flex;
    gap: 0;
    padding: 32px 0;
  }
}
.p-company-philosophy__item + .p-company-philosophy__item {
  border-top: none;
}
.p-company-philosophy__item-label {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 8px;
}
@media (width >= 768px) {
  .p-company-philosophy__item-label {
    flex-shrink: 0;
    flex-direction: column;
    gap: 8px;
    width: 163px;
    margin-bottom: 0;
  }
}
.p-company-philosophy__item-en {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #999;
}
@media (width >= 768px) {
  .p-company-philosophy__item-en {
    font-size: 24px;
    line-height: 1.3;
  }
}
.p-company-philosophy__item-ja {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #999;
}
@media (width >= 768px) {
  .p-company-philosophy__item-content {
    flex: 1;
  }
}
.p-company-philosophy__item-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
  color: #222;
  letter-spacing: 1.5px;
}
@media (width >= 768px) {
  .p-company-philosophy__item-title {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.6;
  }
}
@media (width >= 1024px) {
  .p-company-philosophy__item-title {
    font-size: 30px;
  }
}
.p-company-philosophy__item-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-company-philosophy__item-text {
    font-size: 15px;
    line-height: 1.87;
  }
}
.p-company-philosophy__principles {
  margin-top: 24px;
}
@media (width >= 768px) {
  .p-company-philosophy__principles {
    display: flex;
    gap: 0;
    align-items: flex-start;
    margin-top: 40px;
  }
}
@media (width >= 768px) {
  .p-company-philosophy__principles > .p-company-philosophy__item-label {
    padding-top: 48px;
  }
}
.p-company-philosophy__principles-box {
  position: relative;
  border-bottom: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .p-company-philosophy__principles-box {
    flex: 1;
    border-top: 1px solid #c8c8c8;
  }
}
.p-company-philosophy__principles-box::before, .p-company-philosophy__principles-box::after {
  display: none;
}
@media (width >= 768px) {
  .p-company-philosophy__principles-box::before, .p-company-philosophy__principles-box::after {
    position: absolute;
    top: 10px;
    bottom: 10px;
    display: block;
    content: "";
    border-left: 1px solid #c8c8c8;
  }
}
.p-company-philosophy__principles-box::before {
  left: 0;
}
.p-company-philosophy__principles-box::after {
  right: 0;
}
.p-company-philosophy__principles-head {
  padding: 0 0 24px;
  border-bottom: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .p-company-philosophy__principles-head {
    padding: 20px 20px 8px;
    border-bottom: none;
  }
}
@media (width >= 1024px) {
  .p-company-philosophy__principles-head {
    display: flex;
    gap: 24px;
    align-items: center;
  }
}
.p-company-philosophy__principles-title {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1;
  color: #222;
  letter-spacing: 2.4px;
}
@media (width >= 768px) {
  .p-company-philosophy__principles-title {
    font-size: 32px;
  }
}
@media (width >= 1024px) {
  .p-company-philosophy__principles-title {
    flex-shrink: 0;
    margin: 0;
  }
}
.p-company-philosophy__principles-title-bold {
  font-family: "Lato", sans-serif;
  font-weight: 900;
}
.p-company-philosophy__principles-title-times {
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
.p-company-philosophy__principles-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: #222;
}
@media (width >= 1024px) {
  .p-company-philosophy__principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.p-company-philosophy__principle {
  padding: 24px 0;
}
.p-company-philosophy__principle + .p-company-philosophy__principle {
  position: relative;
  border-top: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .p-company-philosophy__principle + .p-company-philosophy__principle {
    border-top: none;
  }
  .p-company-philosophy__principle + .p-company-philosophy__principle::after {
    position: absolute;
    top: 0;
    right: 20px;
    left: 20px;
    content: "";
    border-top: 1px solid #c8c8c8;
  }
}
@media (width >= 1024px) {
  .p-company-philosophy__principle + .p-company-philosophy__principle::after {
    content: none;
  }
}
@media (width >= 768px) {
  .p-company-philosophy__principle {
    padding: 20px;
  }
}
@media (width >= 1024px) {
  .p-company-philosophy__principle:nth-child(2) {
    position: relative;
  }
  .p-company-philosophy__principle:nth-child(2)::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    content: "";
    border-left: 1px solid #c8c8c8;
  }
}
.p-company-philosophy__principle-head {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: center;
  margin-bottom: 15px;
}
@media (width >= 768px) {
  .p-company-philosophy__principle-head {
    gap: 10px;
  }
}
.p-company-philosophy__principle-label {
  width: 100%;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  color: #222;
  letter-spacing: 1.6px;
}
@media (width >= 768px) {
  .p-company-philosophy__principle-label {
    width: auto;
    font-size: 20px;
  }
}
.p-company-philosophy__principle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1.2px;
  border-radius: 5px;
}
.p-company-philosophy__principle-badge--blue {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, #2c8ff1 0%, #2c8ff1 100%);
}
.p-company-philosophy__principle-badge--orange {
  background-color: #f0850b;
}
.p-company-philosophy__principle-name {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.9px;
  white-space: nowrap;
}
.p-company-philosophy__principle-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #222;
}

.p-company-member {
  position: relative;
  padding: 60px 0;
}
@media (width >= 768px) {
  .p-company-member {
    padding: 100px 0;
  }
}
.p-company-member__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #ebebeb 0%, #fff 90%);
  opacity: 0.4;
}
@media (width >= 768px) {
  .p-company-member__bg {
    background: linear-gradient(-72deg, #ebebeb 8%, #fff 91%);
  }
}
.p-company-member__heading {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 500;
  color: #222;
  text-align: center;
  letter-spacing: 6px;
}
.p-company-member__lead {
  margin: 0 0 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #222;
}
@media (width >= 768px) {
  .p-company-member__lead {
    margin: 0 0 60px;
    font-size: 15px;
    line-height: 1.87;
    text-align: center;
  }
}
.p-company-member__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (width >= 768px) {
  .p-company-member__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (width >= 1024px) {
  .p-company-member__grid {
    gap: 60px;
  }
}
@media (width >= 768px) {
  .p-company-member__card {
    display: flex;
    gap: 20px;
  }
}
@media (width >= 1024px) {
  .p-company-member__card {
    gap: 24px;
  }
}
.p-company-member__photo {
  flex-shrink: 0;
  width: 160px;
  margin: 0 auto 20px;
}
@media (width >= 768px) {
  .p-company-member__photo {
    width: 160px;
    margin: 0;
  }
}
@media (width >= 1024px) {
  .p-company-member__photo {
    width: 240px;
  }
}
.p-company-member__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 240/331;
  font-size: 14px;
  color: #999;
  background-color: #fff;
}
.p-company-member__info {
  flex: 1;
}
.p-company-member__name {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #3c3c3c;
}
.p-company-member__name-en {
  margin: 8px 0 0;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #999;
  letter-spacing: 1.3px;
}
.p-company-member__desc {
  margin-top: 16px;
}
.p-company-member__role {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.85;
  color: #3c3c3c;
}
.p-company-member__text {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.85;
  color: #3c3c3c;
}
.p-company-member__badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.p-company-member__badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.p-company-member__badge-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52.5px;
  height: 18px;
  font-family: "Lato", sans-serif;
  font-size: 9.75px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.975px;
  border-radius: 3.75px;
}
.p-company-member__badge-label--blue {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, #2c8ff1 0%, #2c8ff1 100%);
}
.p-company-member__badge-label--orange {
  background-color: #f0850b;
}
.p-company-member__badge-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #222;
}

.p-works-list {
  padding: 0 0 60px;
}
@media (width >= 768px) {
  .p-works-list {
    padding: 0 0 100px;
  }
}
.p-works-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (width >= 768px) {
  .p-works-list__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px clamp(24px, 4.5vw, 51px);
  }
}
.p-works-list__empty {
  padding: 60px 0;
  font-size: 15px;
  color: #999;
  text-align: center;
}

.p-blog {
  padding: 60px 0;
  background-color: rgba(254, 254, 254, 0.75);
}
@media (width >= 768px) {
  .p-blog {
    padding: 100px 0;
  }
}
.p-blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 0 0 48px;
}
@media (width >= 768px) {
  .p-blog__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
    margin: 0 0 60px;
  }
}
@media (width >= 1080px) {
  .p-blog__grid {
    gap: 40px 51px;
  }
}
.p-blog__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.p-blog__card-link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-blog__card-img {
  margin: 0 0 16px;
  overflow: hidden;
}
.p-blog__card-img img {
  width: 100%;
  height: auto;
}
@media (width >= 768px) {
  .p-blog__card-img img {
    transition: opacity 0.3s ease;
  }
}
@media (width >= 768px) {
  .p-blog__card-link:hover .p-blog__card-img img {
    opacity: 0.7;
  }
}
.p-blog__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #999;
}
.p-blog__card-date {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.07;
  color: #3c3c3c;
}
.p-blog__card-cat {
  margin-left: 1em;
}
.p-blog__card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.89;
  color: #222;
}
@media (width >= 768px) {
  .p-blog__card-title {
    font-size: clamp(15px, 1.6vw, 18px);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    transition: text-decoration-color 0.3s ease;
  }
}
@media (width >= 768px) {
  .p-blog__card-link:hover .p-blog__card-title {
    text-decoration-color: #222;
  }
}
.p-blog__cta {
  display: flex;
  justify-content: center;
}

.p-blog-list {
  padding: 0 0 60px;
}
@media (width >= 768px) {
  .p-blog-list {
    padding: 0 0 100px;
  }
}
.p-blog-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (width >= 768px) {
  .p-blog-list__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }
}
@media (width >= 1080px) {
  .p-blog-list__grid {
    gap: 40px 51px;
  }
}
.p-blog-list__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.p-blog-list__card-link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-blog-list__card-img {
  margin: 0 0 25px;
  overflow: hidden;
}
.p-blog-list__card-img img {
  width: 100%;
  height: auto;
}
@media (width >= 768px) {
  .p-blog-list__card-img img {
    transition: opacity 0.3s ease;
  }
}
@media (width >= 768px) {
  .p-blog-list__card-link:hover .p-blog-list__card-img img {
    opacity: 0.7;
  }
}
.p-blog-list__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #999;
}
.p-blog-list__card-date {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.07;
  color: #3c3c3c;
}
.p-blog-list__card-cat {
  margin-left: 1em;
}
.p-blog-list__card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #222;
}
@media (width >= 768px) {
  .p-blog-list__card-title {
    font-size: clamp(15px, 1.6vw, 18px);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    transition: text-decoration-color 0.3s ease;
  }
}
@media (width >= 768px) {
  .p-blog-list__card-link:hover .p-blog-list__card-title {
    text-decoration-color: #222;
  }
}
.p-blog-list__empty {
  padding: 60px 0;
  font-size: 15px;
  color: #999;
  text-align: center;
}

.p-news {
  padding: 60px 0;
  background-color: #fff;
}
@media (width >= 768px) {
  .p-news {
    padding: 100px 0;
  }
}
.p-news__list {
  margin: 0 0 48px;
  border-top: 1px solid #787878;
}
@media (width >= 768px) {
  .p-news__list {
    margin: 0 0 60px;
  }
}
.p-news__cta {
  display: flex;
  justify-content: center;
}

.p-news-list {
  padding: 0 0 60px;
}
@media (width >= 768px) {
  .p-news-list {
    padding: 0 0 100px;
  }
}
.p-news-list__list {
  border-top: 1px solid #787878;
}
.p-news-list__empty {
  padding: 60px 0;
  font-size: 15px;
  color: #999;
  text-align: center;
}

.p-single {
  padding: 32px 0 60px;
}
@media (width >= 768px) {
  .p-single {
    padding: 48px 0 100px;
  }
}
.p-single__inner {
  margin-right: auto;
  margin-left: auto;
}
.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
@media (width >= 768px) {
  .p-single__meta {
    margin-bottom: 16px;
  }
}
.p-single__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  align-items: center;
}
.p-single__date {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #999;
}
.p-single__date-label {
  margin-right: 4px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 12px;
  color: #999;
}
.p-single__date-separator {
  margin: 0 6px;
  font-size: 12px;
  color: #999;
}
.p-single__category {
  display: inline-block;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #666;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
}
.p-single__title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-single__title {
    margin: 0 0 32px;
    font-size: 32px;
  }
}
.p-single__thumbnail {
  margin: 0 0 32px;
}
@media (width >= 768px) {
  .p-single__thumbnail {
    margin: 0 0 48px;
  }
}
.p-single__thumbnail-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.p-single__body {
  margin-bottom: 48px;
}
@media (width >= 768px) {
  .p-single__body {
    margin-bottom: 64px;
  }
}
.p-single__nav {
  display: flex;
  align-items: stretch;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
}
.p-single__nav-item {
  flex: 1;
}
.p-single__nav-item--archive {
  flex: 0 0 auto;
  border-right: 1px solid #c8c8c8;
  border-left: 1px solid #c8c8c8;
}
.p-single__nav-link {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 16px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (width >= 768px) {
  .p-single__nav-link {
    padding: 20px 16px;
    font-size: 15px;
  }
}
.p-single__nav-link:hover {
  opacity: 0.7;
}
.p-single__nav-link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-single__nav-link--disabled {
  color: #c8c8c8;
  cursor: default;
  transition: none;
}
.p-single__nav-link--disabled:hover {
  opacity: 1;
}
.p-single__nav-item--prev .p-single__nav-link {
  justify-content: flex-start;
}
.p-single__nav-item--next .p-single__nav-link {
  justify-content: flex-end;
}
.p-single__nav-item--archive .p-single__nav-link {
  padding-right: 24px;
  padding-left: 24px;
}
@media (width >= 768px) {
  .p-single__nav-item--archive .p-single__nav-link {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.p-single__nav-arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #222;
}
.p-single__nav-link--disabled .p-single__nav-arrow {
  color: #c8c8c8;
}
.p-single__nav-item--prev .p-single__nav-arrow {
  transform: rotate(180deg);
}
.p-single__nav-label {
  white-space: nowrap;
}

.p-single-works {
  padding: 32px 0 60px;
}
@media (width >= 768px) {
  .p-single-works {
    padding: 48px 0 100px;
  }
}
.p-single-works__inner {
  margin-right: auto;
  margin-left: auto;
}
.p-single-works__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
@media (width >= 768px) {
  .p-single-works__meta {
    margin-bottom: 16px;
  }
}
.p-single-works__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-single-works__title {
    margin: 0 0 24px;
    font-size: 28px;
  }
}
.p-single-works__date {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #999;
}
.p-single-works__type {
  display: inline-block;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  background-color: #3c3c3c;
  border-radius: 2px;
}
.p-single-works__category {
  display: inline-block;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #666;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
}
.p-single-works__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin: 0 0 24px;
}
@media (width >= 768px) {
  .p-single-works__labels {
    margin: 0 0 32px;
  }
}
.p-single-works__company, .p-single-works__industry {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
}
@media (width >= 768px) {
  .p-single-works__company, .p-single-works__industry {
    font-size: 15px;
  }
}
.p-single-works__company + .p-single-works__industry::before {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-right: 16px;
  vertical-align: middle;
  content: "";
  background-color: #222;
}
.p-single-works__thumbnail {
  margin: 0 0 32px;
}
@media (width >= 768px) {
  .p-single-works__thumbnail {
    margin: 0 0 48px;
  }
}
.p-single-works__thumbnail-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.p-single-works__section {
  padding: 32px 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
}
@media (width >= 768px) {
  .p-single-works__section {
    padding: 40px 32px;
  }
}
.p-single-works__section + .p-single-works__section {
  margin-top: 24px;
}
.p-single-works__section-heading {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-single-works__section-heading {
    margin: 0 0 24px;
    font-size: 20px;
  }
}
.p-single-works__section-body > :last-child {
  margin-bottom: 0;
}
.p-single-works__body {
  margin-top: 40px;
  margin-bottom: 48px;
}
@media (width >= 768px) {
  .p-single-works__body {
    margin-top: 48px;
    margin-bottom: 64px;
  }
}
.p-single-works__related {
  margin-bottom: 48px;
}
@media (width >= 768px) {
  .p-single-works__related {
    margin-bottom: 64px;
  }
}
.p-single-works__related-banner {
  display: block;
  overflow: hidden;
  color: #222;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 0;
}
@media (width >= 768px) {
  .p-single-works__related-banner {
    display: flex;
    align-items: stretch;
  }
}
.p-single-works__related-banner:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-single-works__related-thumb {
  margin: 0;
}
@media (width >= 768px) {
  .p-single-works__related-thumb {
    position: relative;
    flex-shrink: 0;
    width: 250px;
  }
}
.p-single-works__related-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}
@media (width >= 768px) {
  .p-single-works__related-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    aspect-ratio: auto;
  }
}
.p-single-works__related-body {
  padding: 20px;
}
@media (width >= 768px) {
  .p-single-works__related-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 24px 32px;
  }
}
.p-single-works__related-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
}
@media (width >= 768px) {
  .p-single-works__related-title {
    margin: 0 0 12px;
    font-size: 18px;
  }
}
.p-single-works__related-note {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
}
@media (width >= 768px) {
  .p-single-works__related-note {
    margin: 0 0 20px;
    font-size: 14px;
  }
}
.p-single-works__related-link {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-single-works__related-link {
    display: inline-flex;
    align-self: flex-end;
    justify-content: flex-start;
    margin-top: 4px;
    font-size: 14px;
  }
}
.p-single-works__related-banner:hover .p-single-works__related-link-text {
  text-decoration: underline;
}
.p-single-works__related-link-arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  color: #222;
  transition: transform 0.3s ease;
}
.p-single-works__related-banner:hover .p-single-works__related-link-arrow {
  transform: translateX(4px);
}

.p-download-list {
  padding: 0 0 60px;
}
@media (width >= 768px) {
  .p-download-list {
    padding: 0 0 100px;
  }
}
.p-download-list__banner {
  display: flex;
  flex-direction: column;
  margin: 50px -20px 40px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background-color: #3c3c3c;
  transition: opacity 0.3s ease;
}
@media (width >= 768px) {
  .p-download-list__banner {
    flex-direction: row;
    align-items: center;
    margin: 80px 0 50px;
  }
}
.p-download-list__banner:hover {
  opacity: 0.85;
}
.p-download-list__banner:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-download-list__banner-left {
  padding: 24px 32px;
  text-align: center;
}
@media (width >= 768px) {
  .p-download-list__banner-left {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: clamp(20px, 3vw, 40px);
  }
}
.p-download-list__banner-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media (width >= 768px) {
  .p-download-list__banner-title {
    font-size: clamp(16px, 1.7vw, 22px);
    letter-spacing: clamp(1px, 0.17vw, 2.2px);
  }
}
.p-download-list__banner-divider {
  display: none;
}
@media (width >= 768px) {
  .p-download-list__banner-divider {
    display: block;
    flex-shrink: 0;
    width: 2px;
    height: 60px;
    background-color: #fff;
  }
}
.p-download-list__banner-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 0 32px 24px;
  text-align: center;
}
@media (width >= 768px) {
  .p-download-list__banner-right {
    flex: 1;
    flex-direction: row;
    gap: clamp(12px, 2vw, 24px);
    align-items: center;
    justify-content: space-between;
    padding: clamp(20px, 3vw, 40px);
    text-align: left;
  }
}
.p-download-list__banner-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
}
@media (width >= 768px) {
  .p-download-list__banner-text {
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.875;
  }
}
.p-download-list__banner-btn {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 260px;
  max-width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  color: #3c3c3c;
  background-color: #fff;
  border-radius: 30px;
}
@media (width >= 768px) {
  .p-download-list__banner-btn {
    width: clamp(180px, 20vw, 260px);
    height: 60px;
    font-size: clamp(16px, 1.5vw, 20px);
  }
}
.p-download-list__banner-btn > svg {
  position: absolute;
  right: 30px;
}
.p-download-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (width >= 768px) {
  .p-download-list__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 51px;
  }
}
.p-download-list__card-img {
  aspect-ratio: 16/9;
  margin: 0 0 20px;
  overflow: hidden;
  background-color: #e0e0e0;
}
.p-download-list__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-download-list__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #999;
}
.p-download-list__card-cat {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.07;
  color: #3c3c3c;
}
.p-download-list__card-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.89;
  color: #222;
}
@media (width >= 768px) {
  .p-download-list__card-title {
    font-size: 18px;
  }
}
.p-download-list__card-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  color: #3c3c3c;
  text-decoration: none;
  border: 1px solid #3c3c3c;
  border-radius: 30px;
  transition: opacity 0.3s ease;
}
@media (width >= 768px) {
  .p-download-list__card-btn {
    height: 60px;
  }
}
@media (width >= 1024px) {
  .p-download-list__card-btn {
    font-size: 20px;
  }
}
.p-download-list__card-btn > svg {
  position: absolute;
  right: 30px;
}
.p-download-list__card-btn:hover {
  opacity: 0.6;
}
.p-download-list__card-btn:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-download-list__empty {
  padding: 60px 0;
  font-size: 15px;
  color: #999;
  text-align: center;
}

.p-inquiry {
  padding: 16px 0 60px;
}
@media (width >= 768px) {
  .p-inquiry {
    padding: 36px 0 100px;
  }
}
.p-inquiry__inner {
  max-width: 800px;
  margin: 0 auto;
}
.p-inquiry__progress {
  display: flex;
  gap: 0;
  justify-content: center;
  padding: 0;
  margin: 0 auto 40px;
  list-style: none;
}
@media (width >= 768px) {
  .p-inquiry__progress {
    margin-bottom: 56px;
  }
}
.p-inquiry__progress-num {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #999;
  letter-spacing: 0.08em;
}
@media (width >= 768px) {
  .p-inquiry__progress-num {
    font-size: 13px;
  }
}
.p-inquiry__progress-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #999;
  letter-spacing: 0.06em;
}
@media (width >= 768px) {
  .p-inquiry__progress-label {
    font-size: 15px;
  }
}
.p-inquiry__progress-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100px;
  padding-top: 18px;
}
@media (width >= 768px) {
  .p-inquiry__progress-item {
    width: 130px;
    padding-top: 22px;
  }
}
.p-inquiry__progress-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #ebebeb;
}
.p-inquiry__progress-item.is-current::before {
  height: 3px;
  background-color: #222;
}
.p-inquiry__progress-item.is-current .p-inquiry__progress-num {
  color: #222;
}
.p-inquiry__progress-item.is-current .p-inquiry__progress-label {
  font-weight: 700;
  color: #222;
}
.p-inquiry__progress-item.is-done::before {
  height: 3px;
  background-color: #222;
}
.p-inquiry__progress-item.is-done .p-inquiry__progress-num {
  color: #666;
}
.p-inquiry__progress-item.is-done .p-inquiry__progress-label {
  color: #666;
}
.p-inquiry__notice {
  padding: 24px 20px;
  margin-bottom: 40px;
  background-color: #f5f5f5;
}
@media (width >= 768px) {
  .p-inquiry__notice {
    padding: 32px 40px;
    margin-bottom: 60px;
  }
}
.p-inquiry__notice-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-inquiry__notice-title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.p-inquiry__notice-list {
  padding: 0 0 0 20px;
  margin: 0 0 16px;
  list-style: disc;
}
@media (width >= 768px) {
  .p-inquiry__notice-list {
    margin-bottom: 20px;
  }
}
.p-inquiry__notice-item {
  font-size: 14px;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-inquiry__notice-item {
    font-size: 15px;
  }
}
.p-inquiry__notice-links {
  padding-top: 16px;
  border-top: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .p-inquiry__notice-links {
    padding-top: 20px;
  }
}
.p-inquiry__notice-text {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-inquiry__notice-text {
    font-size: 15px;
  }
}
.p-inquiry__notice-text:last-child {
  margin-bottom: 0;
}
.p-inquiry__notice-text a {
  color: #2c8ff1;
  text-decoration: underline;
}
.p-inquiry__notice-text a:hover {
  text-decoration: none;
}
.p-inquiry__notice-text a:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-inquiry__step-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  text-align: center;
}
@media (width >= 768px) {
  .p-inquiry__step-title {
    margin-bottom: 24px;
    font-size: 28px;
  }
}
.p-inquiry__step-text {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.87;
  color: #222;
  text-align: center;
}
@media (width >= 768px) {
  .p-inquiry__step-text {
    margin-bottom: 48px;
    font-size: 16px;
  }
}
.p-inquiry__thanks-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (width >= 768px) {
  .p-inquiry__thanks-action {
    margin-top: 60px;
  }
}

.p-partner {
  padding: 16px 0 60px;
}
@media (width >= 768px) {
  .p-partner {
    padding: 36px 0 100px;
  }
}
.p-partner__inner {
  max-width: 800px;
  margin: 0 auto;
}
.p-partner__progress {
  display: flex;
  gap: 0;
  justify-content: center;
  padding: 0;
  margin: 0 auto 40px;
  list-style: none;
}
@media (width >= 768px) {
  .p-partner__progress {
    margin-bottom: 56px;
  }
}
.p-partner__progress-num {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #999;
  letter-spacing: 0.08em;
}
@media (width >= 768px) {
  .p-partner__progress-num {
    font-size: 13px;
  }
}
.p-partner__progress-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #999;
  letter-spacing: 0.06em;
}
@media (width >= 768px) {
  .p-partner__progress-label {
    font-size: 15px;
  }
}
.p-partner__progress-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100px;
  padding-top: 18px;
}
@media (width >= 768px) {
  .p-partner__progress-item {
    width: 130px;
    padding-top: 22px;
  }
}
.p-partner__progress-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #ebebeb;
}
.p-partner__progress-item.is-current::before {
  height: 3px;
  background-color: #222;
}
.p-partner__progress-item.is-current .p-partner__progress-num {
  color: #222;
}
.p-partner__progress-item.is-current .p-partner__progress-label {
  font-weight: 700;
  color: #222;
}
.p-partner__progress-item.is-done::before {
  height: 3px;
  background-color: #222;
}
.p-partner__progress-item.is-done .p-partner__progress-num {
  color: #666;
}
.p-partner__progress-item.is-done .p-partner__progress-label {
  color: #666;
}
.p-partner__notice {
  padding: 24px 20px;
  margin-bottom: 40px;
  background-color: #f5f5f5;
}
@media (width >= 768px) {
  .p-partner__notice {
    padding: 32px 40px;
    margin-bottom: 60px;
  }
}
.p-partner__notice-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-partner__notice-title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.p-partner__notice-list {
  padding: 0 0 0 20px;
  margin: 0 0 16px;
  list-style: disc;
}
@media (width >= 768px) {
  .p-partner__notice-list {
    margin-bottom: 20px;
  }
}
.p-partner__notice-item {
  font-size: 14px;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-partner__notice-item {
    font-size: 15px;
  }
}
.p-partner__notice-links {
  padding-top: 16px;
  border-top: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .p-partner__notice-links {
    padding-top: 20px;
  }
}
.p-partner__notice-text {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-partner__notice-text {
    font-size: 15px;
  }
}
.p-partner__notice-text:last-child {
  margin-bottom: 0;
}
.p-partner__notice-text a {
  color: #2c8ff1;
  text-decoration: underline;
}
.p-partner__notice-text a:hover {
  text-decoration: none;
}
.p-partner__notice-text a:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-partner__step-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  text-align: center;
}
@media (width >= 768px) {
  .p-partner__step-title {
    margin-bottom: 24px;
    font-size: 28px;
  }
}
.p-partner__step-text {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.87;
  color: #222;
  text-align: center;
}
@media (width >= 768px) {
  .p-partner__step-text {
    margin-bottom: 48px;
    font-size: 16px;
  }
}
.p-partner__thanks-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (width >= 768px) {
  .p-partner__thanks-action {
    margin-top: 60px;
  }
}

.p-faq {
  padding: 16px 0 60px;
}
@media (width >= 768px) {
  .p-faq {
    padding: 36px 0 100px;
  }
}

.p-privacy {
  padding: 16px 0 60px;
}
@media (width >= 768px) {
  .p-privacy {
    padding: 36px 0 100px;
  }
}
.p-privacy__inner {
  max-width: 800px;
}
.p-privacy__lead {
  margin-bottom: 40px;
}
@media (width >= 768px) {
  .p-privacy__lead {
    margin-bottom: 56px;
  }
}
.p-privacy__section + .p-privacy__section {
  margin-top: 40px;
}
@media (width >= 768px) {
  .p-privacy__section + .p-privacy__section {
    margin-top: 56px;
  }
}
.p-privacy__title {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
}
@media (width >= 768px) {
  .p-privacy__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.p-privacy__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-privacy__text {
    font-size: 16px;
  }
}
.p-privacy__list {
  padding: 0 0 0 24px;
  margin: 16px 0 0;
  list-style: none;
  counter-reset: privacy-list;
}
@media (width >= 768px) {
  .p-privacy__list {
    padding-left: 32px;
  }
}
.p-privacy__list li {
  position: relative;
  padding-left: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
  counter-increment: privacy-list;
}
@media (width >= 768px) {
  .p-privacy__list li {
    font-size: 16px;
  }
}
.p-privacy__list li::before {
  position: absolute;
  left: -24px;
  content: "（" counter(privacy-list) "）";
}
@media (width >= 768px) {
  .p-privacy__list li::before {
    left: -32px;
  }
}
.p-privacy__list li + li {
  margin-top: 8px;
}
.p-privacy__address {
  margin-top: 16px;
  font-style: normal;
}
.p-privacy__address-text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #222;
}
@media (width >= 768px) {
  .p-privacy__address-text {
    font-size: 16px;
  }
}
.p-privacy__address-text a {
  color: #2c8ff1;
  text-decoration: none;
}
.p-privacy__address-text a:hover {
  text-decoration: underline;
}
.p-privacy__address-text a:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}

.p-download-detail {
  padding: 60px 0;
}
@media (width >= 768px) {
  .p-download-detail {
    padding: 100px 0;
  }
}
.p-download-detail__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (width >= 768px) {
  .p-download-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
.p-download-detail__thumb {
  aspect-ratio: 16/9;
  margin: 0 0 20px;
  overflow: hidden;
  background-color: #e0e0e0;
}
.p-download-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-download-detail__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #999;
}
.p-download-detail__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-download-detail__title {
    font-size: 24px;
  }
}
.p-download-detail__desc {
  font-size: 14px;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-download-detail__desc {
    font-size: 15px;
  }
}
.p-download-detail__desc p {
  margin: 0 0 16px;
}
.p-download-detail__desc p:last-child {
  margin-bottom: 0;
}
.p-download-detail__form-wrap {
  padding: 24px 20px;
  background-color: #f5f5f5;
}
@media (width >= 768px) {
  .p-download-detail__form-wrap {
    padding: 40px 32px;
  }
}
.p-download-detail__form-heading {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-download-detail__form-heading {
    font-size: 22px;
  }
}
.p-download-detail__form-note {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}
@media (width >= 768px) {
  .p-download-detail__form-note {
    margin-bottom: 32px;
    font-size: 14px;
  }
}
.p-download-detail__notice {
  padding-top: 16px;
  margin-top: 24px;
  border-top: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .p-download-detail__notice {
    padding-top: 20px;
    margin-top: 32px;
  }
}
.p-download-detail__notice-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #999;
}
@media (width >= 768px) {
  .p-download-detail__notice-text {
    font-size: 13px;
  }
}
.p-download-detail--thanks .p-download-detail__inner {
  max-width: 800px;
  margin: 0 auto;
}
.p-download-detail__step-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  text-align: center;
}
@media (width >= 768px) {
  .p-download-detail__step-title {
    margin-bottom: 24px;
    font-size: 28px;
  }
}
.p-download-detail__step-text {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.87;
  color: #222;
  text-align: center;
}
@media (width >= 768px) {
  .p-download-detail__step-text {
    margin-bottom: 48px;
    font-size: 16px;
  }
}
.p-download-detail__thanks-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (width >= 768px) {
  .p-download-detail__thanks-action {
    margin-top: 60px;
  }
}

.p-seo-guide {
  padding: 16px 0 60px;
}
@media (width >= 768px) {
  .p-seo-guide {
    padding: 36px 0 100px;
  }
}
.p-seo-guide__lead {
  margin: 0 0 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
  text-align: center;
}
@media (width >= 768px) {
  .p-seo-guide__lead {
    margin-bottom: 48px;
    font-size: 15px;
  }
}
.p-seo-guide__toc {
  padding: 0;
  margin-bottom: 40px;
  background-color: transparent;
}
@media (width >= 768px) {
  .p-seo-guide__toc {
    margin-bottom: 60px;
  }
}
.p-seo-guide__toc-title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.2em;
}
@media (width >= 768px) {
  .p-seo-guide__toc-title {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.p-seo-guide__toc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (width >= 768px) {
  .p-seo-guide__toc-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.p-seo-guide__toc-link {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #3c3c3c;
  text-decoration: none;
  background: #fff;
  border: 1px solid #3c3c3c;
  border-radius: 10px;
  transition: background-color 0.2s;
}
.p-seo-guide__toc-link:hover {
  background-color: #f5f5f5;
}
.p-seo-guide__toc-link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
@media (width >= 768px) {
  .p-seo-guide__toc-link {
    padding: 20px 24px;
    font-size: 15px;
  }
}
.p-seo-guide__toc-num {
  flex-shrink: 0;
  margin-right: 1.5em;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.p-seo-guide__chapter {
  padding-top: 40px;
}
@media (width >= 768px) {
  .p-seo-guide__chapter {
    padding-top: 60px;
  }
}
.p-seo-guide__chapter + .p-seo-guide__chapter {
  margin-top: 20px;
  border-top: 1px solid #c8c8c8;
}
@media (width >= 768px) {
  .p-seo-guide__chapter + .p-seo-guide__chapter {
    margin-top: 40px;
  }
}
.p-seo-guide__chapter-header {
  display: block;
  margin-bottom: 16px;
}
@media (width >= 768px) {
  .p-seo-guide__chapter-header {
    margin-bottom: 20px;
  }
}
.p-seo-guide__chapter-num {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-weight: 900;
  color: #3c3c3c;
  letter-spacing: 0.2em;
}
@media (width >= 768px) {
  .p-seo-guide__chapter-num {
    padding-bottom: 16px;
    margin-bottom: 16px;
    font-size: 16px;
  }
}
.p-seo-guide__chapter-num::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  content: "";
  background: #2c8ff1;
  border-radius: 6px;
}
@media (width >= 768px) {
  .p-seo-guide__chapter-num::before {
    height: 8px;
    border-radius: 8px;
  }
}
.p-seo-guide__chapter-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.1em;
}
@media (width >= 768px) {
  .p-seo-guide__chapter-title {
    font-size: 24px;
  }
}
.p-seo-guide__chapter-desc {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-seo-guide__chapter-desc {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 2;
  }
}
.p-seo-guide__sub-section {
  margin-top: 24px;
}
@media (width >= 768px) {
  .p-seo-guide__sub-section {
    margin-top: 32px;
  }
}
.p-seo-guide__sub-section + .p-seo-guide__sub-section {
  margin-top: 32px;
}
@media (width >= 768px) {
  .p-seo-guide__sub-section + .p-seo-guide__sub-section {
    margin-top: 40px;
  }
}
.p-seo-guide__sub-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.05em;
}
@media (width >= 768px) {
  .p-seo-guide__sub-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.p-seo-guide__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (width >= 768px) {
  .p-seo-guide__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 51px;
  }
}
.p-seo-guide__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.p-seo-guide__card-link:focus-visible {
  outline: 2px solid #2c8ff1;
  outline-offset: 2px;
}
.p-seo-guide__card-img {
  margin: 0 0 14px;
  overflow: hidden;
}
.p-seo-guide__card-img img {
  width: 100%;
  height: auto;
}
.p-seo-guide__noimage {
  width: 100%;
  height: 100%;
  background-color: #ebebeb;
}
.p-seo-guide__card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #222;
}
@media (width >= 768px) {
  .p-seo-guide__card-title {
    font-size: 18px;
  }
}
.p-seo-guide__card-link:hover .p-seo-guide__card-title {
  text-decoration: underline;
}
.p-seo-guide__empty {
  padding: 40px 0;
  font-size: 14px;
  color: #999;
  text-align: center;
}

.p-seo-guide-single {
  padding-top: 32px;
  padding-bottom: 60px;
}
@media (width >= 768px) {
  .p-seo-guide-single {
    padding-top: 48px;
    padding-bottom: 100px;
  }
}
@media (width >= 768px) {
  .p-seo-guide-single__inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0 60px;
    align-items: start;
  }
}
.p-seo-guide-single__main {
  min-width: 0;
}
.p-seo-guide-single__main .c-cta,
.p-seo-guide-single__main .c-author {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  margin-right: 0;
  margin-left: 0;
}
.p-seo-guide-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
@media (width >= 768px) {
  .p-seo-guide-single__meta {
    margin-bottom: 16px;
  }
}
.p-seo-guide-single__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  align-items: center;
}
.p-seo-guide-single__date {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #999;
}
.p-seo-guide-single__date-label {
  margin-right: 4px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 12px;
  color: #999;
}
.p-seo-guide-single__date-separator {
  margin: 0 6px;
  font-size: 12px;
  color: #999;
}
.p-seo-guide-single__category {
  display: inline-block;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #666;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
}
.p-seo-guide-single__title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  color: #3c3c3c;
}
@media (width >= 768px) {
  .p-seo-guide-single__title {
    margin-bottom: 32px;
    font-size: 36px;
  }
}
.p-seo-guide-single__sidebar {
  display: none;
}
@media (width >= 768px) {
  .p-seo-guide-single__sidebar {
    display: block;
  }
}
.p-seo-guide-single__sidenav {
  position: sticky;
  top: 100px;
  padding: 16px;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
}
.p-seo-guide-single__sidenav-chapter {
  border-bottom: 1px solid #ebebeb;
}
.p-seo-guide-single__sidenav-chapter:last-child {
  border-bottom: 0;
}
.p-seo-guide-single__sidenav-heading {
  position: relative;
  display: block;
  padding: 10px 24px 10px 0;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  list-style: none;
  cursor: pointer;
}
.p-seo-guide-single__sidenav-heading::-webkit-details-marker {
  display: none;
}
.p-seo-guide-single__sidenav-heading::marker {
  content: none;
}
.p-seo-guide-single__sidenav-heading::after {
  position: absolute;
  top: 50%;
  right: 4px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  color: #999;
  content: "+";
  transform: translateY(-50%);
}
.p-seo-guide-single__sidenav-chapter[open] > .p-seo-guide-single__sidenav-heading::after {
  content: "−";
}
.p-seo-guide-single__sidenav-num {
  display: block;
  margin-bottom: 2px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #999;
}
.p-seo-guide-single__sidenav-list {
  padding: 0 0 10px;
  margin: 0;
  overflow: hidden;
  list-style: none;
  transition: max-height 0.3s ease;
}
.p-seo-guide-single__sidenav-sub {
  padding: 6px 0 2px;
  font-size: 12px;
  font-weight: 700;
  color: #999;
}
.p-seo-guide-single {
  /* stylelint-disable no-descending-specificity */
}
.p-seo-guide-single__sidenav-item {
  margin-bottom: 2px;
}
.p-seo-guide-single__sidenav-item a {
  position: relative;
  display: block;
  padding: 4px 0 4px 16px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s;
}
.p-seo-guide-single__sidenav-item a::before {
  position: absolute;
  left: 2px;
  color: #c8c8c8;
  content: "・";
}
.p-seo-guide-single__sidenav-item a:hover {
  color: #222;
}
.p-seo-guide-single__sidenav-item.is-current a {
  font-weight: 700;
  color: #222;
}
.p-seo-guide-single__sidenav-item.is-current a::before {
  color: #222;
}
.p-seo-guide-single {
  /* stylelint-enable no-descending-specificity */
}

/* stylelint-disable no-descending-specificity */
/* stylelint-disable selector-class-pattern */
.p-seo-guide-single__body {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media (width >= 768px) {
  .p-seo-guide-single__body {
    margin-bottom: 60px;
    font-size: 17px;
  }
}
.p-seo-guide-single__body > :first-child {
  margin-top: 0;
}
.p-seo-guide-single__body h2 {
  padding-bottom: 12px;
  margin: 48px 0 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  border-bottom: 2px solid #787878;
}
@media (width >= 768px) {
  .p-seo-guide-single__body h2 {
    margin: 64px 0 32px;
    font-size: 26px;
  }
}
.p-seo-guide-single__body h3 {
  padding-left: 16px;
  margin: 40px 0 20px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  border-left: 4px solid #787878;
}
@media (width >= 768px) {
  .p-seo-guide-single__body h3 {
    margin: 48px 0 24px;
    font-size: 22px;
  }
}
.p-seo-guide-single__body h4,
.p-seo-guide-single__body h5,
.p-seo-guide-single__body h6 {
  margin: 32px 0 16px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-seo-guide-single__body h4,
  .p-seo-guide-single__body h5,
  .p-seo-guide-single__body h6 {
    margin: 40px 0 20px;
    font-size: 19px;
  }
}
.p-seo-guide-single__body a {
  color: #222;
  text-decoration: underline;
}
.p-seo-guide-single__body a:hover {
  text-decoration: none;
}
.p-seo-guide-single__body a:focus-visible {
  outline: 2px solid #222;
  outline-offset: 2px;
}
.p-seo-guide-single__body strong {
  font-weight: 700;
}
.p-seo-guide-single__body img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.p-seo-guide-single__body table {
  width: 100%;
  margin: 32px 0;
  background: #fff;
  border: 2px solid #ebebeb;
}
.p-seo-guide-single__body tr {
  border-bottom: 1px solid #ebebeb;
}
.p-seo-guide-single__body td {
  padding: 1em;
  border-right: 1px solid #ebebeb;
}
.p-seo-guide-single__body th {
  padding: 1em;
  font-weight: 700;
  color: #3c3c3c;
  background: #def;
  border-right: 1px solid #ebebeb;
}
.p-seo-guide-single__body blockquote {
  position: relative;
  padding: 16px 16px 16px 48px;
  margin: 24px 0;
  font-style: italic;
  background: #f5f5f5;
}
.p-seo-guide-single__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.p-seo-guide-single__body .alignright {
  display: block;
  margin-left: auto;
}
.p-seo-guide-single__body td.u-bg--blue,
.p-seo-guide-single__body tr.u-bg--blue {
  font-weight: 700;
  color: #3c3c3c;
  background: #def;
}
.p-seo-guide-single__body .c-hukidasi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .c-hukidasi {
    margin: 56px 0;
  }
}
.p-seo-guide-single__body .c-hukidasi--right {
  text-align: right;
}
.p-seo-guide-single__body .c-hukidasi--right .c-hukidasi__icon {
  margin-left: 16px;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .c-hukidasi--right .c-hukidasi__icon {
    margin-left: 40px;
  }
}
.p-seo-guide-single__body .c-hukidasi--right .c-hukidasi__box-inner {
  text-align: left;
}
.p-seo-guide-single__body .c-hukidasi--left {
  flex-direction: row-reverse;
}
.p-seo-guide-single__body .c-hukidasi--left .c-hukidasi__icon {
  margin-right: 16px;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .c-hukidasi--left .c-hukidasi__icon {
    margin-right: 40px;
  }
}
.p-seo-guide-single__body .c-hukidasi__icon {
  flex: 0 0 70px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .c-hukidasi__icon {
    flex: 0 0 110px;
  }
}
.p-seo-guide-single__body .c-hukidasi__icon img {
  width: 60%;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .c-hukidasi__icon img {
    width: 65%;
  }
}
.p-seo-guide-single__body .c-hukidasi__icon figcaption {
  padding-top: 0.5em;
}
.p-seo-guide-single__body .c-hukidasi__box {
  position: relative;
  flex: 1;
  line-height: 2.3;
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 24px;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .c-hukidasi__box {
    line-height: 2.5;
  }
}
.p-seo-guide-single__body .c-hukidasi__box-inner {
  position: relative;
  z-index: 1;
  padding: 16px 20px;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .c-hukidasi__box-inner {
    padding: 24px 32px;
  }
}
.p-seo-guide-single__body .c-hukidasi__arrow--right {
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 0;
  width: 12px;
  height: 10px;
  transform: translateY(-50%);
}
@media (width >= 768px) {
  .p-seo-guide-single__body .c-hukidasi__arrow--right {
    right: -23px;
    width: 23px;
    height: 18px;
  }
}
.p-seo-guide-single__body .c-hukidasi__arrow--left {
  position: absolute;
  top: 50%;
  left: -12px;
  z-index: 0;
  width: 12px;
  height: 10px;
  transform: translateY(-50%) rotate(180deg);
}
@media (width >= 768px) {
  .p-seo-guide-single__body .c-hukidasi__arrow--left {
    left: -23px;
    width: 23px;
    height: 18px;
  }
}
.p-seo-guide-single__body .seo-info-box {
  padding: 20px;
  margin: 30px 0;
  background: #fff;
  border: 2px solid #f5f5f5;
}
.p-seo-guide-single__body .seo-info-box__title {
  position: relative;
  padding-bottom: 5px;
  padding-left: 2.6rem;
  margin-bottom: 0.5em;
  font-weight: 700;
  border-bottom: 2px solid #222;
}
.p-seo-guide-single__body .seo-info-box__title::before {
  position: absolute;
  top: 44%;
  left: 0;
  width: 1.6rem;
  height: 2.133rem;
  content: "";
  background: url("../images/seo-guide/clipboard-regular.svg") no-repeat center center/contain;
  transform: translateY(-50%);
}
.p-seo-guide-single__body .seo-info-box__content p:last-child {
  margin-bottom: 0;
}
.p-seo-guide-single__body .seo-check-box {
  margin: 40px 0;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .seo-check-box {
    margin: 56px 0;
  }
}
.p-seo-guide-single__body .seo-check-box__heading {
  margin-bottom: 8px;
  font-weight: 700;
  color: #222;
}
.p-seo-guide-single__body .seo-check-box__list {
  padding: 20px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 2px solid #222;
}
.p-seo-guide-single__body .seo-check-box__list li {
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 1em;
}
.p-seo-guide-single__body .seo-check-box__list li:last-child {
  margin-bottom: 0;
}
.p-seo-guide-single__body .seo-check-box__list li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  content: "";
  background: url("../images/seo-guide/circle-check-regular.svg") no-repeat center center/cover;
  transform: translateY(-50%);
}
.p-seo-guide-single__body .seo-num-box {
  margin: 40px 0;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .seo-num-box {
    margin: 56px 0;
  }
}
.p-seo-guide-single__body .seo-num-box__heading {
  margin-bottom: 8px;
  font-weight: 700;
  color: #222;
}
.p-seo-guide-single__body .seo-num-box__list {
  padding: 20px 20px 20px 60px;
  margin: 0;
  list-style: none;
  counter-reset: seo-num;
  background: #fff;
  border: 2px solid #222;
}
.p-seo-guide-single__body .seo-num-box__list li {
  position: relative;
  margin-bottom: 1em;
  counter-increment: seo-num;
}
.p-seo-guide-single__body .seo-num-box__list li:last-child {
  margin-bottom: 0;
}
.p-seo-guide-single__body .seo-num-box__list li::before {
  position: absolute;
  top: 50%;
  min-width: 23px;
  height: 23px;
  margin-left: -3em;
  font-size: 70%;
  line-height: 23px;
  color: #fff;
  text-align: center;
  content: counters(seo-num, "");
  background: #222;
  border-radius: 50%;
  transform: translateY(-50%);
}
.p-seo-guide-single__body .seo-attention-box {
  position: relative;
  padding: 20px;
  margin: 30px 0;
  list-style: none;
  background: #f5f5f5;
}
.p-seo-guide-single__body .seo-attention-box__title {
  position: absolute;
  top: -15px;
  padding-left: 2.5rem;
  font-weight: 700;
  color: #222;
}
.p-seo-guide-single__body .seo-attention-box__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  content: "";
  background: url("../images/seo-guide/circle-exclamation-solid.svg") no-repeat center center/cover;
  transform: translateY(-50%);
}
.p-seo-guide-single__body .seo-attention-box__content {
  padding-top: 8px;
}
.p-seo-guide-single__body .seo-attention-box__content p:last-child {
  margin-bottom: 0;
}
.p-seo-guide-single__body .seo-merit-box {
  position: relative;
  padding: 20px;
  margin: 40px 0;
  border-radius: 8px;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .seo-merit-box {
    margin: 48px 0;
  }
}
.p-seo-guide-single__body .seo-merit-box--blue {
  border: 3px solid #222;
}
.p-seo-guide-single__body .seo-merit-box--blue .seo-merit-box__title {
  color: #222;
}
.p-seo-guide-single__body .seo-merit-box--blue .seo-merit-box__title::before {
  background-color: #222;
}
.p-seo-guide-single__body .seo-merit-box--red {
  border: 3px solid #3c3c3c;
}
.p-seo-guide-single__body .seo-merit-box--red .seo-merit-box__title {
  color: #3c3c3c;
}
.p-seo-guide-single__body .seo-merit-box--red .seo-merit-box__title::before {
  background-color: #3c3c3c;
}
.p-seo-guide-single__body .seo-merit-box__title {
  position: absolute;
  top: -13px;
  padding: 0 9px 0 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  background: #fff;
}
.p-seo-guide-single__body .seo-merit-box__title::before {
  position: absolute;
  top: 50%;
  left: 5px;
  display: inline-block;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 50%;
  transform: translateY(-50%);
}
.p-seo-guide-single__body .seo-merit-box__content ul {
  padding-left: 1.5em;
  margin: 0;
}
.p-seo-guide-single__body .seo-merit-box__content li {
  margin-bottom: 1em;
}
.p-seo-guide-single__body .seo-merit-box__content li:last-child {
  margin-bottom: 0;
}
.p-seo-guide-single__body .seo-gray-box {
  margin: 30px 0;
}
.p-seo-guide-single__body .seo-gray-box__inner {
  padding: 16px;
  line-height: 2;
  background: #fff;
  border: 1px solid #c8c8c8;
}
.p-seo-guide-single__body .seo-gray-box__inner p:last-child {
  margin-bottom: 0;
}
.p-seo-guide-single__body .seo-related {
  margin: 30px 0;
}
.p-seo-guide-single__body .seo-related__inner {
  position: relative;
  padding: 30px 10px 10px;
  border-radius: 10px;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .seo-related__inner {
    padding: 30px 16px 16px;
  }
}
.p-seo-guide-single__body .seo-related__label {
  position: absolute;
  top: -13px;
  left: 10px;
  padding: 0 15px;
  font-weight: 700;
  border-radius: 10px;
}
.p-seo-guide-single__body .seo-related__card {
  padding: 0 10px 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #c8c8c8;
}
.p-seo-guide-single__body .seo-related__card:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.p-seo-guide-single__body .seo-related__card a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 16px;
  align-items: center;
  text-decoration: none;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .seo-related__card a {
    grid-template-columns: 160px 1fr;
  }
}
.p-seo-guide-single__body .seo-related__card a:hover {
  color: #222;
}
.p-seo-guide-single__body .seo-related__img {
  position: relative;
  display: block;
  overflow: hidden;
}
.p-seo-guide-single__body .seo-related__img::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}
.p-seo-guide-single__body .seo-related__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-seo-guide-single__body .seo-related__title {
  display: block;
  color: #222;
}
.p-seo-guide-single__body .seo-related--blue .seo-related__inner {
  background-color: #f5f5f5;
  border: 3px solid #222;
}
.p-seo-guide-single__body .seo-related--blue .seo-related__label {
  color: #fff;
  background-color: #222;
}
.p-seo-guide-single__body .seo-related--gray .seo-related__inner {
  background-color: #f5f5f5;
  border: 3px solid #c8c8c8;
}
.p-seo-guide-single__body .seo-related--gray .seo-related__label {
  color: #222;
  background-color: #c8c8c8;
}
.p-seo-guide-single__body .seo-related--pink .seo-related__inner {
  background-color: #f5f5f5;
  border: 3px solid #3c3c3c;
}
.p-seo-guide-single__body .seo-related--pink .seo-related__label {
  color: #fff;
  background-color: #3c3c3c;
}
.p-seo-guide-single__body .seo-steps {
  margin: 40px 0;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .seo-steps {
    margin: 56px 0;
  }
}
.p-seo-guide-single__body .seo-steps__item {
  position: relative;
  padding-bottom: 40px;
  padding-left: 30px;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .seo-steps__item {
    padding-bottom: 56px;
  }
}
.p-seo-guide-single__body .seo-steps__item::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 16px;
  height: 16px;
  content: "";
  background: #3c3c3c;
  border-radius: 50%;
}
.p-seo-guide-single__body .seo-steps__item::after {
  position: absolute;
  top: 0;
  left: 6.5px;
  width: 3px;
  height: 100%;
  content: "";
  background: #c8c8c8;
}
.p-seo-guide-single__body .seo-steps__item:last-child {
  padding-bottom: 0;
}
.p-seo-guide-single__body .seo-steps__item:last-child::after {
  display: none;
}
.p-seo-guide-single__body .seo-steps__num {
  margin-bottom: 1em;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #3c3c3c;
}
.p-seo-guide-single__body .seo-steps__title {
  font-size: 16px;
  font-weight: 700;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .seo-steps__title {
    font-size: 18px;
  }
}
.p-seo-guide-single__body .seo-steps__body {
  padding-left: 1em;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .seo-steps__body {
    padding-left: 0;
  }
}
.p-seo-guide-single__body .seo-marker-yellow {
  background: linear-gradient(transparent 70%, #fff499 30%);
}
.p-seo-guide-single__body .line-yellow {
  background: linear-gradient(transparent 70%, #fff499 30%);
}
.p-seo-guide-single__body .my_bold {
  font-weight: 700;
}
.p-seo-guide-single__body .alignnone {
  margin: 5px 20px 20px 0;
}
.p-seo-guide-single__body .original-box__wrapper {
  margin: 40px 0;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .original-box__wrapper {
    margin: 56px 0;
  }
}
.p-seo-guide-single__body .original-box__wrapper > .fas,
.p-seo-guide-single__body .original-box__wrapper > .fa-check,
.p-seo-guide-single__body .original-box__wrapper > i[class*=fa-] {
  display: none;
}
.p-seo-guide-single__body .original-box__wrapper > .my_bold {
  display: block;
  margin-bottom: 16px;
  font-size: 1.1em;
  font-weight: 700;
  color: #222;
}
.p-seo-guide-single__body ul.original-box {
  padding: 20px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 2px solid #222;
}
.p-seo-guide-single__body ul.original-box li {
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 1em;
}
.p-seo-guide-single__body ul.original-box li:last-child {
  margin-bottom: 0;
}
.p-seo-guide-single__body ul.original-box li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  content: "";
  background: url("../images/seo-guide/circle-check-regular.svg") no-repeat center center/cover;
  transform: translateY(-50%);
}
.p-seo-guide-single__body .original-maru-box__wrapper {
  margin: 40px 0;
}
@media (width >= 768px) {
  .p-seo-guide-single__body .original-maru-box__wrapper {
    margin: 56px 0;
  }
}
.p-seo-guide-single__body .original-maru-box__wrapper > .fas,
.p-seo-guide-single__body .original-maru-box__wrapper > .fa-check,
.p-seo-guide-single__body .original-maru-box__wrapper > i[class*=fa-] {
  display: none;
}
.p-seo-guide-single__body .original-maru-box__wrapper > .my_bold,
.p-seo-guide-single__body .original-maru-box__wrapper > span.my_bold {
  display: block;
  margin-bottom: 16px;
  font-size: 1.1em;
  font-weight: 700;
  color: #222;
}
.p-seo-guide-single__body .original-maru-box__wrapper > br {
  display: none;
}
.p-seo-guide-single__body .original-maru-box ol {
  padding: 20px 20px 20px 56px;
  margin: 0;
  list-style: none;
  counter-reset: seo-num;
  background: #fff;
  border: 2px solid #222;
}
.p-seo-guide-single__body .original-maru-box li {
  position: relative;
  margin-bottom: 1em;
  counter-increment: seo-num;
}
.p-seo-guide-single__body .original-maru-box li:last-child {
  margin-bottom: 0;
}
.p-seo-guide-single__body .original-maru-box li::before {
  position: absolute;
  top: 50%;
  min-width: 23px;
  height: 23px;
  margin-left: -3em;
  font-size: 70%;
  line-height: 23px;
  color: #fff;
  text-align: center;
  content: counters(seo-num, "");
  background: #222;
  border-radius: 50%;
  transform: translateY(-50%);
}
.p-seo-guide-single__body .original-box-before-icon {
  padding: 20px;
  margin: 30px 0;
  background: #fff;
  border: 2px solid #f5f5f5;
}
.p-seo-guide-single__body .original-box-before-icon p:last-child {
  margin-bottom: 0;
}
.p-seo-guide-single__body .original-box-before-icon__ttl {
  position: relative;
  padding-bottom: 5px;
  padding-left: 2.6rem;
  margin-bottom: 0.5em;
  font-weight: 700;
  border-bottom: 2px solid #222;
}
.p-seo-guide-single__body .original-box-before-icon__ttl::before {
  position: absolute;
  top: 44%;
  left: 0;
  width: 1.6rem;
  height: 2.133rem;
  content: "";
  background: url("../images/seo-guide/clipboard-regular.svg") no-repeat center center/contain;
  transform: translateY(-50%);
}

/* stylelint-enable selector-class-pattern */
/* stylelint-enable no-descending-specificity */
.p-seo-guide-faq {
  margin-top: 48px;
  margin-bottom: 48px;
}
@media (width >= 768px) {
  .p-seo-guide-faq {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.p-seo-guide-single__body-heading {
  padding-bottom: 12px;
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  border-bottom: 2px solid #787878;
}
@media (width >= 768px) {
  .p-seo-guide-single__body-heading {
    margin: 0 0 32px;
    font-size: 26px;
  }
}

.p-painting-hp {
  padding: 32px 0 60px;
}
@media (width >= 768px) {
  .p-painting-hp {
    padding: 48px 0 100px;
  }
}
.p-painting-hp__title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-painting-hp__title {
    margin: 0 0 32px;
    font-size: 32px;
  }
}
.p-painting-hp__thumbnail {
  margin: 0 0 32px;
}
@media (width >= 768px) {
  .p-painting-hp__thumbnail {
    margin: 0 0 48px;
  }
}
.p-painting-hp__thumbnail-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.p-painting-hp-form {
  padding: 0 0 60px;
}
@media (width >= 768px) {
  .p-painting-hp-form {
    padding: 0 0 100px;
  }
}
.p-painting-hp-form__box {
  padding: 40px 24px;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 8px;
}
@media (width >= 768px) {
  .p-painting-hp-form__box {
    padding: 56px 48px;
  }
}
.p-painting-hp-form__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-painting-hp-form__title {
    margin: 0 0 24px;
    font-size: 24px;
  }
}
.p-painting-hp-form__lead {
  margin: 0 0 32px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  color: #222;
}
@media (width >= 768px) {
  .p-painting-hp-form__lead {
    margin: 0 0 40px;
    font-size: 16px;
  }
}
.p-painting-hp-form__form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}
.p-painting-hp-form__note {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #999;
}
.p-painting-hp-form__caution {
  max-width: 500px;
  padding: 14px 16px;
  margin: 24px auto 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
  text-align: left;
  background-color: #fff;
  border-left: 3px solid #c8c8c8;
  border-radius: 2px;
}
@media (width >= 768px) {
  .p-painting-hp-form__caution {
    padding: 16px 20px;
    font-size: 13px;
  }
}
.p-painting-hp-form__caution-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.p-painting-hp-form__caution-list li {
  padding-left: 1em;
  text-indent: -1em;
}
.p-painting-hp-form__caution-list li::before {
  content: "・";
}
.p-painting-hp-form__caution-list li + li {
  margin-top: 4px;
}

.p-painting-hp-thanks {
  padding: 60px 0;
}
@media (width >= 768px) {
  .p-painting-hp-thanks {
    padding: 100px 0;
  }
}
.p-painting-hp-thanks__box {
  padding: 40px 16px;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 8px;
}
@media (width >= 768px) {
  .p-painting-hp-thanks__box {
    padding: 56px 48px;
  }
}
.p-painting-hp-thanks__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-painting-hp-thanks__title {
    font-size: 28px;
  }
}
.p-painting-hp-thanks__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.87;
  color: #222;
}
@media (width >= 768px) {
  .p-painting-hp-thanks__text {
    font-size: 16px;
  }
}
.p-painting-hp-thanks__action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (width >= 768px) {
  .p-painting-hp-thanks__action {
    margin-top: 60px;
  }
}

.p-article-lp {
  padding: 32px 0 60px;
}
@media (width >= 768px) {
  .p-article-lp {
    padding: 48px 0 100px;
  }
}
.p-article-lp__title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
@media (width >= 768px) {
  .p-article-lp__title {
    margin: 0 0 32px;
    font-size: 32px;
  }
}
.p-article-lp__thumbnail {
  margin: 0 0 32px;
}
@media (width >= 768px) {
  .p-article-lp__thumbnail {
    margin: 0 0 48px;
  }
}
.p-article-lp__thumbnail-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

@media (width >= 768px) {
  .u-sp-only {
    display: none !important;
  }
}

.u-pc-only {
  display: none !important;
}
@media (width >= 768px) {
  .u-pc-only {
    display: block !important;
  }
}

.u-sp-hidden {
  display: none !important;
}
@media (width >= 768px) {
  .u-sp-hidden {
    display: inline !important;
  }
}

@media (width >= 768px) {
  .u-pc-hidden {
    display: none !important;
  }
}

.js-scroll-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transform: translateY(30px);
}
.js-scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
