@charset "UTF-8";
:root {
  --basic-font-size: 16px;
  --basic-line-height: 1.8;
  --basic-font-weight: 500;
  --color-text: #3f3f41;
  --color-text-light: rgba(63, 63, 65, 0.3);
  --color-primary: #005193;
  --color-new: #ec250f;
  --color-border: #a0b8db;
  --color-gray: #f7f8f9;
  --color-white: #fff;
  --color-black: #000;
  --font-family: "Noto Sans JP", sans-serif;
  --font-family-en: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  :root {
    --basic-font-size: 15px;
    --basic-font-weight: 400;
  }
}

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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  font-family: var(--font-family);
  font-size: var(--basic-font-size);
  line-height: var(--basic-line-height);
  color: var(--color-text);
}

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

h1,
h2,
h3,
h4 {
  text-wrap: wrap;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

img,
iframe {
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

.no-scroll {
  overflow: hidden;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

:root {
  --header-height: 140px;
}
@media screen and (max-width: 1023px) {
  :root {
    --header-height: 58px;
  }
}

body {
  padding-top: var(--header-height);
}

.l-header {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--color-white);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 1023px) {
  .l-header {
    border-bottom: solid 1px var(--color-primary);
  }
}
.l-header .u-sp-only {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .l-header .u-sp-only {
    display: block !important;
  }
}
.l-header .u-pc-only {
  display: block !important;
}
@media screen and (max-width: 1023px) {
  .l-header .u-pc-only {
    display: none !important;
  }
}
.l-header.is-fixed {
  position: fixed;
  transform: translateY(0);
  height: 68px;
}
@media screen and (max-width: 1023px) {
  .l-header.is-fixed {
    height: var(--header-height);
  }
}
.l-header.is-fixed .l-header__heading {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header.is-fixed .l-header__heading {
    display: flex;
  }
}
.l-header.is-fixed.is-entering {
  transform: translateY(-100%);
  animation: headerSlideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.l-header.is-fixed.is-leaving {
  animation: headerSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes headerSlideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.l-header__inner {
  max-width: 1080px;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.l-header__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 72px;
}
@media screen and (max-width: 1023px) {
  .l-header__heading {
    height: 100%;
  }
}

.l-header__body {
  display: flex;
  align-items: center;
  height: 68px;
}
@media screen and (max-width: 1023px) {
  .l-header__body {
    height: auto;
  }
}

.l-header__logo {
  max-width: 240px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__logo {
    max-width: 180px;
  }
}
.l-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.l-header__logo a {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}

.l-header__hamburger {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-left: auto;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-header__hamburger {
    display: block;
  }
}
.l-header__hamburger.is-active .l-header__hamburgerIcon {
  top: 50%;
  transform: translateY(-50%);
}
.l-header__hamburger.is-active .l-header__hamburgerIcon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header__hamburger.is-active .l-header__hamburgerIcon span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburgerIcon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.l-header__hamburger.is-active .l-header__hamburgerText {
  opacity: 0;
  visibility: hidden;
}

.l-header__hamburgerIcon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.l-header__hamburgerIcon span {
  width: 28px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

.l-header__hamburgerText {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-family: var(--font-family-en);
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 8px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-top: 4px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.l-header__nav {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-white);
    z-index: 9998;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 20px 20px 40px;
  }
  .l-header__nav.is-open {
    transform: translateX(0);
  }
}

.l-header__navList {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .l-header__navList {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
  }
}

.l-header__navListItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .l-header__navListItem {
    height: auto;
    border-bottom: 1px solid var(--color-border);
  }
  .l-header__navListItem.is-active .js-childNavSp::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
  }
}
.l-header__navListItem > a {
  display: inline-flex;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: opacity 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-header__navListItem > a {
    gap: 4px;
    font-size: 15px;
    padding: 24px 16px;
  }
}
@media (any-hover: hover) {
  .l-header__navListItem > a:hover {
    opacity: 0.7;
  }
}
.l-header__navListItem > a img {
  width: 20px;
  height: auto;
}
.l-header__navListItem .l-header__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 8px;
  border: solid 2px var(--color-primary);
  padding: 10px 38px 10px 70px;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-header__navListItem .l-header__btn {
    width: 100%;
    padding: 15px 38px 15px 38px;
    text-align: center;
  }
}
.l-header__navListItem .l-header__btn svg {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.l-header__navListItem .l-header__btn svg path {
  transition: stroke 0.3s;
  stroke: var(--color-white);
}
@media (any-hover: hover) {
  .l-header__navListItem .l-header__btn:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
  }
  .l-header__navListItem .l-header__btn:hover path {
    stroke: var(--color-primary);
  }
}

.l-header__btnWrap {
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .l-header__btnWrap {
    margin-top: 16px;
    margin-left: 0;
    border-bottom: none;
  }
}

.l-header__subnav {
  margin-left: auto;
}

.l-header__subnavList {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .l-header__subnavList {
    display: none;
  }
}

.l-header__subnavListItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-header__subnavListItem > a {
  display: inline-flex;
  gap: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .l-header__subnavListItem > a:hover {
    opacity: 0.7;
  }
}
.l-header__subnavListItem > a img {
  width: 12px;
  height: auto;
}

.l-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 120px 0 30px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 60px 0 30px;
  }
}

.l-footer__inner {
  max-width: 1080px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.l-footer__logo {
  max-width: 240px;
  width: 100%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    margin: 0 auto 40px;
  }
}
.l-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.l-footer__logo a {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .l-footer__logo a:hover {
    opacity: 0.7;
  }
}

.l-footer__navList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.l-footer__navListItem a {
  display: inline-flex;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer__navListItem a {
    gap: 4px;
    font-size: 15px;
  }
}
@media (any-hover: hover) {
  .l-footer__navListItem a:hover {
    opacity: 0.7;
  }
}
.l-footer__navListItem a img {
  width: 20px;
  height: auto;
}

.l-footer__other {
  border-top: solid 1px rgba(255, 255, 255, 0.5);
  padding: 16px 0 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .l-footer__other {
    grid-template-columns: 1fr;
  }
}

.l-footer__info {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.l-footer__subNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 30px;
}
@media screen and (max-width: 767px) {
  .l-footer__subNav {
    justify-content: flex-start;
    gap: 8px 30px;
  }
}

.l-footer__subNavItem a {
  display: inline-flex;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer__subNavItem a {
    gap: 4px;
  }
}
@media (any-hover: hover) {
  .l-footer__subNavItem a:hover {
    opacity: 0.7;
  }
}
.l-footer__subNavItem a img {
  width: 18px;
  height: auto;
}

.l-footer__copy {
  margin-top: 60px;
  display: block;
  font-family: var(--font-family-en);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 30px;
  }
}

.l-wrapper {
  overflow: clip;
}

.l-section {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .l-section {
    margin-top: 60px;
  }
}

.l-section__inner {
  max-width: 1080px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.p-top-fv {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.p-top-fv img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-services {
  display: grid;
  grid-template-columns: 514px 1fr;
  gap: 86px;
}
@media screen and (max-width: 767px) {
  .p-top-services {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-top-services p + p {
  margin-top: 20px;
}
.p-top-services .p-top-services__lead {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-services .p-top-services__lead {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.p-top-services .p-top-services__img {
  max-width: 385px;
  width: 100%;
  margin: 0 auto;
}
.p-top-services .p-top-services__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-top-services .p-top-services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-services .p-top-services__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.p-top-services .p-top-services__listTitle {
  padding: 2px 10px;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-white);
  background: linear-gradient(90deg, #005193 0%, #93afc6 100%);
}
@media screen and (max-width: 767px) {
  .p-top-services .p-top-services__listTitle {
    font-size: 16px;
  }
}
.p-top-services .p-top-services__listChildItem {
  position: relative;
  padding-left: 1em;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top-services .p-top-services__listChildItem {
    font-size: 14px;
  }
}
.p-top-services .p-top-services__listChildItem::before {
  content: "•";
  position: absolute;
  left: 0.25em;
  top: -0.125em;
}

.p-top-company p + p {
  margin-top: 20px;
}
.p-top-company .p-top-company__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-company .p-top-company__body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-top-company .p-top-company__footer {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-company .p-top-company__footer {
    margin-top: 30px;
  }
}
.p-top-company .p-top-company__subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  border-bottom: solid 2px var(--color-border);
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-company .p-top-company__subtitle {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.p-top-company .p-top-company__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-info {
  position: relative;
  padding-top: 200px;
  margin-top: 100px;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-info {
    padding-top: 100px;
    margin-top: 60px;
  }
}
.p-top-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/info-bg.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.p-top-info .c-sectionTitle {
  color: var(--color-white);
  margin-bottom: 0;
}
.p-top-info .c-sectionTitle::before {
  background: var(--color-white);
}
.p-top-info .c-sectionTitle--en {
  color: var(--color-white);
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  background-clip: border-box;
}
.p-top-info .p-top-info__section + .p-top-info__section {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-top-info .p-top-info__section + .p-top-info__section {
    padding-top: 60px;
  }
}
.p-top-info .p-top-info__body {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-top-info .p-top-info__body {
    gap: 20px 0;
  }
}
.p-top-info .p-top-info__content {
  display: grid;
  grid-template-columns: 1fr 680px;
}
@media screen and (max-width: 767px) {
  .p-top-info .p-top-info__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.p-top-overview {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-top-overview {
    gap: 20px 0;
  }
}

.p-top-overview__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top-overview__list {
    flex-direction: column;
    gap: 4px 0;
    padding-bottom: 20px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  }
}

.p-top-overview__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--color-white);
  flex: 0 0 200px;
  padding: 0 0 32px;
  border-bottom: solid 3px var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-overview__title {
    font-size: 15px;
    flex: 0 0 auto;
    padding: 0;
    border-bottom: none;
  }
}

.p-top-overview__body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--color-white);
  flex: 1;
  padding: 0 0 32px;
  border-bottom: solid 1px var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-overview__body {
    font-size: 14px;
    padding: 0;
    border-bottom: none;
  }
}

.p-top-contact {
  margin-top: -80px;
  padding-top: 200px;
  background: var(--color-primary);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-contact {
    padding-top: 100px;
    margin-top: -40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-contact .p-top-box {
    padding-bottom: 60px;
  }
}
.p-top-contact .p-top-contact__info {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 30px 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-top-contact .p-top-contact__info {
    grid-template-columns: 1fr;
    padding: 0;
    margin-bottom: 30px;
  }
}
.p-top-contact .p-top-contact__info::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: calc(100% - 60px);
  background: var(--color-text-light);
}
@media screen and (max-width: 767px) {
  .p-top-contact .p-top-contact__info::after {
    display: none;
  }
}
.p-top-contact .p-top-contact__infoCol {
  display: flex;
  align-items: center;
}
.p-top-contact .p-top-contact__infoCol:nth-child(1) {
  justify-content: flex-end;
  padding-right: 54px;
}
@media screen and (max-width: 767px) {
  .p-top-contact .p-top-contact__infoCol:nth-child(1) {
    position: relative;
    justify-content: center;
    padding-right: 0;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .p-top-contact .p-top-contact__infoCol:nth-child(1)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: var(--color-text-light);
  }
}
.p-top-contact .p-top-contact__infoCol:nth-child(2) {
  justify-content: flex-start;
  padding-left: 54px;
}
@media screen and (max-width: 767px) {
  .p-top-contact .p-top-contact__infoCol:nth-child(2) {
    justify-content: center;
    padding-left: 0;
  }
}
.p-top-contact .p-top-contact__infoItems {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-contact .p-top-contact__infoItems {
    gap: 12px;
  }
}
.p-top-contact .p-top-contact__infoItem {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-family-en);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-contact .p-top-contact__infoItem {
    font-size: 18px;
    gap: 10px;
  }
}
.p-top-contact .p-top-contact__infoItem img {
  display: block;
  width: 28px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-contact .p-top-contact__infoItem img {
    width: 18px;
  }
}
.p-top-contact .p-top-contact__infoText {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-top-contact .p-top-contact__infoText {
    font-size: 16px;
  }
}

.p-top-partner .p-top-partner__list {
  background: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
@media screen and (max-width: 767px) {
  .p-top-partner .p-top-partner__list {
    background: none;
    padding: 0;
    border-radius: 0;
    justify-content: center;
    gap: 4px 16px;
  }
}
.p-top-partner .p-top-partner__listItem {
  position: relative;
  padding-left: 1em;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-top-partner .p-top-partner__listItem {
    font-size: 14px;
  }
}
.p-top-partner .p-top-partner__listItem::before {
  content: "•";
  position: absolute;
  left: 0.25em;
  top: -0.125em;
}
.p-top-partner .p-top-partner__note {
  margin-top: 10px;
  text-align: right;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text);
}

.p-top-group {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .p-top-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.p-top-group .p-top-group__item img {
  display: block;
  width: 100%;
  height: auto;
}
.p-top-group .p-top-group__item a {
  display: block;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-top-group .p-top-group__item a:hover {
    opacity: 0.7;
  }
}

.p-top-box {
  background: var(--color-gray);
  color: var(--color-text);
  border-radius: 32px;
  padding: 80px 60px;
}
@media screen and (max-width: 767px) {
  .p-top-box {
    border-radius: 16px;
    padding: 30px 10px;
  }
}
.p-top-box .p-top-box__content + .p-top-box__content {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-top-box .p-top-box__content + .p-top-box__content {
    margin-top: 30px;
  }
}
.p-top-box .p-top-box__title {
  display: flex;
  align-items: center;
  gap: 40px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-box .p-top-box__title {
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.p-top-box .p-top-box__title::before, .p-top-box .p-top-box__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-top-box .p-top-box__title::before, .p-top-box .p-top-box__title::after {
    display: none;
  }
}

.p-page .l-section:last-child {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-page .l-section:last-child {
    margin-bottom: 60px;
  }
}

.p-pageEntry a {
  text-decoration: underline;
}

.p-contact-form .wpcf7-spinner {
  display: none !important;
}
.p-contact-form .wpcf7-list-item {
  margin-left: 0;
}
.p-contact-form input {
  max-width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  padding: 15px 16px;
  background: var(--color-white);
  border: solid 1px var(--color-text-light);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-contact-form input {
    font-size: 15px;
    padding: 12px 16px;
  }
}
.p-contact-form input::-moz-placeholder {
  color: var(--color-text-light);
}
.p-contact-form input::placeholder {
  color: var(--color-text-light);
}
.p-contact-form input[type=text],
.p-contact-form input[type=email],
.p-contact-form input[type=password] {
  width: 100%;
}
.p-contact-form .p-contact-form__checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-contact-form .p-contact-form__checkbox a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.p-contact-form label:has(input[type=checkbox]),
.p-contact-form label:has(input[type=radio]) {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-contact-form label:has(input[type=checkbox]),
  .p-contact-form label:has(input[type=radio]) {
    -moz-column-gap: 12px;
         column-gap: 12px;
    font-size: 14px;
  }
}
.p-contact-form input[type=checkbox],
.p-contact-form input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  width: 24px;
  padding: 0;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--color-white);
  border: solid 1px var(--color-text-light);
  border-radius: 4px;
  cursor: pointer;
}
.p-contact-form input[type=checkbox]::before,
.p-contact-form input[type=radio]::before {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  border-left: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  rotate: -45deg;
  translate: 0 -1.5px;
  opacity: 0;
}
.p-contact-form input[type=checkbox]:checked::before,
.p-contact-form input[type=radio]:checked::before {
  opacity: 1;
}
.p-contact-form textarea {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  padding: 15px 16px;
  background: var(--color-white);
  border: solid 1px var(--color-text-light);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-contact-form textarea {
    font-size: 15px;
    padding: 12px 16px;
  }
}
.p-contact-form textarea::-moz-placeholder {
  color: var(--color-text-light);
}
.p-contact-form textarea::placeholder {
  color: var(--color-text-light);
}

.p-contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-contact-form__row + .p-contact-form__row {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__row + .p-contact-form__row {
    margin-top: 20px;
  }
}

.p-contact-form__label {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.p-contact-form__labelText {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-contact-form__labelText {
    font-size: 15px;
  }
}
.p-contact-form__labelText--required {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 22px;
  background: var(--color-new);
  border-radius: 4px;
  color: var(--color-white);
  flex-shrink: 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-contact-form__labelText--required {
    width: 36px;
    height: 18px;
    font-size: 10px;
  }
}

.p-contact-form__input {
  width: 100%;
}

.p-contact-form__bottom {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__bottom {
    margin-top: 30px;
  }
}

.p-contact-form__bottom .p-contact-form__checkbox {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-contact-form__bottom .p-contact-form__checkbox label:has(input[type=checkbox]),
.p-contact-form__bottom .p-contact-form__checkbox label:has(input[type=radio]) {
  font-weight: 700;
}

.p-contact-form__note {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-new);
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__note {
    font-size: 10px;
  }
}

.p-contact-form__button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__button {
    flex-direction: column;
    gap: 24px;
  }
}
.p-contact-form__button input[type=button],
.p-contact-form__button input[type=submit],
.p-contact-form__button a {
  cursor: pointer;
  display: block;
  text-align: center;
  max-width: 280px;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  background: var(--color-primary);
  border: solid 1px var(--color-primary);
  border-radius: 8px;
  padding: 17px 16px;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact-form__button input[type=button],
  .p-contact-form__button input[type=submit],
  .p-contact-form__button a {
    max-width: 336px;
  }
}
@media (any-hover: hover) {
  .p-contact-form__button input[type=button]:hover,
  .p-contact-form__button input[type=submit]:hover,
  .p-contact-form__button a:hover {
    background-color: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}
.p-contact-form__button input[type=button] {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
@media (any-hover: hover) {
  .p-contact-form__button input[type=button]:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
  }
}

.c-sectionTitle {
  position: relative;
  padding-left: 17px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
.c-sectionTitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: calc(100% - 8px);
  background: linear-gradient(135deg, #005193 0%, #8fdaed 100%);
}
.c-sectionTitle--en {
  display: block;
  font-family: var(--font-family-en);
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #005193 0%, #8fdaed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle--en {
    font-size: 12px;
  }
}

.c-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-iframe {
    padding-bottom: 100%;
  }
}
.c-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.c-pageTop {
  position: fixed;
  bottom: 20px;
  right: 80px;
  width: 54px;
  height: 54px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .c-pageTop {
    width: 48px;
    height: 48px;
  }
}
.c-pageTop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (any-hover: hover) {
  .c-pageTop:hover {
    opacity: 0.7;
  }
}
.c-pageTop svg {
  width: 100%;
  height: auto;
}

.u-pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

.u-clear {
  overflow: hidden !important;
}

.u-text-underline {
  text-decoration: underline;
}

.u-text-bold {
  font-weight: bold;
}

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

.u-text-center-spLeft {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .u-text-center-spLeft {
    text-align: left;
  }
}

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

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

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}/*# sourceMappingURL=style.css.map */