@import url("https://fonts.googleapis.com/css2?family=Forum&family=Noto+Sans+JP:wght@100..900&display=swap");
@font-face {
  font-family: "Moderat";
  src: url("../fonts/Moderat-Extended-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Moderat Extended";
  src: url("../fonts/Moderat-Extended-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 56.25%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #202d37;
  background-color: #fafafa;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.u-hidden {
  display: none !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-flex {
  display: flex !important;
}

.u-inline-flex {
  display: inline-flex !important;
}

@media (max-width: 768px) {
  .u-md-hidden {
    display: none !important;
  }
}

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

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-sm {
  margin-bottom: 0.5rem !important;
}

.u-mb-md {
  margin-bottom: 1rem !important;
}

.u-mb-lg {
  margin-bottom: 2rem !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-sm {
  margin-top: 0.5rem !important;
}

.u-mt-md {
  margin-top: 1rem !important;
}

.u-mt-lg {
  margin-top: 2rem !important;
}

.u-pb-sm {
  padding-bottom: 0.5rem !important;
}

.u-pb-md {
  padding-bottom: 1rem !important;
}

.u-pt-sm {
  padding-top: 0.5rem !important;
}

.u-pt-md {
  padding-top: 1rem !important;
}

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

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

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

.u-fw-bold {
  font-weight: bold !important;
}

.u-fw-normal {
  font-weight: normal !important;
}

.u-text-sm {
  font-size: 0.875rem !important;
}

.u-text-md {
  font-size: 1rem !important;
}

.u-text-lg {
  font-size: 1.5rem !important;
}

.u-color-key {
  color: #0c6cce !important;
}

.u-color-accent {
  color: #ff6b00 !important;
}

.u-color-muted {
  color: #666 !important;
}

.u-color-beige {
  color: #e6debd !important;
}

.u-color-white {
  color: #fff !important;
}

.u-bg-key {
  background-color: #0c6cce !important;
  color: #fff !important;
}

.u-bg-accent {
  background-color: #ff6b00 !important;
  color: #fff !important;
}

.u-bg-white {
  background-color: #fff !important;
}

.u-bg-gray {
  background-color: #fafafa !important;
}

.u-border {
  border: 1px solid #eee !important;
}

.u-border-key {
  border: 1px solid #0c6cce !important;
}

.u-flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.u-flex-between {
  display: flex !important;
  justify-content: space-between !important;
}

.u-flex-column {
  display: flex !important;
  flex-direction: column !important;
}

.u-font-en {
  font-family: Roboto, sans-serif !important;
}

.u-font-mod {
  font-family: "Moderat", sans-serif !important;
}

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

.l-container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.l-header {
  padding: 2rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 768px) {
  .l-header {
    padding: 10px 0;
  }
}

.l-footer {
  background-color: #0c6cce;
  padding: 2rem 0;
  border-radius: 10px 10px 0 0;
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  width: 95%;
}
.p-header__logo {
  width: 14%;
  transition: 0.3s;
  transition: 0.3s;
}
.p-header__logo img {
  transition: 0.3s;
}
@media (max-width: 768px) {
  .p-header__logo {
    width: 21%;
  }
  .p-header__logo.is-active {
    position: fixed;
    top: 40px;
    left: 30px;
    z-index: 999;
    width: 14%;
  }
  .p-header__logo.is-active img {
    filter: brightness(0) saturate(100%);
  }
}
.p-header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5vw;
}
.p-header__nav-btn {
  display: none;
}
@media (max-width: 768px) {
  .p-header__nav-btn {
    display: block;
  }
  .p-header__nav-btn span {
    position: relative;
    width: 25px;
    height: 2px;
    background: #fff;
    display: block;
    transition: 0.3s;
  }
  .p-header__nav-btn span::before, .p-header__nav-btn span::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }
  .p-header__nav-btn span::before {
    top: -7px;
  }
  .p-header__nav-btn span::after {
    bottom: -7px;
  }
  .p-header__nav-btn.is-active {
    position: fixed;
    z-index: 999;
    right: 30px;
    top: 50px;
  }
  .p-header__nav-btn.is-active span {
    background: none !important;
  }
  .p-header__nav-btn.is-active span::before, .p-header__nav-btn.is-active span::after {
    background: #202d37 !important;
    bottom: 0;
    top: 0;
  }
  .p-header__nav-btn.is-active span::before {
    transform: rotate(45deg);
  }
  .p-header__nav-btn.is-active span::after {
    transform: rotate(135deg);
  }
}
@media (max-width: 768px) {
  .p-header__nav-bg {
    display: none;
  }
  .p-header__nav-bg.is-active {
    position: fixed;
    z-index: 150;
    background: #000;
    height: 100%;
    width: 100%;
    inset: 0;
    opacity: 0.3;
  }
}
.p-header__nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5vw;
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .p-header__nav-list {
    display: none;
    position: fixed;
    background: #fff;
    border-radius: 20px;
    padding: 65px 20px 25px;
    top: 15px;
    left: 50%;
    transform: translate(-50%, 0%);
    height: fit-content;
    width: 95%;
    gap: 15px;
    z-index: 200;
  }
}
.p-header__nav-item {
  font-size: clamp(1.4rem, 1.4vw, 2rem);
}
.p-header__nav-item a {
  transition: 0.3s;
}
@media (max-width: 768px) {
  .p-header__nav-item {
    color: #202d37;
    font-size: clamp(1.4rem, 4vw, 2rem);
  }
  .p-header__nav-item a {
    background: rgba(32, 45, 55, 0.1);
    display: block;
    padding: 15px;
    border-radius: 5px;
  }
  .p-header__nav-item + * {
    margin-top: 10px;
  }
}
.p-header__cta {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-header__cta {
    position: fixed;
    bottom: 10px;
    width: calc(100% - 20px);
    left: 10px;
    right: 10px;
    z-index: 100;
  }
  .p-header__cta > * {
    width: 50%;
  }
}
.p-header__cta > * {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0705882353);
}
.p-header.is-scrolled .p-header__nav-item a {
  color: #202d37;
}
.p-header.is-scrolled .p-header__nav-btn span::before,
.p-header.is-scrolled .p-header__nav-btn span::after,
.p-header.is-scrolled .p-header__nav-btn span {
  background: #0c6cce;
}

