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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

:root {
  --color-primary: #0B439A;
  --color-secondary: #FFFFFF;
  --color-text: #333333;
  --color-gradient: linear-gradient(180deg, #56CCF2 0%, #0B439A 100%);
  --color-bg: #E6F0FA;
}

html {
  font-size: clamp(12288 / 1200 * 1px, 1600vw / 375, 12272 / 375 * 1px);
}
@media screen and (min-width: 768px) {
  html {
    font-size: clamp(12288 / 1200 * 1px, 1600vw / 1200, 19200 / 1200 * 1px);
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: calc(19200 / 1200 * 1px);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans";
  color: var(--color-text);
  text-decoration: none;
  list-style: none;
  outline: 2px solid blue;
  font-weight: 400;
  font-size: 1rem;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

address {
  font-style: normal;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------------------------------------
 * 基本のヘッダースタイル
 *------------------------------------
 */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--color-secondary);
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 120rem;
  width: 100%;
  height: 6.25rem;
  margin-inline: auto;
  padding-inline: 3.5rem;
  padding-block: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .l-header__inner {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    height: 4.375rem;
    padding-inline: 1.25rem;
  }
}

.l-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-header__left {
    gap: 0.75rem;
  }
}

.l-header__logo {
  width: 6.125rem;
  height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 4.375rem;
    height: 3.25rem;
  }
}
.l-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__company-content {
  display: block;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-header__company-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.125rem;
  }
}

.l-header__company-en {
  color: var(--color-secondary);
  font-family: "Oswald";
  font-size: 1.125rem;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .l-header__company-en {
    font-size: 0.875rem;
  }
}

.l-header__company-ja {
  color: var(--color-secondary);
  font-family: "Oswald";
  font-size: 1.875rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-header__company-ja {
    font-size: 1.25rem;
  }
}

.l-header__company-en--blue,
.l-header__company-ja--blue {
  color: var(--color-primary);
}

/*------------------------------------
 * ハンバーガーメニューボタン(3本線→×に変形)
 *------------------------------------
 */
.l-header__menu-icon {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-header__menu-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 24px;
    height: 18px;
  }
}
.l-header__menu-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .l-header__menu-icon span {
    height: 2px;
  }
}
.l-header__menu-icon.is-active span {
  background: var(--color-primary);
}
.l-header__menu-icon.is-active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.l-header__menu-icon.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__menu-icon.is-active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

/*------------------------------------
 * デスクトップ用ナビゲーション
 *------------------------------------
 */
@media screen and (max-width: 1023px) {
  .l-header__nav--desktop {
    display: none;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6.25rem;
  max-width: 93.75rem;
  width: 100%;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 1500px) {
  .l-header__nav-list {
    gap: 3.125rem;
  }
}
@media screen and (max-width: 1280px) {
  .l-header__nav-list {
    gap: 1.875rem;
  }
}

.l-header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
  padding: 0.9375rem 0.625rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header__nav-link:hover {
  opacity: 0.7;
}

.l-header__nav-ja {
  color: var(--color-text);
  font-size: 0.875rem;
}

.l-header__nav-en {
  color: var(--color-primary);
  font-family: "Oswald";
  font-size: 1rem;
  font-weight: 500;
}

/*------------------------------------
 * モバイル用ナビゲーション(円形展開)
 *------------------------------------
 */
.l-header__nav--mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  background: var(--color-font-sub);
  color: white;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-clip-path: circle(0% at calc(100% - 80px) 50px);
          clip-path: circle(0% at calc(100% - 80px) 50px);
  overflow-y: auto;
  -webkit-transition: opacity 0.7s ease, visibility 0.7s ease, -webkit-clip-path 0.7s ease;
  transition: opacity 0.7s ease, visibility 0.7s ease, -webkit-clip-path 0.7s ease;
  transition: clip-path 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  transition: clip-path 0.7s ease, opacity 0.7s ease, visibility 0.7s ease, -webkit-clip-path 0.7s ease;
}
@media screen and (max-width: 1023px) {
  .l-header__nav--mobile {
    display: block;
    -webkit-clip-path: circle(0% at calc(100% - 60px) 40px);
            clip-path: circle(0% at calc(100% - 60px) 40px);
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav--mobile {
    -webkit-clip-path: circle(0% at calc(100% - 40px) 35px);
            clip-path: circle(0% at calc(100% - 40px) 35px);
  }
}
.l-header__nav--mobile.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-clip-path: circle(150% at calc(100% - 80px) 50px);
          clip-path: circle(150% at calc(100% - 80px) 50px);
}
@media screen and (max-width: 1023px) {
  .l-header__nav--mobile.is-active {
    -webkit-clip-path: circle(150% at calc(100% - 60px) 40px);
            clip-path: circle(150% at calc(100% - 60px) 40px);
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav--mobile.is-active {
    -webkit-clip-path: circle(150% at calc(100% - 40px) 35px);
            clip-path: circle(150% at calc(100% - 40px) 35px);
  }
}
.l-header__nav--mobile::-webkit-scrollbar {
  width: 6px;
}
.l-header__nav--mobile::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.l-header__nav--mobile::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
.l-header__nav--mobile::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.l-header__nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  padding: 5rem 2rem 3rem;
  background: var(--color-gradient);
}
@media screen and (max-width: 1023px) {
  .l-header__nav-content {
    padding: 3.75rem 1.25rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-content {
    padding: 3.75rem 1.25rem 1.5rem;
  }
}

.l-header__nav-sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav-sublist {
    gap: 1.125rem;
  }
}
.l-header__nav-sublist > li {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.is-active .l-header__nav-sublist > li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.l-header__nav-link-mobile {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header__nav-link-mobile {
    font-size: 1.125rem;
  }
}
.l-header__nav-link-mobile:hover {
  opacity: 0.7;
}
.l-header__nav-link-mobile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.l-header__nav-link-mobile:hover::after {
  width: 100%;
}

.l-footer {
  width: 100%;
  height: 100%;
  background-image: url("../img/all-pages-footer-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-block: 6.0625rem 6.625rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: 3.75rem 5rem;
  }
}

.l-footer__inner-wrapper {
  width: min(75rem + 80px, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__inner-wrapper {
    padding-inline: 1.25rem;
  }
}

.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .l-footer__left-content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
  }
}

.l-footer__logo {
  width: 6.125rem;
  height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 4.375rem;
    height: 3.25rem;
  }
}

.l-footer__company-content {
  display: block;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-footer__company-content {
    text-align: center;
  }
}

