@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}
body.is-drawer-open {
  overflow: hidden;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: 0.3s opacity;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}
img {
  height: auto;
  max-width: 100%;
  display: block;
}
img[width][height] {
  height: auto;
}

picture {
  display: block;
}
picture img {
  width: 100%;
  height: auto;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

a {
  text-decoration: none;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.l-header {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 1024px) {
  .l-header {
    height: 60px !important;
    max-height: 60px !important;
    min-height: 60px !important;
    overflow: visible;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 60px !important;
    max-height: 60px !important;
    min-height: 60px !important;
    overflow: visible;
  }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  height: 80px;
  padding: 0 48px 0 32px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    padding: 0 20px;
    position: relative;
    height: 60px !important;
    min-height: 60px;
    max-height: 60px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding: 0 32px 0 16px;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    box-sizing: border-box;
    align-items: center;
    overflow: hidden;
  }
}

@media screen and (max-width: 1024px) {
  .l-header__nav {
    margin-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    margin-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    margin-right: 10px;
  }
}

.l-header__logo {
  flex-shrink: 0;
}

.l-header__logo-link {
  display: block;
}
.l-header__logo-link img {
  width: 120px !important;
  height: 60px !important;
  aspect-ratio: unset !important;
  max-width: 120px !important;
}
@media screen and (max-width: 1024px) {
  .l-header__logo-link img {
    width: 100px !important;
    height: 50px !important;
    max-width: 100px !important;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo-link img {
    width: 86px !important;
    height: 43px !important;
    max-width: 86px !important;
    max-height: 43px !important;
  }
}

.l-header__nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 56px;
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__items {
  display: flex;
  align-items: center;
}

.l-header__item:nth-child(1) {
  margin-right: 39px;
}
@media screen and (max-width: 1024px) {
  .l-header__item:nth-child(1) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__item:nth-child(1) {
    margin-right: 15px;
  }
}
.l-header__item:nth-child(2) {
  margin-right: 63px;
}
@media screen and (max-width: 1024px) {
  .l-header__item:nth-child(2) {
    margin-right: 18px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__item:nth-child(2) {
    margin-right: 12px;
  }
}
.l-header__item:nth-child(3) {
  margin-right: 49px;
}
@media screen and (max-width: 1024px) {
  .l-header__item:nth-child(3) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__item:nth-child(3) {
    margin-right: 15px;
  }
}
.l-header__item:nth-child(4) {
  margin-right: 43px;
}
@media screen and (max-width: 1024px) {
  .l-header__item:nth-child(4) {
    margin-right: 18px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__item:nth-child(4) {
    margin-right: 12px;
  }
}
.l-header__item:nth-child(5) {
  margin-right: 58px;
}
@media screen and (max-width: 1024px) {
  .l-header__item:nth-child(5) {
    margin-right: 18px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__item:nth-child(5) {
    margin-right: 12px;
  }
}
.l-header__item:nth-child(6) {
  margin-right: 51px;
}
@media screen and (max-width: 1024px) {
  .l-header__item:nth-child(6) {
    margin-right: 18px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__item:nth-child(6) {
    margin-right: 12px;
  }
}
.l-header__link {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: #000000;
  white-space: nowrap;
  transition: color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__link:hover {
    color: #215F9D;
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__link {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__link {
    font-size: 1rem;
  }
}

.l-header__contact {
  flex-shrink: 0;
}

.l-header__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 191px;
  padding: 14px 54px;
  background-color: #215F9D;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: #ffffff;
  transition: background-color 0.3s, opacity 0.3s;
}
.l-header__contact-btn span {
  position: relative;
}
.l-header__contact-btn span::after {
  content: "";
  position: absolute;
  right: -37.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid #ffffff;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__contact-btn:hover {
    background-color: #1a4f82;
    opacity: 1;
  }
  .l-header__contact-btn:hover span::after {
    transform: translateY(-50%) translateX(10px);
  }
}
@media screen and (max-width: 1024px) {
  .l-header__contact-btn {
    min-width: 120px;
    padding: 8px 16px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__contact-btn {
    min-width: 100px;
    padding: 6px 12px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__contact-btn {
    min-width: 80px;
    padding: 5px 10px;
    font-size: 1rem;
  }
}

.l-header__hamburger {
  position: relative;
  width: 24px;
  height: 19px;
  cursor: pointer;
  z-index: 6000;
  display: none;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .l-header__hamburger {
    display: block;
    max-height: 19px;
  }
}
.l-header__hamburger > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1A1F71;
  transition: all 0.3s;
}
.l-header__hamburger > span:nth-child(1) {
  top: 0;
}
.l-header__hamburger > span:nth-child(2) {
  top: 8px;
}
.l-header__hamburger > span:nth-child(3) {
  top: 16px;
}
.l-header__hamburger.is-active > span {
  background-color: #ffffff;
}
.l-header__hamburger.is-active > span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.l-header__hamburger.is-active > span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active > span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.l-drawer {
  position: fixed;
  z-index: 5500;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background-color: #141853;
  display: none;
  overflow-y: auto;
}
.l-drawer.is-active {
  display: block;
}

.l-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: #ffffff;
  height: 60px;
  min-height: 60px;
  max-height: 60px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.l-drawer__logo {
  flex-shrink: 0;
}

.l-drawer__logo-link {
  display: block;
}
.l-drawer__logo-link img {
  width: 40px;
  height: 41px;
  max-width: 40px;
}

.l-drawer__close {
  position: relative;
  width: 24px;
  height: 19px;
  cursor: pointer;
  border: none;
  background: transparent;
}
.l-drawer__close span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1A1F71;
}
.l-drawer__close span:nth-child(1) {
  top: 8.5px;
  transform: rotate(45deg);
}
.l-drawer__close span:nth-child(2) {
  top: 8.5px;
  transform: rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
  .l-drawer__close:hover span {
    background-color: #1A1F71;
  }
}
.l-drawer__close:active span {
  background-color: #1A1F71;
}

.l-drawer__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 60px);
  padding: 70px 20px 174px;
}

.l-drawer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.l-drawer__items {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-drawer__item {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .l-drawer__item {
    margin-bottom: 21px;
  }
}
.l-drawer__item:last-child {
  margin-bottom: 0;
}

.l-drawer__link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0;
  color: #ffffff;
  padding: 8px 0;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-drawer__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-drawer__link {
    font-size: 1.8rem;
  }
}

.l-drawer__contact {
  margin-top: 32px;
  text-align: center;
}

.l-drawer__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 191px;
  padding: 14px 54px;
  background-color: #215F9D;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: #ffffff;
  transition: background-color 0.3s, opacity 0.3s;
}
.l-drawer__contact-btn span {
  position: relative;
}
.l-drawer__contact-btn span::after {
  content: "";
  position: absolute;
  right: -16.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid #ffffff;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: right 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-drawer__contact-btn:hover {
    background-color: #1a4f82;
    opacity: 1;
  }
  .l-drawer__contact-btn:hover span::after {
    right: -20px;
  }
}

.l-main {
  position: relative;
  z-index: 2;
}

.l-inner {
  width: 100%;
  max-width: 960px;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-inner {
    padding: 0 40px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 24px;
  }
}

.l-footer {
  width: 100%;
}

.l-footer__nav {
  background-color: #ffffff;
  padding: 0;
}

.l-footer__nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  padding: 32px 0 27px;
  margin: 0 auto;
  border-bottom: 1px solid #141853;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav-inner {
    flex-direction: row;
    gap: 30px;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
    flex-wrap: nowrap;
    overflow-x: visible;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav-inner {
    flex-direction: row;
    justify-content: space-evenly;
    gap: 56px;
    padding: 23px 0 12px 33px;
    margin: 0 24px;
    max-width: none;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}

.l-footer__logo-link {
  display: block;
  width: 78px;
  height: 82px;
}
@media screen and (max-width: 768px) {
  .l-footer__logo-link {
    width: 78px !important;
    height: 82px !important;
  }
}

.l-footer__logo-link img {
  width: 78px;
  height: 82px;
}
@media screen and (max-width: 768px) {
  .l-footer__logo-link img {
    width: 78px !important;
    height: 82px !important;
    margin-top: -33.8px;
  }
}

.l-footer__menu {
  display: flex;
  flex-shrink: 1;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .l-footer__menu {
    flex-wrap: nowrap;
  }
}

.l-footer__items {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .l-footer__items {
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__items {
    flex-direction: column;
    gap: 20px;
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
  }
}

.l-footer__item:nth-child(1) {
  margin-right: 36px;
}
.l-footer__item:nth-child(2) {
  margin-right: 23px;
}
.l-footer__item:nth-child(3) {
  margin-right: 34px;
}
.l-footer__item:nth-child(4) {
  margin-right: 34px;
}
.l-footer__item:nth-child(5) {
  margin-right: 43px;
}
.l-footer__item:nth-child(6) {
  margin-right: 22px;
}
.l-footer__item:nth-child(7) {
  margin-right: 34px;
}
.l-footer__item:nth-child(8) {
  margin-right: 24px;
}
.l-footer__item.last-item {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .l-footer__item {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .l-footer__item:nth-child(1) {
    margin-right: 18px;
  }
  .l-footer__item:nth-child(2) {
    margin-right: 16px;
  }
  .l-footer__item:nth-child(3) {
    margin-right: 20px;
  }
  .l-footer__item:nth-child(4) {
    margin-right: 18px;
  }
  .l-footer__item:nth-child(5) {
    margin-right: 20px;
  }
  .l-footer__item:nth-child(6) {
    margin-right: 18px;
  }
  .l-footer__item:nth-child(7) {
    margin-right: 18px;
  }
  .l-footer__item:nth-child(8) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__item {
    margin-right: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }
}

.l-footer__link {
  color: #141853;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__link {
    color: #141853;
    font-size: 1.8rem;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__link--privacy {
    font-size: 1.8rem;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.4;
    max-width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 375px) {
  .l-footer__link--privacy {
    overflow-wrap: anywhere;
    word-break: break-all;
    max-width: 100%;
  }
}

.l-footer__info {
  background-color: #ffffff;
  padding: 35.5px 0 74.5px;
}
@media screen and (max-width: 768px) {
  .l-footer__info {
    padding: 11.5px 23px 18.5px;
    text-align: left;
  }
}

.l-footer__info-inner {
  max-width: 960px;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-footer__info-inner {
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__info-inner {
    padding: 0;
  }
}

.l-footer__company {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .l-footer__company {
    text-align: left;
  }
}

.l-footer__company-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #000000;
  margin: 0;
}

.l-footer__address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  line-height: 1.4;
  font-weight: 400;
  color: #141853;
  margin: 0;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.l-footer__postal-code {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #141853;
}

.l-footer__location {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #141853;
}

.l-footer__copyright {
  background-color: #141853;
  padding: 4.5px 0;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    padding: 4px;
    text-align: center;
  }
}

.l-footer__copyright-inner {
  max-width: 960px;
  padding: 0 30px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .l-footer__copyright-inner {
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__copyright-inner {
    padding: 0;
  }
}

.l-footer__copyright-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.l-flex-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.c-button {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  padding: 20px 76.5px;
  font-family: "Puritan", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 0px;
}
.c-button__arrow {
  font-size: 1.4rem;
  font-weight: 100;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-button--outline {
  background-color: #ffffff;
  border-color: #141853;
  color: #141853;
  position: relative;
  overflow: visible;
  width: 263px;
  height: 59px;
  padding: 22px 24px;
  justify-content: center;
}
.c-button--outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 263 59'%3e%3cpolygon points='0,0 237,0 263,59 0,59' fill='%23ffffff' stroke='%23000000' stroke-width='2'/%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
.c-button--outline::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -4px;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 263 59'%3e%3cpolygon points='0,0 237,0 263,59 0,59' fill='%23000000'/%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -2;
}
@media (hover: hover) and (pointer: fine) {
  .c-button--outline:hover {
    background-color: #141853;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  .c-button--outline:hover .c-button__arrow {
    transform: translateX(4px);
  }
}
.c-button--solid {
  background-color: #141853;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .c-button--solid:hover {
    background-color: rgb(10.0970873786, 12.1165048544, 41.9029126214);
    box-shadow: 0 0 #333;
  }
  .c-button--solid:hover .c-button__arrow {
    transform: translateX(4px);
  }
}
.c-button--accent {
  background-color: #215F9D;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .c-button--accent:hover {
    background-color: rgb(24.1421052632, 69.5, 114.8578947368);
    box-shadow: 0 0 #333;
  }
  .c-button--accent:hover .c-button__arrow {
    transform: translateX(4px);
  }
}

.c-circular-text {
  position: relative;
  width: 205px;
  height: 205px;
}
.c-circular-text__svg {
  width: 100%;
  height: 100%;
  animation: c-circular-text-rotate 20s linear infinite;
}
.c-circular-text__svg text {
  fill: #ffffff !important;
}
.c-circular-text--small {
  width: 150px;
  height: 150px;
}
.c-circular-text--large {
  width: 250px;
  height: 250px;
}
.c-circular-text--dark .c-circular-text__svg text {
  fill: #000000 !important;
}
.c-circular-text--accent .c-circular-text__svg text {
  fill: #215F9D !important;
}

@keyframes c-circular-text-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.c-section-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 17px;
}
.c-section-title__en {
  font-family: "Puritan", sans-serif;
  font-size: 6.4rem;
  font-weight: 400;
  color: #141853;
  line-height: 1;
}
.c-section-title__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #141853;
  line-height: 1;
}
.c-section-title--baseline {
  align-items: baseline;
}
.c-section-title--vertical {
  align-items: baseline;
}
.c-section-title--large .c-section-title__en {
  font-size: 8rem;
}
.c-section-title--large .c-section-title__jp {
  font-size: 3.2rem;
}
.c-section-title--medium .c-section-title__en {
  font-size: 4.8rem;
}
.c-section-title--medium .c-section-title__jp {
  font-size: 2rem;
}
.c-section-title--small .c-section-title__en {
  font-size: 3.6rem;
}
.c-section-title--small .c-section-title__jp {
  font-size: 1.8rem;
}
.c-section-title--white .c-section-title__en {
  color: #ffffff;
}
.c-section-title--white .c-section-title__jp {
  color: #ffffff;
}
.c-section-title--accent .c-section-title__en {
  color: #215F9D;
}
.c-section-title--accent .c-section-title__jp {
  color: #215F9D;
}
.c-section-title--left {
  justify-content: flex-start;
}
.c-section-title--right {
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .c-section-title {
    gap: 16px;
  }
  .c-section-title .c-section-title__en {
    font-size: 4.8rem;
  }
  .c-section-title .c-section-title__jp {
    font-size: 2rem;
  }
  .c-section-title--large .c-section-title__en {
    font-size: 6.4rem;
  }
  .c-section-title--large .c-section-title__jp {
    font-size: 2.8rem;
  }
  .c-section-title--medium .c-section-title__en {
    font-size: 3.6rem;
  }
  .c-section-title--medium .c-section-title__jp {
    font-size: 1.8rem;
  }
  .c-section-title--small .c-section-title__en {
    font-size: 2.8rem;
  }
  .c-section-title--small .c-section-title__jp {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-section-title {
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 0;
  }
  .c-section-title .c-section-title__en {
    font-size: 4.8rem;
    line-height: 1;
  }
  .c-section-title .c-section-title__jp {
    font-size: 1.6rem;
  }
  .c-section-title--large .c-section-title__en {
    font-size: 6.4rem;
  }
  .c-section-title--large .c-section-title__jp {
    font-size: 2.4rem;
  }
  .c-section-title--medium .c-section-title__en {
    font-size: 4.8rem;
  }
  .c-section-title--medium .c-section-title__jp {
    font-size: 1.6rem;
  }
  .c-section-title--small .c-section-title__en {
    font-size: 3.6rem;
  }
  .c-section-title--small .c-section-title__jp {
    font-size: 1.4rem;
  }
  .c-section-title--baseline {
    flex-direction: column !important;
    gap: 4px !important;
    align-items: flex-start !important;
  }
  .c-section-title--vertical {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
}
@media screen and (max-width: 375px) {
  .c-section-title {
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 0;
  }
  .c-section-title .c-section-title__en {
    font-size: 4.8rem;
  }
  .c-section-title .c-section-title__jp {
    font-size: 1.6rem;
  }
  .c-section-title--large .c-section-title__en {
    font-size: 6.4rem;
  }
  .c-section-title--large .c-section-title__jp {
    font-size: 2.4rem;
  }
  .c-section-title--medium .c-section-title__en {
    font-size: 4.8rem;
  }
  .c-section-title--medium .c-section-title__jp {
    font-size: 1.6rem;
  }
  .c-section-title--small .c-section-title__en {
    font-size: 3.6rem;
  }
  .c-section-title--small .c-section-title__jp {
    font-size: 1.4rem;
  }
}

.c-service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  justify-items: center;
}
@media screen and (max-width: 1024px) {
  .c-service-cards {
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-service-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-items: center;
    padding: 0;
  }
}

.c-service-card {
  background-color: #ffffff;
  width: 220px;
  aspect-ratio: 155/162;
  height: auto;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .c-service-card {
    width: 220px;
    max-width: 220px;
    aspect-ratio: 155/162;
    height: auto;
    padding: 40px 36px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }
}

.c-service-card__icon {
  margin-bottom: 17px;
  width: 178px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-service-card__icon {
    width: 178px;
    height: 125px;
    margin-bottom: 17px;
  }
}

.c-service-card__image {
  max-width: 150px;
  max-height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-service-card__image {
    max-width: 150px;
    max-height: 120px;
  }
}

.c-service-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #141853;
  margin: 0;
  line-height: 1.4;
  flex-shrink: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-service-card__title {
    font-size: 1.8rem;
    white-space: nowrap;
    line-height: 1.4;
  }
}

.c-service-cards--large .c-service-card {
  width: 280px;
  height: 300px;
  padding: 50px 30px;
}
.c-service-cards--large .c-service-card__icon {
  width: 180px;
  height: 130px;
  margin-bottom: 32px;
}
.c-service-cards--large .c-service-card__image {
  max-width: 180px;
  max-height: 150px;
}
.c-service-cards--large .c-service-card__title {
  font-size: 2rem;
}

.c-service-cards--small .c-service-card {
  width: 180px;
  height: 200px;
  padding: 30px 15px;
}
.c-service-cards--small .c-service-card__icon {
  width: 120px;
  height: 90px;
  margin-bottom: 20px;
}
.c-service-cards--small .c-service-card__image {
  max-width: 120px;
  max-height: 100px;
}
.c-service-cards--small .c-service-card__title {
  font-size: 1.6rem;
}

.c-service-cards--three {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .c-service-cards--three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-service-cards--three {
    grid-template-columns: 1fr;
  }
}

.c-service-cards--four {
  grid-template-columns: repeat(4, 1fr);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .c-service-cards--four {
    grid-template-columns: repeat(4, 1fr);
    max-width: fit-content;
  }
}
@media screen and (max-width: 520px) and (min-width: 376px) {
  .c-service-cards {
    gap: 8px !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-items: stretch !important;
  }
  .c-service-card {
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 155/162 !important;
    height: auto !important;
    padding: 30px 20px !important;
    box-sizing: border-box !important;
  }
  .c-service-card__icon {
    width: 120px !important;
    height: 85px !important;
    margin-bottom: 15px !important;
  }
  .c-service-card__image {
    max-width: 110px !important;
    max-height: 80px !important;
  }
  .c-service-card__title {
    font-size: 1.5rem !important;
    white-space: normal !important;
    line-height: 1.4 !important;
  }
  .c-service-cards--four {
    gap: 8px !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-items: stretch !important;
  }
}
@media screen and (max-width: 1024px) {
  .c-service-card {
    width: 155px !important;
    max-width: 155px !important;
    height: 162px !important;
    aspect-ratio: 155/162 !important;
    padding: 20px 10px !important;
    box-sizing: border-box !important;
  }
  .c-service-card__icon {
    width: 128px !important;
    height: 85px !important;
    margin-bottom: 7px !important;
  }
  .c-service-card__image {
    max-width: 128px !important;
    max-height: 91px !important;
  }
  .c-service-card__title {
    font-size: 1.4rem !important;
    white-space: normal !important;
    line-height: 1.3 !important;
  }
}
@media screen and (max-width: 320px) {
  .c-service-cards {
    gap: 6px !important;
    width: 100%;
    box-sizing: border-box;
    padding: 0 2px !important;
  }
  .c-service-card {
    width: 100% !important;
    aspect-ratio: 155/162 !important;
    height: auto !important;
    padding: 18px 8px !important;
    box-sizing: border-box;
  }
  .c-service-card__icon {
    width: 80px !important;
    height: 58px !important;
    margin-bottom: 10px !important;
  }
  .c-service-card__image {
    max-width: 75px !important;
    max-height: 55px !important;
  }
  .c-service-card__title {
    font-size: 1.2rem !important;
  }
  .c-service-cards--four {
    gap: 6px !important;
  }
}
.c-trapezoid-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  width: 263px;
  height: 59px;
  padding: 22px 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
}
.c-trapezoid-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 263 59'%3e%3cpolygon points='0,0 240,0 263,59 0,59' fill='%23ffffff' stroke='%23000000' stroke-width='1'/%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
.c-trapezoid-button::after {
  content: "";
  position: absolute;
  top: 6px;
  left: -6px;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 263 59'%3e%3cpolygon points='0,0 240,0 263,59 0,59' fill='%23000000'/%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 0;
  clip-path: polygon(0 0, 91.2547528517% 0, 100% 100%, 0 100%);
}
@media (hover: hover) and (pointer: fine) {
  .c-trapezoid-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  .c-trapezoid-button:hover::after {
    transform: translateY(-2px);
  }
}
.c-trapezoid-button__text {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.c-trapezoid-button__arrow {
  width: 24px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 12'%3e%3cpath d='M0 6 L16 6 M16 6 L10 2 M16 6 L10 10' stroke='%23333333' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  display: block;
  position: relative;
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .c-trapezoid-button:hover .c-trapezoid-button__arrow {
    transform: translateX(4px);
  }
}
.c-trapezoid-button__text--mobile {
  display: none;
}
.c-trapezoid-button__text--pc {
  display: inline;
}
@media screen and (max-width: 1024px) {
  .c-trapezoid-button__text--mobile {
    display: inline;
  }
  .c-trapezoid-button__text--pc {
    display: none;
  }
}
.c-trapezoid-button--primary {
  color: #ffffff;
}
.c-trapezoid-button--primary::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 263 59'%3e%3cpolygon points='0,0 240,0 263,59 0,59' fill='%230066cc' stroke='%230066cc' stroke-width='1'/%3e%3c/svg%3e");
}
.c-trapezoid-button--primary::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 263 59'%3e%3cpolygon points='0,0 240,0 263,59 0,59' fill='%23004499'/%3e%3c/svg%3e");
  clip-path: polygon(0 0, 91.2547528517% 0, 100% 100%, 0 100%);
}
@media (hover: hover) and (pointer: fine) {
  .c-trapezoid-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
  }
  .c-trapezoid-button--primary:hover::after {
    transform: translateY(-2px);
  }
}