.p-footer {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 0;
  background-image: url("../images/footer-bg.webp");
  background-size: cover;
  background-position: center top;
}
@supports not (background-image: url("../images/footer-bg.webp")) {
  .p-footer {
    background-image: url("../images/footer-bg.jpg");
  }
}
.p-footer * {
  color: #fff;
  font-weight: 700;
}
.p-footer__inner {
  display: flex;
  justify-content: space-between;
  width: 95%;
  max-width: 1180px;
}
@media (max-width: 768px) {
  .p-footer__inner {
    flex-direction: column;
  }
}
.p-footer__rightbox {
  width: 50%;
  margin-right: -5%;
}
@media (max-width: 768px) {
  .p-footer__rightbox {
    width: 100%;
    margin-right: 0;
    order: -1;
    margin-top: 50px;
  }
}
.p-footer__leftbox {
  padding: 80px 0 140px;
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .p-footer__leftbox {
    width: 100%;
    padding: 80px 0 200px;
  }
}
@media (max-width: 768px) {
  .p-footer__logo {
    width: 30%;
  }
}
.p-footer__company {
  display: flex;
  align-items: center;
  gap: 20px 3%;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .p-footer__company {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-footer__message {
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
}
@media (max-width: 768px) {
  .p-footer__message {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }
}
.p-footer__tel {
  margin-bottom: 50px;
}
.p-footer__tel-title {
  font-size: clamp(1.6rem, 2vw, 2rem);
}
.p-footer__tel-number {
  font-size: clamp(4rem, 5vw, 6.5rem);
  line-height: 1em;
}
@media (max-width: 768px) {
  .p-footer__tel-number {
    font-size: clamp(4rem, 13vw, 6.5rem);
  }
}
.p-footer__tel-number a {
  font-weight: 500;
  transition: 0.3s;
}
.p-footer__tel-number a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.p-footer__office-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
.p-footer__swiper {
  height: 100%;
  width: calc(50% - 10px);
  position: absolute !important;
}
@media (max-width: 768px) {
  .p-footer__swiper {
    position: relative !important;
    width: 100%;
    height: auto;
  }
}
.p-footer__swiperbox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 800px;
  position: relative;
  overflow: hidden;
  right: 0;
  top: 0;
}
@media (max-width: 768px) {
  .p-footer__swiperbox {
    flex-direction: column;
    gap: 10px;
    width: 100vw;
    margin-left: -2.5%;
  }
}
.p-footer__swiper-up {
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .p-footer__swiper-up {
    left: unset;
    top: unset;
  }
}
.p-footer__swiper-down {
  left: calc(50% + 10px);
  top: 0;
}
@media (max-width: 768px) {
  .p-footer__swiper-down {
    left: unset;
    top: unset;
  }
}
.p-footer__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.p-footer__swiper-item {
  height: fit-content;
  background: #000;
}
.p-footer__swiper-item img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.p-footer .marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 8.9rem;
  opacity: 0.1;
  color: #fff;
  line-height: 1em;
}
@media (max-width: 768px) {
  .p-footer .marquee {
    bottom: 80px;
  }
}
.p-footer .marquee * {
  line-height: 1em;
  font-weight: 500;
}

