html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  background: transparent;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100dvh;
  margin: 0;
  min-width: 320px;
  color: #333333;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

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

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

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

* {
  box-sizing: border-box;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.l-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 77px;
  padding: 16px 24px;
}
@media screen and (max-width: 920px) {
  .l-header__inner {
    gap: 16px;
    min-height: 50px;
    padding: 8px 8px 8px 10px;
  }
}
.l-header__logo {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 136px;
}
@media screen and (max-width: 920px) {
  .l-header__logo {
    width: 106px;
  }
}
.l-header__logo img {
  width: 100%;
}
.l-header__toggle {
  display: none;
}
@media screen and (max-width: 920px) {
  .l-header__toggle {
    position: relative;
    z-index: 110;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background-color: #003965;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    transition: 0.3s;
  }
}
@media screen and (max-width: 920px) {
  body.is-menu-open .l-header__toggle {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.l-header__toggle-bar {
  display: none;
}
@media screen and (max-width: 920px) {
  .l-header__toggle-bar {
    position: absolute;
    left: 50%;
    display: block;
    width: 26px;
    height: 1px;
    background-color: #ffffff;
    transform-origin: center;
    transition: 0.3s;
  }
}
@media screen and (max-width: 920px) {
  body.is-menu-open .l-header__toggle-bar {
    background-color: #003965;
  }
}
@media screen and (max-width: 920px) {
  .l-header__toggle-bar--01 {
    top: 14px;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 920px) {
  body.is-menu-open .l-header__toggle-bar--01 {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
  }
}
@media screen and (max-width: 920px) {
  .l-header__toggle-bar--02 {
    top: 24px;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 920px) {
  body.is-menu-open .l-header__toggle-bar--02 {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
  }
}
.l-header__nav {
  margin-left: auto;
}
@media screen and (max-width: 920px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 105;
    display: block;
    width: min(326px, 100vw - 32px);
    height: 100dvh;
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: 0.3s;
  }
}
@media screen and (max-width: 920px) {
  body.is-menu-open .l-header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
}
.l-header__nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 920px) {
  .l-header__nav-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 44px;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    padding: 80px 32px 32px;
    background-color: #003965;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 920px) {
  .l-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    width: 100%;
  }
}
.l-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 6px;
  color: #003965;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 920px) {
  .l-header__nav-link {
    justify-content: flex-start;
    padding-right: 18px;
    padding-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 350;
    line-height: 1;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 920px) {
  .l-header__nav-link::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    height: 10px;
    background: url("../img/header-drawer-arrow.svg") center/contain no-repeat;
    content: "";
    transform: translateY(-50%);
  }
}
.l-header__nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #003965 0%, #00a0ca 100%);
  transition: width 0.35s ease, opacity 0.2s ease;
  content: "";
}
@media screen and (max-width: 920px) {
  .l-header__nav-link::after {
    display: none;
  }
}
.l-header__nav-link:hover::after, .l-header__nav-link--current::after {
  right: auto;
  left: 0;
  width: 100%;
}
.l-header__cta {
  flex: 0 0 auto;
}
@media screen and (max-width: 920px) {
  .l-header__cta {
    width: 192px;
  }
}
@media screen and (max-width: 920px) {
  .l-header__cta-button {
    width: 100%;
    justify-content: center;
    padding-right: 32px;
    padding-left: 32px;
  }
}

.l-header-overlay {
  display: none;
}
@media screen and (max-width: 920px) {
  .l-header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 104;
    display: block;
    width: 100vw;
    height: 100dvh;
    border: 0;
    background-color: rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: pointer;
    transition: 0.3s;
  }
}
@media screen and (max-width: 920px) {
  body.is-menu-open .l-header-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

body.is-menu-open {
  overflow: hidden;
}

.l-footer {
  background-color: #003965;
}
.l-footer__inner {
  box-sizing: border-box;
  width: calc(100% - 48px);
  max-width: 1200px;
  min-height: 150px;
  margin: 0 auto;
  padding: 23px 0 29px;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    width: 100%;
    padding: 32px 24px;
  }
}
.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .l-footer__links {
    align-items: flex-start;
    gap: 5px 16px;
    margin-bottom: 34px;
  }
}
.l-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f1f1f1;
  transition: opacity 0.2s ease;
}
.l-footer__link:hover {
  opacity: 0.8;
}
.l-footer__link[target=_blank]::after {
  display: block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: url("../img/icon-arrow-link-footer.svg") center/contain no-repeat;
  content: "";
}
.l-footer__link-text {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.l-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}
.l-footer__brand {
  display: flex;
  align-items: flex-end;
  gap: 29px;
}
@media screen and (max-width: 767px) {
  .l-footer__brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}
.l-footer__logo {
  flex: 0 0 auto;
  width: 140px;
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__company {
  margin: 0 0 4px;
  color: #f1f1f1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .l-footer__company {
    margin-bottom: 0;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
.l-footer__copyright {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 350;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    display: none;
  }
}

.c-header-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex: 0 0 auto;
  min-height: 45px;
  padding: 6px 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, #003965 0%, #00a0ca 100%);
  color: #ffffff;
  filter: brightness(1);
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  transition: 0.3s;
}
@media screen and (max-width: 920px) {
  .c-header-button {
    --button-icon-color: #00a0ca;
    width: 196px;
    min-height: 48px;
    padding: 12px 48px;
    border: 1px solid transparent;
    background: #ffffff;
    color: #003965;
    filter: none;
    font-size: 1rem;
    font-weight: 500;
  }
}
.c-header-button:hover {
  filter: brightness(1.08);
}
@media screen and (max-width: 920px) {
  .c-header-button:hover {
    --set-icon-x: 8px;
    --set-icon-y: 12px;
    background: rgba(255, 255, 255, 0.8);
    filter: none;
  }
}
.c-header-button__label {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 920px) {
  .c-header-button::after {
    position: absolute;
    right: var(--set-icon-x, 10px);
    bottom: var(--set-icon-y, 10px);
    width: 10px;
    height: 10px;
    background-color: var(--button-icon-color, currentColor);
    content: "";
    mask: url("../img/contact-submit-arrow.svg") center/contain no-repeat;
    -webkit-mask: url("../img/contact-submit-arrow.svg") center/contain no-repeat;
    transition: 0.3s;
  }
}