.c-submit-button {
  display: inline-block;
  position: relative;
  width: 317px;
  height: 60px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #707070;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background: linear-gradient(135deg, #141853 0%, #4559BF 100%);
  z-index: 2;
  font-size: 16px;
}
@media screen and (max-width: 375px) {
  .c-submit-button {
    width: 280px;
    height: 50px;
  }
}
.c-submit-button__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  z-index: 3;
  white-space: nowrap;
}
@media screen and (max-width: 375px) {
  .c-submit-button__text {
    font-size: 1.4rem;
  }
}
.c-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}
.c-submit-button:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
}
.c-submit-button:focus {
  outline: 2px solid #141853;
  outline-offset: 2px;
}

.c-page-background, .p-recruitment-content, .p-about-content {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.c-page-background::before, .p-recruitment-content::before, .p-about-content::before, .c-page-background::after, .p-recruitment-content::after, .p-about-content::after {
  content: "";
  position: absolute;
  width: 948px;
  height: 854px;
  background-color: #F6F7F7;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-page-background::before, .p-recruitment-content::before, .p-about-content::before, .c-page-background::after, .p-recruitment-content::after, .p-about-content::after {
    display: none;
  }
}
.c-page-background::before, .p-recruitment-content::before, .p-about-content::before {
  top: 141px;
  left: 0;
}
.c-page-background::after, .p-recruitment-content::after, .p-about-content::after {
  top: 761px;
  right: 0;
  transform: scaleX(-1);
}

.p-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 80px;
  height: 76.319vw;
  max-height: 1099px;
}

.p-mv__upper {
  position: relative;
  width: 100%;
  height: 44.375vw;
  max-height: 639px;
  overflow: hidden;
  z-index: 1;
}

.p-mv__building-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--image-fv-bg01-pc);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 2s ease-out;
  z-index: 1;
}
.p-mv__building-bg.js-loaded {
  transform: scale(1.1);
}
@supports (background-image: var(--image-fv-bg01-pc-webp)) {
  .p-mv__building-bg {
    background-image: var(--image-fv-bg01-pc-webp);
  }
}
@media screen and (max-width: 768px) {
  .p-mv__building-bg {
    background-image: var(--image-fv-bg01-sp);
  }
  @supports (background-image: var(--image-fv-bg01-sp-webp)) {
    .p-mv__building-bg {
      background-image: var(--image-fv-bg01-sp-webp);
    }
  }
}

.p-mv__upper-white-area {
  position: absolute;
  top: 258.35px;
  right: 0;
  width: 169.59px;
  height: calc(44.375vw - 258.35px);
  max-height: 380.65px;
  background-color: #ffffff;
  z-index: 6;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.p-mv__line-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 42.5vw;
  max-width: 612px;
  height: 76.319vw;
  max-height: 1099px;
  z-index: 5;
  pointer-events: none;
}

.p-mv__line-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.p-mv__content {
  position: absolute;
  top: 13.75vw;
  left: 7.5vw;
  z-index: 10;
  pointer-events: auto;
}
@media (min-width: 1440px) {
  .p-mv__content {
    top: 198px;
    left: 108px;
  }
}

.p-mv__title {
  font-family: "Puritan", sans-serif;
  font-size: 10rem;
  font-weight: 400;
  color: #141853;
  line-height: 1;
  margin: 0 0 14px 0;
}
.p-mv__title .p-mv__title-line {
  display: block;
  width: fit-content;
  white-space: nowrap;
}

.p-mv__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #141853;
  margin: 0;
  line-height: 1.45;
}

.p-mv__scroll {
  position: absolute;
  left: 49.375vw;
  top: 35.07vw;
  z-index: 15;
  text-align: center;
  color: #ffffff;
  gap: 9px;
}
@media (min-width: 1440px) {
  .p-mv__scroll {
    left: 711px;
    top: 505px;
  }
}

.p-mv__scroll-text {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.p-mv__scroll-arrow {
  display: block; /* ← inlineだと描画されないので必須！ */
  position: relative;
  width: 50.65px;
  height: 11.61px;
  margin: 9px auto 0;
  animation: scroll-bounce 2s infinite;
  /* 左の線 */
  /* 右の線 */
}
.p-mv__scroll-arrow::before, .p-mv__scroll-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 2px; /* 線の太さ */
  background-color: #fff;
}
.p-mv__scroll-arrow::before {
  left: 0;
  transform-origin: right center;
  transform: rotate(30deg);
}
.p-mv__scroll-arrow::after {
  right: 0;
  transform-origin: left center;
  transform: rotate(-30deg);
}

@keyframes scroll-bounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(8px);
    opacity: 0.4;
  }
}
.p-mv__circular-text {
  position: absolute;
  right: 5vw;
  top: 36.53vw;
  z-index: 30;
}
@media (min-width: 1440px) {
  .p-mv__circular-text {
    right: 72px;
    top: 526px;
  }
}

.p-mv__lower {
  position: relative;
  width: 100%;
  height: 31.944vw;
  max-height: 460px;
  overflow: hidden;
  z-index: 1;
}

.p-mv__abstract-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--image-fv-bg02-pc);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  z-index: 7;
}
@supports (background-image: var(--image-fv-bg02-pc-webp)) {
  .p-mv__abstract-bg {
    background-image: var(--image-fv-bg02-pc-webp);
  }
}

.p-mv__lower-blue-area {
  position: absolute;
  top: 0;
  right: 0;
  width: 377px;
  height: 100%;
  background-color: #141853;
  z-index: 6;
  clip-path: polygon(55% 0, 100% 0%, 100% 100%, 0 100%);
}

.p-mv__lower-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 20;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.p-mv__lower-title {
  font-family: "Puritan", sans-serif;
  font-size: 6.2rem;
  font-weight: 400;
  color: #141853;
  margin: 0;
  line-height: 2;
}

.p-mv__lower-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #000000;
  margin: 0 0 8px 0;
  line-height: 1.6875;
}

.p-mv__lower-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  margin: 0;
}
.p-mv__lower-text p {
  margin: 0 0 15px 0;
}
.p-mv__lower-text p:last-child {
  margin-bottom: 0;
}

.p-mv__blue-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 200px;
  background-color: #141853;
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  z-index: 20;
}