.c-button {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
  background: #fff;
  color: #0c6cce;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  text-decoration: none !important;
}
.c-button--key {
  background-color: #0c6cce;
  color: #fff;
}
.c-button--key:hover {
  background-color: #09539e;
}
.c-button--accent {
  background-color: #ff6b00;
  color: #fff;
}
.c-button--accent:hover {
  background-color: #cc5600;
}
.c-button--outline {
  border: 1px solid #0c6cce;
  color: #0c6cce;
}
.c-button--outline:hover {
  background-color: #0c6cce;
  color: #fff;
}

.marquee {
  overflow: hidden;
  font-family: Roboto, sans-serif;
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  white-space: nowrap;
  padding: 1rem 0;
}
.marquee__inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}
@media (max-width: 768px) {
  .marquee__inner {
    animation: marquee-scroll 50s linear infinite;
  }
}
.marquee span {
  display: inline-block;
  padding-right: 4rem;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-mv {
  padding: 15% 0 18%;
  background-image: url("../images/mv-bg.webp");
  background-size: cover;
  background-position: center top;
}
@supports not (background-image: url("../images/mv-bg.webp")) {
  .p-mv {
    background-image: url("../images/mv-bg.jpg");
  }
}
@media (max-width: 768px) {
  .p-mv {
    padding: 25% 0 18%;
  }
}
.p-mv__catch {
  color: #fff;
  font-weight: 700;
  margin-bottom: 3%;
}
@media (max-width: 768px) {
  .p-mv__catch {
    margin-bottom: 6%;
  }
}
.p-mv__catch * {
  display: block;
}
.p-mv__catch__text-md {
  font-size: clamp(1.6rem, 5vw, 7.2rem);
}
@media (max-width: 768px) {
  .p-mv__catch__text-md {
    font-size: clamp(1.7rem, 5.5vw, 7.2rem);
    line-height: 1em;
  }
}
.p-mv__catch__text-lg {
  font-size: clamp(2rem, 11vw, 15rem);
}
.p-mv__catch__text-sm {
  font-size: clamp(1.5rem, 4vw, 5.4rem);
}
@media (max-width: 768px) {
  .p-mv__catch__text-sm {
    font-size: clamp(1.7rem, 5.5vw, 5.4rem);
  }
}
.p-mv__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
@media (max-width: 768px) {
  .p-mv__features {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-mv__feature {
  padding: 15px;
  text-align: center;
  background: #fff;
  border-radius: 4px;
}
.p-mv__feature-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw, 2.3rem);
}
.p-mv__feature-detail {
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 3.3rem);
  height: calc(100% - 4rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-mv__feature-detail {
    height: 2em;
  }
}
.p-mv__feature-detail strong {
  font-size: clamp(2rem, 5vw, 6.9rem);
  letter-spacing: -0.2px;
  line-height: 1em;
}
@media (max-width: 768px) {
  .p-mv__feature-detail strong {
    font-size: clamp(2rem, 11vw, 3.8rem);
    padding: 0 3px;
  }
}
.p-mv__feature-detail-sm {
  font-size: clamp(2rem, 3vw, 2.6rem);
}
@media (max-width: 768px) {
  .p-mv__feature-detail-sm {
    font-size: clamp(1.8rem, 4vw, 3.8rem);
  }
}
.p-mv__feature-detail-md {
  font-size: clamp(2rem, 3vw, 3.1rem);
}
@media (max-width: 768px) {
  .p-mv__feature-detail-md {
    font-size: clamp(1.8rem, 4vw, 3.8rem);
  }
}
.p-mv__feature-detail-lg {
  font-size: clamp(2rem, 3vw, 3.8rem);
}
@media (max-width: 768px) {
  .p-mv__feature-detail-lg {
    font-size: clamp(2rem, 5vw, 3.8rem);
  }
}

.p-branding-message {
  padding: 200px 0;
}
@media (max-width: 768px) {
  .p-branding-message {
    padding: 70px 0;
  }
}
.p-branding-message__title {
  font-size: clamp(1.6rem, 3vw, 4.6rem);
  margin-bottom: 70px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-branding-message__title {
    font-size: clamp(2.2rem, 6.5vw, 4.6rem);
    margin-bottom: 30px;
  }
}
.p-branding-message__intro {
  font-size: clamp(1.6rem, 2.5vw, 3.6rem);
  font-weight: 500;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .p-branding-message__intro {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    margin-bottom: 30px;
  }
}
.p-branding-message__conclusion {
  font-size: clamp(1.6rem, 2.5vw, 3.6rem);
  font-weight: 500;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .p-branding-message__conclusion {
    margin-top: 30px;
    font-size: clamp(2rem, 5.5vw, 3.6rem);
  }
}
.p-branding-message .l-container {
  max-width: 915px;
}

.p-facts__item {
  background: #fff;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.06);
}
.p-facts__item + * {
  margin-top: 20px;
}
.p-facts__label {
  background: #0c6cce;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 3.1rem);
  font-weight: 700;
  width: 20%;
  min-width: 3rem;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-right: 2%;
  padding-left: 1%;
}
@media (max-width: 768px) {
  .p-facts__label {
    font-size: clamp(1.8rem, 5vw, 3.1rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding-left: 0%;
  }
}
.p-facts__label::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 20%;
  background: url(../images/p-facts-parts.svg) right center/cover no-repeat;
  height: 100%;
}
@media (max-width: 768px) {
  .p-facts__label::after {
    /* background: url(../images/p-facts-parts.svg) right center no-repeat;
    background-size: auto 100%; */
    content: none;
  }
}
.p-facts__text {
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-weight: 700;
  padding: 20px 5%;
}
@media (max-width: 768px) {
  .p-facts__text {
    font-size: clamp(2rem, 3.5vw, 3rem);
    padding: 15px 3%;
  }
}

.p-branding-point {
  background-color: #fff;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 200px 0;
}
@media (max-width: 768px) {
  .p-branding-point {
    padding: 70px 0;
  }
}
.p-branding-point__title {
  font-size: clamp(1.6rem, 3vw, 4.6rem);
  margin-bottom: 70px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-branding-point__title {
    margin-bottom: 30px;
    font-size: clamp(2rem, 5.5vw, 3.6rem);
  }
}
.p-branding-point__list {
  counter-reset: number;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .p-branding-point__list {
    width: fit-content;
    margin: auto;
  }
}
.p-branding-point__list > * {
  counter-increment: number;
  position: relative;
  padding-left: 3.5em;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .p-branding-point__list > * {
    padding-left: 0;
    gap: 15px;
  }
}
.p-branding-point__list > * + * {
  margin-top: 20px;
}
.p-branding-point__list > *::before {
  content: counter(number, decimal-leading-zero);
  font-weight: 500;
  color: #fff;
  font-size: 1rem;
  aspect-ratio: 1/1;
  background: #202d37;
  font-family: Roboto, sans-serif;
  font-size: clamp(1.6rem, 5.5vw, 3.4rem);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
}
@media (max-width: 768px) {
  .p-branding-point__list > *::before {
    width: 13vw;
    aspect-ratio: 1/1;
    height: auto;
  }
}
.p-branding-point__item {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
}
.p-branding-point__message {
  margin-top: 150px;
  display: grid;
  grid-template-columns: 50% 42%;
  align-items: center;
  gap: 8%;
}
@media (max-width: 768px) {
  .p-branding-point__message {
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    gap: 40px;
  }
}
.p-branding-point__headline {
  font-size: clamp(1.6rem, 2.6vw, 3.3rem);
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .p-branding-point__headline {
    margin-bottom: 20px;
    font-size: clamp(2rem, 6vw, 3.3rem);
  }
}
.p-branding-point__text p {
  font-size: clamp(1.4rem, 3.6vw, 1.8rem);
  font-weight: 500;
  line-height: 2em;
}
@media (max-width: 768px) {
  .p-branding-point__image {
    order: 2;
  }
}
.p-branding-point__image img {
  width: 100%;
}

.p-about {
  padding: 200px 0;
  position: relative;
  background-image: url("../images/p-about-bg.webp");
  background-size: cover;
  background-position: center top;
}
@supports not (background-image: url("../images/p-about-bg.webp")) {
  .p-about {
    background-image: url("../images/p-about-bg.jpg");
  }
}
@media (max-width: 768px) {
  .p-about {
    padding: 70px 0;
  }
}
.p-about__title {
  font-size: clamp(3rem, 6.5vw, 4.6rem);
  margin-bottom: 30px;
  font-weight: 500;
}
.p-about__message {
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 2em;
}
.p-about__reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 25px;
  margin-top: 100px;
}
@media (max-width: 1080px) {
  .p-about__reasons {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-about__reasons {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-about__reason {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 30px 20px 15px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-about__reason dt {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0.4rem 3rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  color: #1b3fa5;
}
.p-about__reason dd {
  font-size: clamp(1.8rem, 2vw, 3rem);
  font-weight: 700;
  line-height: 1.3em;
}
.p-about__works {
  margin-top: 100px;
}
.p-about__works-title {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  margin-bottom: 30px;
  font-weight: 500;
}
.p-about__works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 25px;
}
@media (max-width: 768px) {
  .p-about__works-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-about__work {
  border: 1px solid #fff;
  border-radius: 10px;
  text-align: center;
  position: relative;
  padding: 0 25px 30px;
}
.p-about__work-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-bottom: 1px solid #fff;
  width: calc(100% + 40px);
  margin-left: -20px;
  padding: 15px 5px;
}
.p-about__work-number {
  border-bottom: 1px solid #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  width: 90%;
  margin: 0 auto 30px;
  padding: 20px 0;
  font-weight: 600;
}
.p-about__work-number span {
  font-size: clamp(3rem, 15vw, 8rem);
  letter-spacing: -1px;
  padding: 0 5px;
  line-height: 1em;
  font-weight: 500;
}
.p-about__work p {
  text-align: left;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  line-height: 2em;
}
@media (max-width: 768px) {
  .p-about__work p {
    font-size: clamp(1.4rem, 4vw, 1.6rem);
  }
}
.p-about__case {
  margin-top: 100px;
}
.p-about__case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
}
@media (max-width: 768px) {
  .p-about__case-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-about__case-title {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  margin-bottom: 30px;
  font-weight: 500;
}
.p-about__case-img {
  aspect-ratio: 4/3;
  border-radius: 10px;
  object-fit: cover;
  background: gray;
}
.p-about__case-item * {
  text-decoration: none !important;
}
.p-about__case-item-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-top: 15px;
  font-weight: 500;
}
.p-about__case-tags {
  margin-top: 10px;
  display: flex;
  gap: 5px;
}
.p-about__case-tag {
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 0.2rem 1rem;
  font-size: clamp(1.2rem, 1vw, 1.6rem);
  font-weight: 500;
}
.p-about__effect {
  margin-top: 100px;
}
.p-about__effect-images {
  display: grid;
  grid-template-columns: 0.455fr 0.545fr;
  gap: 30px 25px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .p-about__effect-images {
    margin-top: 30px;
  }
}
.p-about__effect-image {
  position: relative;
  margin-top: 70px;
}
.p-about__effect-image img {
  border-radius: 10px;
  position: relative;
  z-index: 2;
  /* height: 100%; */
  object-fit: cover;
  box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.16);
}
.p-about__effect-label {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border-radius: 100%;
  width: 112px;
  aspect-ratio: 1/1;
  background: #202d37;
  font-family: "Moderat Extended", sans-serif;
  text-align: center;
  font-weight: 900;
  padding-top: 29px;
  font-size: clamp(1.3rem, 5vw, 2.2rem);
}
.p-about__effect-label-after {
  color: #0c6cce;
  background: #fff;
}
.p-about__effect-texts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-about__effect-texts {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}
.p-about__effect-texts > * {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .p-about__effect-texts > * {
    font-size: clamp(1.4rem, 4vw, 2.3rem);
  }
}
.p-about__effect-texts > * strong {
  font-size: 133%;
}
.p-about__effect-text-before {
  position: relative;
  width: 40%;
}
@media (max-width: 768px) {
  .p-about__effect-text-before {
    width: 100%;
  }
}
.p-about__effect-text-before::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
}
@media (max-width: 768px) {
  .p-about__effect-text-before::after {
    position: relative;
    margin: 10px auto 0;
    left: 0;
    top: 0;
    display: block;
    transform: rotate(90deg);
    height: 30px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fff;
  }
}
.p-about__effect-text-after {
  width: 50%;
}
@media (max-width: 768px) {
  .p-about__effect-text-after {
    width: 100%;
  }
}
.p-about__effect-title {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  margin-bottom: 10px;
  font-weight: 700;
}
.p-about__effect-lead {
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 700;
}
.p-about__contact {
  width: 95%;
  margin: 100px auto 0;
  background: #fff;
  border-radius: 17px;
  padding: 3% 5%;
  box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
@media (max-width: 768px) {
  .p-about__contact {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    margin: 50px auto 0;
  }
}
.p-about__contact-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .p-about__contact-meta {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 15px;
  }
}
.p-about__contact-title {
  color: #202d37;
  font-size: clamp(1.8rem, 5vw, 1.9rem);
}
.p-about__contact-hour {
  color: #202d37;
  font-size: clamp(1rem, 2vw, 1.3rem);
}
.p-about__contact-tel {
  color: #202d37;
  font-family: "Moderat", sans-serif;
  font-size: clamp(1.6rem, 5vw, 6.9rem);
  line-height: 1em;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .p-about__contact-tel {
    font-size: clamp(1.8rem, 10vw, 6.9rem);
    display: block;
    text-align: center;
  }
}
.p-about__contact-info {
  flex-shrink: 0;
}
.p-about__contact-info-inner {
  width: fit-content;
}
@media (max-width: 768px) {
  .p-about__contact-info-inner {
    width: 100%;
  }
}
.p-about__contact-form {
  width: 100%;
}
.p-about__contact-link {
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  font-weight: 700;
  text-decoration: none !important;
  background: linear-gradient(135deg, #0c6cce 0%, #2d38c0 100%);
}
@media (max-width: 768px) {
  .p-about__contact-link {
    padding: 15px;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
}
.p-about .marquee {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  font-size: 8.9rem;
  opacity: 0.1;
  color: #fff;
}

.p-about__services {
  padding: 200px 0;
  background: #fff;
}
@media (max-width: 768px) {
  .p-about__services {
    padding: 70px 0;
  }
}
.p-about__services-title {
  text-align: center;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  font-weight: 700;
  margin-bottom: 50px;
  background: #0c6cce;
  border-radius: 10px;
  padding: 2rem;
  color: #fff;
}
@media (max-width: 768px) {
  .p-about__services-title {
    margin-bottom: 30px;
  }
}
.p-about__services-lead {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .p-about__services-lead {
    margin-bottom: 50px;
  }
}
.p-about__services-image {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .p-about__services-image {
    margin-bottom: 20px;
  }
}
.p-about__services-image img {
  border-radius: 20px;
}
@media (max-width: 768px) {
  .p-about__services-image img {
    border-radius: 10px;
  }
}
.p-about__services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10rem;
}
@media (max-width: 768px) {
  .p-about__services-list {
    gap: 4rem;
  }
}
.p-about__services-name {
  font-weight: bold;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 20px;
  color: #0c6cce;
}
@media (max-width: 768px) {
  .p-about__services-name {
    margin-bottom: 10px;
  }
}
.p-about__services-desc {
  font-size: clamp(1.3rem, 4vw, 1.5rem);
  line-height: 1.7;
}

.p-about__pricing {
  padding: 200px 0;
}
@media (max-width: 768px) {
  .p-about__pricing {
    padding: 70px 0;
  }
}
.p-about__pricing-title {
  text-align: center;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  font-weight: 700;
  margin-bottom: 50px;
  background: #fff;
  color: #0c6cce;
  border-radius: 10px;
  padding: 2rem;
}
@media (max-width: 768px) {
  .p-about__pricing-title {
    margin-bottom: 10px;
  }
}
.p-about__pricing-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .p-about__pricing-list {
    gap: 0;
  }
}
.p-about__pricing-item {
  padding: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-about__pricing-item {
    padding: 3rem 2rem;
  }
}
.p-about__pricing-item:nth-child(-n+2) {
  border-right: 1px solid #d9dbdc;
}
.p-about__pricing-item:nth-child(-n+2):nth-child(-n+2) {
  border-right: 1px solid #d9dbdc;
}
@media (max-width: 768px) {
  .p-about__pricing-item:nth-child(-n+2):nth-child(-n+2) {
    border-bottom: 1px solid #d9dbdc;
    border-right: none;
  }
}
.p-about__pricing-item h3 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 0.5rem;
  color: #0c6cce;
}
.p-about__pricing-price {
  font-size: clamp(3rem, 5vw, 6rem);
  letter-spacing: -3px;
  font-family: "Moderat", sans-serif;
  margin-bottom: 1rem;
}
.p-about__pricing-price small {
  font-size: 70%;
  margin-right: 0.2rem;
}
.p-about__pricing-detail {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
  color: #202d37;
}
.p-about__pricing-note {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .p-about__pricing-note {
    margin-top: 40px;
  }
}
.p-about__pricing-subtitle {
  text-align: center;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  background: #0c6cce;
  color: #fff;
  padding: 2rem;
}
.p-about__pricing-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 20px;
}
@media (max-width: 768px) {
  .p-about__pricing-points {
    gap: 20px;
  }
}
.p-about__pricing-point {
  font-size: 1rem;
  color: #202d37;
  width: 33.3333333333%;
  font-size: clamp(1.7rem, 3vw, 2rem);
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-about__pricing-point {
    width: 100%;
  }
}
.p-about__pricing-point strong {
  font-size: 170%;
  color: #0c6cce;
}
@media (max-width: 768px) {
  .p-about__pricing-points {
    flex-direction: column;
    align-items: center;
  }
}

