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

html {
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 80px;
  }
}

body {
  background: #f5f7f8;
  color: #2c3e4c;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.32px;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    line-height: 155%;
    letter-spacing: 0.36px;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

main {
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
@media screen and (min-width: 900px) {
  .l-header {
    height: 80px;
  }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 900px) {
  .l-header__inner {
    padding-right: 50px;
    padding-left: 50px;
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1230px) {
  .l-header__inner {
    padding-right: 120px;
    padding-left: 120px;
  }
}

.l-header__logo a {
  display: inline-flex;
  align-items: center;
}
.l-header__logo img {
  height: 43px;
  width: auto;
}

.l-header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .l-header__nav {
    display: block;
  }
}

.l-footer {
  background-color: #7a9ba8;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 100px 15px;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    gap: 100px;
    padding: 120px 120px;
  }
}

.l-footer__logo a {
  display: inline-flex;
  align-items: center;
}
.l-footer__logo img {
  height: 48px;
  width: auto;
}

.l-footer__nav {
  width: auto;
}

.l-footer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-footer__list a {
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #f5f7f8;
  line-height: 40px;
  letter-spacing: 0.7px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s ease;
}
.l-footer__list a:hover {
  opacity: 0.7;
}

.l-footer__privacy {
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #f5f7f8;
  line-height: 40px;
  letter-spacing: 0.7px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.l-footer__privacy:hover {
  opacity: 0.7;
}

.l-footer__copyright {
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #f5f7f8;
  line-height: 40px;
  letter-spacing: 0.7px;
}

.l-inner {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1230px) {
  .l-inner {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 120px;
    padding-left: 120px;
  }
}

.c-btn {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 300px;
  padding: 15px 30px;
  background-color: #2c3e4c;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: none;
}
.c-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
@media screen and (min-width: 768px) {
  .c-btn {
    width: 350px;
  }
}

.c-btn__text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .c-btn__text {
    font-size: 16px;
  }
}

.c-btn__icon {
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.c-btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background-color: #2c3e4c;
  border-radius: 50%;
}

.c-btn--white {
  background-color: #fff;
}
.c-btn--white .c-btn__text {
  color: #2c3e4c;
}
.c-btn--white .c-btn__icon {
  background-color: #2c3e4c;
}
.c-btn--white .c-btn__icon::after {
  background-color: #fff;
}

.c-global-menu {
  display: flex;
  gap: clamp(12px, 3vw, 40px);
  margin: 0;
  padding: 0;
}
.c-global-menu li a {
  font-size: 16px;
  color: #2c3e4c;
  transition: color 0.3s ease;
}
.c-global-menu li a:hover {
  color: #2c5f8d;
}

.c-hamburger {
  position: relative;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger:focus {
  outline: none;
}

.c-hamburger__line {
  display: block;
  width: 30px;
  height: 3px;
  background: #2c3e4c;
  transition: all 0.3s ease;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  transform: translateY(11px);
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  background: #2c5f8d;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  transform: translateY(-11px);
  opacity: 0;
}

.c-modal-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #7a9ba8;
  z-index: 999;
  height: calc(100vh - 80px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 100px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 900px) {
  .c-modal-menu {
    display: none !important;
  }
}
.c-modal-menu.is-active {
  transform: translateX(0);
}

.c-modal-menu__nav {
  width: auto;
}

.c-modal-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.c-modal-menu__list li a {
  display: flex;
  align-items: center;
  height: 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}
.c-modal-menu__list li a:hover {
  opacity: 0.7;
}

.c-section-heading {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 0;
  font-family: Arial, sans-serif;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-section-heading {
    gap: 30px;
  }
}

.c-section-heading__en {
  font-size: 40px;
  font-weight: 400;
  color: #000;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-section-heading__en {
    font-size: 66px;
  }
}

.c-section-heading__ja {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  padding-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .c-section-heading__ja {
    font-size: 20px;
    padding-bottom: 8px;
  }
}

.c-works-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  box-shadow: 5px 5px 4px 0 rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-works-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.c-works-card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #fff;
}
.c-works-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-works-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-works-card__title {
  font-size: 16px;
  font-weight: 400;
  color: #101727;
  line-height: 24px;
}

.c-works-card__text {
  font-size: 14px;
  font-weight: 400;
  color: #495565;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.c-news-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  text-decoration: none;
  color: inherit;
  box-shadow: 5px 5px 4px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}
@media screen and (min-width: 768px) {
  .c-news-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 20px 50px;
    max-width: none;
  }
}

.c-news-card__img {
  width: 100%;
  height: 178px;
  overflow: hidden;
  background-color: #fff;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c-news-card__img {
    width: 300px;
    height: 210px;
  }
}
.c-news-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-news-card__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .c-news-card__body {
    width: 500px;
    gap: 12px;
  }
}

.c-news-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 24px;
  background-color: #d4e3e8;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #2c3e4c;
  align-self: flex-start;
}

.c-news-card__title {
  font-size: 24px;
  font-weight: 400;
  color: #101727;
  line-height: 24px;
  font-family: Arial, sans-serif;
}

.c-news-card__date {
  font-size: 14px;
  font-weight: 400;
  color: #495565;
  line-height: 20px;
  font-family: Arial, sans-serif;
}

.c-news-card__text {
  font-size: 14px;
  font-weight: 400;
  color: #495565;
  line-height: 20px;
  font-family: Arial, sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-news-card__text {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}

.c-price-card {
  width: 320px;
  flex-shrink: 0;
  background-color: #fff;
  border: 2px solid #7a9ba8;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .c-price-card {
    border-radius: 0;
  }
}

.c-price-card__head {
  background-color: #7a9ba8;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.c-price-card__name {
  font-size: 24px;
  font-weight: 700;
  color: #f5f7f8;
  line-height: 24px;
  font-family: Arial, sans-serif;
}

.c-price-card__price {
  font-size: 32px;
  font-weight: 700;
  color: #f5f7f8;
  line-height: 24px;
  font-family: Arial, sans-serif;
}

.c-price-card__type {
  font-size: 14px;
  font-weight: 400;
  color: #f5f7f8;
  line-height: 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.c-price-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.c-price-card__tagline {
  font-size: 16px;
  font-weight: 400;
  color: #7a9ba8;
  line-height: 24px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.c-price-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-price-card__feature {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  color: #2c3e4c;
  line-height: 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.c-service-card {
  width: 320px;
  min-width: 295px;
  min-height: 295px;
  flex-shrink: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  border: 2px solid #7a9ba8;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px 20px;
  scroll-snap-align: start;
}
.c-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.c-service-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  background-color: #7a9ba8;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.c-service-card__badge-text {
  position: absolute;
  top: 20px;
  left: -10px;
  width: 90px;
  text-align: center;
  transform: rotate(-45.8deg);
  font-size: 12px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
}

.c-service-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #2c3e4c;
}

.c-service-card__name {
  font-size: 20px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #2c3e4c;
  line-height: 1.3;
  margin: 0;
}

.c-service-card__price {
  font-size: 32px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #2c3e4c;
  line-height: 1;
  margin: 0;
}

.c-service-card__tagline {
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #7a9ba8;
  line-height: 24px;
  margin: 0;
}

.c-service-card__desc {
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #2c3e4c;
  line-height: 20px;
  margin: 0;
}

.c-flow-card {
  width: 100%;
  max-width: 350px;
  background-color: #f5f7f8;
  border: 1px solid #7a9ba8;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .c-flow-card {
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 940px;
    gap: 20px;
  }
}

.c-flow-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 80px;
}

.c-flow-card__step {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e4c;
  line-height: 24px;
  font-family: Arial, sans-serif;
}

.c-flow-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #7a9ba8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-flow-card__icon img {
  width: 46px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.c-flow-card__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-flow-card__body {
    text-align: left;
  }
}

.c-flow-card__title {
  font-size: 24px;
  font-weight: 400;
  color: #2c3e4c;
  line-height: 20px;
  font-family: Arial, sans-serif;
}

.c-flow-card__text {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 26px;
  font-family: Arial, sans-serif;
}