@media screen and (max-width: 1024px) {
  .p-mv {
    margin-top: 60px !important;
  }
  .p-mv__upper-white-area {
    position: absolute;
    width: 11.78vw;
    max-width: 169.59px;
    top: min(17.94vw, 258.35px);
    height: 26.435vw;
    max-height: 380.65px;
  }
  .p-mv__lower-blue-area {
    position: absolute;
    top: 0;
    width: 26.43vw;
    max-width: 380.65px;
    height: 100%;
  }
  .p-mv__line-container {
    width: 42.5vw;
    max-width: 460px;
    top: 0;
    height: 76.319vw;
    max-height: 1099px;
  }
  .p-mv__content {
    left: 7.57vw;
    top: 12.92vw;
  }
  .p-mv__title {
    font-size: 3.6rem;
  }
  .p-mv__circular-text {
    right: 5.56vw;
    top: calc(44.375vw - 102px);
  }
  .p-mv__scroll {
    left: 49.375vw;
    top: 35.07vw;
  }
}
@media screen and (max-width: 768px) {
  .p-mv {
    margin-top: 60px;
    min-height: 965px;
    position: relative;
  }
  .p-mv__upper {
    height: 565px;
  }
  .p-mv__lower {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    padding: 47px 24px 56px;
    background-image: var(--image-fv-bg02-sp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  @supports (background-image: var(--image-fv-bg02-sp-webp)) {
    .p-mv__lower {
      background-image: var(--image-fv-bg02-sp-webp);
    }
  }
  .p-mv__abstract-bg {
    display: none;
  }
  .p-mv__building-bg {
    height: 345px;
    top: 0;
    position: absolute;
    z-index: 1;
  }
  .p-mv__upper-white-area {
    display: block !important;
    position: absolute !important;
    top: 210px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    height: 220px !important;
    background-color: #ffffff !important;
    clip-path: polygon(0% 0, 100% 35%, 100% 100%, 0% 100%) !important;
    z-index: 10 !important;
  }
  .p-mv__lower-blue-area {
    display: none;
  }
  .p-mv__line-container {
    display: block;
  }
  .p-mv__line-container picture,
  .p-mv__line-container .p-mv__line-image {
    display: none;
  }
  .p-mv__content {
    left: 50vw;
    top: 264px;
    transform: translateX(-50%);
    text-align: center;
    max-width: calc(100vw - 48px);
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .p-mv__title {
    font-size: 6.4rem;
    line-height: 1.125;
    margin-bottom: 8px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .p-mv__subtitle {
    font-size: 1.6rem;
    margin-bottom: 40.5px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .p-mv__scroll {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 483px !important;
    bottom: auto !important;
    color: #141853 !important;
  }
  .p-mv__scroll-arrow {
    color: #141853 !important;
  }
  .p-mv__scroll-arrow::before, .p-mv__scroll-arrow::after {
    background-color: #141853 !important;
  }
  .p-mv__circular-text {
    display: block;
    top: 189px;
    right: 0;
    bottom: auto;
    left: auto;
    width: 148px;
    height: 148px;
  }
}
@media screen and (max-width: 768px) {
  .p-mv {
    margin-top: 60px;
    min-height: 965px;
    position: relative;
  }
  .p-mv__upper {
    height: 565px;
  }
  .p-mv__lower {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    padding: 34px 24px 56px;
    background-image: var(--image-fv-bg02-sp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  @supports (background-image: var(--image-fv-bg02-sp-webp)) {
    .p-mv__lower {
      background-image: var(--image-fv-bg02-sp-webp);
    }
  }
  .p-mv__building-bg {
    height: 345px;
    top: 0;
    position: absolute;
    z-index: 1;
  }
  .p-mv__upper-white-area {
    display: block !important;
    position: absolute !important;
    top: 175px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    height: 220px !important;
    background-color: #ffffff !important;
    clip-path: polygon(0% 0, 100% 52%, 100% 100%, 0% 100%) !important;
    z-index: 10 !important;
  }
  .p-mv__lower-blue-area {
    display: none;
  }
  .p-mv__line-container {
    display: block;
  }
  .p-mv__line-container picture,
  .p-mv__line-container .p-mv__line-image {
    display: none;
  }
  .p-mv__content {
    left: 24px;
    top: 268px;
    transform: none;
    text-align: left;
    max-width: calc(100vw - 48px);
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .p-mv__title {
    font-size: 6.4rem;
    line-height: 1.125;
    margin-bottom: 8px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .p-mv__subtitle {
    font-size: 1.6rem;
    margin-bottom: 40.5px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .p-mv__scroll {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 483px !important;
    bottom: auto !important;
    color: #141853 !important;
  }
  .p-mv__scroll-arrow {
    color: #141853 !important;
  }
  .p-mv__scroll-arrow::before, .p-mv__scroll-arrow::after {
    background-color: #141853 !important;
  }
  .p-mv__lower-content {
    max-width: calc(100vw - 48px);
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .p-mv__lower-title {
    font-size: 3.6rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .p-mv__lower-subtitle {
    font-size: 2.4rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .p-mv__lower-text {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .p-mv__circular-text {
    display: block;
    top: 189px;
    right: 0;
    bottom: auto;
    left: auto;
    width: 148px;
    height: 148px;
  }
}
@media screen and (max-width: 320px) {
  .p-mv__content {
    max-width: calc(100vw - 48px) !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .p-mv__title {
    font-size: 5.6rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .p-mv__subtitle {
    font-size: 1.4rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .p-mv__lower-content {
    max-width: calc(100vw - 48px) !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .p-mv__lower-title {
    font-size: 2.5rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .p-mv__lower-subtitle {
    font-size: 1.6rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .p-mv__lower-text {
    font-size: 1.4rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
}
.p-page-mv {
  position: relative;
  width: 100%;
  height: 360px;
  margin-top: 80px;
  overflow: visible;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .p-page-mv {
    height: 300px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-page-mv {
    height: auto;
    min-height: 150px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 375px) {
  .p-page-mv {
    height: 150px;
    margin-top: 60px;
  }
}

.p-page-mv__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-page-mv__image {
    height: auto;
    overflow: visible;
  }
}

.p-page-mv__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .p-page-mv__bg-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }
}

.p-page-mv__circular-text {
  position: absolute;
  top: 228px;
  right: 139px;
  z-index: 20;
}
.p-page-mv__circular-text .c-circular-text__image {
  animation: rotate 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-page-mv__circular-text {
    display: none;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.p-about-content {
  padding: 47px 0 124px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .p-about-content {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .p-about-content {
    padding: 40px 0;
  }
}
@media screen and (max-width: 375px) {
  .p-about-content {
    padding: 40px 0;
  }
}

.p-about-content__header {
  margin-bottom: 36px;
  position: relative;
  z-index: 3;
  padding-right: 50px;
}
@media screen and (max-width: 375px) {
  .p-about-content__header {
    margin-bottom: 40px;
    padding-right: 0;
  }
}

.p-about-content__description {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-about-content__description {
    margin-top: 27px;
  }
}
.p-about-content__description p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-about-content__description p {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about-content__description p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 375px) {
  .p-about-content__description p {
    font-size: 1.6rem;
  }
}

.p-about-content__cards {
  margin-bottom: 43px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-about-content__cards {
    margin-bottom: 48px;
  }
  .p-about-content__cards:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 375px) {
  .p-about-content__cards {
    margin-bottom: 48px;
  }
  .p-about-content__cards:last-child {
    margin-bottom: 0;
  }
}

.p-about-content__card {
  display: flex;
  align-items: center;
  gap: 44.5px;
  margin-bottom: 126px;
}
.p-about-content__card:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p-about-content__card {
    gap: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-about-content__card {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 375px) {
  .p-about-content__card {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }
}
.p-about-content__card:nth-child(2) .p-about-content__card-image {
  order: 2;
}
.p-about-content__card:nth-child(2) .p-about-content__card-text {
  order: 1;
}
@media screen and (max-width: 768px) {
  .p-about-content__card:nth-child(2) .p-about-content__card-image {
    order: 1;
  }
  .p-about-content__card:nth-child(2) .p-about-content__card-text {
    order: 2;
  }
}
@media screen and (max-width: 375px) {
  .p-about-content__card:nth-child(2) .p-about-content__card-image {
    order: 1;
  }
  .p-about-content__card:nth-child(2) .p-about-content__card-text {
    order: 2;
  }
}

.p-about-content__card-image {
  flex: 0 0 463px;
  width: 463px;
  aspect-ratio: 463/393;
}
@media screen and (max-width: 1024px) {
  .p-about-content__card-image {
    flex: 0 0 400px;
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .p-about-content__card-image {
    flex: none;
    width: 327px;
    max-width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .p-about-content__card-image {
    flex: none;
    width: 100%;
  }
}

.p-about-content__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about-content__card-text {
  flex: 1;
}

.p-about-content__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #141853;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #141853;
}
@media screen and (max-width: 1024px) {
  .p-about-content__card-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-about-content__card-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 375px) {
  .p-about-content__card-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.p-about-content__card--consulting .p-about-content__card-title {
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .p-about-content__card--consulting .p-about-content__card-title {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-about-content__card--consulting .p-about-content__card-title {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 375px) {
  .p-about-content__card--consulting .p-about-content__card-title {
    margin-bottom: 16px;
  }
}
.p-about-content__card--consulting .p-about-content__card-description {
  transform: translateY(-16px);
}
@media screen and (max-width: 1024px) {
  .p-about-content__card--consulting .p-about-content__card-description {
    transform: translateY(-8px);
  }
}
@media screen and (max-width: 768px) {
  .p-about-content__card--consulting .p-about-content__card-description {
    transform: translateY(-8px);
  }
}
@media screen and (max-width: 375px) {
  .p-about-content__card--consulting .p-about-content__card-description {
    transform: translateY(-8px);
  }
}

.p-about-content__card--asset .p-about-content__card-title {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .p-about-content__card--asset .p-about-content__card-title {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .p-about-content__card--asset .p-about-content__card-title {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 375px) {
  .p-about-content__card--asset .p-about-content__card-title {
    margin-bottom: 24px;
  }
}
.p-about-content__card--asset .p-about-content__card-description {
  transform: translateY(-61px);
}
@media screen and (max-width: 1024px) {
  .p-about-content__card--asset .p-about-content__card-description {
    transform: translateY(-16px);
  }
}
@media screen and (max-width: 768px) {
  .p-about-content__card--asset .p-about-content__card-description {
    transform: translateY(-16px);
  }
}
@media screen and (max-width: 375px) {
  .p-about-content__card--asset .p-about-content__card-description {
    transform: translateY(-16px);
  }
}

.p-about-content__card-description {
  margin-top: 0;
}
.p-about-content__card-description p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  letter-spacing: 0.008em;
  margin-bottom: 16px;
}
.p-about-content__card-description p:last-child {
  margin-bottom: 0;
}

.p-about-content__button {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.p-company-content {
  background-color: #ffffff;
  padding: 46px 0 128px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-company-content {
    padding: 60px 0;
  }
}
@media screen and (max-width: 375px) {
  .p-company-content {
    padding: 40px 0;
  }
}
.p-company-content__header {
  margin-bottom: 39px;
  padding-right: 65px;
}
@media screen and (max-width: 768px) {
  .p-company-content__header {
    margin-bottom: 48px;
    padding-right: 0;
  }
}
.p-company-content__description {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-company-content__description {
    margin-top: 27px;
  }
}
.p-company-content__description p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  margin-bottom: 26px;
}
.p-company-content__description p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-company-content__description p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.p-company-content__info {
  margin-bottom: 87px;
  padding: 0 109px 0 80px;
}
@media screen and (max-width: 768px) {
  .p-company-content__info {
    padding: 0 24px;
  }
}
@media screen and (max-width: 375px) {
  .p-company-content__info {
    padding: 0;
  }
}
.p-company-content__info-item {
  display: flex;
  border-bottom: 2px solid #141853;
  padding: 23px 0 12px 33px;
}
@media screen and (max-width: 768px) {
  .p-company-content__info-item {
    flex-direction: column;
    gap: 13px;
    padding: 24px 0 12px;
  }
}
.p-company-content__info-item--company-name {
  padding: 23px 0 12px 33px;
}
.p-company-content__info-item--president {
  padding: 20px 0 12px 33px;
}
.p-company-content__info-item--establishment {
  padding: 21px 0 12px 33px;
}
.p-company-content__info-item--capital {
  padding: 20px 0 12px 33px;
}
.p-company-content__info-item--address {
  padding: 23px 0 12px 33px;
}
.p-company-content__info-item--tel {
  padding: 25px 0 12px 33px;
}
.p-company-content__info-item--fax {
  padding: 21px 0 12px 33px;
}
.p-company-content__info-item--email {
  padding: 20px 0 12px 33px;
}
.p-company-content__info-item--hours {
  padding: 18px 0 12px 33px;
}
.p-company-content__info-item--holiday {
  padding: 22px 0 12px 33px;
}
.p-company-content__info-item--business {
  padding: 21px 0 12px 33px;
}
.p-company-content__info-item--bank {
  padding: 20px 0 12px 33px;
}
.p-company-content__info-item dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #141853;
  min-width: 135px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-company-content__info-item dt {
    min-width: auto;
  }
}
.p-company-content__info-item dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #141853;
  flex-grow: 1;
}
.p-company-content__info-item dd address {
  font-style: normal;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.p-company-content__info-item dd a {
  color: #141853;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-company-content__info-item dd a:hover {
  opacity: 0.7;
}
.p-company-content__info-item dd a:visited {
  color: #141853;
}
.p-company-content__info-item dd ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.p-company-content__info-item dd ul li {
  margin-bottom: 4px;
}
.p-company-content__info-item dd ul li:last-child {
  margin-bottom: 0;
}
.p-company-content__access {
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .p-company-content__access {
    margin-bottom: 48px;
  }
}
.p-company-content__access .c-section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-company-content__access .c-section-title {
    margin-bottom: 15px;
  }
}
.p-company-content__map {
  width: 776px;
  height: 386px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-company-content__map {
    width: 90%;
    max-width: 776px;
  }
}
@media screen and (max-width: 768px) {
  .p-company-content__map {
    width: 327px;
    height: 355px;
  }
}
@media screen and (max-width: 375px) {
  .p-company-content__map {
    width: 100%;
    max-width: none;
    height: 355px;
  }
}
.p-company-content__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.p-company-content__button {
  display: flex;
  justify-content: center;
  position: relative;
}

.p-recruitment-content {
  padding: 44px 0 120px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-recruitment-content {
    padding: 23px 0 48px;
  }
}
.p-recruitment-content::after {
  top: 1604px !important;
}
@media screen and (max-width: 768px) {
  .p-recruitment-content::before, .p-recruitment-content::after {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruitment-content {
    padding: 60px 0;
  }
}
@media screen and (max-width: 375px) {
  .p-recruitment-content {
    padding: 40px 0;
  }
}
.p-recruitment-content__header {
  margin-bottom: 56px;
  position: relative;
  z-index: 3;
  padding-right: 50px;
}
@media screen and (max-width: 375px) {
  .p-recruitment-content__header {
    margin-bottom: 40px;
    padding-right: 0;
  }
}
.p-recruitment-content__description {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__description {
    margin-top: 20px;
  }
}
.p-recruitment-content__description p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__description p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .p-recruitment-content__description p br:first-of-type {
    display: none;
  }
}
.p-recruitment-content__main {
  display: flex;
  gap: 36px;
  margin-bottom: 88px;
  padding: 0 16px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__main {
    gap: 29.5px;
    padding: 0;
    flex-direction: column;
    margin-bottom: 56px;
  }
}
.p-recruitment-content__left {
  flex: 1;
}
.p-recruitment-content__right {
  flex: 0 0 300px;
}
@media screen and (max-width: 1024px) {
  .p-recruitment-content__right {
    flex: 0 0 250px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__right {
    flex: 0 0 200px;
  }
}
@media screen and (max-width: 375px) {
  .p-recruitment-content__right {
    flex: none;
    order: -1;
  }
}
.p-recruitment-content__section {
  margin-bottom: 35px;
}
.p-recruitment-content__section:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 375px) {
  .p-recruitment-content__section {
    margin-bottom: 40px;
  }
}
.p-recruitment-content__section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #141853;
  margin-bottom: 24px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .p-recruitment-content__section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__section-title {
    font-size: 2rem;
    margin-bottom: 17px;
    text-align: left;
  }
}
.p-recruitment-content__requirements .p-recruitment-content__section-title {
  text-align: center;
  margin-bottom: -4px;
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__requirements .p-recruitment-content__section-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__flow .p-recruitment-content__section-title {
    font-size: 2.4rem;
    text-align: center;
  }
}
.p-recruitment-content__characteristics {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-recruitment-content__characteristics li {
  position: relative;
  padding-left: 19px;
  margin-bottom: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  display: flex;
  align-items: center;
}
.p-recruitment-content__characteristics li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #141853;
  font-size: 1.2rem;
}
.p-recruitment-content__characteristics li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 375px) {
  .p-recruitment-content__characteristics li {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}
.p-recruitment-content__section p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
.p-recruitment-content__image {
  width: 480px;
  height: 406px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-recruitment-content__image {
    width: 400px;
    height: auto;
    aspect-ratio: 480/406;
  }
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__image {
    width: 350px;
    height: auto;
    aspect-ratio: 480/406;
  }
}
@media screen and (max-width: 375px) {
  .p-recruitment-content__image {
    width: 327px;
    height: 277px;
  }
}
.p-recruitment-content__person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-recruitment-content__requirements {
  margin-bottom: 88px;
  padding: 0 94px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .p-recruitment-content__requirements {
    padding: 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__requirements {
    padding: 0;
    margin-bottom: 48px;
  }
}
.p-recruitment-content__requirements-list {
  border-top: none;
}
.p-recruitment-content__requirement-item {
  display: flex;
  border-bottom: 2px solid #141853;
  padding: 29.5px 0 9.5px 33.5px;
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__requirement-item {
    flex-direction: column;
    gap: 9.5px;
    padding: 18.5px 0 8.5px;
  }
  .p-recruitment-content__requirement-item:first-child {
    padding-top: 0;
  }
}
.p-recruitment-content__requirement-item--location {
  padding: 29.5px 0 9.5px 33.5px;
}
.p-recruitment-content__requirement-item--hours {
  padding: 25px 0 1px 33.5px;
}
.p-recruitment-content__requirement-item--salary {
  padding: 20px 0 7.5px 33.5px;
}
.p-recruitment-content__requirement-item--benefits {
  padding: 15px 0 9.5px 33.5px;
}
.p-recruitment-content__requirement-item--holiday {
  padding: 10px 0 9.5px 33.5px;
}
.p-recruitment-content__requirement-item dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #141853;
  min-width: 145px;
  flex-shrink: 0;
}
.p-recruitment-content__requirement-item dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #141853;
  flex-grow: 1;
  line-height: 1.75;
}
.p-recruitment-content__requirement-item dd a {
  color: #141853;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-recruitment-content__requirement-item dd a:hover {
  opacity: 0.7;
}
.p-recruitment-content__flow {
  margin-bottom: 42px;
  padding: 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .p-recruitment-content__flow {
    padding: 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__flow {
    padding: 0;
  }
}
.p-recruitment-content__flow-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__flow-steps {
    gap: 40px;
  }
}
.p-recruitment-content__flow-step {
  display: flex;
  align-items: flex-start;
  gap: 94px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__flow-step {
    gap: 16px;
    flex-direction: column;
  }
}
.p-recruitment-content__flow-icon {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #DFE0E6;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__flow-icon {
    margin: 0 auto;
  }
}
.p-recruitment-content__flow-icon-img {
  width: 105px;
  height: 120px;
  object-fit: contain;
}
.p-recruitment-content__flow-step:first-child .p-recruitment-content__flow-icon-img {
  margin-top: 22px;
}
.p-recruitment-content__flow-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  border-bottom: 2px solid #141853;
}
@media screen and (max-width: 768px) {
  .p-recruitment-content__flow-header {
    gap: 12px;
    margin-bottom: 8px;
  }
}
.p-recruitment-content__flow-number {
  background-color: #141853;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  padding: 7px 11px;
  min-width: 49px;
  text-align: center;
}
.p-recruitment-content__flow-content {
  flex-grow: 1;
}
.p-recruitment-content__flow-content h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #141853;
  margin: 0;
}
.p-recruitment-content__flow-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  margin: 0;
}
.p-recruitment-content__flow-content p:last-child {
  margin-bottom: 0;
}
.p-recruitment-content__flow-content p a {
  color: #141853;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-recruitment-content__flow-content p a:hover {
  opacity: 0.7;
}
.p-recruitment-content__flow-content p a:visited {
  color: #141853;
}
.p-recruitment-content__button {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.p-privacy-content {
  background-color: #ffffff;
  padding: 54px 0 120px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-privacy-content {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .p-privacy-content {
    padding: 23px 0 48px;
  }
}
.p-privacy-content__triangle-right-1 {
  content: "";
  position: absolute;
  top: 454px;
  right: 0;
  width: 948px;
  height: 854px;
  background-color: #F6F7F7;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transform: scaleX(-1);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-privacy-content__triangle-right-1 {
    display: none;
  }
}
.p-privacy-content__triangle-right-2 {
  content: "";
  position: absolute;
  top: 1592px;
  right: 0;
  width: 948px;
  height: 854px;
  background-color: #F6F7F7;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transform: scaleX(-1);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-privacy-content__triangle-right-2 {
    display: none;
  }
}
.p-privacy-content__triangle-right-3 {
  content: "";
  position: absolute;
  top: 2626px;
  right: 0;
  width: 948px;
  height: 854px;
  background-color: #F6F7F7;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transform: scaleX(-1);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-privacy-content__triangle-right-3 {
    display: none;
  }
}
.p-privacy-content__triangle-left-1 {
  content: "";
  position: absolute;
  top: 971px;
  left: 0;
  width: 948px;
  height: 854px;
  background-color: #F6F7F7;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-privacy-content__triangle-left-1 {
    display: none;
  }
}
.p-privacy-content__triangle-left-2 {
  content: "";
  position: absolute;
  top: 2109px;
  left: 0;
  width: 948px;
  height: 854px;
  background-color: #F6F7F7;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-privacy-content__triangle-left-2 {
    display: none;
  }
}
.p-privacy-content__header {
  margin-bottom: 32px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 375px) {
  .p-privacy-content__header {
    margin-bottom: 40px;
  }
}
.p-privacy-content__header .c-section-title {
  text-align: center;
}
.p-privacy-content__introduction {
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-privacy-content__introduction {
    margin-bottom: 48.5px;
  }
}
.p-privacy-content__introduction p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-privacy-content__introduction p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.p-privacy-content__section {
  margin-bottom: 45px;
  position: relative;
  z-index: 3;
}
.p-privacy-content__section:last-child {
  margin-bottom: 0;
}
.p-privacy-content__section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #141853;
  margin-bottom: 15px;
  border-bottom: 2px solid #141853;
}
.p-privacy-content__section-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  margin-bottom: 0;
}
.p-privacy-content__section-content address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  line-height: 2;
  margin-bottom: 0;
}
.p-privacy-content__section-content ol {
  margin-top: 33px;
  padding-left: 0;
  list-style: none;
  counter-reset: item;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-privacy-content__section-content ol {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}
.p-privacy-content__section-content ol li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 40px;
  counter-increment: item;
}
@media screen and (max-width: 768px) {
  .p-privacy-content__section-content ol li {
    padding-left: 15px;
  }
}
.p-privacy-content__section-content ol li:last-child {
  margin-bottom: 0;
}
.p-privacy-content__section-content ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 400;
  color: #000000;
}
.p-privacy-content__section-content ol li ol {
  margin-top: 40px;
  padding-left: 20px;
  counter-reset: nested-item;
}
.p-privacy-content__section-content ol li ol li {
  counter-increment: nested-item;
  padding-left: 25px;
  margin-bottom: 0;
}
.p-privacy-content__section-content ol li ol li::before {
  content: counter(nested-item) ".";
  font-weight: 400;
}
.p-privacy-content__section-content ol li ol li ol {
  margin-top: 8px;
  padding-left: 20px;
  counter-reset: sub-nested-item;
}
.p-privacy-content__section-content ol li ol li ol li {
  counter-increment: sub-nested-item;
  padding-left: 30px;
  margin-bottom: 0;
}
.p-privacy-content__section-content ol li ol li ol li::before {
  content: "(" counter(sub-nested-item) ")";
  font-weight: 400;
}
.p-privacy-content__section-content ol .li--spaced {
  margin-bottom: 45px !important;
}
.p-privacy-content__section-content ol .li--no-margin {
  margin-bottom: 0 !important;
}
.p-privacy-content__section-content ol .li--has-sublist {
  margin-bottom: 40px !important;
}
.p-privacy-content__section-content ol .li--has-sublist > ol {
  margin-top: 40px;
  counter-reset: nested-item;
}
.p-privacy-content__section-content ol .li--has-sublist > ol li {
  margin-bottom: 0;
  counter-increment: nested-item;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .p-privacy-content__section-content ol .li--has-sublist > ol li {
    padding-left: 15px;
  }
}
.p-privacy-content__section-content ol .li--has-sublist > ol li::before {
  content: counter(nested-item) ".";
}
.p-privacy-content__section-content ol .li--has-sublist > ol li ol {
  margin-top: 8px;
  padding-left: 20px;
  counter-reset: sub-nested-item;
}
.p-privacy-content__section-content ol .li--has-sublist > ol li ol li {
  counter-increment: sub-nested-item;
  padding-left: 30px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-privacy-content__section-content ol .li--has-sublist > ol li ol li {
    padding-left: 20px;
  }
}
.p-privacy-content__section-content ol .li--has-sublist > ol li ol li::before {
  content: "(" counter(sub-nested-item) ")";
}
.p-privacy-content__section-content ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 375px) {
  .p-privacy-content__section-content ul {
    font-size: 1.4rem;
  }
}
.p-privacy-content__section-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
.p-privacy-content__section-content ul li:last-child {
  margin-bottom: 0;
}
.p-privacy-content__section-content ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #141853;
  font-size: 1.2rem;
}
.p-privacy-content__section-content a {
  color: #141853;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-privacy-content__section-content a:hover {
  opacity: 0.7;
}
.p-privacy-content__section-content a:visited {
  color: #141853;
}
.p-privacy-content__button {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 375px) {
  .p-privacy-content__button {
    margin-top: 40px;
  }
}

.p-column-content {
  background-color: #ffffff;
  padding: 51px 0 120px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-column-content {
    padding: 23px 0 55px;
  }
}
.p-column-content__triangle-right-1, .p-column-content__triangle-right-2 {
  content: "";
  position: absolute;
  width: 948px;
  height: 854px;
  background-color: #F6F7F7;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transform: scaleX(-1);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-column-content__triangle-right-1, .p-column-content__triangle-right-2 {
    display: none;
  }
}
.p-column-content__triangle-right-1 {
  top: 454px;
  right: 0;
}
.p-column-content__triangle-right-2 {
  top: 1592px;
  right: 0;
}
.p-column-content__triangle-left-1, .p-column-content__triangle-left-2 {
  content: "";
  position: absolute;
  width: 948px;
  height: 854px;
  background-color: #F6F7F7;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-column-content__triangle-left-1, .p-column-content__triangle-left-2 {
    display: none;
  }
}
.p-column-content__triangle-left-1 {
  top: 971px;
  left: 0;
}
.p-column-content__triangle-left-2 {
  top: 2212px;
  left: 0;
}
.p-column-content__header {
  margin-bottom: 38px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-column-content__header {
    margin-bottom: 27px;
  }
}
.p-column-content__main-title {
  margin-bottom: 13px;
  position: relative;
  z-index: 3;
}
.p-column-content__main-title-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 375px) {
  .p-column-content__main-title-bg {
    width: 100vw;
  }
}
.p-column-content__main-title-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-column-content__title-wrapper {
  padding: 82px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-column-content__title-wrapper {
    padding: 47px 0 44px;
  }
}
.p-column-content__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #141853;
  line-height: 1.125;
  letter-spacing: 0.016em;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-column-content__title {
    font-size: 2.4rem;
  }
}
.p-column-content__description {
  margin-bottom: 41px;
  text-align: center;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-column-content__description {
    margin-bottom: 69.5px;
  }
}
.p-column-content__description p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-column-content__description p {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: left;
  }
}
.p-column-content__reasons {
  position: relative;
  z-index: 3;
}
.p-column-content__reasons-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #141853;
  text-align: center;
  margin-bottom: 37px;
  padding-bottom: 8px;
  border-bottom: 2px solid #141853;
}
@media screen and (max-width: 768px) {
  .p-column-content__reasons-title {
    font-size: 2rem;
    margin-bottom: 22.5px;
    padding-bottom: 9px;
  }
}
.p-column-content__reason-item {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 62px;
}
.p-column-content__reason-item:last-child {
  margin-bottom: 0;
}
.p-column-content__reason-item:nth-child(odd) {
  flex-direction: row;
}
.p-column-content__reason-item:nth-child(even) {
  flex-direction: row-reverse;
}
.p-column-content__reason-item--01 {
  margin-bottom: 72px;
}
.p-column-content__reason-item--02 {
  margin-bottom: 58px;
}
.p-column-content__reason-item--03 {
  margin-bottom: 63px;
}
.p-column-content__reason-item--04 {
  margin-bottom: 69px;
}
.p-column-content__reason-item--05 {
  margin-bottom: 46px;
}
@media screen and (max-width: 1024px) {
  .p-column-content__reason-item {
    gap: 40px;
    margin-bottom: 60px;
  }
  .p-column-content__reason-item--01 {
    margin-bottom: 60px;
  }
  .p-column-content__reason-item--02 {
    margin-bottom: 56px;
  }
  .p-column-content__reason-item--03 {
    margin-bottom: 52px;
  }
  .p-column-content__reason-item--04 {
    margin-bottom: 48px;
  }
  .p-column-content__reason-item--05 {
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 768px) {
  .p-column-content__reason-item {
    flex-direction: column !important;
    gap: 30px;
    margin-bottom: 50px;
  }
  .p-column-content__reason-item:last-child {
    margin-bottom: 0;
  }
  .p-column-content__reason-item--01 {
    margin-bottom: 50px;
  }
  .p-column-content__reason-item--02 {
    margin-bottom: 46px;
  }
  .p-column-content__reason-item--03 {
    margin-bottom: 42px;
  }
  .p-column-content__reason-item--04 {
    margin-bottom: 38px;
  }
  .p-column-content__reason-item--05 {
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 375px) {
  .p-column-content__reason-item {
    flex-direction: column !important;
    gap: 20px;
    margin-bottom: 40px;
  }
  .p-column-content__reason-item:last-child {
    margin-bottom: 0;
  }
  .p-column-content__reason-item--01 {
    margin-bottom: 40px;
  }
  .p-column-content__reason-item--02 {
    margin-bottom: 36px;
  }
  .p-column-content__reason-item--03 {
    margin-bottom: 32px;
  }
  .p-column-content__reason-item--04 {
    margin-bottom: 28px;
  }
  .p-column-content__reason-item--05 {
    margin-bottom: 24px;
  }
}
.p-column-content__reason-content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-column-content__reason-content {
    order: 2;
  }
}
@media screen and (max-width: 375px) {
  .p-column-content__reason-content {
    order: 2;
  }
}
.p-column-content__reason-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: -2px;
  border-bottom: 2px solid #141853;
}
@media screen and (max-width: 768px) {
  .p-column-content__reason-header {
    gap: 14px;
  }
}
.p-column-content__reason-number {
  flex-shrink: 0;
  width: 49px;
  height: 49px;
  background-color: #141853;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-column-content__reason-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #141853;
  margin-bottom: 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-column-content__reason-title {
    font-size: 1.8rem;
  }
}
.p-column-content__reason-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
.p-column-content__reason-image {
  flex-shrink: 0;
  width: 463px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .p-column-content__reason-image {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .p-column-content__reason-image {
    order: 1;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .p-column-content__reason-image {
    order: 1;
    width: 325px;
    height: 276px;
  }
}
.p-column-content__reason-img {
  width: 463px;
  height: 393px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-column-content__reason-img {
    width: 400px;
    height: 339px;
  }
}
@media screen and (max-width: 768px) {
  .p-column-content__reason-img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 375px) {
  .p-column-content__reason-img {
    width: 325px;
    height: 276px;
  }
}
.p-column-content__button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 375px) {
  .p-column-content__button {
    margin-top: 56px;
  }
}

.p-news-content {
  background-color: #ffffff;
  padding: 47px 0 120px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-news-content {
    padding: 60px 0;
  }
}
@media screen and (max-width: 375px) {
  .p-news-content {
    padding: 40px 0;
  }
}
.p-news-content__layout {
  display: grid;
  grid-template-columns: 700px 200px;
  gap: 60px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .p-news-content__layout {
    grid-template-columns: 1fr 200px;
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-news-content__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-news-content__header {
  margin-bottom: 0px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 375px) {
  .p-news-content__header {
    margin-bottom: 32px;
  }
}
.p-news-content__list {
  margin-bottom: 40px;
}
@media screen and (max-width: 375px) {
  .p-news-content__list {
    margin-bottom: 32px;
  }
}
.p-news-content__item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 137px;
  padding: 32.5px 12px 14.5px 0;
  border-bottom: 1px solid #707070;
}
.p-news-content__item:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .p-news-content__item:last-child {
    border-bottom: 1px solid #707070;
  }
}
.p-news-content__item--01 {
  padding: 32.5px 12px 14.5px 0;
}
.p-news-content__item--02 {
  padding: 28px 12px 14.5px 0;
}
.p-news-content__item--03 {
  padding: 24px 12px 14.5px 0;
}
.p-news-content__item--04 {
  padding: 20px 12px 14.5px 0;
}
.p-news-content__item--05 {
  padding: 33px 12px 14.5px 0;
}
@media screen and (max-width: 768px) {
  .p-news-content__item {
    gap: 3px;
    padding: 32px 0 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .p-news-content__item:first-child {
    padding-top: 0;
  }
}
.p-news-content__item:hover .p-news-content__title-link {
  color: rgb(10.0970873786, 12.1165048544, 41.9029126214);
}
.p-news-content__item:hover .p-news-content__read-more-link {
  background-color: #131853;
  color: #fff;
}
.p-news-content__item-content {
  flex: 1;
  min-width: 0;
}
.p-news-content__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #141853;
  line-height: 1.8571428571;
  display: block;
  margin-bottom: 9px;
}
@media screen and (max-width: 768px) {
  .p-news-content__date {
    font-size: 1.4rem;
    margin-bottom: 21px;
  }
}
.p-news-content__title {
  margin-bottom: 16px;
}
@media screen and (max-width: 375px) {
  .p-news-content__title {
    margin-bottom: 8px;
  }
}
.p-news-content__title-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-news-content__title-link:hover {
  color: rgb(10.0970873786, 12.1165048544, 41.9029126214);
}
@media screen and (max-width: 768px) {
  .p-news-content__title-link {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
}
.p-news-content__excerpt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-news-content__excerpt {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }
}
.p-news-content__read-more {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-news-content__read-more {
    margin-top: 0;
    align-self: flex-end;
  }
}
.p-news-content__read-more-link {
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #131853;
  border: 1px solid #131853;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-news-content__read-more-link:hover {
  background-color: #131853;
  color: #fff;
}
.p-news-content__read-more-link i {
  font-size: 1.4rem;
}
@media screen and (max-width: 375px) {
  .p-news-content__read-more-link i {
    font-size: 1.2rem;
  }
}
.p-news-content__pagination {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 375px) {
  .p-news-content__pagination {
    gap: 0;
    margin-bottom: 32px;
  }
}
.p-news-content__pagination .current {
  background-color: #E8E8E8 !important;
  color: #000000 !important;
  border-color: #141853 !important;
}
.p-news-content__pagination a.current {
  background-color: #E8E8E8 !important;
  color: #000000 !important;
  border-color: #141853 !important;
}
.p-news-content__pagination .p-news-content__pagination-number.current,
.p-news-content__pagination a.p-news-content__pagination-number.current,
.p-news-content__pagination span.p-news-content__pagination-number.current {
  background-color: #E8E8E8 !important;
  color: #000000 !important;
  border-color: #141853 !important;
}
.p-news-content__pagination .page-numbers.current,
.p-news-content__pagination a.page-numbers.current,
.p-news-content__pagination span.page-numbers.current {
  background-color: #E8E8E8 !important;
  color: #000000 !important;
  border-color: #141853 !important;
}
.p-news-content__pagination .page-numbers.current .p-news-content__pagination-number {
  background-color: #E8E8E8 !important;
  color: #000000 !important;
  border-color: #141853 !important;
}
.p-news-content__pagination .page-numbers {
  margin-right: 5px;
}
.p-news-content__pagination .page-numbers:last-child {
  margin-right: 0;
}
.p-news-content__pagination .page-numbers.dots {
  margin-right: 5px;
}
.p-news-content__pagination-prev, .p-news-content__pagination-next {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  padding: 3px 3px 11px 9px;
  border: 1px solid #141853;
  background-color: #ffffff;
  transition: all 0.3s ease;
  width: 56px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.p-news-content__pagination-prev:hover, .p-news-content__pagination-next:hover {
  background-color: #141853;
  color: #ffffff;
  border-color: #141853;
}
@media screen and (max-width: 375px) {
  .p-news-content__pagination-prev, .p-news-content__pagination-next {
    font-size: 1.3rem;
    width: 50px;
    height: 26px;
  }
}
.p-news-content__pagination-prev {
  margin-right: 11px;
}
.p-news-content__pagination-next {
  margin-left: 11px;
}
.p-news-content__pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0;
}
@media screen and (max-width: 375px) {
  .p-news-content__pagination-numbers {
    gap: 0;
  }
}
.p-news-content__pagination-number {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  padding: 3px 3px 11px 9px;
  border: 1px solid #141853;
  background-color: #ffffff;
  transition: all 0.3s ease;
  width: 28px;
  height: 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-right: 5px;
}
.p-news-content__pagination-number:last-child {
  margin-right: 0;
}
.p-news-content__pagination-number:hover {
  background-color: #141853;
  color: #ffffff;
  border-color: #141853;
}
.p-news-content__pagination-number--current, .p-news-content__pagination-number.current {
  background-color: #E8E8E8;
  color: #000000;
  border-color: #141853;
}
@media screen and (max-width: 375px) {
  .p-news-content__pagination-number {
    font-size: 1.3rem;
    padding: 6px 8px;
    min-width: 36px;
  }
}
.p-news-content__pagination-ellipsis {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
  padding: 8px 4px;
}
@media screen and (max-width: 375px) {
  .p-news-content__pagination-ellipsis {
    font-size: 1.3rem;
    padding: 6px 2px;
  }
}
.p-news-content__button {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  padding-left: 265px;
}
@media screen and (max-width: 375px) {
  .p-news-content__button {
    margin-top: 32px;
  }
}
.p-news-content__sidebar {
  position: sticky;
  top: 40px;
}
@media screen and (max-width: 768px) {
  .p-news-content__sidebar {
    position: static;
    order: -1;
  }
}
.p-news-content__sidebar-section {
  background-color: #ffffff;
  padding-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-news-content__sidebar-section {
    padding: 0;
  }
}
.p-news-content__sidebar-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #141853;
}
@media screen and (max-width: 768px) {
  .p-news-content__sidebar-title {
    font-size: 2rem;
    margin-bottom: 16px;
    padding-bottom: 4px;
  }
}
.p-news-content__year-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-news-content__year-list {
    display: flex;
    gap: 10px;
  }
}
.p-news-content__year-item {
  margin-bottom: 0;
}
.p-news-content__year-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-news-content__year-item {
    margin-bottom: 0;
  }
}
.p-news-content__year-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}
.p-news-content__year-link:hover {
  color: #141853;
}
.p-news-content__year-link--current {
  color: #141853;
  font-weight: 500;
  border-bottom: 1px solid #000000;
  opacity: 0.5;
}

.p-news-single-content {
  background-color: #ffffff;
  padding: 43px 0 130px;
}
@media screen and (max-width: 768px) {
  .p-news-single-content {
    padding: 23px 0 47px;
  }
}
.p-news-single-content__header {
  margin-bottom: 36px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-news-single-content__header {
    margin-bottom: 27px;
  }
}
.p-news-single-content__article {
  width: 100%;
  padding: 0;
}
@media screen and (max-width: 375px) {
  .p-news-single-content__article {
    padding: 0;
  }
}
.p-news-single-content__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.4375;
  margin-bottom: 24px;
}
@media screen and (max-width: 375px) {
  .p-news-single-content__title {
    font-size: 2.4rem;
    margin-bottom: 24px;
    line-height: 1.4583333333;
  }
}
.p-news-single-content__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #141853;
  line-height: 1.8571428571;
  display: block;
  margin-bottom: 0;
}
@media screen and (max-width: 375px) {
  .p-news-single-content__date {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
}
.p-news-single-content__content {
  margin-bottom: 70px;
}
@media screen and (max-width: 375px) {
  .p-news-single-content__content {
    margin-bottom: 40px;
  }
}
.p-news-single-content__content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  margin-bottom: 24px;
}
.p-news-single-content__content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 375px) {
  .p-news-single-content__content p {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}
.p-news-single-content__share {
  display: flex;
  gap: 8px;
  margin-bottom: 84px;
}
@media screen and (max-width: 375px) {
  .p-news-single-content__share {
    margin-bottom: 60px;
  }
}
.p-news-single-content__share-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.p-news-single-content__share-item:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .p-news-single-content__share-item {
    width: 30px;
    height: 30px;
  }
}
.p-news-single-content__share-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-news-single-content__share-icon {
    width: 30px;
    height: 40px;
  }
}
.p-news-single-content__back {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-news-single-content__back-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.p-news-single-content__back-button:hover {
  background-color: #f8f9fa;
  border-color: #ccc;
}
@media screen and (max-width: 375px) {
  .p-news-single-content__back-button {
    padding: 12px 24px;
  }
}
.p-news-single-content__back-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
}
@media screen and (max-width: 375px) {
  .p-news-single-content__back-text {
    font-size: 1.4rem;
  }
}
.p-news-single-content__back-arrow {
  font-size: 1.4rem;
  color: #000000;
  transition: transform 0.3s ease;
}
.p-news-single-content__back-button:hover .p-news-single-content__back-arrow {
  transform: translateX(4px);
}
@media screen and (max-width: 375px) {
  .p-news-single-content__back-arrow {
    font-size: 1.2rem;
  }
}