.c-inverse-outline-button,
.c-inverse-fill-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 196px;
  min-height: 48px;
  padding: 12px 12px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  transition: 0.3s;
}
.c-inverse-outline-button::after,
.c-inverse-fill-button::after {
  position: absolute;
  right: var(--set-icon-x, 10px);
  bottom: var(--set-icon-y, 10px);
  width: 10px;
  height: 10px;
  background-color: var(--button-icon-color, currentColor);
  content: "";
  mask: url("../img/contact-submit-arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../img/contact-submit-arrow.svg") center/contain no-repeat;
  transition: 0.3s;
}
.c-inverse-outline-button:hover,
.c-inverse-fill-button:hover {
  --set-icon-x: 8px;
  --set-icon-y: 12px;
}

.c-inverse-outline-button {
  border: 1px solid #f1f1f1;
  background-color: transparent;
  color: #f1f1f1;
}
.c-inverse-outline-button:hover {
  background-color: rgba(255, 255, 255, 0.09);
}

.c-inverse-fill-button {
  --button-icon-color: #00a0ca;
  border: 1px solid transparent;
  background-color: #ffffff;
  color: #003965;
}
.c-inverse-fill-button:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 244px;
  min-height: 48px;
  padding: 12px 12px;
  border: 0;
  border-radius: 4px;
  background: var(--set-bg-color, linear-gradient(90deg, #003965 0%, #00a0ca 100%));
  color: #ffffff;
  filter: brightness(1);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: 0.3s;
}
.c-button:hover {
  --set-icon-x: 8px;
  --set-icon-y: 12px;
  filter: brightness(1.08);
}
.c-button__label {
  position: relative;
  z-index: 1;
  opacity: var(--set-icon-opacity, 1);
}
.c-button:disabled {
  --set-bg-color: #a8a8a8;
  --set-icon-opacity: .8;
  cursor: default;
}
.c-button:disabled:hover {
  --set-icon-x: 10px;
  --set-icon-y: 10px;
  filter: brightness(1);
}
.c-button::after {
  position: absolute;
  right: var(--set-icon-x, 10px);
  bottom: var(--set-icon-y, 10px);
  width: 10px;
  height: 10px;
  background: url("../img/contact-submit-arrow.svg") center/contain no-repeat;
  content: "";
  transition: 0.3s;
  opacity: var(--set-icon-opacity, 1);
}
@media screen and (max-width: 767px) {
  .c-button {
    max-width: 246px;
  }
}

.c-form-ui-textfield,
.c-form-ui-select,
.c-form-ui-textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  color: #333333;
  font: inherit;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  background-color: #f7f7f7;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.c-form-ui-textfield:focus,
.c-form-ui-select:focus,
.c-form-ui-textarea:focus {
  padding: 11px 23px;
  border-width: 2px;
  border-color: #00a0ca;
  outline: none;
}
@media screen and (max-width: 767px) {
  .c-form-ui-textfield:focus,
  .c-form-ui-select:focus,
  .c-form-ui-textarea:focus {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.c-form-ui-textfield.error,
.c-form-ui-select.error,
.c-form-ui-textarea.error {
  border-color: #ff6173;
  background-color: #fff0f2;
}
@media screen and (max-width: 767px) {
  .c-form-ui-textfield,
  .c-form-ui-select,
  .c-form-ui-textarea {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.c-form-ui-textfield::-moz-placeholder, .c-form-ui-textarea::-moz-placeholder {
  color: #6d6d6d;
}

.c-form-ui-textfield::placeholder,
.c-form-ui-textarea::placeholder {
  color: #6d6d6d;
}
.c-form-ui-textfield::-moz-placeholder,
.c-form-ui-textarea::-moz-placeholder {
  color: #6d6d6d;
}

.c-form-ui-textarea::-moz-placeholder {
  color: #6d6d6d;
}

.c-form-ui-textarea::placeholder {
  color: #6d6d6d;
}
.c-form-ui-textarea::-webkit-input-placeholder {
  color: #6d6d6d;
}
.c-form-ui-textarea::-moz-placeholder {
  color: #6d6d6d;
}
.c-form-ui-textarea:-ms-input-placeholder {
  color: #6d6d6d;
}
.c-form-ui-textarea::-ms-input-placeholder {
  color: #6d6d6d;
}

.c-form-ui-textarea {
  min-height: 258px;
  resize: vertical;
}

.c-form-ui-select {
  padding-right: 48px;
  background-image: url("../img/contact-select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 16px 16px;
}
.c-form-ui-select:focus {
  padding-right: 47px;
}
@media screen and (max-width: 767px) {
  .c-form-ui-select:focus {
    padding-right: 47px;
  }
}
@media screen and (max-width: 767px) {
  .c-form-ui-select {
    padding-right: 48px;
    background-position: right 16px center;
  }
}

.c-form-ui-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.c-form-ui-radio__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-form-ui-radio__input:checked + .c-form-ui-radio__icon::after {
  transform: translate(-50%, -50%) scale(1);
}
.c-form-ui-radio__text {
  color: #333333;
  font-size: 1rem;
  line-height: 21px;
}
.c-form-ui-radio__icon {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background-color: #ffffff;
}
.c-form-ui-radio__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0086c5;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
  content: "";
}
.c-form-ui-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.c-form-ui-radio-group.is-error .c-form-ui-radio__icon {
  border-color: #ff6173;
}

.c-form-ui-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.c-form-ui-checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-form-ui-checkbox__input:checked + .c-form-ui-checkbox__icon::after {
  opacity: 1;
}
.c-form-ui-checkbox__icon {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 2px solid #8a8a8a;
  border-radius: 4px;
  background-color: #f7f7f7;
}
.c-form-ui-checkbox__icon::after {
  position: absolute;
  top: 0px;
  left: 8px;
  box-sizing: border-box;
  width: 12px;
  height: 20px;
  border-right: 3px solid #00a0ca;
  border-bottom: 3px solid #00a0ca;
  opacity: 0;
  transform: rotate(45deg);
  content: "";
  transition: opacity 0.2s ease;
}
.c-form-ui-checkbox__text {
  color: #333333;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.c-form-ui-checkbox.is-error .c-form-ui-checkbox__icon {
  border-color: #ff6173;
}

.c-contact-flow__list {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-contact-flow__list::before {
  position: absolute;
  top: 13px;
  right: 16px;
  left: 16px;
  border-top: 1px dashed #003965;
  content: "";
}
.c-contact-flow__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 28px;
}
.c-contact-flow__item.is-current .c-contact-flow__dot {
  background-color: rgba(128, 207, 244, 0.4);
}
.c-contact-flow__item.is-current .c-contact-flow__dot::after {
  border-color: #00a0ca;
  background-color: #00a0ca;
}
.c-contact-flow__item.is-current .c-contact-flow__label {
  color: #00a0ca;
}
.c-contact-flow__dot {
  position: relative;
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  border-radius: 50%;
}
.c-contact-flow__dot::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid #003965;
  border-radius: 3px;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
  content: "";
}
.c-contact-flow__label {
  color: #003965;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-contact-flow {
    width: 207px;
  }
}

.c-form {
  width: 100%;
}
.c-form__body {
  display: grid;
  gap: 32px;
}
.c-form__item {
  display: grid;
  gap: 8px;
}
.c-form__item--textarea {
  gap: 12px;
}
.c-form__item-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-form__item-title {
  margin: 0;
  color: #333333;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.c-form__item-title--lg {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-form__item-title--lg {
    font-size: 1rem;
  }
}
.c-form__require {
  color: #00a0ca;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.c-form__field-body {
  position: relative;
}
.c-form__agreement {
  position: relative;
}
.c-form__recaptcha {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-form__recaptcha .g-recaptcha {
  margin-right: auto;
  margin-left: auto;
}
.c-form__recaptcha [data-error-for=recaptcha] {
  text-align: center;
}
.c-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px 24px;
}
@media screen and (max-width: 767px) {
  .c-form__grid {
    gap: 12px;
  }
}
.c-form__subfield {
  display: grid;
  align-content: start;
  gap: 8px;
}
.c-form__subfield-head, .c-form__subfield-body, .c-form__subfield-error {
  display: block;
}
.c-form__subfield-error .c-form__error {
  margin: 0;
}
.c-form__subfield-label {
  color: #333333;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-form__privacy {
  padding: 32px 0 0;
}
@media screen and (max-width: 767px) {
  .c-form__privacy {
    padding: 8px 0 0;
  }
}
.c-form__consent {
  display: grid;
  gap: 40px;
  padding: 8px 0 0;
}
@media screen and (max-width: 767px) {
  .c-form__consent {
    gap: 24px;
    padding: 8px 0 0;
  }
}
.c-form__privacy-text {
  margin: 0;
  color: #333333;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-form__privacy-text {
    font-size: 0.875rem;
  }
}
.c-form__privacy-text a {
  color: #00a0ca;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity 0.2s ease;
}
.c-form__privacy-text a:hover {
  opacity: 0.8;
}
.c-form__error {
  margin: 8px 0 0;
  color: #e6374b;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.c-form__actions {
  display: flex;
  justify-content: center;
  padding-top: 56px;
}

.c-business-heading {
  position: relative;
  z-index: 1;
}
.c-business-heading--deco02 .c-business-heading__number::after {
  background-image: url("../img/business-heading-deco02.svg");
}
.c-business-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: #ffffff;
  font-family: "Source Serif 4", serif;
  font-size: 1.25rem;
  line-height: 1.25rem;
  letter-spacing: -0.03em;
}
.c-business-heading__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.c-business-heading__label::after {
  width: 0;
  height: 18px;
  border-left: 1px solid #ffffff;
  content: "";
}
.c-business-heading__number {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding-right: 80px;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 2.125rem;
  letter-spacing: -0.05em;
}
.c-business-heading__number::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 70px;
  height: 30px;
  background-image: url("../img/business-heading-deco01.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transform: translateY(-50%);
}
.c-business-heading__title {
  margin: 5px 0 0;
  color: #ffffff;
  font-family: "Hiragino Serif Pr6N", "Noto Serif JP", serif;
  font-size: 4.125rem;
  line-height: 4.9375rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-business-heading__title {
    font-size: 2rem;
    line-height: 1.2;
  }
}
.c-business-heading__title-main, .c-business-heading__title-sub {
  display: block;
  font-weight: 300;
}
.c-business-heading__title-sub {
  font-size: 2.8125rem;
  line-height: 3.375rem;
}
@media screen and (max-width: 767px) {
  .c-business-heading__title-sub {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}

.c-business-subheading__text {
  display: inline-block;
  position: relative;
  margin: 0;
  padding-left: 30px;
  background: linear-gradient(90deg, #003965 0%, #00a0ca 100%);
  color: transparent;
  font-family: "Source Serif 4", serif;
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: -0.03em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.c-business-subheading__text::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 5px;
  background: linear-gradient(90deg, #003965 0%, #00a0ca 100%);
  content: "";
  transform: translateY(-50%) rotate(-12.5deg) skewX(-10deg);
  transform-origin: left center;
}

.c-section-heading {
  padding: 0 0 28px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-section-heading {
    padding: 0 0 24px;
  }
}
.c-section-heading::after {
  display: block;
  width: 50px;
  height: 5px;
  background: linear-gradient(90deg, #003965 0%, #00a0ca 100%);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-section-heading__en {
  margin: 0;
  color: #003965;
  font-family: "Source Serif 4", serif;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .c-section-heading__en {
    font-size: 3.125rem;
  }
}
.c-section-heading__ja {
  margin: -5px 0 0;
  color: #003965;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-section-heading__ja {
    margin-top: 4px;
    font-size: 0.875rem;
  }
}
.c-section-heading--white .c-section-heading__en,
.c-section-heading--white .c-section-heading__ja {
  color: #ffffff;
}
.c-section-heading--descender .c-section-heading__ja {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .c-section-heading--descender .c-section-heading__ja {
    margin-top: 4px;
  }
}

.c-line-label {
  position: relative;
}
.c-line-label::after {
  width: 7px;
  height: 68px;
  margin-top: -2px;
  background: url("../img/business-detail-line.svg") center/contain no-repeat;
  content: "";
  transform: scaleX(-1);
  position: absolute;
  left: 0;
  top: 0;
}
.c-line-label__text {
  display: inline-block;
  color: #ffffff;
  font-family: "Source Serif 4", serif;
  font-size: 0.75rem;
  line-height: 1;
  transform: rotate(90deg) translateX(1px) translateY(4px);
  transform-origin: center;
}

.c-description-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .c-description-list__item {
    text-align: center;
  }
}
.c-description-list__item:not(:last-child) {
  margin-bottom: 0.5em;
}

.c-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: feature-item;
}
.c-feature-list__item {
  counter-increment: feature-item;
}
.c-feature-list__item:not(:first-child) {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .c-feature-list__item:not(:first-child) {
    margin-top: 70px;
  }
}

.c-feature-item {
  display: flex;
  align-items: start;
  gap: 0 62px;
  max-width: 972px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-feature-item {
    flex-direction: column;
    gap: 30px;
  }
}
.c-feature-item--image-left {
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .c-feature-item--image-left .c-feature-item__image {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-feature-item--image-left .c-feature-item__content {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .c-feature-item--image-left .c-feature-item__index {
    text-align: right;
    left: -48px;
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-feature-item--image-left .c-feature-item__body {
    order: 2;
  }
}
.c-feature-item--image-right {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .c-feature-item--image-right .c-feature-item__content {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .c-feature-item--image-right .c-feature-item__body {
    order: 1;
  }
}
.c-feature-item--image-right .c-feature-item__index {
  text-align: left;
  padding-top: 24px;
  left: auto;
  right: 0;
  top: 0;
}
.c-feature-item--image-right .c-feature-item__index::after {
  top: 0;
  bottom: auto;
  transform: rotate(-12deg);
}
@media screen and (min-width: 768px) {
  .c-feature-item--image-right .c-feature-item__index {
    transform: translate(60%, 0);
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .c-feature-item--image-right .c-feature-item__image {
    order: 2;
  }
}
.c-feature-item__image {
  width: 424px;
  max-width: 100%;
}
.c-feature-item__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-feature-item__image {
    width: 100%;
    max-width: 100%;
  }
}
.c-feature-item__content {
  flex: 1;
  display: grid;
  align-items: start;
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .c-feature-item__content {
    width: 100%;
    max-width: 100%;
    display: block;
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-feature-item__content--ex01 {
    padding-top: 30px;
  }
}
.c-feature-item__index {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 65px;
}
.c-feature-item__index::before {
  display: block;
  background: linear-gradient(90deg, #003965 0%, #00a0ca 100%);
  color: transparent;
  content: counter(feature-item, decimal-leading-zero);
  font-family: "Source Serif 4", serif;
  font-size: 1.5rem;
  line-height: 1.25rem;
  letter-spacing: -0.05em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.c-feature-item__index::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #003965 0%, #00a0ca 100%);
  content: "";
  transform: translateY(calc(10px - 100%)) rotate(-12deg);
  transform-origin: right top;
}
@media screen and (max-width: 767px) {
  .c-feature-item__index::after {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 65px;
    transform: rotate(-12deg);
  }
}
@media screen and (max-width: 767px) {
  .c-feature-item__index {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 65px;
    margin-bottom: 11px;
    padding-top: 25px;
    text-align: left;
    transform: none;
  }
}
.c-feature-item__body {
  max-width: 486px;
}
@media screen and (max-width: 767px) {
  .c-feature-item__body {
    max-width: 100%;
  }
}
.c-feature-item__title {
  margin: 0;
  color: #003965;
  font-family: "Hiragino Serif Pr6N", "Noto Serif JP", serif;
  font-size: 1.75rem;
  line-height: 2.75rem;
  letter-spacing: 0.03em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .c-feature-item__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.c-feature-item__text {
  margin: 20px 0 0;
  color: #333333;
  font-size: 1rem;
  font-weight: 350;
  line-height: 1.8125rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-feature-item__text {
    margin-top: 10px;
    line-height: 1.8;
  }
}

.c-company-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d9d9d9;
}
.c-company-list__item {
  border-bottom: 1px solid #d9d9d9;
}

.c-company-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 165px;
  padding: 32px 16px;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.c-company-link[target=_blank]::after {
  position: absolute;
  right: 20px;
  bottom: 19px;
  width: 10px;
  height: 10px;
  background: url("../img/icon-arrow-link.svg") center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  .c-company-link[target=_blank]::after {
    right: 20px;
    bottom: 18px;
  }
}
.c-company-link[href]:hover {
  background-color: #f4fdff;
}
.c-company-link__logo {
  display: flex;
  flex: 0 0 180px;
  align-items: center;
  justify-content: center;
  width: 180px;
  aspect-ratio: 180/100;
}
@media screen and (max-width: 767px) {
  .c-company-link__logo {
    flex: 0 0 auto;
    max-width: 256px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 512/284;
  }
}
.c-company-link__logo-picture {
  display: block;
  max-width: 100%;
}
.c-company-link__logo-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-company-link__content {
  flex: 1 1 auto;
  min-width: 0;
}
.c-company-link__company {
  margin: 0 0 12px;
  color: #333333;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.c-company-link__description {
  margin: 0;
  color: #333333;
  font-size: 0.8125rem;
  font-weight: 350;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-company-link {
    align-items: stretch;
    flex-direction: column;
  }
}

.c-service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .c-service-list {
    margin: 0 27px;
  }
}
.c-service-list__item {
  border-bottom: 1px solid #d9d9d9;
}

.c-service-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 9px 16px 9px;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.c-service-link[target=_blank]::after {
  position: absolute;
  right: 20px;
  bottom: 19px;
  width: 10px;
  height: 10px;
  background: url("../img/icon-arrow-link.svg") center/contain no-repeat;
  content: "";
}
.c-service-link__logo {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-service-link__logo {
    justify-content: center;
    max-width: 256px;
    background-color: #ffffff;
  }
}
.c-service-link__logo-image {
  width: 100%;
  height: auto;
}
.c-service-link__content {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 26px;
}
@media screen and (max-width: 767px) {
  .c-service-link__content {
    padding-right: 0;
  }
}
.c-service-link__title {
  margin: 0;
  color: #333333;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.c-service-link__description {
  margin: 12px 0 0;
  color: #333333;
  font-size: 0.8125rem;
  font-weight: 350;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.c-service-link:hover {
  background-color: #f4fdff;
}
@media screen and (max-width: 767px) {
  .c-service-link {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
    padding: 32px 16px 32px;
    background-color: transparent;
  }
}

.c-section {
  padding: 110px 132px 100px;
}
.c-section__inner {
  width: 100%;
}
.c-section__header, .c-section__body {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-section {
    padding: 90px 24px 80px;
  }
}
.c-section--bg-white {
  background-color: #ffffff;
}
.c-section--bg-gray {
  background-color: #f7f7f7;
}

@media screen and (max-width: 767px) {
  .c-business-child-section__header {
    padding-top: 0;
    padding-left: 0;
  }
}
.c-business-child-section__body {
  padding: 48px 0 0;
}
@media screen and (max-width: 767px) {
  .c-business-child-section__body {
    padding-top: 50px;
    padding-left: 0;
  }
}
@media screen and (max-width: 1100px) {
  .c-business-child-section {
    gap: 48px;
  }
}

.c-business-intro-section {
  padding: 86px 24px 142px;
  overflow: hidden;
}
.c-business-intro-section__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.c-business-intro-section__header {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-business-intro-section__header {
    padding: 0 24px;
  }
}
.c-business-intro-section__header::before {
  position: absolute;
  top: 160px;
  left: 50%;
  width: calc(100vw + 240px);
  min-width: 1660px;
  height: 20px;
  background: linear-gradient(90deg, #ffffff 0%, #00a0ca 100%);
  content: "";
  transform: translateX(-50%) rotate(-12.5deg);
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .c-business-intro-section__header::before {
    top: 124px;
    width: calc(100vw + 84px);
    min-width: 0;
    height: 16px;
  }
}
.c-business-intro-section__deco {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 70px);
  max-width: 1005px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-business-intro-section__deco {
    padding: 0 24px 0;
    transform: translate(-50%, 50px);
  }
}
@media screen and (max-width: 767px) {
  .c-business-intro-section {
    padding: 50px 0 143px;
  }
}

.c-business-feature-section {
  padding: 55px 24px 108px;
}
.c-business-feature-section__inner {
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: 1005px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-business-feature-section__inner {
    gap: 80px;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .c-business-feature-section {
    padding: 50px 24px;
  }
}

.c-business-map-card {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: clamp(8px, 2.667vw, 10px);
       column-gap: clamp(8px, 2.667vw, 10px);
  padding: 18px 20px;
  border: 3px solid transparent;
  border-radius: 5px;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(90deg, #003965 0%, #00a0ca 100%) border-box;
}
.c-business-map-card__title {
  margin: 0;
  color: #003965;
  font-size: clamp(0.875rem, 4.267vw, 1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  font-family: "Source Serif 4", serif;
}
@media screen and (max-width: 767px) {
  .c-business-map-card__title {
    max-width: 100px;
    width: 100%;
  }
}
.c-business-map-card__text {
  margin: 0;
  padding-left: clamp(14px, 4.533vw, 17px);
  border-left: 1px solid rgba(0, 57, 101, 0.4);
  color: #003965;
  font-size: clamp(0.6875rem, 3.2vw, 0.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-business-map-card__text {
    flex: 1;
  }
}

.c-business-map-visual {
  position: relative;
  margin: 0;
}
.c-business-map-visual__image {
  display: block;
  width: calc(100% - clamp(12px, 4.267vw, 16px));
  height: auto;
  margin: 0 auto;
}
.c-business-map-visual__line {
  position: absolute;
  width: 1px;
  background-color: #C8C8C8;
  height: clamp(80px, 24.533vw, 92px);
}
.c-business-map-visual__line::after {
  position: absolute;
  left: 50%;
  width: clamp(4px, 1.333vw, 5px);
  height: clamp(4px, 1.333vw, 5px);
  border-radius: 50%;
  background-color: #C8C8C8;
  content: "";
  transform: translateX(-50%);
}
.c-business-map-visual__line--top {
  top: clamp(-20px, -5.333vw, -18px);
  left: 25.15%;
}
.c-business-map-visual__line--top::after {
  bottom: -2px;
}
.c-business-map-visual__line--bottom {
  right: 25.15%;
  bottom: clamp(-20px, -5.333vw, -18px);
}
.c-business-map-visual__line--bottom::after {
  top: -2px;
}

.c-business-intro {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px;
  max-width: 990px;
  width: 100%;
  margin: 130px auto 0;
}
.c-business-intro__content {
  flex: 0 0 580px;
  max-width: 580px;
}
@media screen and (max-width: 1100px) {
  .c-business-intro__content {
    flex: 1 1 0;
    max-width: calc(100% - 324px);
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-business-intro__content {
    flex-basis: auto;
    width: 100%;
    max-width: none;
    padding: 0 24px;
    margin-right: 0;
  }
}
.c-business-intro__title {
  margin: 0;
  color: #ffffff;
  font-family: "Hiragino Serif Pr6N", "Noto Serif JP", serif;
  font-size: 2rem;
  line-height: 2.5rem;
  letter-spacing: 0.04em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .c-business-intro__title {
    font-size: 1.5625rem;
    line-height: 1.2;
  }
}
.c-business-intro__text {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .c-business-intro__text {
    margin-top: 15px;
  }
}
.c-business-intro__text p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 350;
  line-height: 1.8125rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-business-intro__text p {
    line-height: 1.8;
  }
}
.c-business-intro__text p:not(:first-child) {
  margin-top: 8px;
}
.c-business-intro__image {
  flex: 0 0 auto;
  width: min(574px, 50vw - 140px);
  max-width: 574px;
  min-width: 0;
}
@media screen and (max-width: 1100px) {
  .c-business-intro__image {
    flex: 0 1 300px;
    width: 300px;
    margin-right: -24px;
  }
}
@media screen and (max-width: 767px) {
  .c-business-intro__image {
    flex-basis: auto;
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
}
.c-business-intro__image picture,
.c-business-intro__image img {
  display: block;
}
.c-business-intro__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1100px) {
  .c-business-intro {
    gap: 48px;
  }
}
@media screen and (max-width: 767px) {
  .c-business-intro {
    flex-direction: column;
    gap: 40px;
    margin-top: 105px;
  }
}

.p-hero {
  position: relative;
  overflow: hidden;
  background-color: #003965;
}
.p-hero__bg {
  /*
  @include mq {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  */
}
.p-hero__bg-picture {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-hero__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.p-hero__content {
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  width: min(100% - 48px, 1208px);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-hero__content {
    width: calc(100% - 50px);
  }
}
.p-hero__copy {
  position: absolute;
  left: 0;
  /*
  @include mq(hero-fluid) {
    bottom: 25%;
  }
  @include mq(hero-fixed) {
    bottom: 21%;
  }
  */
}
@media screen and (min-width: 768px) {
  .p-hero__copy {
    bottom: 22%;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__copy {
    bottom: 24%;
  }
}
.p-hero__title {
  margin: 0;
  color: #ffffff;
  font-family: "Hiragino Serif Pr6N", "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    white-space: normal;
  }
}
.p-hero__line {
  display: block;
  font-size: 0;
}
.p-hero__line--02 {
  margin-top: -8px;
}
@media screen and (max-width: 767px) {
  .p-hero__line--02 {
    margin-top: 10px;
  }
}
.p-hero__line-fragment {
  display: inline;
}
@media screen and (max-width: 767px) {
  .p-hero__line-fragment {
    display: block;
  }
}
.p-hero__text {
  display: inline-block;
}
.p-hero__text--lg {
  font-size: min(6.881944vw, 6.1875rem);
}
@media screen and (max-width: 767px) {
  .p-hero__text--lg {
    font-size: 3.25rem;
  }
}
.p-hero__text--sm {
  font-size: min(5.086806vw, 4.5625rem);
}
@media screen and (max-width: 767px) {
  .p-hero__text--sm {
    font-size: 2.375rem;
  }
}
.p-hero__text--xl {
  font-size: min(9.791667vw, 8.8125rem);
}
@media screen and (max-width: 767px) {
  .p-hero__text--xl {
    font-size: 4.625rem;
  }
}
.p-hero__text--md {
  font-size: min(7.152778vw, 6.4375rem);
}
@media screen and (max-width: 767px) {
  .p-hero__text--md {
    font-size: 3.375rem;
  }
}
.p-hero__text--tight {
  letter-spacing: -0.11em;
}
.p-hero__text--tight-secondary {
  letter-spacing: -0.06em;
}
.p-hero__text--normal {
  letter-spacing: 0;
}
.p-hero__text--wide {
  letter-spacing: 0.05em;
}
.p-hero__text--narrow {
  letter-spacing: -0.08em;
}
.p-hero__scroll {
  position: absolute;
  bottom: 6%;
  left: 23px;
  width: 35px;
  height: 68px;
}
@media screen and (max-width: 767px) {
  .p-hero__scroll {
    bottom: 8%;
    left: 5px;
  }
}
.p-hero__button {
  margin: 40px 0 0;
}
@media screen and (min-width: 768px) {
  .p-hero__button {
    display: flex;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__button {
    margin: 30px 0 0;
  }
  .p-hero__button > *:not(:last-child) {
    margin: 0 0 10px;
  }
}

.p-about {
  padding: 100px 24px 150px;
  overflow: hidden;
  background-color: #003965;
  color: #ffffff;
}
.p-about__inner {
  max-width: 1005px;
  margin: 0 auto;
}
.p-about__columns {
  display: flex;
  align-items: flex-start;
  gap: 112px;
  margin-top: 60px;
}
@media screen and (max-width: 1100px) {
  .p-about__columns {
    gap: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__columns {
    display: block;
    margin-top: 64px;
  }
}
.p-about__body {
  flex: 1 1 0;
  max-width: 700px;
  min-width: 0;
}
@media screen and (max-width: 1100px) {
  .p-about__body {
    max-width: calc(100% - 324px);
  }
}
@media screen and (max-width: 767px) {
  .p-about__body {
    max-width: 100%;
  }
}
.p-about__content {
  min-width: 0;
}
.p-about__title {
  margin: 0;
  color: #ffffff;
  font-family: "Hiragino Serif Pr6N", "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}
.p-about__text {
  margin-top: 22px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 350;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 1rem;
    line-height: 1.875;
    margin-top: 30px;
  }
}
.p-about__text p {
  margin: 0;
}
.p-about__text p + p {
  margin-top: 4px;
}
.p-about__visuals {
  --about-visual-width: clamp(250px, calc((100vw - 160px) * 0.42), 410px);
  --about-visual-overhang: min(217px, max(0px, calc((100vw - 1005px) / 2)));
  position: relative;
  flex: 0 1 var(--about-visual-width);
  width: var(--about-visual-width);
  min-width: 0;
  margin-right: calc(var(--about-visual-overhang) * -1);
  aspect-ratio: 410/648;
  margin-top: -86px;
}
@media screen and (max-width: 1100px) {
  .p-about__visuals {
    --about-visual-width: 300px;
    --about-visual-overhang: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__visuals {
    --about-visual-width: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc(100% + 48px);
    margin: 40px -24px 0;
    transform: none;
    aspect-ratio: auto;
  }
}
.p-about__visual {
  position: absolute;
  margin: 0;
  overflow: hidden;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .p-about__visual {
    position: static;
    width: calc(100% - 83px);
  }
}
.p-about__visual--01 {
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-about__visual--01 {
    width: calc(100% - 83px);
    margin-left: auto;
  }
}
.p-about__visual--02 {
  top: 36%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-about__visual--02 {
    width: calc(100% - 83px);
  }
}
.p-about__visual--03 {
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-about__visual--03 {
    width: calc(100% - 83px);
    margin-left: auto;
  }
}
.p-about__image {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 0 24px 117px;
  }
}

.p-business-overview {
  padding: 114px 24px 100px;
  background-color: #ffffff;
}
.p-business-overview__inner {
  max-width: 1208px;
  margin: 0 auto;
}
.p-business-overview__header {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-business-overview__header {
    align-items: center;
    gap: 110px;
  }
}
@media screen and (max-width: 767px) {
  .p-business-overview__header {
    flex-direction: column;
    gap: 64px;
    margin: 0 0 30px;
  }
}
.p-business-overview__lead {
  flex: 1;
  margin: 0;
  max-width: 894px;
  color: #333333;
  font-weight: 350;
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-business-overview {
    padding: 59px 24px 50px;
  }
}

.p-business {
  background-color: #003965;
}
.p-business__intro-section {
  background-color: #003965;
}
@media screen and (max-width: 767px) {
  .p-business__intro-section::before {
    top: 118px;
    left: 50%;
    width: calc(100vw + 120px);
    min-width: 1100px;
    height: 8px;
    transform: translateX(-50%) rotate(-12deg);
    transform-origin: center;
  }
}
.p-business__feature-section {
  background-color: #f7f7f7;
}
.p-business__boundary {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  height: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-business__boundary {
    padding: 0 20px;
  }
}
.p-business__detail {
  position: absolute;
  top: -35px;
  left: 97px;
}
@media screen and (max-width: 767px) {
  .p-business__detail {
    left: 20px;
  }
}

.p-business-map {
  position: relative;
  max-width: 960px;
  width: 100%;
  aspect-ratio: 960/418;
  margin: 48px auto 0;
  background: url("../img/business-overview-bg.svg") center/100% 100% no-repeat;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .p-business-map {
    margin-top: 40px;
  }
}
.p-business-map__item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #ffffff;
}
.p-business-map__item--platform {
  left: 7%;
  width: 30%;
}
.p-business-map__item--account {
  right: 7%;
  width: 30%;
}
.p-business-map__item-title {
  margin: 0;
  font-size: clamp(1.5625rem, 3.333vw, 2rem);
  font-weight: 500;
  line-height: 1.1875;
  letter-spacing: 0;
  text-align: center;
  font-family: "Source Serif 4", serif;
}
.p-business-map__item-text {
  margin: clamp(22px, 3.125vw, 30px) 0 0;
  font-size: clamp(0.875rem, 1.875vw, 1rem);
  font-weight: 400;
  letter-spacing: 0;
}
.p-business-map__item-text--platform {
  line-height: 1.6;
}
.p-business-map__item-text--account {
  line-height: 1.5;
}
.p-business-map__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(145px, 18.854vw, 181px);
}
.p-business-map__center-logo {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-business-map {
    display: none;
  }
}

.p-business-map-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-business-map-sp {
    display: block;
  }
}
.p-business-map-sp__visual-wrap {
  padding: clamp(18px, 5.333vw, 20px) 0;
}

.p-group {
  padding: 110px 24px 130px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-group {
    padding: 90px 24px 80px;
  }
}
.p-group__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-group__inner {
    max-width: 1005px;
    width: 100%;
    margin: 0 auto;
  }
}
.p-group__lead {
  margin: 62px 0 0;
  color: #333333;
  line-height: 35px;
  letter-spacing: 0;
}
.p-group__body {
  margin-top: 64px;
  padding: 0 27px;
}
@media screen and (min-width: 768px) {
  .p-group__body {
    margin-top: 60px;
    padding: 0;
  }
}

.p-profile {
  padding: 110px 24px 100px;
}
@media screen and (max-width: 767px) {
  .p-profile {
    padding: 90px 24px 80px;
  }
}
.p-profile__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-profile__inner {
    width: 100%;
    max-width: 1005px;
  }
}
.p-profile__header {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-profile__header {
    width: 100%;
    max-width: 384px;
  }
}
@media screen and (max-width: 767px) {
  .p-profile__header {
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 768px) {
  .p-profile__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-profile__body {
    display: grid;
    gap: 48px;
  }
}
.p-profile__content {
  flex: 1 1 auto;
}
@media screen and (min-width: 768px) {
  .p-profile__content {
    width: 100%;
  }
}
.p-profile__list {
  display: grid;
}
@media screen and (max-width: 767px) {
  .p-profile__list {
    gap: 24px;
  }
}
.p-profile__item {
  display: flex;
  gap: 24px;
}
.p-profile__item + .p-profile__item {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-profile__item + .p-profile__item {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-profile__item {
    display: grid;
    gap: 12px;
  }
}
.p-profile__term {
  flex: 0 0 150px;
  padding: 0 0 20px;
  border-bottom: 1px solid #dcdcdc;
  color: #6d6d6d;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-profile__term {
    flex: none;
    width: 117px;
    padding: 0;
    border-bottom: 0;
  }
}
.p-profile__desc {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 0 20px;
  border-bottom: 1px solid #dcdcdc;
  color: #333333;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-profile__desc {
    padding: 0 0 12px;
  }
}
.p-profile__address {
  margin: 0;
}
.p-profile__map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  color: #00a0ca;
}
@media screen and (max-width: 767px) {
  .p-profile__map-link {
    margin-top: 4px;
  }
}
.p-profile__map-link[target=_blank]::after {
  display: block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: url("../img/icon-arrow-link.svg") center/contain no-repeat;
  content: "";
}
.p-profile__visual {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-profile__visual {
    margin-top: -117px;
    max-width: 392px;
  }
}
@media screen and (max-width: 767px) {
  .p-profile__visual {
    max-width: 249px;
    margin: 0 auto;
  }
}
.p-profile__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.p-recruit {
  padding: 110px 24px 100px;
  background-color: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .p-recruit {
    padding: 90px 24px 80px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__inner {
    display: grid;
    grid-template-columns: 1fr 384px;
    width: 100%;
    max-width: 1005px;
    margin: 0 auto;
  }
}
.p-recruit__header {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-recruit__header {
    flex: 1 1 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__header {
    margin-bottom: 64px;
  }
}
.p-recruit__lead {
  margin: 48px 0 0;
  color: #333333;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-recruit__lead {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__images {
    width: 100%;
    max-width: 384px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit__images {
    width: 100%;
  }
}
.p-recruit__image-list {
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit__image-list {
    gap: 20px;
  }
}
.p-recruit__image-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}
.p-recruit__image-item a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.p-recruit__image-item a:hover img {
  transform: scale(1.03);
}

.p-philosophy {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  background-color: #003965;
  background-image: -webkit-image-set(url("../img/philosophy-bg_pc@1x.webp") 1x, url("../img/philosophy-bg_pc@2x.webp") 2x);
  background-image: image-set(url("../img/philosophy-bg_pc@1x.webp") 1x, url("../img/philosophy-bg_pc@2x.webp") 2x);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-philosophy {
    padding: 80px 24px;
    background-image: url("../img/philosophy-bg_sp@2x.webp");
  }
}
.p-philosophy__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1029px;
  margin: 0 auto;
}
.p-philosophy__header {
  width: 100%;
  max-width: 384px;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .p-philosophy__header {
    margin-bottom: 40px;
  }
}
.p-philosophy__body {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-philosophy__body {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-philosophy__diagram {
  margin: 0;
  max-width: 260px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-philosophy__diagram {
    max-width: 240px;
    margin: 0 auto;
  }
}
.p-philosophy__diagram picture {
  display: block;
}
.p-philosophy__diagram-image {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-philosophy__diagram-image {
    aspect-ratio: 480/576;
  }
}
.p-philosophy__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}
.p-philosophy__label {
  margin: 0 0 5px;
  color: #00a0ca;
  font-family: "Source Serif 4", serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.p-philosophy__title {
  margin: 0;
  color: #ffffff;
  font-family: "Hiragino Serif Pr6N", "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-philosophy__title {
    font-size: 1.625rem;
    line-height: 1.4;
  }
}
.p-philosophy__value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-philosophy__value-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-philosophy__value-item {
  position: relative;
  padding-left: 20px;
}
.p-philosophy__value-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #ffffff;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-philosophy__value-item {
    min-height: 0;
  }
}
.p-philosophy__value-en {
  margin: 0;
  color: #ffffff;
  font-family: "Source Serif 4", serif;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}
.p-philosophy__value-ja {
  margin: 10px 0 0;
  color: #ffffff;
  font-family: "Hiragino Serif Pr6N", "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767px) {
  .p-philosophy__value-ja {
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}

.p-contact {
  padding: 110px 24px 100px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 90px 24px 80px;
  }
}
.p-contact__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    width: 100%;
    max-width: 792px;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__header {
    width: 100%;
    max-width: 384px;
  }
}
.p-contact__body {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-contact__body {
    margin-top: 64px;
  }
}
.p-contact__flow {
  margin: 0 0 40px;
}
@media screen and (min-width: 768px) {
  .p-contact__flow {
    width: 100%;
    max-width: 384px;
  }
}
.p-contact__lead {
  margin: 48px 0 0;
  color: #333333;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    font-size: 1.125rem;
  }
}

.p-complete {
  padding: 128px 24px 120px;
  background-color: #ffffff;
}
.p-complete__inner {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-complete__inner {
    max-width: 792px;
  }
}
.p-complete__header {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-complete__header {
    max-width: 384px;
  }
}
.p-complete__body {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .p-complete__body {
    margin-top: 64px;
  }
}
.p-complete__message {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.p-complete__lead {
  margin: 0;
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-complete__lead {
    font-size: 2rem;
  }
}
.p-complete__texts {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-complete__text {
  margin: 0;
  color: #333333;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.p-complete__actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 88px;
}
@media screen and (min-width: 768px) {
  .p-complete__actions {
    justify-content: flex-start;
  }
}
.p-complete__button {
  width: 100%;
  max-width: 288px;
}
@media screen and (max-width: 767px) {
  .p-complete__button {
    margin: 0 auto;
  }
  .p-complete__button > * {
    width: 100%;
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  .p-complete {
    padding: 120px 24px 140px;
  }
}

.c-scroll-fade {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.is-scroll-fade-ready .c-scroll-fade {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}
body.is-scroll-fade-ready .c-scroll-fade.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.u-pc-only {
  display: inline;
}
@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: inline !important;
  }
}
/*# sourceMappingURL=style.css.map */