.c-flow-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #c85a54;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-flow-arrow::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-right: 4px solid #f5f7f8;
  border-bottom: 4px solid #f5f7f8;
  transform: rotate(45deg) translate(-2px, -2px);
}

.c-breadcrumb {
  background-color: #f5f7f8;
  padding: 10px 20px;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    padding: 20px 151px;
  }
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__list {
    gap: 24px;
  }
}

.c-breadcrumb__item {
  font-size: 12px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #495565;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__item {
    font-size: 16px;
  }
}

.c-breadcrumb__link {
  color: inherit;
  text-decoration: none;
}
.c-breadcrumb__link:hover {
  opacity: 0.7;
}

.c-breadcrumb--cta-bg {
  background-color: #d4e3e8;
}

.c-breadcrumb__sep {
  font-size: 12px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #495565;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__sep {
    font-size: 16px;
  }
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.c-pagination__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
}

.c-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 51px;
  padding: 0 6px;
  background-color: #fff;
  border: 1px solid #d4e3e8;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #2c3e4c;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.c-pagination__item.is-active {
  background-color: #2c3e4c;
  color: #fff;
  border-color: #2c3e4c;
  pointer-events: none;
}
.c-pagination__item:not(.is-active):hover {
  opacity: 0.7;
}

.c-pagination__ellipsis {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-pagination__ellipsis span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #2c3e4c;
  flex-shrink: 0;
}

.c-pagination__next {
  display: block;
  width: 40px;
  height: 20px;
  text-decoration: none;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='20' viewBox='0 0 40 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10H30M23 3L30 10L23 17' stroke='%232c3e4c' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 40px 20px;
}

.c-pagination__prev {
  display: block;
  width: 40px;
  height: 20px;
  text-decoration: none;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='20' viewBox='0 0 40 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10H10M17 3L10 10L17 17' stroke='%232c3e4c' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 40px 20px;
}

.c-member-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  max-width: 400px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1000px) {
  .c-member-card {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: none;
  }
}

.c-member-card__photo {
  width: 200px;
  height: 200px;
  background-color: #ccc;
  flex-shrink: 0;
  overflow: hidden;
}
.c-member-card__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-member-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .c-member-card__info {
    flex: 1;
    min-width: 0;
    width: auto;
  }
}

.c-member-card__name {
  font-size: 18px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #333;
  margin: 0;
}

.c-member-card__tag-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.c-member-card__cats,
.c-member-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.c-member-card__skills {
  height: 0;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .c-member-card__skills {
    height: auto !important;
    overflow: visible;
  }
}

.c-member-card {
  display: flex;
  flex-direction: column;
}

.c-member-card__info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.c-member-card__link-icon-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 40px;
  margin-top: auto;
}

.c-member-card__link-icon {
  width: 26px;
  height: 12px;
  transform: rotate(-90deg);
  transform-origin: center;
}

.c-member-card__tag {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 6px;
  background-color: #f5f7f8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
}

.c-member-card__cats .c-member-card__tag {
  background-color: #d4e3e8;
  padding: 0 16px;
  color: #333;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
}

.c-member-card__bio {
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #333;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

.p-fv {
  position: relative;
  background: #fff;
  min-height: 1033px;
}
@media screen and (min-width: 768px) {
  .p-fv {
    min-height: 1185px;
  }
}

.p-fv__inner {
  padding-top: 63px;
  padding-bottom: 94px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .p-fv__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 45px;
    padding-bottom: 165px;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-fv__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.p-fv__logo {
  width: 250px;
}
@media screen and (min-width: 768px) {
  .p-fv__logo {
    width: 433px;
  }
}
.p-fv__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.p-fv__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.p-fv__lead-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.p-fv__lead-main p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 24px;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-fv__lead-main p {
    font-size: 18px;
  }
}

.p-fv__lead-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.p-fv__heading {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  font-size: 28px;
  font-weight: 500;
  color: #101727;
  letter-spacing: 2px;
  line-height: 130%;
  text-align: center;
}

.p-fv__body {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #070808;
  text-align: center;
}

.p-fv__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}
.p-fv__wave img {
  width: 100%;
  display: block;
}

.p-cta {
  background-color: #d4e3e8;
  padding: 50px 15px;
}
@media screen and (min-width: 768px) {
  .p-cta {
    padding: 20px 0;
  }
}

.p-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-cta__inner {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.p-cta__heading {
  font-size: 24px;
  font-weight: 700;
  color: #495565;
  line-height: 26px;
  text-align: center;
}

.p-cta__body {
  font-size: 16px;
  font-weight: 400;
  color: #495565;
  line-height: 26px;
  text-align: center;
}

.p-works {
  position: relative;
  overflow: hidden;
  padding: 50px 15px;
  background-image: radial-gradient(circle 95px at 96px 215px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 57px at 267px 420px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 57px at 219px 646px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 57px at 57px 792px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-works {
    padding: 200px 0;
  }
}

.p-works__wave-top {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  line-height: 0;
  transform: scaleY(-1);
}
.p-works__wave-top svg {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-works__wave-top svg:first-of-type {
    display: none;
  }
}
.p-works__wave-top svg:last-of-type {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-works__wave-top svg:last-of-type {
    display: block;
  }
}

.p-works__wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}
.p-works__wave-bottom svg {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-works__wave-bottom svg:first-of-type {
    display: none;
  }
}
.p-works__wave-bottom svg:last-of-type {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-works__wave-bottom svg:last-of-type {
    display: block;
  }
}

.p-works__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-works__inner {
    gap: 100px;
    padding-left: 120px;
    padding-right: 120px;
  }
}

.p-works__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
}
@media screen and (min-width: 768px) {
  .p-works__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
  }
}
.p-works__list li {
  width: 100%;
  max-width: 320px;
  display: flex;
}
.p-works__list li .c-works-card {
  flex: 1;
}

.p-news {
  background-color: #d4e3e8;
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding: 60px 0;
  }
}

.p-news__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.p-news__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    align-items: stretch;
    gap: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-news__list li {
  width: 100%;
}
.p-news__list li .c-news-card {
  display: flex;
  width: 100%;
}

.p-about {
  position: relative;
  overflow: hidden;
  padding: 50px 15px;
  background-image: radial-gradient(circle 90px at 90px 221px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  background-repeat: no-repeat;
}
@media screen and (min-width: 600px) {
  .p-about {
    padding: 120px 15px;
  }
}
@media screen and (min-width: 768px) {
  .p-about {
    padding: 280px 0;
    background-image: radial-gradient(circle 192px at 534px 480px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  }
}
@media screen and (min-width: 1230px) {
  .p-about {
    padding: 200px 0;
  }
}

.p-about__wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  line-height: 0;
  transform: scaleY(-1);
}
.p-about__wave-top svg {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-about__wave-top svg:first-of-type {
    display: none;
  }
}
.p-about__wave-top svg:last-of-type {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about__wave-top svg:last-of-type {
    display: block;
  }
}

.p-about__wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}
.p-about__wave-bottom svg {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-about__wave-bottom svg:first-of-type {
    display: none;
  }
}
.p-about__wave-bottom svg:last-of-type {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about__wave-bottom svg:last-of-type {
    display: block;
  }
}

.p-about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    gap: 100px;
    padding-left: 120px;
    padding-right: 120px;
  }
}

.p-about__img {
  width: 100%;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .p-about__img {
    max-width: 581px;
  }
}
.p-about__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-about__body {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #070808;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__body {
    max-width: 952px;
  }
}

.p-about-wave {
  line-height: 0;
  margin-bottom: -2px;
}

.p-about-wave__svg--sp {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about-wave__svg--sp {
    display: none;
  }
}

.p-about-wave__svg--pc {
  display: none;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about-wave__svg--pc {
    display: block;
  }
}

.p-about-wave--why-top {
  background-color: #f5f7f8;
}
.p-about-wave--why-top .p-about-wave__svg--sp {
  height: 32px;
}
.p-about-wave--why-top .p-about-wave__svg--pc {
  height: 120px;
}

.p-about-wave--why-bottom {
  background-color: #fff;
  margin-bottom: -2px;
}
.p-about-wave--why-bottom .p-about-wave__svg--sp {
  height: 32px;
}
.p-about-wave--why-bottom .p-about-wave__svg--pc {
  height: 120px;
}

.p-about-wave--phil-bottom {
  background-color: #fff;
}
.p-about-wave--phil-bottom .p-about-wave__svg--sp {
  height: 32px;
}
.p-about-wave--phil-bottom .p-about-wave__svg--pc {
  height: 100px;
}

.p-why-team {
  background-color: #d4e3e8;
  padding: 60px 15px;
}
@media screen and (min-width: 768px) {
  .p-why-team {
    padding: 60px 0;
  }
}

.p-why-team__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-why-team__inner {
    max-width: 800px;
    margin: 0 auto;
    gap: 48px;
  }
}

.p-why-team__lead {
  font-size: 19px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-why-team__lead {
    font-size: 22px;
  }
}

.p-why-team__title {
  font-size: 20px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #495565;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-why-team__title {
    font-size: 24px;
  }
}

.p-why-team__body {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #333;
  line-height: 1.9;
  margin: 0;
  text-align: center;
}

.p-philosophy {
  background-color: #fff;
  padding: 40px 15px;
}
@media screen and (min-width: 768px) {
  .p-philosophy {
    padding: 100px 0 200px;
  }
}

.p-philosophy__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-philosophy__inner {
    max-width: 640px;
    margin: 0 auto;
  }
}

.p-philosophy__title {
  font-size: 20px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #495565;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-philosophy__title {
    font-size: 24px;
  }
}

.p-philosophy__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-philosophy__items {
    gap: 30px;
  }
}

.p-philosophy__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.p-philosophy__item-title {
  font-size: 18px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #c85a54;
  text-align: center;
  margin: 0;
}

.p-philosophy__item-body {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #333;
  line-height: 1.9;
  text-align: center;
  margin: 0;
}

.p-philosophy__img {
  width: 100%;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .p-philosophy__img {
    max-width: 581px;
  }
}
.p-philosophy__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-member {
  background-color: #d4e3e8;
  padding: 20px 15px 40px;
}
@media screen and (min-width: 768px) {
  .p-member {
    padding: 60px 0 100px;
  }
}

.p-member__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-member__inner {
    gap: 50px;
    max-width: 1388px;
    margin: 0 auto;
    padding: 0 120px;
  }
}

.p-member__title {
  font-size: 20px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #495565;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-member__title {
    font-size: 24px;
  }
}

.p-member__desc {
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #495565;
  text-align: center;
  line-height: 1.7;
  margin: 0;
}

.p-member__filter {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .p-member__filter {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
  }
}

.p-member__filter-label {
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #495565;
  flex-shrink: 0;
}

.p-member__filter-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-member__filter-body {
    display: grid;
    grid-template-columns: 1fr 40px;
    grid-template-areas: "cats toggle" "skills skills";
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 0;
    flex-grow: 1;
    min-width: 0;
    width: auto;
  }
}

.p-member__filter-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: stretch;
}
@media screen and (min-width: 768px) {
  .p-member__filter-cats {
    grid-area: cats;
    align-self: end;
    gap: 24px;
  }
}

.p-member__filter-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  height: 0;
  overflow: hidden;
  align-self: stretch;
}
@media screen and (min-width: 768px) {
  .p-member__filter-skills {
    grid-area: skills;
    padding-top: 39px;
  }
}

.p-member__filter-toggle {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-member__filter-toggle {
    grid-area: toggle;
    align-self: end;
  }
}
.p-member__filter-toggle::after {
  content: "";
  display: block;
  width: 26px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='18' viewBox='0 0 29 18'%3E%3Cpath d='M14.5 18L0 0h29z' fill='%237a9ba8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}
.p-member__filter-toggle.is-open::after {
  transform: rotate(180deg);
}

.p-member__cat-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 15px;
  background-color: #fff;
  border: 1px solid #d4e3e8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.p-member__cat-btn:hover {
  background-color: #d4e3e8;
}
.p-member__cat-btn.is-active {
  background-color: #d4e3e8;
  border-color: #d4e3e8;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-member__cat-btn {
    padding: 0 16px;
  }
}

.p-member__skill-tag {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 6px;
  background-color: #f5f7f8;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  cursor: pointer;
  white-space: nowrap;
}
.p-member__skill-tag:hover {
  opacity: 0.8;
}

.p-member__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  justify-items: center;
}
@media screen and (min-width: 1230px) {
  .p-member__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.p-price {
  background-color: #d4e3e8;
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .p-price {
    padding: 60px 0;
  }
}

.p-price__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-price__inner {
    gap: 100px;
  }
}
@media screen and (min-width: 1000px) {
  .p-price__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1230px) {
  .p-price__inner {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.p-price__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 1000px) {
  .p-price__cards {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  .p-price__cards .c-price-card:first-child {
    border-radius: 20px 0 0 20px;
  }
  .p-price__cards .c-price-card:last-child {
    border-radius: 0 20px 20px 0;
  }
}

.p-price__note {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #070808;
  text-align: center;
  font-family: Arial, sans-serif;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-price__note {
    max-width: 1075px;
  }
}

.p-flow {
  position: relative;
  overflow: hidden;
  padding: 60px 15px;
  background-image: radial-gradient(circle 57px at 1173px 987px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 57px at 1222px 761px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 57px at 1384px 615px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 95px at 1344px 1191px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  background-repeat: no-repeat;
}
@media screen and (min-width: 600px) {
  .p-flow {
    padding: 120px 15px;
  }
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding: 280px 0 150px;
  }
}
@media screen and (min-width: 1230px) {
  .p-flow {
    padding: 200px 0 120px;
  }
}

.p-flow__wave-top {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  line-height: 0;
  transform: scaleY(-1);
}
.p-flow__wave-top svg {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-flow__wave-top svg:first-of-type {
    display: none;
  }
}
.p-flow__wave-top svg:last-of-type {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-flow__wave-top svg:last-of-type {
    display: block;
  }
}

.p-flow__wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.p-flow__wave-bottom svg {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-flow__wave-bottom svg:first-of-type {
    display: none;
  }
}
.p-flow__wave-bottom svg:last-of-type {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-flow__wave-bottom svg:last-of-type {
    display: block;
  }
}

.p-flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-flow__inner {
    gap: 100px;
    padding-left: 120px;
    padding-right: 120px;
  }
}

.p-flow__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.p-contact-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 30px 15px;
  background-image: radial-gradient(circle 100px at 100px 284px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-contact-section {
    padding: 120px 0;
    background-image: radial-gradient(circle 240px at 1080px 433px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  }
}

.p-contact-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-contact-section__inner {
    gap: 100px;
    padding-left: 120px;
    padding-right: 120px;
  }
}

.p-contact-section__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact-section__cta {
    max-width: 661px;
  }
}

.p-contact-section__heading {
  font-size: 24px;
  font-weight: 700;
  color: #495565;
  line-height: 26px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.p-contact-section__body {
  font-size: 16px;
  font-weight: 400;
  color: #495565;
  line-height: 26px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.p-page-fv {
  position: relative;
  overflow: hidden;
  background-color: #f5f7f8;
  min-height: 432px;
  display: flex;
  align-items: center;
  padding: 140px 15px;
  background-image: radial-gradient(circle 56px at 90px 57px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 33px at 192px 178px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 33px at 165px 312px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 33px at 69px 399px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-page-fv {
    padding: 140px 88px;
    background-image: radial-gradient(circle 56px at 90px 57px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 33px at 192px 178px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 33px at 165px 312px, rgba(200, 90, 84, 0.2) 100%, transparent 100%), radial-gradient(circle 33px at 69px 399px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  }
}
.p-page-fv--white {
  background-color: #fff;
}

.p-works__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
}
@media screen and (min-width: 768px) {
  .p-works__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
  }
}
@media screen and (min-width: 1230px) {
  .p-works__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-works__list li {
  width: 100%;
  max-width: 100%;
}

.p-works-list__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 50px 10px;
}
@media screen and (min-width: 768px) {
  .p-works-list__inner {
    gap: 100px;
    padding: 80px 10px 120px;
  }
}

.p-works-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-works-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
  }
}
@media screen and (min-width: 1230px) {
  .p-works-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-works-list__row {
  display: contents;
}
.p-works-list__row .c-works-card {
  width: 100%;
  max-width: 100%;
}

.p-works-detail {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1230px) {
  .p-works-detail {
    flex-direction: row;
  }
}

.p-works-detail__text {
  background-color: #f4dedd;
  padding: 40px 16px 48px;
}
@media screen and (min-width: 1230px) {
  .p-works-detail__text {
    width: 561px;
    flex-shrink: 0;
    padding: 0 72px 80px;
  }
}

.p-works-detail__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1230px) {
  .p-works-detail__inner {
    gap: 40px;
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    padding-top: 80px;
  }
}