.p-contact-form__header {
  background-color: #fff;
  padding: 47px 0 47px;
}
@media screen and (max-width: 768px) {
  .p-contact-form__header {
    padding: 23px 0 32px;
  }
}
.p-contact-form__form-section {
  background-color: #F6F7F7;
  padding: 50px 0;
}
@media screen and (max-width: 375px) {
  .p-contact-form__form-section {
    padding: 43.5px 0 40.5px;
  }
}
.p-contact-form__spacer {
  background-color: #fff;
  padding: 62px 0;
}
@media screen and (max-width: 768px) {
  .p-contact-form__spacer {
    padding: 23px 0;
  }
}
.p-contact-form__header-content {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-contact-form__header-content {
    margin-bottom: 0;
  }
}
.p-contact-form__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-contact-form__description {
    margin-top: 27px;
  }
}
.p-contact-form__form {
  max-width: 800px;
  margin: 0 auto;
}
.p-contact-form__field {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 27px;
  align-items: center;
}
.p-contact-form__field:has(.p-contact-form__checkbox-group) {
  align-items: start;
}
.p-contact-form__field:has(input[type=email]) {
  margin-top: 20px;
}
.p-contact-form__field:has(.p-contact-form__checkbox-group) {
  margin-top: 46px;
  margin-bottom: 44px;
}
.p-contact-form__field:has(.p-contact-form__textarea) {
  align-items: start;
  margin-bottom: 44px;
}
@media screen and (max-width: 768px) {
  .p-contact-form__field {
    margin-bottom: 35px !important;
    gap: 15px !important;
  }
  .p-contact-form__field:has(.p-contact-form__textarea) {
    margin-bottom: 0 !important;
  }
}
.p-contact-form__field:last-child {
  margin-bottom: 0;
}
.p-contact-form__field:has(.p-contact-form__checkbox-item--privacy) {
  grid-template-columns: 1fr;
  justify-items: center;
  margin-top: 16px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .p-contact-form__field:has(.p-contact-form__checkbox-item--privacy) {
    margin-top: 16px;
    margin-bottom: 47px;
  }
}
@media screen and (max-width: 375px) {
  .p-contact-form__field {
    margin-bottom: 32px;
    gap: 20px;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .p-contact-form__field:has(.p-contact-form__checkbox-item--privacy) {
    justify-items: center;
  }
}
.p-contact-form__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
}
.p-contact-form__label--no-required {
  padding-left: 54px;
}
@media screen and (max-width: 375px) {
  .p-contact-form__label--no-required {
    padding-left: 0;
  }
}
.p-contact-form__required {
  background-color: #141853;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1px 8px;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}
.p-contact-form__input {
  width: 374px;
  padding: 13px 26px;
  border: 1px solid #4B4B4B;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  background-color: #fff;
  transition: border-color 0.3s ease;
}
.p-contact-form__input:focus {
  outline: none;
  border-color: #141853;
}
.p-contact-form__input::placeholder {
  color: #747272;
}
@media screen and (max-width: 375px) {
  .p-contact-form__input {
    font-size: 1.4rem;
    padding: 12px 16px;
    width: 100%;
  }
}
.p-contact-form__input--phone {
  width: 310px;
}
@media screen and (max-width: 768px) {
  .p-contact-form__input--phone {
    width: 310px;
  }
}
.p-contact-form__textarea {
  width: 582px;
  padding: 16px 20px;
  border: 1px solid #4B4B4B;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  background-color: #fff;
  resize: vertical;
  min-height: 243px;
  transition: border-color 0.3s ease;
}
.p-contact-form__textarea:focus {
  outline: none;
  border-color: #141853;
}
.p-contact-form__textarea::placeholder {
  color: #999;
}
@media screen and (max-width: 768px) {
  .p-contact-form__textarea {
    width: 327px;
    height: 320px;
  }
}
@media screen and (max-width: 375px) {
  .p-contact-form__textarea {
    font-size: 1.4rem;
    padding: 12px 16px;
    min-height: 160px;
  }
}
.p-contact-form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media screen and (max-width: 375px) {
  .p-contact-form__checkbox-group {
    gap: 12px;
  }
}
.p-contact-form__checkbox-item {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.p-contact-form__checkbox-item--privacy {
  justify-content: center;
  margin-top: -15px;
  margin-bottom: -15px;
}
@media screen and (max-width: 375px) {
  .p-contact-form__checkbox-item--privacy {
    margin-top: 16px;
  }
}
.p-contact-form__checkbox {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  border: 1px solid #4B4B4B !important;
  border-radius: 0 !important;
  background-color: #fff !important;
  cursor: pointer !important;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s ease;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  display: inline-block !important;
  vertical-align: middle;
  float: none !important;
  clear: none !important;
}
.p-contact-form__checkbox:checked {
  background-color: #fff !important;
  border-color: #141853 !important;
}
.p-contact-form__checkbox:checked::after {
  content: "✓" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #141853 !important;
  font-size: 14px !important;
  font-weight: bold;
  line-height: 1;
  pointer-events: none;
  display: block !important;
}
.p-contact-form__checkbox:focus {
  outline: none;
  border-color: #141853 !important;
  box-shadow: 0 0 0 2px rgba(20, 24, 83, 0.2);
}
@media screen and (max-width: 375px) {
  .p-contact-form__checkbox {
    width: 18px !important;
    height: 18px !important;
  }
}
.p-contact-form__checkbox-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333333;
  line-height: 2;
  cursor: pointer;
  flex: 1;
  white-space: nowrap;
}
@media screen and (max-width: 375px) {
  .p-contact-form__checkbox-text {
    font-size: 1.4rem;
  }
}
.p-contact-form__checkbox-text a {
  color: #3B4EAB;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-contact-form__checkbox-text a:hover {
  opacity: 0.7;
}
.p-contact-form__submit {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 375px) {
  .p-contact-form__submit {
    margin-top: 40px;
  }
}
.p-contact-form__confirm {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}
.p-contact-form__confirm-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 375px) {
  .p-contact-form__confirm-title {
    font-size: 2rem;
  }
}
.p-contact-form__confirm-description {
  font-size: 1.6rem;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 375px) {
  .p-contact-form__confirm-description {
    font-size: 1.4rem;
  }
}
.p-contact-form__confirm-content {
  padding: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 375px) {
  .p-contact-form__confirm-content {
    padding: 20px;
  }
}
.p-contact-form__confirm-item {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.p-contact-form__confirm-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 375px) {
  .p-contact-form__confirm-item {
    flex-direction: column;
    gap: 8px;
  }
}
.p-contact-form__confirm-label {
  font-weight: 700;
  color: #000000;
  min-width: 120px;
  font-size: 1.4rem;
}
@media screen and (max-width: 375px) {
  .p-contact-form__confirm-label {
    min-width: auto;
    font-size: 1.3rem;
  }
}
.p-contact-form__confirm-value {
  flex: 1;
  color: #000000;
  font-size: 1.4rem;
  line-height: 1.5;
  word-break: break-all;
}
@media screen and (max-width: 375px) {
  .p-contact-form__confirm-value {
    font-size: 1.3rem;
  }
}
.p-contact-form__confirm-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 375px) {
  .p-contact-form__confirm-actions {
    flex-direction: column;
    gap: 15px;
  }
}
.p-contact-form__back-button {
  display: inline-block;
  padding: 12px 24px;
  background: #f5f5f5;
  color: #000000;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.p-contact-form__back-button:hover {
  background: #e0e0e0;
}
@media screen and (max-width: 375px) {
  .p-contact-form__back-button {
    width: 200px;
    text-align: center;
  }
}
.p-contact-form__complete {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}
.p-contact-form__complete-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}
@media screen and (max-width: 375px) {
  .p-contact-form__complete-title {
    font-size: 2rem;
  }
}
.p-contact-form__complete-description {
  font-size: 1.6rem;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 375px) {
  .p-contact-form__complete-description {
    font-size: 1.4rem;
  }
}
.p-contact-form__complete-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 375px) {
  .p-contact-form__complete-actions {
    flex-direction: column;
    align-items: center;
  }
}
.p-contact-form__complete-button {
  display: inline-block;
  padding: 12px 24px;
  background: #141853;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.p-contact-form__complete-button:hover {
  background: rgb(10.0970873786, 12.1165048544, 41.9029126214);
}
@media screen and (max-width: 375px) {
  .p-contact-form__complete-button {
    width: 200px;
    text-align: center;
  }
}

/* Contact Form 7用のスタイル調整 */
.wpcf7-form {
  font-family: inherit;
}
.wpcf7-form .wpcf7-form-control-wrap:not([data-name=privacy-policy]) .wpcf7-not-valid-tip {
  color: #CB0101 !important;
  font-size: 16px !important;
  font-weight: normal !important;
  margin-top: 8px !important;
  display: block !important;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-not-valid-tip {
  text-align: center !important;
  margin-top: 8px !important;
}
.wpcf7-form .wpcf7-validation-errors {
  display: none !important;
}
.wpcf7-form .wpcf7-response-output,
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7-form .wpcf7-response-output.wpcf7-aborted,
.wpcf7-form .wpcf7-response-output.wpcf7-spam-blocked,
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors.wpcf7-not-valid,
.wpcf7-form .wpcf7-form .wpcf7-response-output,
.wpcf7-form .p-contact-form .wpcf7-response-output {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
.wpcf7-form .screen-reader-response,
.wpcf7-form .screen-reader-response *,
.wpcf7-form .screen-reader-response p,
.wpcf7-form .screen-reader-response ul,
.wpcf7-form .screen-reader-response li,
.wpcf7-form [role=status],
.wpcf7-form [aria-live=polite],
.wpcf7-form [aria-atomic=true],
.wpcf7-form div.screen-reader-response,
.wpcf7-form div.screen-reader-response *,
.wpcf7-form div.screen-reader-response p,
.wpcf7-form div.screen-reader-response ul,
.wpcf7-form div.screen-reader-response li,
.wpcf7-form p[role=status],
.wpcf7-form p[aria-live=polite],
.wpcf7-form p[aria-atomic=true],
.wpcf7-form ul li[id*=wpcf7],
.wpcf7-form li[id*=wpcf7] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  font-size: 0 !important;
  line-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: transparent !important;
  text-indent: -9999px !important;
  white-space: nowrap !important;
}
.wpcf7-form .wpcf7-not-valid {
  border-color: #4B4B4B !important;
}
.wpcf7-form .wpcf7-response-output {
  color: #CB0101 !important;
  font-size: 16px !important;
  margin-top: 20px !important;
  padding: 10px !important;
  border: 1px solid #4B4B4B !important;
  background: #fff5f5 !important;
}
.wpcf7-form .hidden-fields-container,
.wpcf7-form fieldset.hidden-fields-container,
.wpcf7-form .screen-reader-response,
.wpcf7-form .wpcf7-response-output {
  display: none !important;
}
.wpcf7-form p {
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
  padding: 0;
}
.wpcf7-form label {
  display: flex;
  align-items: center;
  width: 135px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  white-space: nowrap;
}
.wpcf7-form label[for=phone],
.wpcf7-form label[for=message],
.wpcf7-form label[for=your-phone],
.wpcf7-form label[for=your-message] {
  margin-left: 66px !important;
}
.wpcf7-form p:has(label[for=phone]) label,
.wpcf7-form p:has(label[for=message]) label,
.wpcf7-form p:has(label[for=your-phone]) label,
.wpcf7-form p:has(label[for=your-message]) label {
  margin-left: 66px !important;
}
.wpcf7-form .p-contact-form__required {
  width: 47px;
  margin-right: 10px;
  display: inline-block;
}
.wpcf7-form .wpcf7-form-control-wrap {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .wpcf7-form .wpcf7-form-control-wrap {
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 327px !important;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7-form .wpcf7-form-control-wrap[data-name=your-phone],
  .wpcf7-form .wpcf7-form-control-wrap[data-name=your-message] {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7-form label[for=your-phone],
  .wpcf7-form label[for=your-message] {
    margin-left: 0 !important;
  }
}
.wpcf7-form input {
  width: 374px;
  padding: 10px;
  border: 1px solid #4b4b4b;
  font-size: 16px;
  line-height: 1.4;
  background: #fff;
}
.wpcf7-form input:focus {
  outline: none;
  border-color: #007cba;
}
@media screen and (max-width: 768px) {
  .wpcf7-form input {
    width: 327px !important;
    max-width: 327px !important;
  }
}
.wpcf7-form input[type=tel],
.wpcf7-form input[name=your-phone] {
  width: 310px;
}
@media screen and (max-width: 768px) {
  .wpcf7-form input[type=tel],
  .wpcf7-form input[name=your-phone] {
    width: 310px !important;
    max-width: 310px !important;
  }
}
.wpcf7-form textarea {
  width: 582px;
  min-height: 120px;
  padding: 10px;
  border: 1px solid #4b4b4b;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.4;
  background: #fff;
  resize: vertical;
}
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #007cba;
}
@media screen and (max-width: 768px) {
  .wpcf7-form textarea {
    width: 327px !important;
    max-width: 327px !important;
  }
}
.wpcf7-form .wpcf7-list-item {
  margin: 0 0 10px 0 !important;
  display: flex !important;
  align-items: center !important;
}
.wpcf7-form .wpcf7-list-item input[type=checkbox] {
  width: 20px !important;
  height: 20px !important;
  margin-right: 12px !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: inline-block !important;
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  border: 1px solid #4b4b4b !important;
  background: #fff !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  vertical-align: top !important;
}
.wpcf7-form .wpcf7-list-item input[type=checkbox]:checked {
  background: #4b4b4b !important;
  border-color: #4b4b4b !important;
  color: #fff !important;
}
.wpcf7-form .wpcf7-list-item label {
  flex: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
  line-height: 1.4 !important;
  font-size: 16px !important;
  white-space: normal !important;
  display: block !important;
  vertical-align: top !important;
}
.wpcf7-form .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 16px !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item {
  margin: 0 0 10px 0 !important;
  display: flex !important;
  align-items: center !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item input[type=checkbox] {
  width: 20px !important;
  height: 20px !important;
  margin-right: 12px !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: inline-block !important;
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  border: 1px solid #4b4b4b !important;
  background: #fff !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  vertical-align: top !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item input[type=checkbox]:checked {
  background: #4b4b4b !important;
  border-color: #4b4b4b !important;
  color: #fff !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item label {
  flex: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
  line-height: 1.4 !important;
  font-size: 16px !important;
  white-space: normal !important;
  display: block !important;
  vertical-align: top !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item input[type=submit],
.wpcf7-form .wpcf7-form .wpcf7-list-item input.wpcf7-submit,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-submit,
.wpcf7-form .wpcf7-form .wpcf7-list-item .c-submit-button,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit],
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-submit,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit].c-submit-button,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-submit.c-submit-button,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form input[type=submit],
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form .wpcf7-submit,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit],
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit .wpcf7-submit,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit .c-submit-button {
  display: inline-block !important;
  position: relative !important;
  width: 317px !important;
  height: 60px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  border: 1px solid #707070 !important;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137) !important;
  background: linear-gradient(135deg, #141853 0%, #4559BF 100%) !important;
  z-index: 2 !important;
  cursor: pointer !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  white-space: nowrap !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center !important;
  line-height: 60px !important;
}
@media screen and (max-width: 375px) {
  .wpcf7-form .wpcf7-form .wpcf7-list-item input[type=submit],
  .wpcf7-form .wpcf7-form .wpcf7-list-item input.wpcf7-submit,
  .wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-submit,
  .wpcf7-form .wpcf7-form .wpcf7-list-item .c-submit-button,
  .wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit],
  .wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-submit,
  .wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit].c-submit-button,
  .wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-submit.c-submit-button,
  .wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form input[type=submit],
  .wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form .wpcf7-submit,
  .wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit],
  .wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit .wpcf7-submit,
  .wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit .c-submit-button {
    width: 280px !important;
    height: 50px !important;
    font-size: 1.4rem !important;
    line-height: 50px !important;
  }
}
.wpcf7-form .wpcf7-form .wpcf7-list-item input[type=submit]:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item input.wpcf7-submit:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-submit:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .c-submit-button:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit]:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-submit:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit].c-submit-button:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-submit.c-submit-button:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form input[type=submit]:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form .wpcf7-submit:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit]:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit .wpcf7-submit:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit .c-submit-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4) !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item input[type=submit]:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item input.wpcf7-submit:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-submit:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .c-submit-button:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit]:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-submit:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit].c-submit-button:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-submit.c-submit-button:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form input[type=submit]:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form .wpcf7-submit:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit]:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit .wpcf7-submit:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit .c-submit-button:active {
  transform: translateY(0) !important;
  transition: transform 0.1s ease !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item input[type=submit]:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item input.wpcf7-submit:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-submit:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .c-submit-button:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit]:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-submit:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit].c-submit-button:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-submit.c-submit-button:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form input[type=submit]:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form .wpcf7-submit:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit]:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit .wpcf7-submit:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit .c-submit-button:focus {
  outline: 2px solid #141853 !important;
  outline-offset: 2px !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit],
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit].c-submit-button,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit],
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit].c-submit-button {
  display: inline-block !important;
  position: relative !important;
  width: 317px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #141853 0%, #4559BF 100%) !important;
  background-color: transparent !important;
  border: 1px solid #707070 !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16) !important;
  text-shadow: none !important;
  cursor: pointer !important;
  text-align: center !important;
  line-height: 60px !important;
  white-space: nowrap !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
@media screen and (max-width: 375px) {
  .wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit],
  .wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit].c-submit-button,
  .wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit],
  .wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit].c-submit-button {
    width: 280px !important;
    height: 50px !important;
    font-size: 1.4rem !important;
    line-height: 50px !important;
  }
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit]:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit].c-submit-button:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit]:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit].c-submit-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4) !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit]:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit].c-submit-button:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit]:active,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit].c-submit-button:active {
  transform: translateY(0) !important;
  transition: transform 0.1s ease !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit]:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=submit].c-submit-button:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit]:focus,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__submit input[type=submit].c-submit-button:focus {
  outline: 2px solid #141853 !important;
  outline-offset: 2px !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__checkbox-item--privacy .wpcf7-list-item-label {
  font-weight: 400 !important;
  margin-left: 17px !important;
  color: #333333 !important;
  font-size: 16px !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__checkbox-item--privacy .wpcf7-list-item-label a {
  color: #3B4EAB !important;
  text-decoration: underline !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__checkbox-item--privacy .wpcf7-list-item-label a:hover {
  color: #2A3A8A !important;
  text-decoration: underline !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance .wpcf7-list-item-label,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-list-item-label,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__checkbox-item--privacy .wpcf7-list-item-label {
  font-weight: 400 !important;
  margin-left: 17px !important;
  color: #333333 !important;
  font-size: 16px !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance .wpcf7-list-item-label a,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-list-item-label a,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__checkbox-item--privacy .wpcf7-list-item-label a {
  color: #3B4EAB !important;
  text-decoration: underline !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance .wpcf7-list-item-label a:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-list-item-label a:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form__checkbox-item--privacy .wpcf7-list-item-label a:hover {
  color: #2A3A8A !important;
  text-decoration: underline !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance .wpcf7-list-item {
  margin: 0 0 10px 0 !important;
  display: flex !important;
  align-items: center !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance .wpcf7-list-item-label {
  font-weight: 400 !important;
  margin-left: 17px !important;
  color: #333333 !important;
  font-size: 16px !important;
  display: inline-block !important;
  cursor: pointer !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance input[type=checkbox] {
  width: 20px !important;
  height: 20px !important;
  margin-right: 0 !important;
  display: inline-block !important;
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  border: 1px solid #4b4b4b !important;
  background: #fff !important;
  cursor: pointer !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance input[type=checkbox]:checked {
  background: #4b4b4b !important;
  border-color: #4b4b4b !important;
  color: #fff !important;
}
@media screen and (max-width: 768px) {
  .wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance {
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 327px !important;
  }
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance .wpcf7-list-item-label,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-list-item-label,
.wpcf7-form .wpcf7-form .wpcf7-list-item label {
  font-weight: 400 !important;
  margin-left: 17px !important;
  color: #333333 !important;
  font-size: 16px !important;
  display: inline-block !important;
  cursor: pointer !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance .wpcf7-list-item-label a,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-list-item-label a,
.wpcf7-form .wpcf7-form .wpcf7-list-item label a {
  color: #3B4EAB !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance .wpcf7-list-item-label a:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-list-item-label a:hover,
.wpcf7-form .wpcf7-form .wpcf7-list-item label a:hover {
  color: #2A3A8A !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance input[type=checkbox] {
  width: 20px !important;
  height: 20px !important;
  margin-right: 0 !important;
  display: inline-block !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  border: 1px solid #4b4b4b !important;
  background: #fff !important;
  cursor: pointer !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance input[type=checkbox]:checked {
  background: #4b4b4b !important;
  border-color: #4b4b4b !important;
  color: #fff !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  width: 20px !important;
  height: 20px !important;
  margin-right: 0 !important;
  display: inline-block !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  border: 1px solid #4b4b4b !important;
  background: #fff !important;
  cursor: pointer !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked {
  background: #4b4b4b !important;
  border-color: #4b4b4b !important;
  color: #fff !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-acceptance input[type=checkbox] {
  width: 20px !important;
  height: 20px !important;
  margin-right: 0 !important;
  display: inline-block !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  border: 1px solid #4b4b4b !important;
  background: #fff !important;
  cursor: pointer !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-acceptance input[type=checkbox]:checked {
  background: #4b4b4b !important;
  border-color: #4b4b4b !important;
  color: #fff !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-not-valid-tip {
  color: #CB0101 !important;
  font-size: 16px !important;
  margin-top: 9px !important;
  display: block !important;
  text-align: center !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-acceptance .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-acceptance .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form .wpcf7-acceptance .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-not-valid-tip {
  color: #CB0101 !important;
  font-size: 16px !important;
  font-weight: normal !important;
  text-align: center !important;
  margin-top: 8px !important;
  display: block !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form .wpcf7-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-list-item .wpcf7-not-valid-tip {
  color: #CB0101 !important;
  font-size: 16px !important;
  font-weight: normal !important;
  text-align: center !important;
  margin-top: 8px !important;
  display: block !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form-control-wrap:not([data-name=privacy-policy]) .wpcf7-not-valid-tip {
  text-align: left !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=checkbox]:checked {
  background: #fff !important;
  border-color: #4b4b4b !important;
  color: #333333 !important;
  accent-color: #333333 !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form input[type=checkbox] {
  accent-color: #333333 !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-list-item input[type=checkbox]:checked {
  background: #fff !important;
  border-color: #4b4b4b !important;
  color: #333333 !important;
  accent-color: #333333 !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-list-item input[type=checkbox] {
  accent-color: #333333 !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item input[type=checkbox]:checked {
  background: #fff !important;
  background-color: #fff !important;
  border-color: #4b4b4b !important;
  color: #333333 !important;
  accent-color: #333333 !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item input[type=checkbox] {
  accent-color: #333333 !important;
  background: #fff !important;
  background-color: #fff !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form * input[type=checkbox]:checked {
  background: #fff !important;
  background-color: #fff !important;
  border-color: #4b4b4b !important;
  color: #333333 !important;
  accent-color: #333333 !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form * input[type=checkbox] {
  accent-color: #4b4b4b !important;
  background: #fff !important;
  background-color: #fff !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form * input[type=checkbox]:checked {
  background: #4b4b4b !important;
  background-color: #4b4b4b !important;
  border-color: #4b4b4b !important;
  color: #fff !important;
}
.wpcf7-form .wpcf7-form .wpcf7-list-item .p-contact-form .wpcf7-form .wpcf7-list-item input[type=checkbox]:checked,
.wpcf7-form .wpcf7-form .wpcf7-list-item .wpcf7-form .wpcf7-list-item input[type=checkbox]:checked,
.wpcf7-form .wpcf7-form .wpcf7-list-item input[type=checkbox]:checked {
  background: #4b4b4b !important;
  background-color: #4b4b4b !important;
  border-color: #4b4b4b !important;
  color: #fff !important;
  accent-color: #4b4b4b !important;
}

.p-contact-thanks-content {
  background-color: #fff;
  padding: 48px 0 127px;
}
@media screen and (max-width: 375px) {
  .p-contact-thanks-content {
    padding: 60px 0 80px;
  }
}
.p-contact-thanks-content__inner {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-contact-thanks-content__inner {
    padding: 0 24px;
  }
}
.p-contact-thanks-content__message {
  margin-top: 35px;
  margin-bottom: 49px;
}
@media screen and (max-width: 768px) {
  .p-contact-thanks-content__message {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
.p-contact-thanks-content__message-main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.4375;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-contact-thanks-content__message-main {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
}
.p-contact-thanks-content__message-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-contact-thanks-content__message-sub {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.p-contact-thanks-content__back {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 51px;
}

.p-404-content {
  background-color: #fff;
  padding: 39px 0 127px;
}
@media screen and (max-width: 375px) {
  .p-404-content {
    padding: 60px 0 80px;
  }
}
.p-404-content__inner {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-404-content__inner {
    padding: 0 24px;
  }
}
.p-404-content__message {
  margin-top: 48px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .p-404-content__message {
    padding: 0 24px;
  }
}
@media screen and (max-width: 768px) {
  .p-404-content__message {
    margin-top: 40px;
    margin-bottom: 48px;
  }
}
.p-404-content__message-main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.4375;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-404-content__message-main {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}
.p-404-content__message-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-404-content__message-sub {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.p-404-content__back {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-service-content {
  background-color: #fff;
  padding: 45px 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-service-content {
    padding: 23px 24px 0 24px;
  }
}
@media screen and (max-width: 320px) {
  .p-service-content {
    padding: 24px 24px 0 24px;
  }
}
.p-service-content__inner {
  max-width: 960px;
  margin: 0 auto;
}
.p-service-content__intro {
  margin-top: 34px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .p-service-content__intro {
    margin-top: 13px;
    margin-bottom: 38px;
  }
}
.p-service-content__intro-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  text-align: left;
}
.p-service-content__cards-section {
  background-color: #DFE0E6;
  padding: 24px 0 21px 0;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .p-service-content__cards-section {
    padding: 25px 0;
    margin-top: 0px;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }
  .p-service-content__cards-section .l-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-service-content .c-service-cards {
  position: relative;
  margin-bottom: 0;
  z-index: 1;
}
.p-service-content__cards-section .c-service-cards--four {
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .p-service-content__cards-section .c-service-cards--four {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media screen and (max-width: 425px) {
  .p-service-content__cards-section .c-service-cards--four {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
.p-service-content__cards-section .c-service-card--tab {
  padding: 23px 19px;
}
@media screen and (max-width: 768px) {
  .p-service-content__cards-section .c-service-card--tab {
    padding: 20px 15px;
  }
  .p-service-content__cards-section .c-service-card--tab .c-service-card__image {
    height: 80px;
    width: auto;
    object-fit: contain;
  }
}
.p-service-content__cards-section .c-service-card--tab .c-service-card__image {
  height: 105px;
  width: auto;
  object-fit: contain;
}
.p-service-content__cards-section .c-service-cards--tabs {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-service-content__cards-section .c-service-cards--tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-service-content__cards-section .c-service-cards--tabs {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .p-service-content__cards-section .c-service-cards--tabs::-webkit-scrollbar {
    display: none;
  }
}
.p-service-content__cards-section .c-service-card--tab {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-service-content__cards-section .c-service-card--tab {
    flex: 0 0 auto;
    width: 155px !important;
    min-width: 155px !important;
    max-width: 155px !important;
    height: 162px !important;
  }
}
.p-service-content__cards-section .c-service-card--tab:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .p-service-content__cards-section .c-service-card--tab:hover {
    transform: none;
  }
}
.p-service-content__cards-section .c-service-card--tab.active {
  border: 2px solid #141853;
}
.p-service-content__cards-section .c-service-card--tab.active .c-service-card__title {
  color: #000000;
  font-weight: 600;
}
.p-service-content__cards-section .c-service-card--tab.active .c-service-card__title::after {
  content: "";
  display: block;
  width: 24px;
  height: 9px;
  margin: 11px auto 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 9'%3E%3Cpath d='M12 9L0 0h24z' fill='%23141853'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-service-content__description {
  position: relative;
  margin-top: 16px;
  padding: 10px 23px 32px 23px;
  z-index: 1;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-service-content__description {
    margin-top: 24px;
    padding: 24px 24px 24px 24px;
  }
}
.p-service-content__description .p-service-content__tab-content {
  display: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-service-content__description .p-service-content__tab-content.active {
  display: block !important;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}
.p-service-content__description-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 375px) {
  .p-service-content .c-service-cards {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 12px;
  }
  .p-service-content .c-service-cards::-webkit-scrollbar {
    display: none;
  }
  .p-service-content__scrollbar {
    margin: 12px 0;
  }
  .p-service-content__scrollbar-track {
    width: 100%;
    height: 8px;
    background-color: #ffffff;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .p-service-content__scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background-color: #BABABA;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  .p-service-content__scrollbar-thumb:hover {
    background-color: #d0d0d0;
  }
  .p-service-content__scrollbar-thumb.dragging {
    background-color: #d0d0d0;
    cursor: grabbing;
  }
}
@media screen and (max-width: 768px) {
  .p-service-content .c-service-cards {
    margin-bottom: 12px;
  }
  .p-service-content__scrollbar {
    display: block;
    margin: 12px 0;
    padding-left: 24px;
    padding-right: 24px;
  }
  .p-service-content__scrollbar-track {
    width: 100%;
    height: 8px;
    background-color: #ffffff;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .p-service-content__scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-color: #BABABA;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  .p-service-content__scrollbar-thumb:hover {
    background-color: #d0d0d0;
  }
  .p-service-content__scrollbar-thumb.dragging {
    background-color: #d0d0d0;
    cursor: grabbing;
  }
  .p-service-content__description {
    margin-top: 12px;
    padding: 24px 24px 24px 24px;
  }
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@media screen and (max-width: 768px) {
  .p-voice-content {
    padding: 40px 0;
  }
}

.p-voice-content {
  background-color: #fff;
  padding: 93px 0 127px;
}
@media screen and (max-width: 768px) {
  .p-voice-content {
    padding: 47px 0;
  }
}
.p-voice-content__inner {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-voice-content__inner {
    padding: 0 24px;
  }
}
.p-voice-content__testimonials {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-voice-content__testimonials {
    margin-top: 17px;
  }
}
.p-voice-content__testimonial {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}
.p-voice-content__testimonial:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-voice-content__testimonial {
    flex-direction: column;
    padding-bottom: 0;
    margin-bottom: 48px;
  }
  .p-voice-content__testimonial:last-child {
    margin-bottom: 0;
  }
}
.p-voice-content__testimonial-avatar {
  margin-right: 48px;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #DFE0E6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-voice-content__testimonial-avatar {
    margin: 0 auto 16px;
  }
}
.p-voice-content__testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-voice-content__testimonial-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-voice-content__testimonial-avatar-img {
    width: 100%;
    height: 100%;
  }
}
.p-voice-content__testimonial-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #141853;
  line-height: 1.4285714286;
  margin-bottom: -2.5px;
  padding-bottom: 11.5px;
  border-bottom: 2px solid #141853;
}
.p-voice-content__testimonial-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-voice-content__testimonial-text {
    line-height: 1.75;
  }
}
.p-voice-content__back {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-right: 83px;
}
@media screen and (max-width: 768px) {
  .p-voice-content__back {
    margin-top: 60px;
    padding-right: 0;
    padding-left: 0;
  }
}

.p-section {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .p-section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .p-section {
    padding: 60px 0;
  }
}

.p-section--strategies {
  position: relative;
  background-color: #F6F7F7;
  overflow: hidden;
}
.p-section--strategies::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-image: url(../images/fv-bg02-pc.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .p-section--strategies::before {
    width: 100%;
    background-image: url(../images/fv-bg02-sp.png);
  }
}
.p-section--strategies::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-color: #141853;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .p-section--strategies::after {
    width: 100%;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
  }
}

.p-section--strategies .p-section__inner {
  position: relative;
  z-index: 2;
}

.p-section--service {
  background-color: #E8E8E8;
}

.p-section--about {
  position: relative;
  background-color: #F6F7F7;
  overflow: hidden;
}
.p-section--about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-color: #141853;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .p-section--about::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 60%);
  }
}
.p-section--about::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 100px;
  width: 200px;
  height: 200px;
  background-image: url(../images/text-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
}
@media screen and (max-width: 768px) {
  .p-section--about::after {
    width: 120px;
    height: 120px;
    left: 20px;
    bottom: 30px;
  }
}

.p-section--about .p-section__inner {
  position: relative;
  z-index: 2;
}

.p-section--recruit {
  position: relative;
  background-color: #F6F7F7;
  overflow: hidden;
}

.p-section--recruit__bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-section--recruit__bg-image {
    width: 70%;
  }
}
.p-section--recruit__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(5deg) scale(1.1);
  transform-origin: center;
}

.p-section--recruit .p-section__inner {
  position: relative;
  z-index: 2;
}

.p-section__title {
  font-family: "Puritan", sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .p-section__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-section__title {
    font-size: 3.2rem;
  }
}

.p-section__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-section__subtitle {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}

.p-section__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .p-section__text {
    font-size: 1.4rem;
  }
}

.p-section__title--white,
.p-section__subtitle--white,
.p-section__text--white {
  color: #ffffff;
}

.p-service {
  background-color: #F6F7F7;
  padding: 130px 0 130px;
  position: relative;
  overflow: hidden;
}
.p-service::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 54.58vw;
  max-width: 786px;
  height: 100%;
  background-color: #DFE0E6;
  clip-path: polygon(52% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}
.p-service .l-inner {
  position: relative;
  z-index: 2;
}

.p-service__header {
  text-align: left;
  margin-bottom: 58px;
}

.p-service__title {
  margin-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .p-service__title {
    margin-bottom: 29px;
  }
}

.p-service__catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.4375;
}

.p-service__description {
  margin: 0 auto;
  text-align: left;
}
.p-service__description p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 0 0 16px 0;
  display: block;
  text-align: left;
}
.p-service__description p:last-child {
  margin-bottom: 0;
}

.p-service__button {
  text-align: center;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .p-service {
    padding: 60px 0;
  }
  .p-service::before {
    width: 54.58vw;
    max-width: 786px;
    height: 100%;
    background-color: #DFE0E6;
    clip-path: polygon(52% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .p-service__catchphrase {
    font-size: 2.8rem;
  }
  .p-service__header {
    margin-bottom: 40px;
  }
  .p-service__cards {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-service {
    padding-top: 47px;
    padding-bottom: 55px;
    margin-top: 0;
  }
  .p-service::before {
    display: none;
  }
  .p-service::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #DFE0E6;
    clip-path: polygon(100% 6%, 0% 100%, 100% 100%);
    z-index: 1;
  }
  .p-service__catchphrase {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  .p-service__description {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left;
  }
  .p-service__description p {
    margin: 0 0 12px 0;
    display: block;
    text-align: left;
  }
  .p-service__description p:last-child {
    margin-bottom: 0;
  }
  .p-service__header {
    margin-bottom: 47px;
  }
  .p-service__cards {
    margin-bottom: 24px;
    gap: 20px;
  }
  .p-service__button {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-service {
    padding-top: 52px;
    padding-bottom: 55px;
    margin-top: 0;
  }
  .p-service::before {
    display: none;
  }
  .p-service::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #DFE0E6;
    clip-path: polygon(100% 6%, 0% 100%, 100% 100%);
    z-index: 1;
  }
  .p-service__catchphrase {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .p-service__description {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left;
  }
  .p-service__description p {
    margin-bottom: -7px;
    display: block;
    text-align: left;
  }
  .p-service__description p:last-child {
    margin-bottom: 0;
  }
  .p-service__header {
    margin-bottom: 36px;
  }
  .p-service__cards {
    margin-bottom: 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p-service__button {
    margin-top: 20px;
  }
}
.p-about {
  position: relative;
  width: 100%;
  min-height: 58.889vw;
  max-height: 848px;
  overflow: hidden;
}
.p-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45.625vw;
  max-width: 657px;
  height: 58.889vw;
  max-height: 848px;
  background-color: #141853;
  clip-path: polygon(0 0, 100% 0, 34.5% 100%, 0 100%);
  z-index: -1;
}
.p-about .l-inner {
  position: relative;
  z-index: 2;
  padding: 121px 0 126px;
}

@media screen and (max-width: 1024px) {
  .p-about__header {
    margin-bottom: 48px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__header {
    margin-bottom: 32px;
    padding-left: 0;
    text-align: center;
  }
}

.p-about__title {
  margin-bottom: 33px;
}

.p-about__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-bottom: 52px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  align-items: start;
  grid-auto-rows: min-content;
}
@media screen and (max-width: 1024px) {
  .p-about__cards {
    gap: 32px;
    margin-bottom: 48px;
    justify-items: center;
    max-width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .p-about__cards {
    grid-template-columns: 1fr;
    gap: 33px;
    margin-bottom: 2px;
    justify-items: center;
  }
}

.p-about__card {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  width: 32.153vw;
  max-width: 463px;
  height: 27.292vw;
  max-height: 393px;
  align-self: start;
}

.p-about__card-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p-about__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about__card-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .p-about__card-title {
    font-size: 1.6rem;
    padding: 14px 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__card-title {
    font-size: 1.4rem;
    padding: 12px 16px;
  }
}

.p-about__button {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-about__button {
    margin-top: 32px;
  }
}

.p-about__circular-text {
  position: absolute;
  bottom: 9.17vw;
  left: 7.99vw;
  width: 14.24vw;
  height: 14.24vw;
  z-index: 3;
}
@media (min-width: 1440px) {
  .p-about__circular-text {
    bottom: 132px;
    left: 115px;
    width: 205px;
    height: 205px;
  }
}
@media screen and (max-width: 1024px) {
  .p-about__circular-text {
    bottom: 9.17vw;
    left: 7.99vw;
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__circular-text {
    bottom: 9.17vw;
    left: 7.99vw;
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__circular-text {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1439px) {
  .p-about {
    min-height: auto;
    max-height: none;
  }
  .p-about .l-inner {
    padding: 121px 0 126px;
  }
  .p-about::before {
    height: 100%;
    max-height: none;
  }
  .p-about__cards {
    justify-items: center;
    max-width: fit-content;
  }
}
@media (min-width: 1440px) and (max-width: 2559px) {
  .p-about {
    min-height: auto;
    max-height: none;
  }
  .p-about .l-inner {
    padding: 121px 0 126px;
  }
}
@media (min-width: 2560px) {
  .p-about {
    min-height: auto;
    max-height: none;
  }
  .p-about .l-inner {
    padding: 121px 0 126px;
  }
  .p-about::before {
    width: 50vw;
    max-width: 2048px;
    clip-path: polygon(0 0, 100% 0, 31.5% 100%, 0% 100%);
  }
}
@media screen and (max-width: 1024px) {
  .p-about {
    min-height: auto;
  }
  .p-about .l-inner {
    padding: 52px 32px !important;
    box-sizing: border-box;
  }
  .p-about::before {
    height: 100%;
    max-height: none;
    width: 45.625vw;
    max-width: 657px;
    clip-path: polygon(0 0, 100% 0, 34.5% 100%, 0 100%);
  }
}
@media screen and (max-width: 768px) {
  .p-about {
    max-height: none;
  }
  .p-about .l-inner {
    padding: 52px 24px;
  }
  .p-about::before {
    width: 100%;
    max-width: none !important;
    height: 100%;
    max-height: none !important;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
  }
  .p-about__card {
    width: 100%;
    max-width: 327px;
    aspect-ratio: 463/393;
    height: auto;
    box-sizing: border-box;
  }
  .p-about__card-title {
    font-size: 1.8rem;
  }
  .p-about__cards {
    width: 100%;
    box-sizing: border-box;
    gap: 20px;
  }
}
@media screen and (max-width: 320px) {
  .p-about__card {
    width: 100% !important;
    max-width: calc(100vw - 72px) !important;
    aspect-ratio: 463/393 !important;
    height: auto !important;
    box-sizing: border-box;
  }
  .p-about__cards {
    gap: 20px !important;
    width: 100%;
    box-sizing: border-box;
  }
}
.p-recruit {
  position: relative;
  width: 100%;
  min-height: 45.417vw;
  max-height: none;
  padding-top: 73px;
  padding-bottom: 70px;
  overflow: visible;
  background-color: #ffffff;
}
@media (min-width: 2560px) {
  .p-recruit {
    overflow: hidden;
  }
}
.p-recruit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (min-width: 2560px) {
  .p-recruit__bg {
    bottom: 0;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
.p-recruit__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 2560px) {
  .p-recruit__bg picture {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
.p-recruit__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 2560px) {
  .p-recruit__bg-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: initial;
    object-position: bottom center;
  }
}
.p-recruit__blue-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 15.625vw;
  max-width: 657px;
  height: 100px;
  background-color: #A8AEC3;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
  z-index: 2;
}
@media (min-width: 1440px) {
  .p-recruit__blue-triangle {
    height: 456px;
  }
}
.p-recruit .l-inner {
  position: relative;
  z-index: 3;
  height: 100%;
}

@media (min-width: 1025px) and (max-width: 1439px) {
  .p-recruit__blue-triangle {
    width: 45.625vw;
    max-width: 657px;
    height: 35vh;
    min-height: 180px;
    clip-path: polygon(0 0, 34.5% 0, 0 100%);
    z-index: 2;
    background-color: #A8AEC3;
  }
}
@media (min-width: 1440px) {
  .p-recruit {
    min-height: auto;
    padding-bottom: 40px;
  }
}
.p-recruit__title {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .p-recruit__title {
    margin-bottom: 7px;
  }
}

.p-recruit__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.p-recruit__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 38.542vw;
  max-width: 555px;
}

.p-recruit__catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #141853;
  line-height: 1.4375;
  margin-bottom: 37px;
}

.p-recruit__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
.p-recruit__description p {
  margin-bottom: 1em;
}

.p-recruit__button {
  margin-top: 20px;
}
.p-recruit__button--sp {
  display: none;
}
.p-recruit__button--pc {
  display: block;
}

.p-recruit__image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: visible;
  margin-top: -20px;
}

.p-recruit__image-shadow {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 38.611vw;
  max-width: 556px;
  height: 35.417vw;
  max-height: 510px;
  background-color: #141853;
  z-index: 1;
  clip-path: polygon(24% 0, 100% 0, 80% 100%, 0 100%);
}

.p-recruit__image-person {
  width: 38.611vw;
  max-width: 556px;
  height: 35.417vw;
  max-height: 510px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

@media screen and (max-width: 1024px) {
  .p-recruit {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
  }
  .p-recruit .p-recruit__image {
    right: 0;
    justify-content: flex-end;
  }
  .p-recruit__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    text-align: left;
  }
  .p-recruit__text {
    width: auto;
    max-width: 560px;
  }
  .p-recruit__catchphrase {
    font-size: 3.2rem;
  }
  .p-recruit__description {
    font-size: 1.5rem;
  }
  .p-recruit__bg {
    bottom: 0;
    height: 100%;
    overflow: hidden;
  }
  .p-recruit__image-shadow {
    width: 45vw;
    max-width: 380px;
    height: 42vw;
    max-height: 350px;
    top: 10px;
    left: 10px;
  }
  .p-recruit__image-person {
    width: 45vw;
    max-width: 380px;
    height: 42vw;
    max-height: 350px;
  }
  .p-recruit__blue-triangle {
    width: 45.625vw;
    max-width: 657px;
    height: 32vh;
    min-height: 150px;
    clip-path: polygon(0 0, 34.5% 0, 0 100%);
    z-index: 2;
    background-color: #A8AEC3;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit {
    padding-top: 56px;
    padding-bottom: 55px;
    min-height: auto;
    max-height: none;
    overflow: visible;
  }
  .p-recruit .p-recruit__image {
    right: 0;
    justify-content: flex-end;
  }
  .p-recruit__content {
    gap: 24px;
    overflow: visible;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
  }
  .p-recruit__text {
    width: 100%;
    max-width: none;
    gap: 11px;
  }
  .p-recruit__button--pc {
    display: none;
  }
  .p-recruit__button--sp {
    display: flex;
    justify-content: center;
    margin-top: 11px;
  }
  .p-recruit__catchphrase {
    font-size: 2.4rem;
    text-align: left;
    margin-bottom: -4px;
  }
  .p-recruit__description {
    font-size: 1.6rem;
    text-align: left;
  }
  .p-recruit__description br:first-of-type {
    display: none;
  }
  .p-recruit .p-recruit__image {
    width: 64vw;
    max-width: 280px;
    height: auto;
    aspect-ratio: 280/170;
    margin: 0 0 0 auto;
    position: relative;
    right: 0;
  }
  .p-recruit__image-shadow {
    width: 100%;
    height: 100%;
    top: 10px;
    left: 10px;
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 97%);
  }
  .p-recruit__image-person {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  }
  .p-recruit__blue-triangle {
    display: none;
  }
  .p-recruit__bg {
    display: block;
    bottom: 0;
    height: 100%;
    left: 0;
    width: 100%;
  }
  .p-recruit__bg picture {
    width: 100%;
    height: 100%;
  }
  .p-recruit__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
@media screen and (max-width: 375px) {
  .p-recruit .p-recruit__image {
    margin: 0 0 0 auto;
    position: relative;
    right: -6.4vw;
  }
}
.p-news {
  position: relative;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 125px;
  background-color: #ffffff;
}
.p-news .l-inner {
  position: relative;
  z-index: 2;
}

.p-news__header {
  margin-bottom: 35px;
}

.p-news__list {
  margin-bottom: 40px;
}

.p-news__item {
  padding: 29.5px 0 12px;
  border-bottom: 1px solid #707070;
}
.p-news__item:first-child {
  padding-top: 0;
}
.p-news__item--01 {
  padding: 29.5px 0 12px;
}
.p-news__item--02 {
  padding: 25px 0 12px;
}
.p-news__item--03 {
  padding: 22px 0 12px;
}

.p-news__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #141853;
  line-height: 1.8571428571;
  white-space: nowrap;
  flex-shrink: 0;
}

.p-news__title {
  margin: 0;
  flex-grow: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #000000;
}

.p-news__link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
  color: #000000;
}
@media (hover: hover) and (pointer: fine) {
  .p-news__link:hover .p-news__title {
    color: #141853;
  }
}

.p-news__button {
  text-align: right;
  overflow: visible;
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .p-news {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .p-news__header {
    margin-bottom: 40px;
  }
  .p-news__list {
    margin-bottom: 40px;
  }
  .p-news__item {
    padding: 20px 0;
  }
  .p-news__item--01 {
    padding: 20px 0;
  }
  .p-news__item--02 {
    padding: 18px 0;
  }
  .p-news__item--03 {
    padding: 16px 0;
  }
  .p-news__link {
    gap: 12px;
  }
  .p-news__date {
    font-size: 1.3rem;
    min-width: auto;
  }
  .p-news__title {
    font-size: 1.5rem;
  }
  .p-news__button-link {
    padding: 14px 28px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-news {
    padding-top: 52px;
    padding-bottom: 54px;
  }
  .p-news__header {
    margin-bottom: 33px;
  }
  .p-news__list {
    margin-bottom: 31px;
  }
  .p-news__item {
    padding: 12px 0;
  }
  .p-news__item--01 {
    padding: 12px 0;
  }
  .p-news__item--02 {
    padding: 27px 0 10px;
  }
  .p-news__item--03 {
    padding: 27px 0 10px;
  }
  .p-news__link {
    gap: 10px;
  }
  .p-news__date {
    font-size: 1.4rem;
  }
  .p-news__title {
    font-size: 1.6rem;
  }
  .p-news__button {
    justify-content: center;
  }
  .p-news__button-link {
    padding: 10px 20px;
    font-size: 1.1rem;
  }
}
.p-contact {
  position: relative;
  width: 100%;
  height: 413px;
  overflow: hidden;
  background-color: #141853;
  padding: 40px 0;
}
.p-contact .l-inner {
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.p-contact__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  width: 100%;
  height: 413px;
}

.p-contact__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 4;
}

.p-contact__title {
  font-family: "Puritan", sans-serif;
  font-size: 6.4rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.484375;
  margin-bottom: 10px;
  margin-top: -20px;
}

.p-contact__description {
  margin-bottom: 20px;
}
.p-contact__description p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.p-contact__description p:last-child {
  margin-bottom: 0;
}

.p-contact__buttons {
  display: flex;
  gap: 38px;
  align-items: flex-start;
}

.p-contact__button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 460px;
  height: 138px;
  padding: 28px 32px 29px 42px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.p-contact__button-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.p-contact__button-title {
  font-family: "Puritan", sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
}
.p-contact__button-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.075em;
}
.p-contact__button-arrow {
  width: 50px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 20'%3e%3cpath d='M0 10 L35 10 M35 10 L25 2 M35 10 L25 18' stroke='%23ffffff' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  margin-left: auto;
  margin-right: 14px;
  display: block;
}
.p-contact__button--entry {
  position: relative;
  background: none;
  border: none;
  color: #ffffff;
  overflow: hidden;
  padding: 30px 35px 32px 45px;
}
.p-contact__button--entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 460 138'%3e%3cdefs%3e%3clinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3e%3cstop offset='0%25' style='stop-color:%23141853'/%3e%3cstop offset='100%25' style='stop-color:%234559BF'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpolygon points='0,0 433,0 460,138 0,138' fill='url(%23grad)' stroke='%23ffffff' stroke-width='1'/%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
.p-contact__button--entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.p-contact__button--entry:hover .p-contact__button-arrow {
  transform: translateX(4px);
}
.p-contact__button--contact {
  position: relative;
  background: none;
  border: none;
  color: #141853;
  overflow: hidden;
}
.p-contact__button--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 460 138'%3e%3cpolygon points='0,0 434,0 460,138 0,138' fill='%23DFE0E6' stroke='%23ffffff' stroke-width='1'/%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
.p-contact__button--contact .p-contact__button-content {
  margin-left: 13px;
  margin-top: 10px;
  gap: 0;
}
.p-contact__button--contact .p-contact__button-arrow {
  margin-right: -9px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 20'%3e%3cpath d='M0 10 L35 10 M35 10 L25 2 M35 10 L25 18' stroke='%23141853' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.p-contact__button--contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.p-contact__button--contact:hover .p-contact__button-arrow {
  transform: translateX(4px);
}

.p-contact__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
  z-index: 2;
}
.p-contact__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .p-contact {
    height: auto;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #141853;
  }
  .p-contact__content {
    grid-template-columns: 1fr;
    gap: 0;
    height: auto;
  }
  .p-contact__text {
    padding: 0 40px;
    text-align: center;
  }
  .p-contact__text::after {
    display: none;
  }
  .p-contact__title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  .p-contact__description {
    margin-bottom: 30px;
  }
  .p-contact__description p {
    font-size: 1.5rem;
    color: #ffffff;
  }
  .p-contact__buttons {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-contact__button {
    width: 100%;
    max-width: 400px;
    height: 120px;
    padding: 16px 24px;
  }
  .p-contact__button-title {
    font-size: 1.6rem;
  }
  .p-contact__button-subtitle {
    font-size: 1.1rem;
  }
  .p-contact__button--entry {
    padding: 18px 28px 20px 32px;
  }
  .p-contact__button--contact {
    margin-left: 0;
  }
  .p-contact__bg {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    width: 63%;
    max-width: 645px;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-contact {
    height: auto;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 48px;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    box-sizing: border-box;
  }
  .p-contact__content {
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
  }
  .p-contact__text {
    padding: 0;
    position: static;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: keep-all;
  }
  .p-contact__title {
    font-size: 4.8rem;
    margin-bottom: 12px;
    text-align: left;
  }
  .p-contact__description {
    margin-bottom: 35px;
    text-align: left;
  }
  .p-contact__description p {
    font-size: 1.6rem;
  }
  .p-contact__buttons {
    flex-direction: column;
    align-items: center;
    gap: 18.5px;
  }
  .p-contact__button {
    width: 100%;
    max-width: 327px;
    height: 98px;
    padding: 12px 16px;
    box-sizing: border-box;
  }
  .p-contact__button-title {
    font-size: 3.2rem;
  }
  .p-contact__button-subtitle {
    font-size: 1.4rem;
  }
  .p-contact__button--entry {
    padding: 14px 18px 16px 22px;
  }
  .p-contact__button-content {
    text-align: left;
  }
  .p-contact__bg {
    display: block !important;
    bottom: 0;
    top: auto;
    right: 0;
    left: auto;
    width: 69.07vw;
    max-width: 100%;
    height: auto;
    aspect-ratio: 259/233;
    z-index: 1;
    box-sizing: border-box;
  }
  .p-contact__bg picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .p-contact__bg-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
@media screen and (max-width: 375px) {
  .p-contact {
    overflow-x: hidden;
  }
  .p-contact__button {
    width: 100% !important;
    max-width: calc(100vw - 72px) !important;
    box-sizing: border-box;
  }
  .p-contact__bg {
    width: 100%;
    max-width: 69.07vw;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 320px) {
  .p-contact__button {
    width: 100% !important;
    max-width: calc(100vw - 72px) !important;
    box-sizing: border-box;
    padding: 10px 12px !important;
  }
  .p-contact__button-title {
    font-size: 2.8rem !important;
  }
  .p-contact__button-subtitle {
    font-size: 1.2rem !important;
  }
  .p-contact__button--entry {
    padding: 12px 16px 14px 20px !important;
  }
  .p-contact__button--contact {
    padding: 12px 14px 14px 14px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-md-none {
    display: none;
  }
}

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

@media screen and (max-width: 1024px) {
  .u-lg-none {
    display: none;
  }
}

.u-lg-show {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-lg-show {
    display: block;
  }
}

.u-dib {
  display: inline-block;
}

.u-flex {
  display: flex;
}/*# sourceMappingURL=style.css.map */