.p-faq {
  padding: 200px 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .p-faq {
    padding: 70px 0;
  }
}
.p-faq__inner {
  gap: 30px 20px;
}
@media (max-width: 768px) {
  .p-faq__inner {
    flex-direction: column;
  }
}
.p-faq__title {
  font-size: clamp(2.5rem, 5vw, 3.1rem);
}
@media (max-width: 768px) {
  .p-faq__title {
    text-align: center;
  }
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 70%;
}
@media (max-width: 768px) {
  .p-faq__list {
    width: 100%;
  }
}
.p-faq__item {
  background-color: #fafafa;
  cursor: pointer;
}
.p-faq__item.is-active .p-faq__answer {
  display: block;
  opacity: 1;
  padding-top: 1rem;
}
.p-faq__item.is-active .p-faq__icon::before {
  transform: rotate(270deg);
}
.p-faq__question {
  position: relative;
  padding: 25px 55px 25px 25px;
  font-size: clamp(1.7rem, 3vw, 2rem);
  font-weight: bold;
  display: flex;
}
@media (max-width: 768px) {
  .p-faq__question {
    padding: 15px 40px 15px 15px;
  }
}
.p-faq__question::before {
  content: "Q";
  color: #0c6cce;
  font-family: "Moderat Extended", sans-serif;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-right: 30px;
  width: 20px;
  text-align: center;
  display: inline-block;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-faq__question::before {
    margin-right: 15px;
  }
}
.p-faq__question .p-faq__icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-faq__question .p-faq__icon::before, .p-faq__question .p-faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  height: 15px;
  width: 2px;
  background-color: #202d37;
  transition: 0.3s;
}
.p-faq__question .p-faq__icon::after {
  transform: rotate(90deg);
}
.p-faq .p-faq__answer {
  display: none;
  overflow: hidden;
}
.p-faq .p-faq__answer-inner {
  padding: 0 25px 25px;
  font-size: clamp(1.5rem, 2.6vw, 1.8rem);
  line-height: 1.6;
  color: #202d37;
  display: flex;
}
@media (max-width: 768px) {
  .p-faq .p-faq__answer-inner {
    padding: 0 15px 15px;
  }
}
.p-faq .p-faq__answer-inner::before {
  content: "A";
  color: #ff6b00;
  font-family: "Moderat Extended", sans-serif;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-right: 30px;
  width: 20px;
  text-align: center;
  display: inline-block;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-faq .p-faq__answer-inner::before {
    margin-right: 15px;
  }
}