.p-works-detail__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-works-detail__tag {
  display: inline-flex;
  align-items: center;
  background-color: #2c3e4c;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  padding: 8px 22px;
  border-radius: 50px;
  align-self: flex-start;
}

.p-works-detail__title {
  font-size: 20px;
  font-weight: 400;
  color: #101828;
  line-height: 24px;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0 8px 42px;
  border-bottom: 1px solid #101828;
}

.p-works-detail__desc {
  font-size: 14px;
  font-weight: 400;
  color: #495565;
  line-height: 20px;
  font-family: Arial, sans-serif;
}

.p-works-detail__url {
  display: flex;
  align-items: center;
  gap: 28px;
}

.p-works-detail__url-label {
  font-size: 15px;
  font-weight: 700;
  color: #101828;
  font-family: Arial, sans-serif;
  line-height: 24px;
  white-space: nowrap;
}

.p-works-detail__url-link {
  font-size: 14px;
  font-weight: 400;
  color: #101828;
  font-family: Arial, sans-serif;
  line-height: 24px;
  text-decoration: underline;
  word-break: break-all;
}
.p-works-detail__url-link:hover {
  opacity: 0.7;
}

.p-works-detail__members {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-works-detail__members-title {
  font-size: 14px;
  font-weight: 700;
  color: #101828;
  font-family: Arial, sans-serif;
  line-height: 24px;
}

.p-works-detail__member {
  font-size: 14px;
  font-weight: 400;
  color: #101828;
  font-family: Arial, sans-serif;
  line-height: 24px;
}

.p-works-detail__images {
  background-color: #f5f7f8;
  overflow: hidden;
  padding: 40px 0;
}
@media screen and (min-width: 1230px) {
  .p-works-detail__images {
    flex: 1;
    padding: 80px clamp(0px, 3vw, 40px) 80px clamp(20px, 7vw, 145px);
    overflow: clip;
  }
}

.p-works-detail__slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-left: 16px;
  scrollbar-width: none;
  outline: none;
}
.p-works-detail__slider::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1230px) {
  .p-works-detail__slider {
    flex-direction: column;
    overflow-x: hidden;
    gap: 40px;
    padding-left: 0;
  }
}

.p-works-detail__slide {
  flex-shrink: 0;
  width: 300px;
  height: 225px;
}
.p-works-detail__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 1230px) {
  .p-works-detail__slide {
    width: 100%;
    height: auto;
    flex-shrink: 1;
  }
  .p-works-detail__slide img {
    height: auto;
  }
}

.p-works-related {
  background-color: #f5f7f8;
  padding: 50px 15px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 768px) {
  .p-works-related {
    padding: 100px 180px;
  }
}

.p-works-related__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-works-related__inner {
    gap: 100px;
  }
}

.p-works-related__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-works-related__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
}
.p-works-related__list .c-works-card {
  width: 100%;
  max-width: 320px;
}

.p-news-list__wave {
  background-color: #f5f7f8;
  line-height: 0;
  margin-bottom: -2px;
}

.p-news-list__wave-svg--sp {
  display: block;
  width: 100%;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .p-news-list__wave-svg--sp {
    display: none;
  }
}

.p-news-list__wave-svg--pc {
  display: none;
  width: 100%;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .p-news-list__wave-svg--pc {
    display: block;
  }
}

.p-news-list {
  background-color: #d4e3e8;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .p-news-list {
    padding: 80px 0 120px;
  }
}

.p-news-list__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-news-list__inner {
    gap: 120px;
    padding: 0 116px;
  }
}

.p-news-list__filter {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news-list__filter {
    gap: 80px;
    max-width: 1000px;
  }
}

.p-news-list__filter-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-news-list__filter-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
}

.p-news-list__filter-label {
  font-size: 24px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #495565;
  flex-shrink: 0;
}

.p-news-list__cat-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.p-news-list__cat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 30px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #2c3e4c;
  cursor: pointer;
  background-color: #d4e3e8;
  border: 1px solid transparent;
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 768px) {
  .p-news-list__cat-btn {
    padding: 0 24px;
  }
}
.p-news-list__cat-btn.is-active {
  background-color: #fff;
  border-color: #d4e3e8;
}
.p-news-list__cat-btn:not(.is-active):hover {
  opacity: 0.8;
}

.p-news-list__archive {
  position: relative;
  display: inline-block;
}

.p-news-list__archive-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #d4e3e8;
  border-radius: 5px;
  width: 225px;
  height: 36px;
  padding: 0 44px 0 30px;
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #2c3e4c;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 18'%3E%3Cpath d='M14.5 18L0 0h29z' fill='%237a9ba8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 9px;
}

.p-news-list__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-news-list__cards {
    align-items: stretch;
    gap: 60px;
    max-width: 1000px;
  }
}

.p-news-detail__fv {
  background-color: #d4e3e8;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .p-news-detail__fv {
    height: 200px;
  }
}

.p-news-detail__wave {
  background-color: #f5f7f8;
  line-height: 0;
  margin-bottom: -2px;
}

.p-news-detail__wave-svg--sp {
  display: block;
  width: 100%;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .p-news-detail__wave-svg--sp {
    display: none;
  }
}

.p-news-detail__wave-svg--pc {
  display: none;
  width: 100%;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .p-news-detail__wave-svg--pc {
    display: block;
  }
}

.p-news-detail {
  padding: 50px 15px;
}
@media screen and (min-width: 768px) {
  .p-news-detail {
    padding: 100px 20px;
  }
}
@media screen and (min-width: 1230px) {
  .p-news-detail {
    padding: 100px 0;
  }
}

.p-news-detail__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-news-detail__inner {
    gap: 60px;
  }
}

.p-news-detail__card {
  background-color: #fff;
  border: 1px solid #7a9ba8;
  border-radius: 10px;
  padding: 50px 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news-detail__card {
    max-width: 980px;
    padding: 60px;
    gap: 60px;
  }
}

.p-news-detail__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d4e3e8;
}

.p-news-detail__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-news-detail__date {
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #495565;
  line-height: 20px;
}

.p-news-detail__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 24px;
  background-color: #d4e3e8;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #2c3e4c;
}

.p-news-detail__title {
  font-size: 24px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #101727;
  line-height: 1.4;
  margin: 0;
}

.p-news-detail__img {
  border-radius: 10px;
  overflow: hidden;
}
.p-news-detail__img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-detail__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-news-detail__body {
    gap: 30px;
  }
}
.p-news-detail__body h2 {
  font-size: 20px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #495565;
  line-height: 26px;
  margin: 0;
}
.p-news-detail__body p {
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 26px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-news-detail__body p {
    font-size: 16px;
  }
}

.p-what-we-do__wave-top {
  background-color: #f5f7f8;
  line-height: 0;
  margin-bottom: -2px;
}

.p-what-we-do__wave-bottom {
  background-color: #f5f7f8;
  line-height: 0;
  margin-bottom: -2px;
}

.p-what-we-do__wave-svg--sp {
  display: block;
  width: 100%;
  height: 27px;
}
@media screen and (min-width: 768px) {
  .p-what-we-do__wave-svg--sp {
    display: none;
  }
}

.p-what-we-do__wave-svg--pc {
  display: none;
  width: 100%;
  height: 120px;
}
@media screen and (min-width: 768px) {
  .p-what-we-do__wave-svg--pc {
    display: block;
  }
}

.p-what-we-do {
  background-color: #d4e3e8;
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .p-what-we-do {
    padding: 60px 100px;
  }
}

.p-what-we-do__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.p-what-we-do__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-what-we-do__cards {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
  }
}

.p-what-we-do__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-what-we-do__card {
    max-width: 380px;
  }
}

.p-what-we-do__icon {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #2c5f8d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-what-we-do__icon-label {
  font-size: 24px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #fff;
  line-height: 1.125;
  text-align: center;
}

.p-what-we-do__text {
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #495565;
  line-height: 26px;
  text-align: center;
  margin: 0;
}

.p-what-we-do__more {
  font-size: 36px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #2c5f8d;
  line-height: 30px;
  text-align: center;
  margin: 0;
}

.p-service-price-cards {
  background-color: #f5f7f8;
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .p-service-price-cards {
    padding: 100px 0;
  }
}

.p-service-price-cards__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
@media screen and (min-width: 768px) {
  .p-service-price-cards__inner {
    gap: 120px;
    padding: 0 120px;
  }
}

.p-service-price-cards__sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service-price-cards__sub {
    gap: 68px;
  }
}

.p-service-price-cards__homepage-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .p-service-price-cards__homepage-cards {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    justify-content: center;
  }
  .p-service-price-cards__homepage-cards .c-price-card:first-child {
    border-radius: 20px 0 0 20px;
  }
  .p-service-price-cards__homepage-cards .c-price-card:last-child {
    border-radius: 0 20px 20px 0;
  }
}

.p-service-price-cards__other-slider {
  width: 100%;
  overflow-x: auto;
  overflow-y: clip;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-top: 8px;
}
.p-service-price-cards__other-slider::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-service-price-cards__other-slider {
    overflow: visible;
    scroll-snap-type: none;
    padding-top: 0;
  }
}

.p-service-price-flow__wave-top,
.p-service-price-flow__wave-bottom {
  background-color: #fff;
  line-height: 0;
  margin-bottom: -2px;
}

.p-service-price-flow__wave-svg--pc {
  display: none;
  width: 100%;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .p-service-price-flow__wave-svg--pc {
    display: block;
  }
}

.p-service-price-flow__wave-svg--sp {
  display: block;
  width: 100%;
  height: 31px;
}
@media screen and (min-width: 768px) {
  .p-service-price-flow__wave-svg--sp {
    display: none;
  }
}

.p-service-price-flow {
  background-color: #fff;
  padding: 50px 15px;
}
@media screen and (min-width: 768px) {
  .p-service-price-flow {
    padding: 100px 120px;
  }
}

.p-service-price-flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
@media screen and (min-width: 768px) {
  .p-service-price-flow__inner {
    gap: 120px;
  }
}

.p-service-price-flow__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.p-service-price-cards__other-cards {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-service-price-cards__other-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
}

.p-comm-tools {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-comm-tools {
    gap: 80px;
  }
}

.p-comm-tools__heading {
  font-size: 30px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #000;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-comm-tools__heading {
    font-size: 66px;
  }
}

.p-comm-tools__communication {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .p-comm-tools__communication {
    max-width: 768px;
  }
}

.p-comm-tools__tools {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.p-comm-tools__sub-heading {
  font-size: 16px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #101727;
  margin: 0;
}
.p-comm-tools__sub-heading--lg {
  font-size: 18px;
}

.p-comm-tools__text {
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #495565;
  line-height: 26px;
  margin: 0;
}

.p-comm-tools__tools-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-comm-tools__tools-grid {
    flex-direction: row;
    justify-content: space-between;
    gap: 41px;
  }
}

.p-comm-tools__tools-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-comm-tools__tools-col {
    flex: 1;
  }
}

.p-comm-tools__category {
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #697282;
  display: block;
  margin-bottom: 1px;
}

.p-comm-tools__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.p-comm-tools__list li {
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #101727;
  line-height: 1.4;
}

.p-privacy {
  background-color: #f5f7f8;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    padding: 0;
  }
}

.p-privacy__inner {
  max-width: 315px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-privacy__inner {
    max-width: 860px;
  }
}

.p-privacy__heading {
  font-size: 24px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #000;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-privacy__heading {
    font-size: 32px;
  }
}

.p-privacy__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-privacy__intro {
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #000;
  line-height: 1.9;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-privacy__intro {
    font-size: 16px;
  }
}

.p-privacy__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-privacy__section-heading {
  font-size: 18px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #000;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-privacy__section-heading {
    font-size: 24px;
  }
}

.p-privacy__section-body {
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #000;
  line-height: 1.9;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-privacy__section-body {
    font-size: 16px;
  }
}

.p-privacy__wave {
  background-color: #fff;
  line-height: 0;
  margin-bottom: -2px;
}

.p-privacy__wave-svg--sp {
  display: block;
  width: 100%;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .p-privacy__wave-svg--sp {
    display: none;
  }
}

.p-privacy__wave-svg--pc {
  display: none;
  width: 100%;
  height: 130px;
}
@media screen and (min-width: 768px) {
  .p-privacy__wave-svg--pc {
    display: block;
  }
}

.p-404 {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-404 {
    min-height: calc(100vh - 80px);
    padding: 0;
  }
}

.p-404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 47px;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-404__inner {
    width: 482px;
  }
}

.p-404__logo {
  width: 228px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.p-404__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 77px;
  width: 100%;
}

.p-404__text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
  width: 100%;
}

.p-404__number {
  font-size: 128px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  line-height: 1;
  color: #2c5f8d;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404__number {
    font-size: 180px;
  }
}

.p-404__desc {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.p-404__desc p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #495565;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404__desc p:last-child {
    text-align: left;
  }
}

.p-404__decos-tl,
.p-404__decos-br {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.p-404__decos-tl span,
.p-404__decos-br span {
  display: block;
  position: absolute;
  border-radius: 50%;
  background-color: #d4e3e8;
}

.p-404__decos-tl span:nth-child(1) {
  width: 100px;
  height: 100px;
  left: -63px;
  top: 1px;
}
.p-404__decos-tl span:nth-child(2) {
  width: 59px;
  height: 59px;
  left: 138px;
  top: 14px;
}
.p-404__decos-tl span:nth-child(3) {
  width: 43px;
  height: 43px;
  left: 95px;
  top: 87px;
}
.p-404__decos-tl span:nth-child(4) {
  width: 43px;
  height: 43px;
  left: 230px;
  top: 39px;
}
@media screen and (min-width: 768px) {
  .p-404__decos-tl span:nth-child(1) {
    left: 76px;
    top: 89px;
  }
  .p-404__decos-tl span:nth-child(2) {
    left: 277px;
    top: 102px;
  }
  .p-404__decos-tl span:nth-child(3) {
    left: 234px;
    top: 175px;
  }
  .p-404__decos-tl span:nth-child(4) {
    left: 369px;
    top: 127px;
  }
}

.p-404__decos-br span:nth-child(1) {
  width: 100px;
  height: 100px;
  right: -56px;
  bottom: 29px;
}
.p-404__decos-br span:nth-child(2) {
  width: 59px;
  height: 59px;
  right: 145px;
  bottom: 57px;
}
.p-404__decos-br span:nth-child(3) {
  width: 43px;
  height: 43px;
  right: 102px;
  bottom: 0;
}
.p-404__decos-br span:nth-child(4) {
  width: 43px;
  height: 43px;
  right: 237px;
  bottom: 48px;
}
@media screen and (min-width: 768px) {
  .p-404__decos-br span:nth-child(1) {
    right: 76px;
    bottom: 114px;
  }
  .p-404__decos-br span:nth-child(2) {
    right: 277px;
    bottom: 142px;
  }
  .p-404__decos-br span:nth-child(3) {
    right: 234px;
    bottom: 85px;
  }
  .p-404__decos-br span:nth-child(4) {
    right: 369px;
    bottom: 133px;
  }
}

.p-member-detail-page {
  display: flex;
  flex-direction: column;
}

.p-member-detail {
  background-color: #f5f7f8;
  padding: 40px 15px;
}
@media screen and (min-width: 768px) {
  .p-member-detail {
    padding: 100px 15px;
  }
}
@media screen and (min-width: 1230px) {
  .p-member-detail {
    padding: 100px 10px;
  }
}

.p-member-detail__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-member-detail__inner {
    max-width: 980px;
    margin: 0 auto;
    gap: 60px;
  }
}

.p-member-detail__card {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-member-detail__card {
    padding: 60px;
    gap: 60px;
  }
}

.p-member-detail__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-member-detail__profile {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    width: auto;
  }
}

.p-member-detail__photo {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  background-color: #ccc;
  overflow: hidden;
}
.p-member-detail__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-member-detail__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-member-detail__info {
    width: 396px;
  }
}

.p-member-detail__name {
  font-size: 18px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #333;
  margin: 0;
}

.p-member-detail__tags {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-member-detail__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-member-detail__cats {
    gap: 8px;
  }
}

.p-member-detail__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-member-detail__skills {
    gap: 8px;
  }
}

.p-member-detail__cat {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 30px;
  background-color: #d4e3e8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #333;
  white-space: nowrap;
}

.p-member-detail__skill {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 6px;
  background-color: #f5f7f8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  white-space: nowrap;
}

.p-member-detail__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.p-member-detail__link {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 6px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #333;
  text-decoration: none;
}
.p-member-detail__link:hover {
  text-decoration: underline;
}

.p-member-detail__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-member-detail__section {
    gap: 30px;
  }
}

.p-member-detail__section-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #495565;
  margin: 0;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-member-detail__section-title {
    font-size: 20px;
  }
}

.p-member-detail__section-body {
  font-size: 14px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #333;
  line-height: 1.9;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-member-detail__section-body {
    font-size: 16px;
  }
}

.p-member-detail__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-member-detail__body {
    gap: 30px;
  }
}
.p-member-detail__body h2 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #495565;
  margin: 0;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-member-detail__body h2 {
    font-size: 20px;
  }
}
.p-member-detail__body p {
  font-size: 14px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #333;
  line-height: 1.9;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-member-detail__body p {
    font-size: 16px;
  }
}

.p-member-detail__back {
  display: flex;
  justify-content: center;
  width: 100%;
}

.p-member-detail-cover {
  background-color: #f5f7f8;
  padding: 17px 15px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-member-detail-cover {
    padding: 27px 15px;
  }
}
@media screen and (min-width: 1230px) {
  .p-member-detail-cover {
    padding: 27px 0;
  }
}

.p-member-detail-cover__img {
  width: 100%;
  aspect-ratio: 346/346;
  border-radius: 10px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-member-detail-cover__img {
    max-width: 1309px;
    aspect-ratio: 1309/418;
    border-radius: 20px;
  }
}

.p-contact {
  background-color: #f5f7f8;
  padding: 40px 15px;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding: 100px 0;
  }
}

.p-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.p-contact__lead {
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #070808;
  line-height: 1.8;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-contact__lead {
    font-size: 18px;
    max-width: 790px;
  }
}

.p-contact__form {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    max-width: 672px;
  }
}

.p-contact__fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-contact__label {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}

.p-contact__label-text {
  font-size: 16px;
  font-weight: 400;
  color: #101727;
}

.p-contact__required {
  font-size: 14px;
  font-weight: 400;
  color: #c85a54;
  line-height: 1;
}

.p-contact__input {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  border: 1px solid #d0d5db;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  box-sizing: border-box;
}
.p-contact__input::-moz-placeholder {
  color: #aaa;
}
.p-contact__input::placeholder {
  color: #aaa;
}
.p-contact__input:focus {
  border-color: #2c5f8d;
}

.p-contact__textarea {
  width: 100%;
  height: 218px;
  padding: 12px 16px;
  border: 1px solid #d0d5db;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  background-color: #fff;
  resize: vertical;
  outline: none;
  box-sizing: border-box;
}
.p-contact__textarea::-moz-placeholder {
  color: #aaa;
}
.p-contact__textarea::placeholder {
  color: #aaa;
}
.p-contact__textarea:focus {
  border-color: #2c5f8d;
}

.p-contact__privacy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-contact__privacy-title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.p-contact__privacy-title {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #1a1a1a;
  margin-right: 3px;
}

.p-contact__privacy-link {
  color: inherit;
  text-decoration: underline;
}

.p-contact__checkbox-row {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.p-contact__checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid #6b6866;
  border-radius: 2px;
  accent-color: #2c5f8d;
  cursor: pointer;
}

.p-contact__checkbox-label {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  cursor: pointer;
}

.p-contact__submit {
  display: flex;
  justify-content: center;
}

.p-contact .wpcf7 {
  width: 100%;
  max-width: 672px;
}

.p-contact .wpcf7-form {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

.p-contact .wpcf7-text,
.p-contact .wpcf7-email {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  border: 1px solid #d0d5db;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  box-sizing: border-box;
}
.p-contact .wpcf7-text::-moz-placeholder, .p-contact .wpcf7-email::-moz-placeholder {
  color: #aaa;
}
.p-contact .wpcf7-text::placeholder,
.p-contact .wpcf7-email::placeholder {
  color: #aaa;
}
.p-contact .wpcf7-text:focus,
.p-contact .wpcf7-email:focus {
  border-color: #2c5f8d;
}

.p-contact .wpcf7-textarea {
  width: 100%;
  height: 218px;
  padding: 12px 16px;
  border: 1px solid #d0d5db;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  background-color: #fff;
  resize: vertical;
  outline: none;
  box-sizing: border-box;
}
.p-contact .wpcf7-textarea::-moz-placeholder {
  color: #aaa;
}
.p-contact .wpcf7-textarea::placeholder {
  color: #aaa;
}
.p-contact .wpcf7-textarea:focus {
  border-color: #2c5f8d;
}

.p-contact .wpcf7-not-valid {
  border-color: #c85a54 !important;
}

.p-contact .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #c85a54;
}

.p-contact .wpcf7-response-output {
  margin: 0;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  border: none;
}
.wpcf7-form.sent .p-contact .wpcf7-response-output {
  background-color: #d4edda;
  color: #155724;
}
.wpcf7-form.invalid .p-contact .wpcf7-response-output, .wpcf7-form.failed .p-contact .wpcf7-response-output, .wpcf7-form.aborted .p-contact .wpcf7-response-output {
  background-color: #f8d7da;
  color: #721c24;
}

.p-contact .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-contact .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
}
.p-contact .wpcf7-checkbox .wpcf7-list-item label {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 5px !important;
  cursor: pointer;
  width: 100%;
}
.p-contact .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid #6b6866;
  border-radius: 2px;
  accent-color: #2c5f8d;
  cursor: pointer;
  margin: 0 5px 0 0;
}
.p-contact .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  line-height: 20px;
}

.p-contact .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0 !important;
}

.p-contact .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.p-contact .wpcf7-acceptance input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid #6b6866;
  border-radius: 2px;
  accent-color: #2c5f8d;
  cursor: pointer;
  margin: 0;
}
.p-contact .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  cursor: pointer;
}

.p-contact__btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 300px;
  padding: 15px 30px;
  background-color: #2c3e4c;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.p-contact__btn-wrapper::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle closest-side, #2c3e4c 52%, #fff 52%);
}
.p-contact__btn-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
@media screen and (min-width: 768px) {
  .p-contact__btn-wrapper {
    width: 350px;
  }
}
.p-contact__btn-wrapper .wpcf7-submit {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  line-height: 24px;
  cursor: pointer;
  padding: 0;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 768px) {
  .p-contact__btn-wrapper .wpcf7-submit {
    font-size: 16px;
  }
}

.p-contact-info {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 40px 15px;
  background-image: radial-gradient(circle 100px at calc(100% + 60px) calc(100% + 60px), rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-contact-info {
    padding: 100px 10px;
    background-image: radial-gradient(circle 240px at 1300px 450px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  }
}

.p-contact-info__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-contact-info__inner {
    max-width: 720px;
    margin: 0 auto;
  }
}

.p-contact-info__title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #495565;
  margin: 0 0 12px;
}

.p-contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-contact-info__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #7a9ba8;
  flex-shrink: 0;
}

.p-contact-info__item-text {
  font-size: 14px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #495565;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact-info__item-text {
    font-size: 16px;
  }
}

.p-contact-info__note {
  display: flex;
  flex-direction: column;
}

.p-contact-info__note-text {
  font-size: 14px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #495565;
  line-height: 1.7;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-contact-info__note-text {
    font-size: 16px;
  }
}

.p-thanks {
  background-color: #f5f7f8;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .p-thanks {
    padding: 100px 0;
  }
}

.p-thanks__inner {
  display: flex;
  justify-content: center;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-thanks__inner {
    padding: 0;
  }
}

.p-thanks__text {
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #070808;
  line-height: 1.9;
  text-align: left;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-thanks__text {
    font-size: 18px;
    max-width: 790px;
  }
}

.p-brochure {
  background-color: #2c3e4c;
  padding: 30px 0;
  background-image: radial-gradient(circle 100px at 100px 271px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-brochure {
    padding: 120px 0;
    background-image: radial-gradient(circle 240px at 360px 420px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  }
}

.p-brochure__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-brochure__inner {
    padding: 0 120px;
  }
}

.p-brochure__label {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
  font-family: Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-brochure__label {
    gap: 30px;
  }
}

.p-brochure__label-en {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-brochure__label-en {
    font-size: 66px;
  }
}

.p-brochure__label-ja {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .p-brochure__label-ja {
    font-size: 20px;
    padding-bottom: 8px;
  }
}

.p-brochure__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-brochure__content {
    max-width: 661px;
  }
}

.p-brochure__heading {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 26px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.p-brochure__body {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 26px;
  text-align: center;
}

.p-brochure-dl {
  background-color: #f5f7f8;
  padding: 40px 15px;
}
@media screen and (min-width: 768px) {
  .p-brochure-dl {
    padding: 100px 0;
  }
}

.p-brochure-dl__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.p-brochure-dl__lead {
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #070808;
  line-height: 1.8;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-brochure-dl__lead {
    font-size: 18px;
    max-width: 790px;
  }
}

.p-brochure-dl__form {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-brochure-dl__form {
    max-width: 672px;
  }
}

.p-brochure-dl__fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-brochure-dl__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-brochure-dl__label {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}

.p-brochure-dl__label-text {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #101828;
}

.p-brochure-dl__required {
  font-size: 14px;
  font-weight: 400;
  color: #c85a54;
  line-height: 1;
}

.p-brochure-dl__input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #d1d5dc;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  box-sizing: border-box;
}
.p-brochure-dl__input::-moz-placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.p-brochure-dl__input::placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.p-brochure-dl__input:focus {
  border-color: #2c5f8d;
}

.p-brochure-dl__textarea {
  width: 100%;
  height: 200px;
  padding: 12px 16px;
  border: 1px solid #d1d5dc;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  background-color: #fff;
  resize: vertical;
  outline: none;
  box-sizing: border-box;
}
.p-brochure-dl__textarea::-moz-placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.p-brochure-dl__textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.p-brochure-dl__textarea:focus {
  border-color: #2c5f8d;
}

.p-brochure-dl__privacy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-brochure-dl__privacy-title-row {
  display: flex;
  align-items: center;
  gap: 3px;
}

.p-brochure-dl__privacy-title {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #1a1a1a;
}

.p-brochure-dl__privacy-link {
  color: #2c5f8d;
  text-decoration: underline;
}

.p-brochure-dl__checkbox-row {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.p-brochure-dl__checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid #6b6866;
  border-radius: 2px;
  accent-color: #2c5f8d;
  cursor: pointer;
}

.p-brochure-dl__checkbox-label {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #1a1a1a;
  cursor: pointer;
}

.p-brochure-dl__submit {
  display: flex;
  justify-content: center;
}

.p-brochure-dl-info {
  background-color: #fff;
  padding: 40px 15px;
  background-image: radial-gradient(circle 100px at calc(100% + 60px) calc(100% + 60px), rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-brochure-dl-info {
    padding: 100px 10px;
    background-image: radial-gradient(circle 240px at 1300px 450px, rgba(200, 90, 84, 0.2) 100%, transparent 100%);
  }
}

.p-brochure-dl-info__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-brochure-dl-info__inner {
    max-width: 720px;
    margin: 0 auto;
  }
}

.p-brochure-dl-info__title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #495565;
  margin: 0 0 12px;
}

.p-brochure-dl-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-brochure-dl-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-brochure-dl-info__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #7a9ba8;
  flex-shrink: 0;
}

.p-brochure-dl-info__item-text {
  font-size: 14px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #495565;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-brochure-dl-info__item-text {
    font-size: 16px;
  }
}

.p-brochure-dl-info__note {
  display: flex;
  flex-direction: column;
}

.p-brochure-dl-info__note-text {
  font-size: 14px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #495565;
  line-height: 1.7;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-brochure-dl-info__note-text {
    font-size: 16px;
  }
}

.p-brochure-dl .wpcf7 {
  width: 100%;
  max-width: 672px;
}

.p-brochure-dl .wpcf7-form {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

.p-brochure-dl .wpcf7-text,
.p-brochure-dl .wpcf7-email,
.p-brochure-dl .wpcf7-tel {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #d1d5dc;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  box-sizing: border-box;
}
.p-brochure-dl .wpcf7-text::-moz-placeholder, .p-brochure-dl .wpcf7-email::-moz-placeholder, .p-brochure-dl .wpcf7-tel::-moz-placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.p-brochure-dl .wpcf7-text::placeholder,
.p-brochure-dl .wpcf7-email::placeholder,
.p-brochure-dl .wpcf7-tel::placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.p-brochure-dl .wpcf7-text:focus,
.p-brochure-dl .wpcf7-email:focus,
.p-brochure-dl .wpcf7-tel:focus {
  border-color: #2c5f8d;
}

.p-brochure-dl .wpcf7-textarea {
  width: 100%;
  height: 200px;
  padding: 12px 16px;
  border: 1px solid #d1d5dc;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #2c3e4c;
  background-color: #fff;
  resize: vertical;
  outline: none;
  box-sizing: border-box;
}
.p-brochure-dl .wpcf7-textarea::-moz-placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.p-brochure-dl .wpcf7-textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.p-brochure-dl .wpcf7-textarea:focus {
  border-color: #2c5f8d;
}

.p-brochure-dl .wpcf7-not-valid {
  border-color: #c85a54 !important;
}

.p-brochure-dl .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #c85a54;
}

.p-brochure-dl .wpcf7-response-output {
  margin: 0;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  border: none;
}
.wpcf7-form.sent .p-brochure-dl .wpcf7-response-output {
  background-color: #d4edda;
  color: #155724;
}
.wpcf7-form.invalid .p-brochure-dl .wpcf7-response-output, .wpcf7-form.failed .p-brochure-dl .wpcf7-response-output, .wpcf7-form.aborted .p-brochure-dl .wpcf7-response-output {
  background-color: #f8d7da;
  color: #721c24;
}

.p-brochure-dl .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0 !important;
  display: flex;
  align-items: center;
}
.p-brochure-dl .wpcf7-acceptance .wpcf7-list-item label {
  display: flex !important;
  align-items: center;
  gap: 5px !important;
  cursor: pointer;
}
.p-brochure-dl .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid #6b6866;
  border-radius: 2px;
  accent-color: #2c5f8d;
  cursor: pointer;
  margin: 0 5px 0 0;
}
.p-brochure-dl .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #1a1a1a;
  line-height: 20px;
  cursor: pointer;
}

.p-brochure-dl__btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 300px;
  padding: 15px 30px;
  background-color: #2c3e4c;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.p-brochure-dl__btn-wrapper::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle closest-side, #2c3e4c 52%, #fff 52%);
}
.p-brochure-dl__btn-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
@media screen and (min-width: 768px) {
  .p-brochure-dl__btn-wrapper {
    width: 350px;
  }
}
.p-brochure-dl__btn-wrapper .wpcf7-submit {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  line-height: 24px;
  cursor: pointer;
  padding: 0;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 768px) {
  .p-brochure-dl__btn-wrapper .wpcf7-submit {
    font-size: 16px;
  }
}

.p-column {
  background-color: #f5f7f8;
  padding: 40px 15px 60px;
}
@media screen and (min-width: 768px) {
  .p-column {
    padding: 60px 0 100px;
  }
}

.p-column__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-column__inner {
    max-width: 1188px;
    margin: 0 auto;
    padding: 0 120px;
    gap: 40px;
  }
}

.p-column__filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  align-self: center;
}
@media screen and (min-width: 768px) {
  .p-column__filter {
    gap: 63px;
    flex-wrap: nowrap;
  }
}

.p-column__filter-label {
  font-size: 20px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #495565;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-column__filter-label {
    font-size: 24px;
  }
}

.p-column__filter-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-column__filter-cats {
    gap: 23px;
  }
}

.p-column__filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 20px;
  background-color: #f5f7f8;
  border: 1px solid #d4e3e8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #495565;
  cursor: pointer;
  white-space: nowrap;
}
.p-column__filter-btn:hover {
  opacity: 0.8;
}
.p-column__filter-btn.is-active {
  background-color: #d4e3e8;
  border-color: #d4e3e8;
}
@media screen and (min-width: 768px) {
  .p-column__filter-btn {
    font-size: 16px;
    padding: 0 30px;
  }
}

.p-column__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-column__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media screen and (min-width: 1230px) {
  .p-column__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-column-detail {
  background-color: #f5f7f8;
  padding: 40px 15px 60px;
}
@media screen and (min-width: 768px) {
  .p-column-detail {
    padding: 80px 0 100px;
  }
}

.p-column-detail__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-column-detail__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 120px;
    gap: 40px;
  }
}

.p-column-detail__title {
  font-size: 20px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #101727;
  line-height: 1.4;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-column-detail__title {
    font-size: 24px;
  }
}

.p-column-detail__lead {
  font-size: 15px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #495565;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-column-detail__lead {
    font-size: 16px;
  }
}

.p-column-detail__img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.p-column-detail__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-column-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.p-column-detail__date {
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #697282;
}

.p-column-toc {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 16px 16px 4px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-column-toc {
    padding: 20px 24px 8px;
    margin-bottom: 40px;
  }
}

.p-column-toc__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #2c3e4c;
  text-align: center;
  margin: 0 0 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-column-toc__title {
    font-size: 16px;
    margin: 0 0 12px;
    padding-bottom: 12px;
  }
}
.p-column-toc__title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='3' cy='5' r='1.5' fill='%232C3E4C'/%3E%3Crect x='7' y='4' width='11' height='2' rx='1' fill='%232C3E4C'/%3E%3Ccircle cx='3' cy='10' r='1.5' fill='%232C3E4C'/%3E%3Crect x='7' y='9' width='9' height='2' rx='1' fill='%232C3E4C'/%3E%3Ccircle cx='3' cy='15' r='1.5' fill='%232C3E4C'/%3E%3Crect x='7' y='14' width='7' height='2' rx='1' fill='%232C3E4C'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-column-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-column-toc__item--sub {
  padding-left: 12px;
}
@media screen and (min-width: 768px) {
  .p-column-toc__item--sub {
    padding-left: 24px;
  }
}

.p-column-toc__link {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px 0;
  color: #2c3e4c;
  text-decoration: none;
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}
.p-column-toc__link, .p-column-toc__link:visited, .p-column-toc__link:hover, .p-column-toc__link:active {
  color: #2c3e4c !important;
  text-decoration: none !important;
}
.p-column-toc__link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .p-column-toc__link {
    font-size: 14px;
    padding: 10px 0;
  }
}

.p-column-toc__num {
  font-weight: 700;
  flex-shrink: 0;
}
.p-column-toc__num::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 17px;
  background-color: #bbb;
  margin: 0 8px;
  vertical-align: middle;
}

.p-column-toc__text {
  flex: 1;
}

.p-column-detail__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #fff;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .p-column-detail__body {
    padding: 24px;
  }
}
.p-column-detail__body .wp-block-columns {
  background-color: transparent !important;
}
.p-column-detail__body .wp-block-separator.has-alpha-channel-opacity {
  border: none !important;
}
.p-column-detail__body h2 {
  background: #2C3E4C;
  padding: 12px 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  margin: 48px 0 24px;
}
@media screen and (min-width: 768px) {
  .p-column-detail__body h2 {
    font-size: 22px;
    padding: 17px 20px;
    margin: 90px 0 45px;
  }
}
.p-column-detail__body h3 {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: #2c3e4c;
  margin: 36px 0 20px;
  padding-bottom: 8px;
}
.p-column-detail__body h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #2c3e4c 160px, #e0e0e0 160px);
}
@media screen and (min-width: 768px) {
  .p-column-detail__body h3 {
    font-size: 20px;
    margin: 62px 0 41px;
    padding-bottom: 10px;
  }
  .p-column-detail__body h3::after {
    background: linear-gradient(to right, #2c3e4c 240px, #e0e0e0 240px);
  }
}
.p-column-detail__body p {
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.9;
  margin: 0 0 12px;
}
@media screen and (min-width: 768px) {
  .p-column-detail__body p {
    font-size: 16px;
    margin: 0 0 16px;
  }
}
.p-column-detail__body ul.wp-block-list {
  list-style-type: disc !important;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.9;
  padding-left: 1.5em !important;
  margin: 0 0 12px;
}
.p-column-detail__body ul.wp-block-list li {
  list-style-type: disc !important;
}
@media screen and (min-width: 768px) {
  .p-column-detail__body ul.wp-block-list {
    font-size: 16px;
    margin: 0 0 16px;
  }
}
.p-column-detail__body ol.wp-block-list {
  list-style-type: decimal !important;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.9;
  padding-left: 1.5em !important;
  margin: 0 0 12px;
}
.p-column-detail__body ol.wp-block-list li {
  list-style-type: decimal !important;
}
@media screen and (min-width: 768px) {
  .p-column-detail__body ol.wp-block-list {
    font-size: 16px;
    margin: 0 0 16px;
  }
}
.p-column-detail__body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-column-detail__body img {
    margin-bottom: 20px;
  }
}
.p-column-detail__body a {
  color: #2c5f8d;
  text-decoration: underline;
}

.p-column-detail__body-title {
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #101727;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-column-detail__body-title {
    font-size: 18px;
  }
}

.p-column-detail__body-text {
  font-size: 14px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", Arial, sans-serif;
  color: #333;
  line-height: 1.9;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-column-detail__body-text {
    font-size: 16px;
  }
}

.p-column-detail__back {
  display: flex;
  justify-content: center;
}

.c-column-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-column-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.c-column-card__img {
  width: 100%;
  aspect-ratio: 9/7;
  overflow: hidden;
  background-color: #f3f4f6;
  border-radius: 4px;
}
.c-column-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-column-card__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 4px 4px;
}

.c-column-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-column-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 30px;
  background-color: #d4e3e8;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #495565;
  white-space: nowrap;
}

.c-column-card__date {
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #697282;
}

.c-column-card__title {
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #101727;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.u-show-md {
  display: none;
}

@media screen and (min-width: 600px) {
  .u-hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .u-hidden-lg {
    display: none;
  }
}
@media screen and (min-width: 1230px) {
  .u-hidden-xl {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-show-md {
    display: inline;
  }
}
/*# sourceMappingURL=style.css.map */