.l-footer__company-en {
  color: var(--color-secondary);
  font-family: "Oswald";
  font-size: 1.125rem;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .l-footer__company-en {
    font-size: 0.875rem;
  }
}

.l-footer__company-ja {
  color: var(--color-secondary);
  font-family: "Oswald";
  font-size: 1.875rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer__company-ja {
    font-size: 1.25rem;
  }
}

.l-footer__address {
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__contact-info {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-inline: auto;
  }
}

.l-footer__contact-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .l-footer__contact-tel {
    margin-top: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
  }
}

.l-footer__contact-fax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .l-footer__contact-fax {
    margin-top: 0.9375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
  }
}

.l-footer__contact-label {
  color: var(--color-primary);
  font-family: "B612 Mono";
  font-size: 1.875rem;
  font-style: italic;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.625rem;
  background: var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .l-footer__contact-label {
    font-size: 1.25rem;
    padding: 0.375rem 0.75rem;
  }
}

.l-footer__contact-value {
  color: var(--color-secondary);
  font-family: "Oswald";
  font-size: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .l-footer__contact-value {
    font-size: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
  }
}

.l-footer__contact-button {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__contact-button {
    margin-top: 2.5rem;
    text-align: center;
  }
}

.l-footer__hours {
  font-size: 1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer__hours {
    font-size: 0.75rem;
    margin-left: -0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    max-width: 12.5rem;
    margin-inline: auto;
  }
}

.l-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 1.625rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list {
    display: none;
  }
}

.l-footer__nav-link {
  color: var(--color-secondary);
  font-family: "Oswald";
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    font-size: 1rem;
  }
}

.l-footer__sns {
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    margin-top: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.l-footer__youtube {
  display: block;
  width: 15.9375rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__youtube {
    width: 11.25rem;
  }
}

.l-footer__bottom {
  background: #00316B;
  padding-block: 0.8125rem 0.875rem;
}

.l-footer__copyright {
  color: var(--color-secondary);
  text-align: center;
  font-family: "Oswald";
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.c-spacer {
  display: block;
  width: 100%;
  height: 48px;
}
.c-spacer--size-8 {
  height: 8px;
}
.c-spacer--size-16 {
  height: 16px;
}
.c-spacer--size-24 {
  height: 24px;
}
.c-spacer--size-32 {
  height: 32px;
}
.c-spacer--size-48 {
  height: 48px;
}
.c-spacer--size-64 {
  height: 64px;
}
.c-spacer--size-80 {
  height: 80px;
}
.c-spacer--size-96 {
  height: 96px;
}
.c-spacer--size-128 {
  height: 128px;
}
.c-spacer--size-100-50 {
  height: 100px;
}
@media screen and (max-width: 767px) {
  .c-spacer--size-24 {
    height: 20px;
  }
  .c-spacer--size-32 {
    height: 30px;
  }
  .c-spacer--size-48 {
    height: 45px;
  }
  .c-spacer--size-64 {
    height: 60px;
  }
  .c-spacer--size-80 {
    height: 70px;
  }
  .c-spacer--size-96 {
    height: 80px;
  }
  .c-spacer--size-128 {
    height: 100px;
  }
}

/*------------------------------------
 * fv-title
 *------------------------------------
 */
.p-fv {
  background: #333;
}

.c-fv-title {
  position: relative;
  max-width: 32.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-fv-title {
    max-width: 20rem;
  }
}

.c-fv-title__title {
  position: relative;
  font-family: "Oswald";
  font-size: 5.3125rem;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .c-fv-title__title {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-fv-title__title {
    font-size: 2.5rem;
  }
}
.c-fv-title__title-base {
  display: block;
  color: #fff;
  position: absolute;
  top: -3px;
  left: 0;
}
.c-fv-title__title-gradient {
  display: block;
  background: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-fv-title__sub-title {
  color: var(--color-secondary);
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: var(--color-secondary);
  font-size: 1.375rem;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-fv-title__sub-title {
    font-size: 1.25rem;
    margin-top: 0;
  }
}
.c-fv-title__sub-title::before {
  content: "";
  width: 3.875rem;
  height: 0.0625rem;
  background-color: var(--color-secondary);
}

/*------------------------------------
 * section-title
 *------------------------------------
 */
.c-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    width: 100%;
    height: auto;
    padding: 0 0.625rem 1.25rem 0.625rem;
  }
}

.c-section-title__title {
  color: var(--color-primary);
  text-align: center;
  font-family: "Oswald";
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-section-title__title {
    font-size: 3rem;
  }
}

.c-section-title__title--white {
  color: var(--color-secondary);
}

.c-section-sub-title {
  font-family: "Noto Sans";
  line-height: normal;
  letter-spacing: 0.05em;
  background: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -ms-flex-item-align: center;
      align-self: center;
}

.c-section-sub-title--white {
  color: var(--color-secondary);
  background: none;
  -webkit-background-clip: none;
  -webkit-text-fill-color: var(--color-secondary);
}

/*------------------------------------
 * about-section-title
 *------------------------------------
 */
.c-about-section-title__title {
  font-family: "Noto Sans";
  font-size: 2.375rem;
  line-height: normal;
  background: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .c-about-section-title__title {
    font-size: 1.5rem;
  }
}

.c-about-section-text {
  display: block;
}

.c-about-section-title__sub-title {
  color: var(--color-text);
  font-family: "Oswald";
  font-size: 1.375rem;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .c-about-section-title__sub-title {
    font-size: 1.125rem;
  }
}

/*------------------------------------
 * button-primary
 *------------------------------------
 */
.c-button-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5625rem 2rem;
  gap: 1.875rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#56CCF2), to(#0B439A));
  background: linear-gradient(180deg, #56CCF2 0%, #0B439A 100%);
}
.c-button-primary::after {
  content: "";
  background-image: url("../img/view-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 2rem;
  height: 2rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-button-primary:hover::after {
  -webkit-transform: translateX(0.3125rem);
          transform: translateX(0.3125rem);
}

.c-button-primary__link {
  color: var(--color-secondary);
  font-family: "Oswald";
  font-size: 1.25rem;
  line-height: normal;
}

/*------------------------------------
 * button-primary--white
 *------------------------------------
 */
.c-button-primary--white {
  background: var(--color-secondary);
}
.c-button-primary--white::after {
  content: "";
  background-image: url("../img/view-arrow-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 2rem;
  height: 2rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .c-button-primary--white:hover::after {
    -webkit-transform: translateX(0.3125rem);
            transform: translateX(0.3125rem);
  }
}

.c-button-primary__link--white {
  color: var(--color-primary);
}

.c-project-card {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-project-card__img {
  display: block;
  aspect-ratio: 467/353;
  overflow: hidden;
}

.c-project-card__content {
  margin-left: 3.125rem;
  position: relative;
  padding-inline: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-project-card__content {
    margin-left: 1.25rem;
    padding-inline: 0.3125rem;
  }
}
.c-project-card__content::before {
  position: absolute;
  top: -2.875rem;
  left: -1.625rem;
  content: "";
  display: block;
  background: var(--color-primary);
  width: 0.0625rem;
  height: 12.875rem;
}
@media screen and (max-width: 767px) {
  .c-project-card__content::before {
    left: -0.625rem;
  }
}
.c-project-card__content::after {
  content: "";
  display: block;
  background-image: url("../img/project-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 2.3125rem;
  height: 2.3125rem;
  margin-left: auto;
  margin-top: 1.375rem;
}

.c-project-card__title {
  font-family: "Noto Sans";
  font-size: 1.375rem;
  line-height: normal;
  background: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-project-card__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.c-project-card__text {
  color: var(--color-text);
  line-height: normal;
  letter-spacing: 0.05em;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-project-card__text {
    font-size: 0.875rem;
  }
}

.c-service-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem 3.125rem;
  margin-top: 4.875rem;
  list-style: none;
  padding: 0;
}

.c-service-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem 3.125rem;
  margin-top: 4.875rem;
  list-style: none;
  padding: 0;
}

.c-service-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem 3.125rem;
  margin-top: 4.875rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-service-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.875rem;
    -webkit-overflow-scrolling: touch;
  }
}

.c-service-card__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 60px 40px;
  border: 6px solid rgba(255, 255, 255, 0.5);
  border-radius: 100vmax;
  width: 100%;
  max-width: 21.875rem;
  aspect-ratio: 1;
  grid-column: span 2;
  will-change: transform, opacity;
}
@media screen and (max-width: 767px) {
  .c-service-card__content {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.c-service-card__content:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .c-service-card__content:nth-child(1) {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 17.5rem;
    max-width: 17.5rem;
  }
}
.c-service-card__content:nth-child(2) {
  grid-column: 3/5;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .c-service-card__content:nth-child(2) {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 17.5rem;
    max-width: 17.5rem;
  }
}
.c-service-card__content:nth-child(3) {
  grid-column: 5/7;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .c-service-card__content:nth-child(3) {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 17.5rem;
    max-width: 17.5rem;
  }
}
.c-service-card__content:nth-child(4) {
  grid-column: 2/4;
  grid-row: 2;
}
@media screen and (max-width: 767px) {
  .c-service-card__content:nth-child(4) {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 17.5rem;
    max-width: 17.5rem;
  }
}
.c-service-card__content:nth-child(5) {
  grid-column: 4/6;
  grid-row: 2;
}
@media screen and (max-width: 767px) {
  .c-service-card__content:nth-child(5) {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 17.5rem;
    max-width: 17.5rem;
  }
}
.c-service-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  opacity: 0.35;
  border-radius: 100vmax;
  pointer-events: none;
  z-index: 0;
}

.c-service-card__link {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.c-service-card__number {
  font-size: 2.8125rem;
  color: var(--color-secondary);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-service-card__number {
    font-size: 2rem;
  }
}

.c-service-card__subtitle {
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.c-service-card__title {
  font-size: clamp(1.5rem, 1.8vw, 2.1875rem);
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .c-service-card__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-service-card__title {
    font-size: 1.25rem;
  }
}

.c-service-card__icon {
  margin-top: 1.5rem;
  margin-inline: auto;
}

.c-cta {
  background: var(--color-gradient);
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}

.c-cta-inner {
  padding: 4.8125rem 8.75rem 4.8125rem 5.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-cta-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    padding: 2.5rem 1.25rem;
  }
}

.c-cta__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.4375rem;
}

.c-cta__text-line {
  color: var(--color-secondary);
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-cta__text-line {
    font-size: 1.25rem;
  }
}

.c-cta__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-cta__right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}

.c-cta__hours {
  color: var(--color-secondary);
  letter-spacing: 0.05em;
}

.c-cta__tel {
  color: var(--color-secondary);
  font-family: "Oswald";
  font-size: 3.75rem;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .c-cta__tel {
    font-size: 2.5rem;
  }
}

.c-cta__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25rem 4.6875rem 1.25rem 1.25rem;
  border: 2px solid var(--color-secondary);
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c-cta__button {
    padding: 0.625rem 1.25rem;
    gap: 1.25rem;
  }
}
.c-cta__button::after {
  content: "";
  background-image: url("../img/view-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 2rem;
  height: 2rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .c-cta__button:hover::after {
    -webkit-transform: translateX(0.3125rem);
            transform: translateX(0.3125rem);
  }
}

.c-cta__button-text {
  color: var(--color-secondary);
  font-size: 1.375rem;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .c-cta__button-text {
    font-size: 1.125rem;
  }
}

.p-page-fv {
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-page-fv {
    padding-top: 4.375rem;
  }
}

.p-page-fv__inner {
  position: relative;
}

.c-fv-title {
  position: absolute;
  top: 50%;
  left: 13.125rem;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .c-fv-title {
    left: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-fv-title {
    left: 3rem;
  }
}

.c-fv-title__title {
  will-change: transform, opacity;
}

.c-fv-title__sub-title {
  will-change: transform, opacity;
}

.p-page-fv__img {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-page-fv__img {
    height: 18.75rem;
  }
}

.p-page-fv__img-overlay {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/about-fv-img2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  will-change: transform, opacity;
}
@media screen and (max-width: 767px) {
  .p-page-fv__img-overlay {
    top: 1.25rem;
    background-position: right bottom;
  }
}

.p-page-fv__img::after {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/about-fv-img2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
@media screen and (max-width: 767px) {
  .p-page-fv__img::after {
    top: 1.25rem;
  }
}

.p-page-fv__img--has-overlay::after {
  display: none;
}

.p-home__fv {
  width: 100%;
  height: 50.1875rem;
  position: relative;
  background-image: url("../img/home-fv-img1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-home__fv {
    height: 28.125rem;
  }
}

.p-home__company-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  position: fixed;
  top: 1.875rem;
  left: 4.1875rem;
  z-index: 100;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-home__company-container {
    gap: 0.625rem;
    top: 1.25rem;
    left: 1.25rem;
  }
}

.p-home__menu-icon {
  position: fixed;
  top: 1.875rem;
  right: 4.1875rem;
  z-index: 1001;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  mix-blend-mode: difference;
}
@media screen and (max-width: 1023px) {
  .p-home__menu-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 1.875rem;
    right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home__menu-icon {
    top: 2.1875rem;
    right: 1.25rem;
    width: 24px;
    height: 18px;
  }
}
.p-home__menu-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .p-home__menu-icon span {
    height: 2px;
  }
}
.p-home__menu-icon.is-active span {
  background: var(--color-secondary);
}
.p-home__menu-icon.is-active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.p-home__menu-icon.is-active span:nth-child(2) {
  opacity: 0;
}
.p-home__menu-icon.is-active span:nth-child(3) {
  -webkit-transform: translateY(-12px) rotate(-45deg);
          transform: translateY(-12px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-home__menu-icon.is-active span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

.p-home__logo {
  width: 6.125rem;
  height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-home__logo {
    width: 4.375rem;
    height: 3.25rem;
  }
}
.p-home__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home__company-content {
  display: block;
  text-align: left;
}

.p-home__company-en {
  color: #fff;
  font-family: "Oswald";
  font-size: 1.125rem;
  line-height: normal;
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  .p-home__company-en {
    font-size: 0.875rem;
  }
}

.p-home__company-ja {
  color: #fff;
  font-family: "Oswald";
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  .p-home__company-ja {
    font-size: 1.25rem;
  }
}

.p-home__fv-content {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 12;
}
@media screen and (max-width: 767px) {
  .p-home__fv-content {
    top: 25%;
    left: 5%;
    -webkit-transform: none;
            transform: none;
    max-width: 85%;
  }
}

.p-home__fv-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  gap: 0.5rem;
  overflow: hidden;
}

.js-slide-in-from-left {
  will-change: transform, opacity;
}

.p-home__fv-title-line {
  color: var(--color-secondary);
  font-family: "Oswald";
  font-size: 5.3125rem;
  line-height: normal;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-home__fv-title-line {
    font-size: 1.75rem;
  }
}

.p-home__fv-title-ja {
  color: var(--color-secondary);
  font-size: 1.375rem;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 2.8125rem;
  margin-left: 1.875rem;
  gap: 1.25rem;
}
.p-home__fv-title-ja::before {
  content: "";
  width: 3.875rem;
  height: 0.0625rem;
  background-color: var(--color-secondary);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .p-home__fv-title-ja::before {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-home__fv-title-ja {
    font-size: 1rem;
    margin-top: 0.625rem;
    margin-left: 0.625rem;
    gap: 0.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
}

.p-home__fv-title-ja-line {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.p-home__fv-overlay {
  position: absolute;
  top: 1.875rem;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
}

.p-home__fv-section {
  position: absolute;
  height: 100%;
  top: 0;
  overflow: hidden;
}
.p-home__fv-section img {
  -o-object-position: center;
     object-position: center;
  display: block;
  will-change: transform, opacity;
}

.p-home__fv-section--center {
  right: 28.125rem;
  width: 61.875rem;
  z-index: 3;
  -webkit-clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
          clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}
@media screen and (max-width: 1023px) {
  .p-home__fv-section--center {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-home__fv-section--center {
    display: none;
  }
}

.p-home__fv-section--right {
  right: 0;
  width: 50rem;
  z-index: 2;
  -webkit-clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-home__fv-section--right {
    -webkit-clip-path: none;
            clip-path: none;
    width: 100%;
    bottom: 0;
  }
  .p-home__fv-section--right img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: right bottom;
       object-position: right bottom;
  }
}

.p-home__nav {
  display: block;
  padding-block: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-home__nav {
    display: none;
  }
}

.p-home__nav-list {
  max-width: 100%;
}

.p-home__about-section {
  padding-top: 4.625rem;
  background-color: var(--color-secondary);
  position: relative;
  min-height: 56.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-home__about-section {
    padding-bottom: 4rem;
    min-height: auto;
  }
}
.p-home__about-section::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/all-img-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.p-home__about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-home__about-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-home__about-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  padding-left: 10%;
}
@media screen and (max-width: 1440px) {
  .p-home__about-content {
    padding-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-home__about-content {
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
  }
}

.p-home__about-section .c-section-title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 0 0 1.6875rem 0;
}
@media screen and (max-width: 767px) {
  .p-home__about-section .c-section-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-home__about-section .c-section-title__title {
  text-align: left;
}

.p-home__about-section .c-section-title__sub-title {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-home__about-content-left {
    position: relative;
    z-index: 1;
  }
}

.p-home__about-text {
  margin-top: 2.3125rem;
}

.p-home__about-heading {
  color: var(--color-text);
  font-size: 1.875rem;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-home__about-heading {
    font-size: 1.25rem;
  }
}

.p-home__about-description {
  color: var(--color-text);
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-home__about-description {
    font-size: 0.875rem;
  }
}

.p-home__about-button {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-home__about-button {
    margin-top: 4rem;
    text-align: center;
  }
}

.p-home__about-images {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-home__about-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
}

.p-home__about-image01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 30vw;
  height: auto;
  z-index: 1;
  will-change: transform, opacity;
}
@media screen and (max-width: 1440px) {
  .p-home__about-image01 {
    top: 15%;
  }
}
@media screen and (max-width: 767px) {
  .p-home__about-image01 {
    top: 20%;
    right: 0;
    width: 40vw;
    opacity: 0.7 !important;
  }
}

.p-home__about-image02 {
  position: absolute;
  top: 6.25rem;
  right: 15.6vw;
  width: 28vw;
  height: auto;
  z-index: 3;
  will-change: transform, opacity;
}
@media screen and (min-width: 1500px) {
  .p-home__about-image02 {
    width: 20vw;
  }
}
@media screen and (max-width: 1440px) {
  .p-home__about-image02 {
    top: 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home__about-image02 {
    top: 40%;
    left: 0;
    width: 35vw;
    opacity: 0.5 !important;
  }
}

.p-home__about-image03 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24.7vw;
  height: auto;
  z-index: 2;
  will-change: transform, opacity;
}
@media screen and (max-width: 1440px) {
  .p-home__about-image03 {
    bottom: 10%;
  }
}
@media screen and (max-width: 1300px) {
  .p-home__about-image03 {
    bottom: 15%;
  }
}
@media screen and (max-width: 767px) {
  .p-home__about-image03 {
    bottom: 30%;
    right: 0;
    width: 30vw;
    opacity: 0.7 !important;
  }
}

.p-home__project-section {
  padding-block: 4.6875rem 6.5625rem;
  background-color: var(--color-bg);
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-home__project-section {
    padding-block: 3.125rem 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home__project-section {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-home__project-wrapper {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home__project-wrapper {
    padding-inline: 0.9375rem;
  }
}

.p-home__project-slider {
  position: relative;
  margin-top: 6.375rem;
}
@media screen and (max-width: 1023px) {
  .p-home__project-slider {
    margin-top: 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home__project-slider {
    margin-top: 3.125rem;
  }
}

.p-home__project-swiper {
  overflow: visible;
}

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

.p-home__project-item {
  height: auto;
}

.p-home__project-nav {
  position: absolute;
  top: 20%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-home__project-nav {
    top: 20%;
  }
}

.p-home__project-nav--prev {
  left: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-home__project-nav--prev {
    left: 0.625rem;
  }
}

.p-home__project-nav--next {
  right: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-home__project-nav--next {
    right: -0.625rem;
  }
}

.p-home__project-nav-btn svg {
  width: 4.375rem;
  height: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-home__project-nav-btn svg {
    width: 2rem;
    height: 2rem;
  }
}

.p-home__project-button {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-home__project-button {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home__project-button {
    margin-top: 2.5rem;
  }
}

.p-home__service-section {
  background-color: var(--color-bg);
}

.p-home__service-wrapper {
  background-image: url("../img/home-service-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding-bottom: 6.5625rem;
}

.p-home__service-container {
  width: min(75rem + 40px, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
  padding-top: 4.875rem;
}

.p-home__service-lead {
  margin-top: 2.5rem;
  color: var(--color-secondary);
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-home__service-lead {
    margin-top: 1.875rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .p-home__service-lead-text {
    display: block;
  }
}

.p-home__service-button {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-home__service-button {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home__service-button {
    margin-top: 3.125rem;
  }
}

.p-home__news-section {
  padding-block: 4.6875rem 6.5625rem;
  background-color: var(--color-secondary);
}
@media screen and (max-width: 1023px) {
  .p-home__news-section {
    padding-block: 3.125rem 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home__news-section {
    padding-block: 2.5rem 4rem;
  }
}

.p-home__news-wrapper {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.p-home__news-list {
  margin-top: 3.75rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-home__news-list {
    margin-top: 2.5rem;
  }
}

.p-home__news-item:not(:first-child) {
  border-top: 1px dashed #000;
}
.p-home__news-item:last-child {
  border-bottom: 1px dashed #000;
}

.p-home__news-link {
  display: grid;
  grid-template-columns: 12.5rem auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding-block: 2.5rem 0.625rem;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-home__news-link {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.75rem;
    padding-block: 1.25rem;
  }
}
.p-home__news-link:hover {
  opacity: 0.7;
}
.p-home__news-link:hover .p-home__news-arrow svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.p-home__news-date-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-home__news-date-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
    grid-column: 1;
    grid-row: 1;
  }
}

.p-home__news-date {
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-home__news-category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  padding: 0.5rem 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-gradient);
}

.p-home__news-title {
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-home__news-title {
    grid-column: 1/-1;
    grid-row: 2;
  }
}

.p-home__news-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-home__news-arrow {
    grid-column: 2;
    grid-row: 1;
  }
}
.p-home__news-arrow svg {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-home__news-button {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-home__news-button {
    margin-top: 3.75rem;
  }
}

.p-home__cta-section {
  padding-bottom: 6.5625rem;
}
@media screen and (max-width: 767px) {
  .p-home__cta-section {
    padding-bottom: 4rem;
  }
}

.p-about__contents {
  width: 100%;
  padding-block: 4.6875rem 6.5625rem;
  overflow: hidden;
  background-image: url("../img/all-img-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1023px) {
  .p-about__contents {
    padding-block: 3.125rem 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__contents {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-about__inner {
  width: min(75rem + 80px, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    padding-inline: 1.25rem;
  }
}

.p-about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
}

.p-about__left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__left {
    grid-template-columns: 1fr;
  }
}

.p-about__image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  will-change: transform, opacity;
}
@media screen and (max-width: 1023px) {
  .p-about__image-wrapper {
    max-width: 100%;
  }
}

.p-about__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-about__content {
  position: relative;
  z-index: 1;
}

.p-about__title {
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    margin-bottom: 0.9375rem;
  }
}

.p-about__title-gradient {
  display: block;
  font-size: 2.375rem;
  line-height: 1.5;
  background: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (min-width: 820px) and (max-width: 1023px) {
  .p-about__title-gradient {
    white-space: nowrap;
  }
}
@media screen and (max-width: 819px) {
  .p-about__title-gradient {
    white-space: normal;
  }
}
@media screen and (max-width: 767px) {
  .p-about__title-gradient {
    font-size: 1.375rem;
    white-space: normal;
  }
}

.p-about__subtitle {
  font-family: "Oswald";
  font-size: 1.375rem;
  color: var(--color-text);
  margin-bottom: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-about__subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.p-about__text {
  line-height: 1.8;
  color: var(--color-text);
}

.p-about__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-about__right {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}

.p-about__energy-circle {
  width: 100%;
  height: auto;
  will-change: transform, opacity;
}
@media screen and (max-width: 767px) {
  .p-about__energy-circle {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.p-about__bottom {
  margin-top: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-about__bottom {
    margin-top: 1.875rem;
  }
}

.p-about-company {
  padding-block: 4.6875rem 6.5625rem;
  overflow: hidden;
  background-image: url("../img/all-img-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1023px) {
  .p-about-company {
    padding-block: 3.125rem 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-about-company__title {
  color: var(--color-primary);
  font-family: "Oswald";
  font-size: 1.875rem;
  line-height: normal;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-about-company__title {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

.p-about-company__table {
  width: min(75rem + 80px, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about-company__table {
    padding-inline: 1.25rem;
  }
}

.p-about-company__row {
  display: grid;
  grid-template-columns: 300px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-about-company__row {
    grid-template-columns: 200px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-about-company__row {
    grid-template-columns: 1fr;
  }
}
.p-about-company__row:not(:first-child) {
  border-top: 1px solid #56CCF2;
}

.p-about-company__label {
  padding: 1.5rem 1.875rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-about-company__label {
    padding: 1rem 1.25rem;
  }
}

.p-about-company__text {
  padding: 1.5rem 1.875rem;
  color: var(--color-text);
  font-size: 1.375rem;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-about-company__text {
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about-company__text-address {
    display: block;
  }
}

.p-page-fv__img--news::after {
  background-image: url("../img/news-fv-img2.png");
}

.p-page-fv__img-overlay--news {
  background-image: url("../img/news-fv-img2.png");
}

.p-news {
  background-image: url("../img/all-img-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-news__inner {
  width: min(80rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
  padding-block: 6.25rem 10.625rem;
}
@media screen and (max-width: 1023px) {
  .p-news__inner {
    padding-block: 5rem 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    padding-block: 4.375rem 6.25rem;
    padding-inline: 1.25rem;
  }
}

.p-news__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-news__filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 16px;
    margin-bottom: 32px;
  }
}

.p-news__filter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}

.p-news__filter-label {
  color: #4F4F4F;
  font-family: "Noto Sans JP";
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.p-news__filter-select {
  min-width: 180px;
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP";
  color: #4F4F4F;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.3125rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M0 0L6.5 8L13 0L0 0Z' fill='%23A8A8A8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-news__filter-select {
    width: 100%;
    min-width: auto;
    padding: 0.5rem 2.25rem 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
}

.p-news__filter-select:hover {
  border-color: var(--color-primary);
}

.p-news__filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 0 3px rgba(11, 67, 154, 0.1);
          box-shadow: 0 0 0 3px rgba(11, 67, 154, 0.1);
}

.p-news-detail {
  padding-block: 6.25rem 10.625rem;
  background-image: url("../img/all-img-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1023px) {
  .p-news-detail {
    padding-block: 5rem 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-news-detail {
    padding-block: 4.375rem 6.25rem;
  }
}

.p-news-detail__inner {
  width: min(80rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news-detail__inner {
    padding-inline: 1.25rem;
  }
}

.p-news-detail__date {
  display: block;
  color: #000;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-bottom: 0.875rem;
}

.p-news-detail__category {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.p-news-detail__category--news {
  background: var(--color-gradient);
}

.p-news-detail__title {
  color: #000;
  font-size: 1.875rem;
  line-height: normal;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

.p-news-detail__content {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__content {
    margin-bottom: 3rem;
  }
}

.p-news-detail__text {
  color: #000;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.p-news-detail__text + .p-news-detail__text {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-detail__text + .p-news-detail__text {
    margin-top: 1.25rem;
  }
}

.p-page-fv__img--project::after {
  background-image: url("../img/project-fv-img2.png");
}

.p-page-fv__img-overlay--project {
  background-image: url("../img/project-fv-img2.png");
}

.p-project {
  padding-block: 6.25rem 10.625rem;
  background-image: url("../img/all-img-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1023px) {
  .p-project {
    padding-block: 5rem 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-project {
    padding-block: 4.375rem 6.25rem;
  }
}

.p-project__inner {
  width: min(80rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-project__inner {
    padding-inline: 1.25rem;
  }
}

.p-project__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 4rem;
  gap: 0.75rem;
  width: 12.5rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-project__filter {
    margin-bottom: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0.5rem;
  }
}

.p-project__filter-label {
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  color: var(--color-text);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-project__filter-label {
    font-size: 0.8125rem;
  }
}

.p-project__filter-select {
  min-width: 12.5rem;
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP";
  color: #C3C3C3;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M0 0L6.5 8L13 0L0 0Z' fill='%23A8A8A8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-project__filter-select {
    min-width: 11.25rem;
    padding: 0.5rem 2.25rem 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
}

.p-project__filter-select:hover {
  border-radius: 0.3125rem;
  border: 0.03125rem solid #C3C3C3;
}

.p-project__filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 0 0.1875rem rgba(11, 67, 154, 0.1);
          box-shadow: 0 0 0 0.1875rem rgba(11, 67, 154, 0.1);
}

.p-project__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem 2.5rem;
  margin-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-project__contents {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3.75rem;
  }
}

.p-project__contents > li:nth-child(odd) {
  position: relative;
  z-index: 1;
}

.p-project__contents > li:nth-child(even) {
  position: relative;
  z-index: 1;
}

.c-project-card {
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
.c-project-card:hover {
  -webkit-box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12);
          box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-0.25rem);
          transform: translateY(-0.25rem);
}

.c-project-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.c-project-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-project-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.875rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .c-project-card__tags {
    gap: 0.375rem;
    margin-bottom: 0.75rem;
  }
}

.c-project-card__tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  color: var(--color-secondary);
  line-height: normal;
  letter-spacing: 0.05em;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-project-card__tag {
    padding: 0.3125rem 0.75rem;
    font-size: 0.6875rem;
  }
}

.p-project__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-project__pagination {
    margin-top: 3.75rem;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    gap: 0.375rem;
  }
}

.c-pagination__item {
  margin: 0;
  padding: 0;
}

.c-pagination__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding-inline: 0.75rem;
  color: var(--color-primary);
  font-family: "Noto Sans JP";
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15em;
  text-decoration: none;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__link {
    min-width: 2.5rem;
    height: 2.5rem;
    padding-inline: 0.625rem;
    font-size: 0.9375rem;
  }
}

.c-pagination__link:hover {
  color: #56CCF2;
}

.c-pagination__link--current {
  color: #56CCF2;
  position: relative;
}

.c-pagination__link--current::after {
  content: "";
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.5rem;
  height: 0.125rem;
  background-color: #56CCF2;
}
@media screen and (max-width: 767px) {
  .c-pagination__link--current::after {
    bottom: 0.5rem;
    width: 1.25rem;
  }
}

.c-pagination__link--current:hover {
  color: #56CCF2;
}

.c-pagination__link--prev,
.c-pagination__link--next {
  color: var(--color-primary);
}

.c-pagination__link--prev:hover,
.c-pagination__link--next:hover {
  color: #56CCF2;
}

.c-pagination__arrow {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-pagination__arrow {
    font-size: 1.125rem;
  }
}

.p-project-detail {
  padding-block: 4.6875rem 6.5625rem;
  background-image: url("../img/all-img-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1023px) {
  .p-project-detail {
    padding-block: 3.125rem 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-project-detail {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-project-detail__inner {
  width: min(80rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-project-detail__inner {
    padding-inline: 1.25rem;
  }
}

.p-project-detail__info {
  color: #000;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-project-detail__info {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}

.p-project-detail__title {
  font-family: "Oswald";
  font-size: 2.8125rem;
  line-height: normal;
  margin-bottom: 3.125rem;
  background: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-project-detail__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.p-project-detail__image {
  margin-bottom: 3.125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-project-detail__image {
    margin-bottom: 2rem;
  }
}
.p-project-detail__image img {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
}

.p-project-detail__content {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-project-detail__content {
    margin-bottom: 3rem;
  }
}

.p-project-detail__text {
  color: var(--color-text);
  line-height: normal;
  letter-spacing: 0.05em;
}

.p-project-detail__text-span {
  display: block;
}

.p-project-detail__back {
  text-align: center;
}

.p-project-detail__back-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  font-size: 0.9375rem;
  color: var(--color-primary);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-project-detail__back-link {
    font-size: 0.875rem;
    gap: 0.375rem;
  }
}

.p-project-detail__back-link:hover {
  opacity: 0.7;
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}

.p-project-detail__back-arrow {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-project-detail__back-arrow {
    font-size: 1rem;
  }
}

.p-project-detail__back-text {
  color: var(--color-primary);
  font-family: "Noto Sans JP";
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 0.15em;
}

.p-page-fv__img--service::after {
  background-image: url("../img/service-fv-img2.png");
}

.p-page-fv__img-overlay--service {
  background-image: url("../img/service-fv-img2.png");
}

.p-service {
  padding-block: 6.25rem 10.625rem;
  background-image: url("../img/all-img-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1023px) {
  .p-service {
    padding-block: 5rem 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service {
    padding-block: 4.375rem 6.25rem;
  }
}

.p-service__inner {
  width: min(75rem + 80px, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-service__inner {
    padding-inline: 1.25rem;
  }
}

.p-service__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 7.1875rem;
}
@media screen and (max-width: 1023px) {
  .p-service__item {
    gap: 2.5rem;
    margin-bottom: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service__item {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
  }
}

.p-service__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-service__item--reverse {
    grid-template-columns: 1fr;
  }
}

.p-service__item--reverse .p-service__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  .p-service__item--reverse .p-service__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-service__item--reverse .p-service__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .p-service__item--reverse .p-service__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-service__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

.p-service__number {
  font-family: "Oswald";
  font-size: 8.25rem;
  line-height: normal;
  background: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__number {
    font-size: 3.75rem;
  }
}

.p-service__title-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-service__subtitle {
  color: var(--color-primary);
  font-size: 1.375rem;
  line-height: normal;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__subtitle {
    font-size: 1rem;
  }
}

.p-service__title {
  color: var(--color-primary);
  font-size: 2.8125rem;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-service__title {
    font-size: 1.625rem;
    margin-bottom: 1.25rem;
  }
}

.p-service__text {
  color: var(--color-text);
  line-height: normal;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-service__text {
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
  }
}

.p-service__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2.5rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-service__image {
    display: none;
  }
}

.p-service-detail {
  padding-block: 4.6875rem 7.5rem;
  background-image: url("../img/all-img-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-service-detail {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-service-detail__inner {
  width: min(80rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-service-detail__inner {
    padding-inline: 1.25rem;
  }
}

.p-service-detail__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-service-detail__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 60px;
  }
}

.p-service-detail__header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-service-detail__header-left {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.p-service-detail__header-image {
  max-width: 37.5rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-service-detail__header-image {
    max-width: 15.625rem;
    margin-inline: auto;
  }
}

.p-service-detail__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-service-detail__grid {
    gap: 3.75rem;
    margin-bottom: 6.25rem;
  }
}

.p-service-detail__section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-service-detail__section {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-detail__section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-service-detail__section--reverse .p-service-detail__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-service-detail__section--reverse .p-service-detail__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.p-service-detail__image {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-service-detail__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-service-detail__image img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}

.p-service-detail__image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-service-detail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-service-detail__heading {
  color: var(--color-primary);
  font-size: 2.1875rem;
  line-height: normal;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-service-detail__heading {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
  }
}

.p-service-detail__text {
  color: var(--color-text);
  line-height: normal;
  letter-spacing: 0.05em;
}

.p-service-detail__back {
  text-align: center;
}

.p-service-detail__back-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-primary);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-service-detail__back-link:hover {
  opacity: 0.7;
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}

.p-service-detail__back-arrow {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.p-service-detail__back-text {
  color: var(--color-primary);
  font-family: "Noto Sans JP";
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15em;
}

.p-page-fv__img--contact::after {
  background-image: url("../img/contact-fv-img2.png");
}

.p-page-fv__img-overlay--contact {
  background-image: url("../img/contact-fv-img2.png");
}

.p-contact {
  padding-block: 6.25rem 10.625rem;
  background-image: url("../img/all-img-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1023px) {
  .p-contact {
    padding-block: 5rem 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 4.375rem 6.25rem;
  }
}

.p-contact__inner {
  width: min(85rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding-inline: 1.25rem;
  }
}

.p-contact__header {
  text-align: center;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__header {
    margin-bottom: 5rem;
  }
}

.p-contact__lead {
  color: var(--color-primary);
  font-family: "Oswald";
  font-size: clamp(2rem, 2.3vw, 2.8125rem);
  line-height: normal;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.p-contact__lead-text {
  display: block;
}

.p-contact__tel-box {
  width: min(80rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
  padding-block: 3.875rem;
  border: 0.1875rem solid;
  -o-border-image: var(--color-gradient) 1;
     border-image: var(--color-gradient) 1;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-box {
    padding-block: 1.5rem 1rem;
  }
}

.p-contact__tel-label {
  color: var(--color-text);
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.5rem;
}

.p-contact__tel-number {
  display: block;
  color: var(--color-primary);
  font-size: 3.75rem;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-number {
    font-size: 2rem;
  }
}

.p-contact__tel-number:hover {
  opacity: 0.7;
}

.p-contact__notice {
  color: var(--color-text);
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.p-contact__notice-text {
  display: block;
}

.p-contact__required-mark {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-size: 1rem;
  color: var(--color-secondary);
  background: var(--color-gradient);
  margin-right: 0.25rem;
}

.p-contact__field {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-block: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-top: 1px solid #56CCF2;
}
@media screen and (max-width: 767px) {
  .p-contact__field {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
}

.p-contact__field > .p-contact__error {
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .p-contact__field > .p-contact__error {
    grid-column: 1;
  }
}

.p-contact__field--policy > .p-contact__error {
  grid-column: 1;
}

.p-contact__field--policy {
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact__field--policy {
    gap: 0.75rem;
  }
}

.p-contact__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact__label {
    padding-top: 0;
  }
}

.p-contact__label--policy {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__label--policy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.625rem;
  }
}

.p-contact__label-text {
  color: var(--color-text);
  font-family: "Noto Sans JP";
  font-size: 1.125rem;
  line-height: normal;
  letter-spacing: 0.15em;
}

.p-contact__required {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  color: var(--color-secondary);
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 0.05em;
  background: var(--color-gradient);
}

.p-contact__input-group {
  width: 100%;
  position: relative;
}

.p-contact__input-group--radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input-group--radio {
    padding-top: 0;
    gap: 0.625rem;
  }
}

.p-contact__input {
  width: 100%;
  padding: 0.75rem 1rem;
  color: #C3C3C3;
  font-family: "Noto Sans JP";
  line-height: normal;
  letter-spacing: 0.075em;
  background: var(--color-bg);
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__input {
    padding: 0.5rem 0.625rem;
    font-size: 0.875rem;
  }
}

.p-contact__input:focus {
  outline: none;
  background-color: #fff;
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 0 3px rgba(11, 67, 154, 0.1);
          box-shadow: 0 0 0 3px rgba(11, 67, 154, 0.1);
}

.p-contact__input.is-error,
.p-contact__textarea.is-error {
  border: 1px solid #e74c3c;
  background-color: #fff5f5;
}

.p-contact__input.is-error:focus,
.p-contact__textarea.is-error:focus {
  border-color: #e74c3c;
  -webkit-box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
          box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.p-contact__input::-webkit-input-placeholder {
  color: #999;
}

.p-contact__input::-moz-placeholder {
  color: #999;
}

.p-contact__input:-ms-input-placeholder {
  color: #999;
}

.p-contact__input::-ms-input-placeholder {
  color: #999;
}

.p-contact__input::placeholder {
  color: #999;
}

.p-contact__textarea {
  width: 100%;
  height: 18.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1px solid transparent;
  resize: vertical;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.p-contact__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 0 3px rgba(11, 67, 154, 0.1);
          box-shadow: 0 0 0 3px rgba(11, 67, 154, 0.1);
}

.p-contact__textarea::-webkit-input-placeholder {
  color: #999;
}

.p-contact__textarea::-moz-placeholder {
  color: #999;
}

.p-contact__textarea:-ms-input-placeholder {
  color: #999;
}

.p-contact__textarea::-ms-input-placeholder {
  color: #999;
}

.p-contact__textarea::placeholder {
  color: #999;
}

.p-contact__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.p-contact__radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.p-contact__radio-text {
  color: var(--color-text);
  font-family: "Noto Sans JP";
  line-height: normal;
  letter-spacing: 0.15em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  position: relative;
  cursor: pointer;
}
.p-contact__radio-text::before {
  content: "";
  width: 1.3125rem;
  height: 1.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid var(--color-text);
  display: block;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.p-contact__radio-text::after {
  content: "";
  position: absolute;
  left: 0.375rem;
  top: 0.1875rem;
  width: 0.375rem;
  height: 0.625rem;
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-contact__radio-input:checked + .p-contact__radio-text::before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.p-contact__radio-input:checked + .p-contact__radio-text::after {
  opacity: 1;
}

.p-contact__radio.is-error .p-contact__radio-text::before {
  border-color: #e74c3c;
}

.p-contact__checkbox.is-error .p-contact__checkbox-text::before {
  border-color: #e74c3c;
}

.p-contact__policy-box {
  padding: 1rem;
  background: var(--color-bg);
  border: none;
  max-height: 300px;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__policy-box {
    padding: 1.25rem 1rem;
    max-height: 15.625rem;
  }
}
.p-contact__policy-box::-webkit-scrollbar {
  width: 15px;
  height: 51px;
}
.p-contact__policy-box::-webkit-scrollbar-track {
  background: transparent;
}
.p-contact__policy-box::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#4BB8E2), to(#0A3A7A));
  background: linear-gradient(180deg, #4BB8E2 0%, #0A3A7A 100%);
}
.p-contact__policy-box::-webkit-scrollbar-thumb:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#4BB8E2), to(#0A3A7A));
  background: linear-gradient(180deg, #4BB8E2 0%, #0A3A7A 100%);
}

.p-contact__policy-title {
  color: var(--color-primary);
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: var(--color-primary);
  -webkit-text-fill-color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact__policy-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

.p-contact__policy-heading {
  color: var(--color-primary);
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: var(--color-primary);
  -webkit-text-fill-color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__policy-heading {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.p-contact__policy-heading:first-child {
  margin-top: 0;
}

.p-contact__policy-text {
  color: #000;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact__policy-text {
    margin-bottom: 0.75rem;
  }
}

.p-contact__policy-text:last-child {
  margin-bottom: 0;
}

.p-contact__checkbox-wrapper {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__checkbox-wrapper {
    margin-top: 1rem;
  }
}

.p-contact__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.p-contact__checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.p-contact__checkbox-text {
  color: var(--color-text);
  font-family: "Noto Sans JP";
  line-height: normal;
  letter-spacing: 0.15em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  position: relative;
  cursor: pointer;
}
.p-contact__checkbox-text::before {
  content: "";
  width: 1.3125rem;
  height: 1.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid var(--color-text);
  display: block;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.p-contact__checkbox-text::after {
  content: "";
  position: absolute;
  left: 0.375rem;
  top: 0.1875rem;
  width: 0.375rem;
  height: 0.625rem;
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-contact__checkbox-input:checked + .p-contact__checkbox-text::before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.p-contact__checkbox-input:checked + .p-contact__checkbox-text::after {
  opacity: 1;
}

.p-contact__checkbox-link {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.p-contact__error {
  color: #e74c3c;
  font-size: 0.875rem;
  font-family: "Noto Sans JP";
  line-height: normal;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  display: none;
}
.p-contact__error.is-active {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-contact__error {
    font-size: 0.75rem;
    margin-top: 0.375rem;
  }
}

.p-contact__submit {
  text-align: center;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__submit {
    margin-top: 2.5rem;
  }
}

input[type=text],
input[type=email],
select,
textarea {
  border-radius: 0;
  width: 100%;
}
textarea {
  resize: vertical;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.contact__select-wrap {
  position: relative;
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.contact__data-checkbox span {
  display: inline-block;
  position: relative;
}
.contact__data-checkbox span::before {
  content: "";
  position: absolute;
}
.contact__data-checkbox span::after {
  content: "";
  position: absolute;
  opacity: 0;
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__submit {
  text-align: center;
}
.contact__submit input[type=submit] {
  display: inline-block;
}/*# sourceMappingURL=style.css.map */