.p-contact {
  padding: 200px 0;
}
@media (max-width: 768px) {
  .p-contact {
    padding: 70px 0;
  }
}
.p-contact__title {
  text-align: center;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  font-weight: 700;
  margin-bottom: 50px;
  background: #0c6cce;
  border-radius: 10px;
  padding: 2rem;
  color: #fff;
}
.p-contact__info {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 10px;
  padding: 3rem 2rem;
}
.p-contact__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-contact__phone {
    flex-direction: column;
    gap: 10px;
  }
}
.p-contact__note {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-contact__note {
    font-size: clamp(2rem, 3vw, 2rem);
  }
}
.p-contact__tel {
  font-family: "Moderat", sans-serif;
  font-size: clamp(3rem, 4vw, 5.3rem);
  font-weight: 700;
  line-height: 1em;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .p-contact__tel {
    font-size: clamp(3rem, 10vw, 5.3rem);
  }
}
.p-contact__time {
  font-size: clamp(1.5rem, 2.5vw, 1.7rem);
  font-weight: 500;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .p-contact__time {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
  }
}
.p-contact__mininner {
  max-width: 805px;
  margin: auto;
}
.p-contact .contact-form {
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
}
.p-contact .contact-form .form-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .p-contact .contact-form .form-row {
    flex-direction: column;
    gap: 10px;
  }
  .p-contact .contact-form .form-row > * {
    width: 100% !important;
  }
}
.p-contact .contact-form .form-row--start {
  align-items: flex-start;
}
.p-contact .contact-form .form-row label {
  width: 220px;
  font-weight: bold;
  position: relative;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-contact .contact-form .form-row label .required {
  background-color: #ff4e00;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 12px;
  display: inline-block;
}
@media (max-width: 768px) {
  .p-contact .contact-form .form-row label .required {
    font-size: 10px;
  }
}
.p-contact .contact-form .form-row input,
.p-contact .contact-form .form-row textarea {
  flex: 1;
  padding: 20px 15px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 4px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .p-contact .contact-form .form-row input,
  .p-contact .contact-form .form-row textarea {
    font-size: 14px;
    padding: 10px;
  }
}
.p-contact .contact-form .form-submit {
  text-align: center;
  margin-top: 40px;
}
.p-contact .contact-form .form-submit button {
  background-color: #0c6cce;
  color: #fff;
  font-size: 16px;
  padding: 12px 36px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  max-width: 200px;
  width: 100%;
  transition: background-color 0.3s;
}
.p-contact .contact-form .form-submit button:hover {
  background-color: #ff4e00;
}

.p-confirm {
  margin: 150px auto;
  padding: 100px 50px;
  background: #fff;
  border-radius: 20px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .p-confirm {
    margin: 70px auto;
    padding: 30px 5%;
  }
}
.p-confirm h1 {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .p-confirm h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
}
.p-confirm p {
  text-align: center;
}
.p-confirm p strong {
  font-size: 120%;
}
.p-confirm dl {
  max-width: 500px;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-confirm dl {
    margin: 25px auto;
  }
}
.p-confirm dl > * {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .p-confirm dl > * {
    font-size: 1.5rem;
  }
}
.p-confirm dl dt {
  width: calc(30% - 20px);
  font-weight: 500;
}
.p-confirm dl dd {
  width: 70%;
}
.p-confirm form {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 500px;
  margin: auto;
}
.p-confirm_btn {
  background-color: #0c6cce;
  color: #fff;
  font-size: 16px;
  padding: 12px 36px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  max-width: 200px;
  width: 100%;
  transition: background-color 0.3s;
  flex: 1;
  max-width: 100%;
}
.p-confirm_btn:hover {
  background-color: #ff4e00;
}
.p-confirm_btn-back {
  background-color: #666 !important;
}
.p-confirm_btn-back:hover {
  background-color: #202d37 !important;
}
.p-confirm_btn-top {
  max-width: 250px;
  display: block;
  margin: 50px auto 0;
  text-align: center;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .p-confirm_btn-top {
    margin: 25px auto 0;
  }
}

.p-recaptcha-notice {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-recaptcha-notice {
    font-size: 1.3rem;
  }
}
.p-recaptcha-notice a {
  text-decoration: underline;
}
.p-recaptcha-notice a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */