/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

:root {
  --vw: 1vw;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  min-width: 124rem;
  font-synthesis: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0;
  color: #333;
  line-break: strict;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
    font-size: 1.6rem;
  }
}

.js-preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

:target,
:focus {
  outline: none;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-orientation: none;
}
.safari img {
  image-rendering: inherit;
}
img {
  width: 100%;
  height: auto;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 767.1px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* main
--------------------------------------------------*/
.f-main {
  background: #F3F7FD;
}
.f-wrap {
  max-width: 120rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .f-wrap {
    width: auto;
    padding: 0 2.4rem;
  }
}

.simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
}

/* link
--------------------------------------------------*/
a {
  color: #333;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

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

/* input
--------------------------------------------------*/
button {
  color: #333;
  transition: 0.3s;
  will-change: transform;
}
button:focus {
  text-decoration: none;
}

body.is-fixed {
  overflow: hidden;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.2rem;
  background: rgba(255, 255, 255, 0.9);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 5.6rem;
  }
}
.l-header__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 0 6rem;
  padding: 0 12rem 0 3.4rem;
}
@media screen and (max-width: 767px) {
  .l-header__wrap {
    padding: 0 0 0 2.4rem;
  }
}
.l-header__logo {
  width: 13.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 11.6rem;
    line-height: 1;
  }
  .is-fixed .l-header__logo {
    background: url(../img/common/logo_wh.svg) 0 0/100% auto no-repeat;
  }
  .is-fixed .l-header__logo img {
    opacity: 0;
  }
}
.l-header-toggle {
  display: none;
  width: 5.6rem;
  height: 5.6rem;
  background: #EDEEF7;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-header-toggle {
    background: #00196A;
  }
}
.l-header-toggle__inner {
  position: relative;
  width: 2.4rem;
  height: 1.4rem;
}
.l-header-toggle__inner span {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.l-header-toggle__inner span:first-child {
  top: 0;
}
.is-fixed .l-header-toggle__inner span:first-child {
  top: 0.6rem;
  transform: rotate(135deg);
}
.l-header-toggle__inner span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
.is-fixed .l-header-toggle__inner span:nth-child(2) {
  opacity: 0;
}
.l-header-toggle__inner span:last-child {
  bottom: 0;
}
.is-fixed .l-header-toggle__inner span:last-child {
  bottom: 0.6rem;
  transform: rotate(-135deg);
}
.l-header-toggle__txt {
  color: #264BA0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-header-toggle {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    flex-flow: column;
  }
}
.l-header-nav {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-header-nav {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00196A;
    margin: 0;
    overflow-y: scroll;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 5.6rem 2.4rem;
  }
  .is-fixed .l-header-nav {
    pointer-events: all;
    opacity: 1;
  }
}
.l-header-nav-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu {
    flex-flow: column;
  }
}
.l-header-nav-menu__item {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item {
    width: 100%;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    border-bottom: 1px solid #fff;
  }
}
.l-header-nav-menu__item a {
  color: #333;
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item a {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .l-header-nav-menu__item a:hover {
    opacity: 1;
    color: #264BA0;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .l-header-nav-menu__item a:hover {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .l-header-nav-menu__item.-child:hover > span > a {
    color: #264BA0;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .l-header-nav-menu__item.-child:hover > span > a {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .l-header-nav-menu__item.-child:hover > span > a::after {
    width: 100%;
  }
  .l-header-nav-menu__item.-child:hover > .l-header-nav-child {
    pointer-events: all;
    opacity: 1;
  }
}
.l-header-nav-menu__item:last-child {
  margin-left: auto;
}
.l-header-nav-menu__item > a {
  position: relative;
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item > a {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 4.5rem;
  }
}
.l-header-nav-menu__item > a::after {
  content: "";
  position: absolute;
  top: 4rem;
  left: 0;
  width: 0;
  height: 0.4rem;
  background: #264BA0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item > a::after {
    content: none;
  }
}
@media (any-hover: hover) {
  .l-header-nav-menu__item > a:hover::after {
    width: 100%;
  }
}
.l-header-nav-menu__item > span > a,
.l-header-nav-menu__item > span > .none {
  position: relative;
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item > span > a,
  .l-header-nav-menu__item > span > .none {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: max-content;
    height: 4.5rem;
  }
}
.l-header-nav-menu__item > span > a::after,
.l-header-nav-menu__item > span > .none::after {
  content: "";
  position: absolute;
  top: 4rem;
  left: 0;
  width: 0;
  height: 0.4rem;
  background: #264BA0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__item > span > a::after,
  .l-header-nav-menu__item > span > .none::after {
    content: none;
  }
}
@media (any-hover: hover) {
  .l-header-nav-menu__item > span > a:hover::after,
  .l-header-nav-menu__item > span > .none:hover::after {
    width: 100%;
  }
}
.l-header-nav-menu__parent {
  position: relative;
  transition: 0.3s;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-header-nav-menu__parent {
    display: block;
    width: 100%;
  }
  .l-header-nav-menu__parent::before, .l-header-nav-menu__parent::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.4rem;
    width: 1.7rem;
    height: 2px;
    background: #fff;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  .l-header-nav-menu__parent::before {
    transform: translateY(-50%) rotate(90deg);
  }
  .is-open .l-header-nav-menu__parent::before {
    transform: translateY(-50%);
  }
}
.l-header-nav-child {
  pointer-events: none;
  position: absolute;
  top: 4.3rem;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: 0.3s;
  padding: 2.9rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-header-nav-child {
    pointer-events: all;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: 0;
    overflow: hidden;
    opacity: 1;
    translate: none;
    transition: height 0.3s ease;
    transform: none;
    padding: 0;
  }
}
.l-header-nav-child__ttl {
  position: relative;
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
  margin: 3.2rem 0 1.6rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-header-nav-child__ttl {
    font-size: 2.8rem;
    text-align: left;
    margin: 2.4rem 0 1.6rem;
  }
  .l-header-nav-child__ttl::before {
    content: "[";
  }
  .l-header-nav-child__ttl::after {
    content: "]";
  }
}
.l-header-nav-child__ttl:first-of-type {
  margin-top: 0;
}
.l-header-nav-child__inner {
  position: relative;
  padding: 3.2rem 0;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #264BA0;
}
@media screen and (max-width: 767px) {
  .l-header-nav-child__inner {
    background: none;
    border-top: 0;
    padding: 1rem 0 3.2rem;
  }
}
.l-header-nav-child-list {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15rem, max-content);
  column-gap: 4rem;
  row-gap: 1.8rem;
  justify-content: start;
  max-width: 120rem;
  margin: 0 auto;
  z-index: 2;
}
.-business .l-header-nav-child-list {
  grid-template-rows: repeat(3, auto);
}
.-company .l-header-nav-child-list {
  grid-template-rows: repeat(2, auto);
}
.-recruit .l-header-nav-child-list {
  grid-template-rows: repeat(1, auto);
}
@media screen and (max-width: 767px) {
  .l-header-nav-child-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-flow: column;
    gap: 2.4rem 0;
  }
}
.l-header-nav-child-list__item {
  min-width: 15rem;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-header-nav-child-list__item {
    width: auto;
    height: auto;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.2em;
  }
  .l-header-nav-child-list__item.-long {
    letter-spacing: -0.05em;
  }
  .l-header-nav-child-list__item:last-child {
    border-bottom: 0;
  }
}
.l-header-nav-child-list__item a {
  position: relative;
  color: #333;
}
.l-header-nav-child-list__item a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background: #333;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-nav-child-list__item a {
    color: #fff;
  }
}
.l-header-nav-child-list__item a[target=_blank] {
  position: relative;
  padding-right: 2rem;
}
.l-header-nav-child-list__item a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/icn_blank.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-nav-child-list__item a[target=_blank]::after {
    mask: url(../img/common/icn_blank.svg) center/100% auto no-repeat;
    background: #fff;
  }
}
@media (any-hover: hover) {
  .l-header-nav-child-list__item a:hover {
    color: #333;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .l-header-nav-child-list__item a:hover {
    color: #fff;
  }
}
@media (any-hover: hover) {
  .l-header-nav-child-list__item a:hover::before {
    width: 100%;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .l-header-nav-child-list__item a:hover::before {
    content: none;
  }
}
.l-header-nav-tel {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header-nav-tel {
    display: block;
    margin-top: 7rem;
  }
  .l-header-nav-tel a {
    display: block;
    background: #e8f1ff;
    border-radius: 1.6rem;
    pointer-events: none;
    padding: 3rem 0;
  }
  .is-fixed .l-header-nav-tel a {
    pointer-events: all;
  }
  .l-header-nav-tel__ttl {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-align: center;
    line-height: 1;
  }
  .l-header-nav-tel__num {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    font-size: 4.8rem;
    margin: 2.4rem 0;
  }
  .l-header-nav-tel__time {
    text-align: center;
    font-size: 2rem;
    line-height: 1;
  }
}
.l-header-nav-close {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header-nav-close {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 24rem;
    height: 10rem;
    background: #fff;
    border-radius: 1.6rem;
    margin: 6.4rem auto 0;
    padding: 0 2.8rem 0 3.2rem;
  }
  .l-header-nav-close__txt {
    position: relative;
    width: 100%;
    font-size: 3.2rem;
    font-weight: 600;
    color: #264BA0;
    letter-spacing: 0.05em;
  }
  .l-header-nav-close__txt::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 4.8rem;
    height: 4.8rem;
    background: url(../img/common/icn_close.svg) 0 0/100% auto no-repeat;
    transform: translateY(-50%);
  }
}

.l-footer {
  background: url(../img/common/bg_footer.png) 0 bottom/100% auto no-repeat #D8E5F7;
  padding: 8rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 4.8rem 0;
  }
}
.l-footer__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 120rem;
  margin: 0 auto;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__wrap {
    flex-flow: column;
    padding: 0;
  }
}
.l-footer__inner {
  width: calc(50% - 6rem);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    width: 100%;
    padding: 0 2.4rem;
  }
  .l-footer__inner + .l-footer__inner {
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-menu {
    width: calc(50% - 1.1rem);
  }
}
.l-footer-menu__item {
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #00196A;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer-menu__item {
    margin-top: 2.4rem;
  }
}
.l-footer-menu__item:first-child {
  margin-top: 0;
}
.l-footer-menu__item a {
  position: relative;
  color: #00196A;
}
.l-footer-menu__item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: #00196A;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .l-footer-menu__item a:hover {
    opacity: 1;
  }
  .l-footer-menu__item a:hover::before {
    width: 100%;
  }
}
.l-footer-menu-child {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer-menu-child {
    margin-top: 2.4rem;
  }
}
.l-footer-menu-child__item {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 400;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer-menu-child__item {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-top: 1rem;
  }
}
.l-footer-menu-child__item a {
  position: relative;
  color: #333;
}
.l-footer-menu-child__item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: #333;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer-menu-child__item a::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-menu-child__item a[target=_blank] {
    display: inline-block;
    padding: 0 2.1rem 0 0;
  }
}
.l-footer-menu-child__item a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 0.5rem);
  width: 1.5rem;
  height: 1.5rem;
  mask: url(../img/common/icn_blank.svg) center/100% auto no-repeat;
  background: #264BA0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-footer-menu-child__item a[target=_blank]::after {
    left: auto;
    right: 0;
  }
}
@media (any-hover: hover) {
  .l-footer-menu-child__item a:hover {
    opacity: 1;
  }
  .l-footer-menu-child__item a:hover::before {
    width: 100%;
  }
}
.l-footer-menu-child__item:first-child {
  margin-top: 0;
}
.l-footer-other {
  border-top: 1px solid #fff;
  padding: 1.6rem 0 0;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-other {
    padding: 1.6rem 2.4rem 0;
  }
}
.l-footer-other-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 8rem;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 5rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer-other-list {
    gap: 0 2rem;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}
.l-footer-other-list__item {
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-footer-other-list__item {
    font-size: 1.4rem;
  }
}
.l-footer-other-list__item a {
  position: relative;
  color: #333;
}
.l-footer-other-list__item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: #333;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .l-footer-other-list__item a:hover {
    opacity: 1;
  }
  .l-footer-other-list__item a:hover::before {
    width: 100%;
  }
}
.l-footer-other__copy {
  max-width: 120rem;
  font-size: 1.2rem;
  text-align: right;
  line-height: 1;
  margin: 2.8rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-footer-other__copy {
    margin: 2.4rem 0 0;
  }
}

.c-hover-arrow {
  position: relative;
  display: block;
}
@media (any-hover: hover) {
  .c-hover-arrow:hover .c-arrow {
    background: #fff;
  }
  .c-hover-arrow:hover .c-arrow span::before {
    background: #264BA0;
  }
}

.c-arrow {
  width: 5.9rem;
  height: 5.9rem;
  border: 1px solid #fff;
  border-radius: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-arrow {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.c-arrow span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.c-arrow span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8rem;
  height: 1.4rem;
  mask: url(../img/common/icn_arrow.svg) center/100% auto no-repeat;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-arrow span::before {
    width: 1.6rem;
    height: 1.3rem;
  }
}

.c-nav {
  max-width: 120rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-nav {
    flex-flow: column;
    gap: 1.8rem 0;
    padding: 0 2.4rem;
  }
}
.c-nav__item {
  width: calc((100% - 7.2rem) / 3);
  height: 8.2rem;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-nav__item {
    width: 100%;
    height: 5.8rem;
    font-size: 2rem;
  }
}
.c-nav__item a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #1E51B0;
  border: 1px solid #1E51B0;
  background: transparent;
  padding: 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-nav__item a {
    padding: 0 2.4rem;
  }
}
.c-nav__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2rem;
  width: 2.4rem;
  height: 2.4rem;
  mask: url(../img/common/icn_arrow.svg) center/75% auto no-repeat;
  background: #264BA0;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-nav__item a::before {
    right: 2.4rem;
  }
}
.c-nav__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8rem;
  width: 1px;
  height: 4.8rem;
  background: #1E51B0;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-nav__item a::after {
    right: 7.2rem;
    height: 3.2rem;
  }
}
@media (any-hover: hover) {
  .c-nav__item a:hover {
    opacity: 1;
    background: #1E51B0;
    color: #fff;
  }
  .c-nav__item a:hover::before {
    right: 2.8rem;
    background: #fff;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .c-nav__item a:hover::before {
    right: 2.2rem;
  }
}
@media (any-hover: hover) {
  .c-nav__item a:hover::after {
    background: #fff;
  }
}
.c-nav__item.is-current a {
  pointer-events: none;
  color: #AEC0D9;
  border-color: #AEC0D9;
}
.c-nav__item.is-current a::before, .c-nav__item.is-current a::after {
  background-color: #AEC0D9;
}
.c-nav.-bl .c-nav__item a {
  background: #1E51B0;
  color: #fff;
}
.c-nav.-bl .c-nav__item a::before {
  background: #fff;
}
.c-nav.-bl .c-nav__item a::after {
  background: #fff;
}
@media (any-hover: hover) {
  .c-nav.-bl .c-nav__item a:hover {
    background: #fff;
    color: #1E51B0;
  }
  .c-nav.-bl .c-nav__item a:hover::before {
    background: #1E51B0;
  }
  .c-nav.-bl .c-nav__item a:hover::after {
    background: #1E51B0;
  }
}

.c-mv {
  background: url(../img/common/bg_mv.jpg) center/cover no-repeat;
  padding: 9.6rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .c-mv {
    background: url(../img/common/bg_mv_sp.jpg) center/cover no-repeat;
    padding: 7.2rem 2.4rem 1.8rem;
  }
}
.c-mv__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.c-mv__en {
  line-height: 1;
  letter-spacing: 0.1em;
  color: #8FAAD1;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-mv__en {
    font-size: 1.2rem;
  }
}
.c-mv__ttl {
  font-size: 5.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 2rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .c-mv__ttl {
    font-size: 3.6rem;
    letter-spacing: 0;
    margin: 1.2rem 0 0.8rem;
  }
  .c-mv__ttl.-small {
    font-size: 3.2rem;
  }
}
.c-mv__sub {
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  margin: 0.8rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-mv__sub {
    font-size: 1.6rem;
    margin: 0.6rem 0 0;
  }
  .c-mv__sub.-small {
    font-size: 1.5rem;
    letter-spacing: -0.05em;
  }
}
.c-mv:has(.c-mv__sub) .c-mv__ttl {
  margin: 0.2rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .c-mv:has(.c-mv__sub) .c-mv__ttl {
    margin: 0.2rem 0 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-mv-bg {
    padding: 7.2rem 2.4rem 0;
  }
}
.c-mv-bg__inner {
  position: relative;
  max-width: 120rem;
  height: 24rem;
  margin: 0 auto;
  padding: 5rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-mv-bg__inner {
    height: auto;
    padding: 0;
  }
}
.c-mv-bg__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28rem;
  background: #F3F7FD;
  padding: 2.6rem 4rem 0;
}
.c-mv-bg__content.-wh {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-mv-bg__content {
    position: relative;
    bottom: auto;
    left: auto;
    width: 24rem;
    margin: 1.8rem 0 0 -2.4rem;
    padding: 2rem 2.8rem 0;
  }
}
.c-mv-bg__en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: #264BA0;
  line-height: 1;
  letter-spacing: 0.125em;
  margin: 0 0 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-mv-bg__en {
    margin: 0 0 0.8rem;
  }
}
.c-mv-bg__ttl {
  font-size: 4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-mv-bg__ttl {
    font-size: 3.6rem;
  }
}

.c-bread {
  max-width: 120rem;
  margin: 0 auto;
}
.c-bread ol {
  line-height: 1.4;
}
.c-bread ol li {
  display: inline;
  font-size: 1.3rem;
  color: #AEC0D9;
  font-weight: 500;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .c-bread ol li {
    font-size: 1.3rem;
  }
}
.c-bread ol li::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 1rem;
  background: url(../img/common/icn_chevron.svg) center center/90% auto no-repeat;
  vertical-align: text-top;
  margin: 0.6rem 1rem 0;
}
@media screen and (max-width: 767px) {
  .c-bread ol li::after {
    width: 0.6rem;
    height: 1rem;
    margin: 0.6rem 0.5rem 0;
  }
}
.c-bread ol li:last-child::after {
  content: none;
}
.c-bread ol li a {
  color: #fff;
}
.c-bread.-bk ol li {
  color: #333;
}
.c-bread.-bk ol li::after {
  mask: url(../img/common/icn_chevron.svg) center/90% auto no-repeat;
  background: #264BA0;
}
.c-bread.-bk ol li a {
  color: #264BA0;
}

.c-pager {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 1.6rem;
  margin: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-pager {
    gap: 0 0.7rem;
    margin: 5.6rem 0 0;
  }
}
.c-pager .item {
  width: 4.4rem;
  height: 4.4rem;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-pager .item {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.c-pager .item.current {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #264BA0;
  color: #fff;
  border-radius: 100%;
  padding: 0 0 0.2rem;
}
.c-pager .item a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #B0B0B0;
  padding: 0 0 0.1rem;
  transition: 0.3s;
  text-decoration: none;
  color: #264BA0;
}
.c-pager .item a:hover {
  background: #264BA0;
  color: #fff;
  opacity: 1;
  border: 1px solid #264BA0;
}
.c-pager .item.dot {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2.4rem;
  font-size: 2.4rem;
  color: #B0B0B0;
}
.c-pager .item.prev, .c-pager .item.next {
  width: 1.6rem;
  height: 3.6rem;
  font-size: 0;
}
@media screen and (max-width: 767px) {
  .c-pager .item.prev, .c-pager .item.next {
    width: 4rem;
    height: 4rem;
    font-size: 0;
  }
}
.c-pager .item.prev a, .c-pager .item.next a {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 0;
}
.c-pager .item.prev a::before, .c-pager .item.next a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 0.2rem);
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #264BA0;
  border-right: 1px solid #264BA0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-pager .item.prev a:hover, .c-pager .item.next a:hover {
  background: none;
  opacity: 0.7;
}
.c-pager .item.prev span, .c-pager .item.next span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.c-pager .item.prev span::before, .c-pager .item.next span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 0.2rem);
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #264BA0;
  border-right: 1px solid #264BA0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-pager .item.next {
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .c-pager .item.next {
    margin-left: 0rem;
  }
}
.c-pager .item.prev {
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .c-pager .item.prev {
    margin-right: 0rem;
  }
}
.c-pager .item.prev a::before,
.c-pager .item.prev span::before {
  left: calc(50% + 0.2rem);
  transform: translate(-50%, -50%) scale(-1, 1) rotate(45deg);
}

.c-top {
  width: 48rem;
  height: 7.2rem;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-top {
    width: auto;
    height: 5.6rem;
    font-size: 1.6rem;
  }
}
.c-top a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #1E51B0;
  border: 1px solid #1E51B0;
  padding: 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-top a {
    justify-content: flex-start;
    padding: 0 2.4rem;
  }
}
.c-top a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2rem;
  width: 2.4rem;
  height: 2.4rem;
  mask: url(../img/common/icn_arrow.svg) center/75% auto no-repeat;
  background: #264BA0;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-top a::before {
    right: 2.4rem;
  }
}
.c-top a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8rem;
  width: 1px;
  height: 4.8rem;
  background: #1E51B0;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-top a::after {
    right: 7.2rem;
    height: 4.4rem;
  }
}
@media (any-hover: hover) {
  .c-top a:hover {
    opacity: 1;
    background: #1E51B0;
    color: #fff;
  }
  .c-top a:hover::before {
    right: 2.8rem;
    background: #fff;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .c-top a:hover::before {
    right: 2.2rem;
  }
}
@media (any-hover: hover) {
  .c-top a:hover::after {
    background: #fff;
  }
}

.c-scroll-down {
  position: absolute;
  right: 12rem;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  color: #fff;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-scroll-down {
    display: none;
  }
}
.c-scroll-down__txt {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
}
.c-scroll-down__line {
  position: relative;
  display: block;
  width: 1px;
  height: 5.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}
.c-scroll-down__line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollDownLine 1.8s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .c-scroll-down__line {
    height: 8rem;
  }
}

@keyframes scrollDownLine {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}
/* --------------------------------------------------
  display
-------------------------------------------------- */
.u-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

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

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

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-mt10 {
  margin-top: 1rem;
}
.u-mt15 {
  margin-top: 1.5rem;
}
.u-mt20 {
  margin-top: 2rem;
}
.u-mt30 {
  margin-top: 3rem;
}
.u-mt40 {
  margin-top: 4rem;
}
.u-mt50 {
  margin-top: 5rem;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

/* --------------------------------------------------
other
-------------------------------------------------- */
.u-bold { /*font-weight: 700;*/ }

/* --------------------------------------------------
colorset
-------------------------------------------------- */
.-u34 .grad {
  background: linear-gradient(135deg, #FFAE18 0%, #FFC526 73%);
}
.-u34 .bg {
  background: #FFF4D7;
}
.-u34 .txt {
  color: #FFA700;
}

.-u56 .grad {
  background: linear-gradient(135deg, rgb(255, 105, 24) 0%, rgb(255, 147, 38) 73%);
}
.-u56 .bg {
  background: #FFEEE4;
}
.-u56 .txt {
  color: #FF5E19;
}

.-jr1 .grad {
  background: linear-gradient(135deg, #16B970 0%, #26D084 73%);
}
.-jr1 .bg {
  background: #EBFFF6;
}
.-jr1 .txt {
  color: #00A259;
}

.-jr2 .grad {
  background: linear-gradient(135deg, #00867C 0%, #00ADA0 73%);
}
.-jr2 .bg {
  background: #EBFFF6;
}
.-jr2 .txt {
  color: #00736B;
}

.-jr3 .grad {
  background: linear-gradient(135deg, #05A1EA 0%, #2CA7E0 73%);
}
.-jr3 .bg {
  background: #EEFAFF;
}
.-jr3 .txt {
  color: #008DCF;
}

.-jr1a .grad,
.-jr2a .grad,
.-jr3a .grad {
  background: linear-gradient(135deg, #0862EA 0%, #2471E5 73%);
}
.-jr1a .bg,
.-jr2a .bg,
.-jr3a .bg {
  background: #D9E8FF;
}
.-jr1a .txt,
.-jr2a .txt,
.-jr3a .txt {
  color: #1F6EE6;
}

.-youth .grad {
  background: linear-gradient(135deg, #B05BE9 0%, #BD7BEA 73%);
}
.-youth .bg {
  background: #F1DBFF;
}
.-youth .txt {
  color: #B05BE9;
}

.-skill1 .grad,
.-skill2 .grad {
  background: linear-gradient(135deg, #DF3573 0%, #F35A92 73%);
}
.-skill1 .txt,
.-skill2 .txt {
  color: #DA2668;
}

.js-fadeUp,
.js-fade {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fadeUp {
  transform: translateY(2rem);
}

.js-fade {
  transform: none;
}

.js-fadeUp.is-show,
.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

.p-home {
  overflow: hidden;
}
.p-home-mv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-mv {
    padding: 0 0 13.7rem;
  }
}
.p-home-mv-slide {
  position: relative;
}
.p-home-mv-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/home/bg_mv.png) 0 0/cover no-repeat;
  z-index: 2;
}
.p-home-mv-slide .swiper-slide {
  overflow: hidden;
  height: 75rem;
}
@media screen and (max-width: 767px) {
  .p-home-mv-slide .swiper-slide {
    height: 38.5rem;
  }
}
.p-home-mv-slide .swiper-slide picture,
.p-home-mv-slide .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-home-mv-slide .swiper-slide img {
  transform: scale(1);
  transition: transform 6s linear;
}
.p-home-mv-slide .swiper-slide-active img {
  transform: scale(1.08);
}
.p-home-mv-concept {
  position: absolute;
  bottom: -6.5rem;
  left: 0;
  width: 106rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-home-mv-concept {
    bottom: 0;
    width: 100%;
  }
}
.p-home-mv-concept__head {
  padding: 0 0 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-home-mv-concept__head {
    padding: 0 2.4rem;
  }
}
.p-home-mv-concept__en {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-home-mv-concept__en {
    font-size: 1.2rem;
    margin: 0 0 1rem;
  }
}
.p-home-mv-concept__ttl picture {
  display: block;
  width: 67rem;
  height: 17.8rem;
}
@media screen and (max-width: 767px) {
  .p-home-mv-concept__ttl picture {
    width: 100%;
    height: auto;
  }
}
.p-home-mv-concept-link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #00196A;
  padding: 5rem 5.6rem 5rem 12rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-home-mv-concept-link {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 13.7rem;
    gap: 1rem 0;
    padding: 0 0 0.5rem 2.4rem;
    margin: 3.2rem 0 0;
  }
}
.p-home-mv-concept-link__txt {
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-home-mv-concept-link__txt {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.25em;
  }
}
.p-home-mv-concept-link__btn {
  width: 32.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-home-mv-concept-link__btn {
    width: 29rem;
    font-size: 1.4rem;
  }
}
.p-home-mv-concept-link__btn a {
  position: relative;
  display: block;
  border: 1px solid #BFC6DB;
  color: #BFC6DB;
  padding: 1.2rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-home-mv-concept-link__btn a {
    padding: 1.1rem 2.4rem;
  }
}
.p-home-mv-concept-link__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  width: 1.2rem;
  height: 1rem;
  mask: url(../img/common/icn_arrow.svg) center/100% auto no-repeat;
  background: #BFC6DB;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-home-mv-concept-link__btn a:hover {
    opacity: 1;
    background: #BFC6DB;
    color: #00196A;
  }
  .p-home-mv-concept-link__btn a:hover::after {
    right: 2.3rem;
    background: #00196A;
  }
}
.p-home__bg {
  background: url(../img/home/bg.png) center 0/100% auto no-repeat #E2EAF5;
  padding: 16.5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-home__bg {
    background: url(../img/home/bg_sp.png) 0 0/100% auto no-repeat #E2EAF5;
    padding: 4.4rem 2.4rem 6.4rem;
  }
}
.p-home-business {
  max-width: 120rem;
  margin: 0 auto;
}
.p-home-business-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-home-business-list {
    flex-flow: column;
    gap: 2.8rem 0;
  }
}
.p-home-business-list__item {
  width: calc((100% - 7.2rem) / 3);
}
@media screen and (max-width: 767px) {
  .p-home-business-list__item {
    width: 100%;
  }
}
.p-home-business-list__item a .c-arrow {
  position: absolute;
  bottom: 3.2rem;
  right: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-home-business-list__item a .c-arrow {
    bottom: 2.4rem;
    right: 2.8rem;
  }
}
@media (any-hover: hover) {
  .p-home-business-list__item a:hover {
    opacity: 1;
  }
  .p-home-business-list__item a:hover img {
    transform: scale(1.1);
  }
  .p-home-business-list__item a:hover .c-arrow {
    right: 2.4rem;
  }
}
.p-home-business-list__inner {
  position: absolute;
  top: 3.6rem;
  left: 3.2rem;
  width: calc(100% - 6.4rem);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-home-business-list__inner {
    top: 2.4rem;
    left: 2.8rem;
    width: calc(100% - 5.6rem);
  }
}
.p-home-business-list__en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
.p-home-business-list__ttl {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-home-business-list__ttl {
    font-size: 2.2rem;
    line-height: 1.4;
    margin: 0.8rem 0 0;
  }
}
.p-home-business-list__cat {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.08em;
  border: 1px solid #fff;
  font-weight: 600;
  color: #fff;
  padding: 0.8rem 1.6rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-home-business-list__cat {
    font-size: 1.5rem;
    margin-top: 1.2rem;
    padding: 0.4rem 1.2rem;
  }
}
.p-home-business-list__img {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-home-business-list__img {
    height: 19.6rem;
  }
}
.p-home-business-list__img img {
  position: relative;
  transition: 0.3s;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-home-business-list__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.p-home-business-list__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1E51B0 20%, transparent 80%);
}
.p-home-business-btn {
  align-self: flex-end;
  width: calc((100% - 7.2rem) / 3);
  height: 12.3rem;
}
@media screen and (max-width: 767px) {
  .p-home-business-btn {
    width: 100%;
    height: 8rem;
  }
}
.p-home-business-btn__txt {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  font-size: 2.4rem;
  padding: 0 0 0 3.2rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-home-business-btn__txt {
    font-size: 2.2rem;
    padding: 0 0 0 2.8rem;
  }
}
.p-home-business-btn a {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(185deg, rgb(30, 81, 176) 20%, rgba(30, 81, 176, 0.5) 100%);
}
.p-home-business-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/home/bg_business_btn.png) 0 0/cover no-repeat;
}
.p-home-business-btn a .c-arrow {
  position: absolute;
  top: 50%;
  right: 3.2rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-home-business-btn a .c-arrow {
    right: 2.8rem;
  }
}
@media (any-hover: hover) {
  .p-home-business-btn a:hover {
    opacity: 1;
  }
  .p-home-business-btn a:hover .c-arrow {
    right: 2.4rem;
  }
}
.p-home-company {
  max-width: 120rem;
  margin: 10rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-home-company {
    margin-top: 8rem;
  }
}
.p-home-topics {
  padding: 6.4rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-home-topics {
    padding: 3.2rem 2.4rem 4rem;
  }
}
.p-home-topics__wrap {
  max-width: 120rem;
  margin: 0 auto;
}
.p-home-topics-head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-home-topics-head {
    align-items: flex-start;
    flex-flow: column;
    gap: 1.6rem 0;
  }
}
.p-home-topics-head__ttl {
  font-size: 5.6rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-home-topics-head__ttl {
    font-size: 4rem;
  }
}
.p-home-topics-head__btn {
  width: 24.6rem;
  height: 5.6rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}
.p-home-topics-head__btn a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
  border: 1px solid #1E51B0;
  color: #1E51B0;
}
.p-home-topics-head__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 1.6rem;
  height: 1.6rem;
  mask: url(../img/common/icn_arrow.svg) center/75% auto no-repeat;
  background: #264BA0;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-home-topics-head__btn a:hover {
    opacity: 1;
    background: #1E51B0;
    color: #fff;
  }
  .p-home-topics-head__btn a:hover::before {
    right: 2rem;
    background: #fff;
  }
}
.p-home-topics-list {
  margin-top: 5.2rem;
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-home-topics-list {
    margin-top: 3.2rem;
  }
}
.p-home-topics-list__item {
  position: relative;
  border-bottom: 1px solid #D9D9D9;
}
.p-home-topics-list__item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #264BA0;
  transition: 0.3s;
  opacity: 0;
}
@media (any-hover: hover) {
  .p-home-topics-list__item:hover::after {
    opacity: 1;
  }
}
.p-home-topics-list__item a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 3.2rem;
  padding: 2.6rem 8.8rem 2.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-home-topics-list__item a {
    flex-flow: column;
    gap: 0.8rem 0;
    padding: 2rem 4rem 2rem 0;
  }
}
.p-home-topics-list__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid #1E51B0;
  border-radius: 100%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-home-topics-list__item a::before {
    right: 0;
  }
}
.p-home-topics-list__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.6rem;
  width: 1.6rem;
  height: 1.6rem;
  mask: url(../img/common/icn_arrow.svg) center/75% auto no-repeat;
  background: #1E51B0;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-home-topics-list__item a::after {
    right: 0.6rem;
  }
}
@media (any-hover: hover) {
  .p-home-topics-list__item a:hover {
    opacity: 1;
    color: #264BA0;
  }
  .p-home-topics-list__item a:hover::before {
    right: 1rem;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-home-topics-list__item a:hover::before {
    right: -0.2rem;
  }
}
@media (any-hover: hover) {
  .p-home-topics-list__item a:hover::after {
    right: 1.6rem;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-home-topics-list__item a:hover::after {
    right: 0.4rem;
  }
}
.p-home-topics-list__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  flex-shrink: 0;
}
.p-home-topics-list__cat {
  width: 10.2rem;
  text-align: center;
  background: #fff;
  font-size: 1.5rem;
  color: #1E51B0;
  line-height: 1;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-home-topics-list__cat {
    width: 8.8rem;
    font-size: 1.3rem;
    padding: 0.6rem 0;
  }
}
.p-home-topics-list__time {
  color: #777;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-home-topics-list__time {
    font-size: 1.4rem;
  }
}
.p-home-topics-list__ttl {
  width: 100%;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-home-topics-list__ttl {
    line-height: 1.6;
  }
}
.p-home-head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 4.4rem;
  margin: 0 0 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-home-head {
    flex-flow: column;
    align-items: flex-start;
    gap: 2.4rem 0;
    margin: 0 0 3.2rem;
  }
}
.p-home-head__ttl {
  font-size: 5.6rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-home-head__ttl {
    font-size: 2.8rem;
  }
}
.p-home-head__en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #1E51B0;
  line-height: 1;
  letter-spacing: 0.125em;
  margin: 0 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-home-head__en {
    margin: 0 0 0.6rem;
  }
}
.p-home-head__txt {
  line-height: 2;
  margin-bottom: -0.8rem;
}
.p-topics__block {
  max-width: 100rem;
  margin: 0 auto;
  padding: 8rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-topics__block {
    padding: 3.2rem 2.4rem 6rem;
  }
}
.p-topics-list__item {
  position: relative;
  border-bottom: 1px solid #D9D9D9;
}
.p-topics-list__item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #264BA0;
  transition: 0.3s;
  opacity: 0;
}
@media (any-hover: hover) {
  .p-topics-list__item:hover::after {
    opacity: 1;
  }
}
.p-topics-list__item a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3.2rem;
  padding: 1.2rem 0;
}
@media screen and (max-width: 767px) {
  .p-topics-list__item a {
    align-items: flex-start;
    flex-flow: column;
    gap: 0.8rem 0;
    padding: 1.6rem 0;
  }
}
@media (any-hover: hover) {
  .p-topics-list__item a:hover {
    opacity: 1;
    color: #264BA0;
  }
}
.p-topics-list__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  flex-shrink: 0;
}
.p-topics-list__cat {
  width: 10.2rem;
  text-align: center;
  background: #fff;
  font-size: 1.5rem;
  color: #1E51B0;
  line-height: 1;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-topics-list__cat {
    width: 8.8rem;
    font-size: 1.3rem;
    padding: 0.6rem 0;
  }
}
.p-topics-list__time {
  color: #777;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-topics-list__time {
    font-size: 1.4rem;
  }
}
.p-topics-list__ttl {
  width: 100%;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 767.1px) {
  .p-topics-list__ttl {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .p-topics-list__ttl {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-height: 1.6;
  }
}
.p-topics-post {
  padding: 12.8rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post {
    padding: 13rem 0 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topics-post .c-bread {
    display: none;
  }
}
.p-topics-post__block {
  max-width: 100rem;
  margin: 5.6rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-topics-post__block {
    margin: 0;
    padding: 0 2.4rem;
  }
}
.p-topics-post-head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin: 0 0 0.8rem;
}
.p-topics-post-head__time {
  flex-shrink: 0;
  color: #777;
  font-size: 1.5rem;
}
.p-topics-post-head__cat {
  background: #fff;
  line-height: 1;
  color: #1E51B0;
  font-size: 1.5rem;
  padding: 1rem 2rem;
}
.p-topics-post__ttl {
  font-size: 3.2rem;
  line-height: 1.6;
  font-weight: 600;
  border-bottom: 1px solid #D8E0ED;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__ttl {
    font-size: 2.4rem;
  }
}
.p-topics-post__txt {
  margin: 4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt {
    margin: 2.4rem 0 0;
  }
}
.p-topics-post__txt h2 {
  position: relative;
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: 600;
  padding: 0 1rem 0 2.6rem;
  margin: 0 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt h2 {
    font-size: 2rem;
    line-height: 1.5;
    padding: 0.2rem 1rem 0.2rem 1.8rem;
    margin: 0 0 1.4rem;
  }
}
.p-topics-post__txt h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.6rem;
  height: 100%;
  background: #264BA0;
}
.p-topics-post__txt h3 {
  position: relative;
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 600;
  border-bottom: 2px solid rgba(30, 81, 176, 0.2);
  margin: 0 0 1.6rem;
  padding: 0 0 1.2rem;
}
.p-topics-post__txt h3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 6rem;
  height: 2px;
  background: #00196A;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt h3 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 0 0 1.4rem;
  }
}
.p-topics-post__txt h4 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #264BA0;
  margin: 0 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt h4 {
    font-size: 1.6rem;
    margin: 0 0 1.4rem;
  }
}
.p-topics-post__txt h2 + h3,
.p-topics-post__txt h2 + h4,
.p-topics-post__txt h3 + h4 {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt h2 + h3,
  .p-topics-post__txt h2 + h4,
  .p-topics-post__txt h3 + h4 {
    margin-top: 1.4rem;
  }
}
.p-topics-post__txt * + h2 {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt * + h2 {
    margin-top: 4rem;
  }
}
.p-topics-post__txt * + h3 {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt * + h3 {
    margin-top: 4rem;
  }
}
.p-topics-post__txt * + h4 {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt * + h4 {
    margin-top: 4rem;
  }
}
.p-topics-post__txt p {
  font-size: 1.5rem;
  line-height: 2;
  word-break: normal;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt p {
    font-size: 1.5rem;
  }
}
.p-topics-post__txt p + p {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt p + p {
    margin-top: 3.2rem;
  }
}
.p-topics-post__txt * + figure,
.p-topics-post__txt * + img,
.p-topics-post__txt * + .wp-block-image,
.p-topics-post__txt * + .wp-block-embed,
.p-topics-post__txt * + .wp-block-columns {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt * + figure,
  .p-topics-post__txt * + img,
  .p-topics-post__txt * + .wp-block-image,
  .p-topics-post__txt * + .wp-block-embed,
  .p-topics-post__txt * + .wp-block-columns {
    margin-top: 3rem;
  }
}
.p-topics-post__txt ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-topics-post__txt ul li {
  position: relative;
  font-size: 1.5rem;
  line-height: 2;
  padding: 0 0 0 1em;
  word-break: normal;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt ul li {
    font-size: 1.5rem;
    line-height: 1.333;
  }
}
.p-topics-post__txt ul li:first-child {
  margin-top: 0;
}
.p-topics-post__txt ul li::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 100%;
  background: #264BA0;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt ul li::before {
    top: 0.6rem;
  }
}
.p-topics-post__txt ol {
  counter-reset: item;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.p-topics-post__txt ol li {
  position: relative;
  padding-left: 1em;
  font-size: 1.5rem;
  line-height: 2;
  word-break: normal;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt ol li {
    font-size: 1.5rem;
    line-height: 1.333;
  }
}
.p-topics-post__txt ol li:first-child {
  margin-top: 0;
}
.p-topics-post__txt ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt ol li:before {
    top: -0.1rem;
    font-size: 1.6rem;
  }
}
.p-topics-post__txt * + ul,
.p-topics-post__txt * + ol,
.p-topics-post__txt * + blockquote {
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt * + ul,
  .p-topics-post__txt * + ol,
  .p-topics-post__txt * + blockquote {
    margin-top: 2rem;
  }
}
.p-topics-post__txt img + img,
.p-topics-post__txt figure + img,
.p-topics-post__txt img + figure,
.p-topics-post__txt figure + figure {
  margin-top: 2rem;
}
.p-topics-post__txt strong {
  font-weight: bold;
}
.p-topics-post__txt em {
  font-style: italic;
}
.p-topics-post__txt blockquote {
  display: block;
  background: #eee;
  border-radius: 0.5rem;
  padding: 2em;
}
.p-topics-post__txt a {
  position: relative;
  color: #264BA0;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-topics-post__txt a img {
    transition: 0.3s;
  }
  .p-topics-post__txt a:hover {
    text-decoration: none;
    opacity: 1;
  }
  .p-topics-post__txt a:hover img {
    opacity: 0.7;
  }
}
.p-topics-post__txt a[target=_blank]:not([href$=".pdf" i]) {
  color: #333;
}
.p-topics-post__txt a[target=_blank]:not([href$=".pdf" i])::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/common/icn_blank.svg) 0 0/100% auto no-repeat;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt a[target=_blank]:not([href$=".pdf" i])::after {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.p-topics-post__txt a[href$=".pdf" i]::after {
  content: "PDF";
  display: inline-block;
  background: #264BA0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.2rem 0.7rem 0.3rem;
  letter-spacing: 0;
  margin-left: 1rem;
  transform: translateY(-0.2rem);
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt a[href$=".pdf" i]::after {
    font-size: 1rem;
  }
}
.p-topics-post__txt .wp-block-columns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt .wp-block-columns {
    gap: 1rem 0;
  }
}
.p-topics-post__txt .wp-block-columns .wp-block-column {
  width: calc(50% - 1.2rem);
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt .wp-block-columns .wp-block-column {
    width: 100%;
  }
}
.p-topics-post__txt .wp-block-embed {
  max-width: 40rem;
  margin: 0 auto;
}
.p-topics-post__txt .wp-block-embed iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 6/3.5;
}
.p-topics-post__txt .wp-block-table + p {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt .wp-block-table + p {
    margin-top: 1rem;
  }
}
.p-topics-post__txt .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt .aligncenter img {
    width: 100%;
    height: auto;
  }
}
.p-topics-post__txt .alignright {
  float: right;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt .alignright {
    float: none;
    width: 100%;
    margin-left: 0;
  }
  .p-topics-post__txt .alignright img {
    width: 100%;
    height: auto;
  }
}
.p-topics-post__txt .alignleft {
  float: left;
  margin-right: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt .alignleft {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  .p-topics-post__txt .alignleft img {
    width: 100%;
    height: auto;
  }
}
.p-topics-post__txt .wp-block-image {
  overflow: hidden;
}
.p-topics-post__txt .wp-element-caption {
  display: block !important;
  width: 100%;
}
.p-topics-post__txt img,
.p-topics-post__txt img[class*=wp-image-],
.p-topics-post__txt img[class*=attachment-] {
  width: auto;
  height: auto;
  max-width: 100%;
}
.p-topics-post__txt figcaption {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt figcaption {
    font-size: 1.2rem;
  }
}
.p-topics-post__txt table {
  width: 100%;
  border-collapse: collapse;
}
.p-topics-post__txt table thead {
  border: 0;
}
.p-topics-post__txt table thead th {
  background: #264BA0;
  color: #fff;
  text-align: left;
  font-weight: 600;
}
.p-topics-post__txt table th,
.p-topics-post__txt table td {
  border: 2px solid #DFE3E0;
  line-height: 1.7;
  padding: 1rem 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-topics-post__txt table th,
  .p-topics-post__txt table td {
    font-size: 1.4rem;
    padding: 0.5rem 0.8rem;
  }
}
.p-topics-post__txt table tfoot {
  border: 0;
}
.p-topics-post__txt table tfoot td {
  background: #D4F8EB;
  text-align: left;
  font-weight: 600;
}
.p-topics-post-link {
  position: relative;
  margin: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-topics-post-link {
    margin: 5.6rem 0 0;
  }
}
.p-topics-post-link__btn {
  width: 24.6rem;
  height: 5.6rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-topics-post-link__btn {
    width: 18rem;
  }
}
.p-topics-post-link__btn a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #264BA0;
  border: 1px solid #264BA0;
  color: #fff;
}
.p-topics-post-link__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 1.6rem;
  height: 1.6rem;
  mask: url(../img/common/icn_arrow.svg) center/90% auto no-repeat;
  background: #fff;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-topics-post-link__btn a:hover {
    background: #fff;
    color: #264BA0;
    opacity: 1;
  }
  .p-topics-post-link__btn a:hover::after {
    right: 2.2rem;
    background: #264BA0;
  }
}
.p-topics-post-link__arrow {
  position: absolute;
  top: 50%;
  width: 16.4rem;
  height: 4.4rem;
  font-weight: 600;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-topics-post-link__arrow {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 0;
  }
}
.p-topics-post-link__arrow a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #264BA0;
  padding: 0 8.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-topics-post-link__arrow a {
    padding: 0;
  }
}
.p-topics-post-link__arrow a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid #264BA0;
  transform: translateY(-50%);
  border-radius: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-topics-post-link__arrow a::before {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.p-topics-post-link__arrow a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.4rem;
  width: 1.6rem;
  height: 1.6rem;
  mask: url(../img/common/icn_arrow.svg) center/90% auto no-repeat;
  background: #264BA0;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-topics-post-link__arrow a::after {
    right: 1rem;
  }
}
@media (any-hover: hover) {
  .p-topics-post-link__arrow a:hover {
    opacity: 1;
  }
  .p-topics-post-link__arrow a:hover::before {
    right: -0.2rem;
    background: #264BA0;
  }
  .p-topics-post-link__arrow a:hover::after {
    right: 1.2rem;
    background: #fff;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-topics-post-link__arrow a:hover::after {
    right: 0.8rem;
  }
}
.p-topics-post-link__arrow.-next {
  right: 0;
}
.p-topics-post-link__arrow.-prev {
  left: 0;
}
.p-topics-post-link__arrow.-prev a {
  padding: 0 0 0 8.4rem;
}
.p-topics-post-link__arrow.-prev a::before {
  right: auto;
  left: 0;
}
.p-topics-post-link__arrow.-prev a::after {
  right: auto;
  left: 1.4rem;
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .p-topics-post-link__arrow.-prev a::after {
    left: 1rem;
  }
}
@media (any-hover: hover) {
  .p-topics-post-link__arrow.-prev a:hover::before {
    left: -0.2rem;
  }
  .p-topics-post-link__arrow.-prev a:hover::after {
    left: 1.2rem;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-topics-post-link__arrow.-prev a:hover::after {
    left: 0.8rem;
  }
}

.p-contact-form {
  position: relative;
  max-width: 100rem;
  margin: 0 auto;
  padding: 5rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    padding: 4.8rem 2.4rem 6rem;
  }
}
.p-contact-form__wrap {
  max-width: 120rem;
  margin: 0 auto;
}
.p-contact-form-body {
  position: relative;
  z-index: 2;
}
.p-contact-form-body ::placeholder {
  color: #B1BDD2;
}
.p-contact-form-body .wpcf7-spinner {
  display: block;
  margin: 2rem auto 0;
}
.p-contact-form-body__ttl {
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 4rem 0 1.8rem;
}
.p-contact-form-body__ttl:first-of-type {
  margin-top: 0;
}
.p-contact-form-body__ttl span {
  color: #CE4646;
  margin-left: -0.5em;
}
.p-contact-form-address {
  position: relative;
}
.p-contact-form-address__ttl {
  margin: 2.4rem 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form-address__ttl {
    line-height: 1;
    margin: 1.8rem 0 1.2rem;
  }
}
.p-contact-form-address__ttl:first-of-type {
  margin-top: 0;
}
.p-contact-form-address__zip, .p-contact-form-address__pref {
  width: 28rem;
}
.p-contact-form-address__status {
  position: absolute;
  top: 32rem;
  right: 1.5rem;
  width: 2.8rem;
  height: 2.8rem;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: url(../img/contact/icn_true.svg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-contact-form-address__status {
    top: 26rem;
    right: 2.5rem;
    left: auto;
  }
}
.is-valid .p-contact-form-address__status {
  opacity: 1;
}
.p-contact-form-name {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form-name {
    flex-flow: column;
    gap: 1.2rem 0;
  }
}
.p-contact-form-name__item {
  width: 28rem;
}
.p-contact-form-name__status {
  position: absolute;
  top: 3.1rem;
  left: 52.8rem;
  width: 2.8rem;
  height: 2.8rem;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: url(../img/contact/icn_true.svg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-contact-form-name__status {
    top: 9.5rem;
    right: 7.8rem;
    left: auto;
  }
}
.is-valid .p-contact-form-name__status {
  opacity: 1;
}
.p-contact-form-attribute {
  position: relative;
}
.p-contact-form-attribute .wpcf7-radio {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form-attribute .wpcf7-radio {
    justify-content: space-between;
    gap: 1rem 0;
  }
}
.p-contact-form-attribute .wpcf7-radio .wpcf7-list-item {
  width: 28rem;
}
.p-contact-form-attribute .wpcf7-radio .wpcf7-list-item.last {
  width: 100%;
  padding: 0.2rem 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form-attribute .wpcf7-radio .wpcf7-list-item.last {
    padding: 0 0 0.8rem;
  }
}
.p-contact-form-attribute__other {
  position: absolute;
  display: block;
  bottom: 0;
  left: 22rem;
  width: 28rem;
}
.p-contact-form-attribute__other .wpcf7-form-control-wrap {
  display: block;
  height: 4rem;
}
.p-contact-form-attribute__other .wpcf7-form-control-wrap input[type=text] {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact-form-attribute__other {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
  }
}
.p-contact-form-attribute__status {
  position: absolute;
  bottom: -0.85rem;
  left: 45.7rem;
  width: 2.8rem;
  height: 2.8rem;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: url(../img/contact/icn_true.svg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-contact-form-attribute__status {
    right: 2.5rem;
    left: auto;
    bottom: -0.8rem;
  }
}
.is-other.is-valid .p-contact-form-attribute__status {
  opacity: 1;
}
.p-contact-form-attribute {
  /*
  .wpcf7-form-control-wrap{
  	&[data-name="attribute-other"]{
  		position: absolute;
  		display: block;
  		bottom: 0;
  		left: 22rem;
  		width: 28rem;
  		height: 4rem;
  		@include deviceSP{
  			position: relative;
  			bottom: auto;
  			left: auto;
  			width: 100%;
  		}
  		input[type="text"]{
  			height: 100%;
  		}
  	}			
  }*/
}
.p-contact-form-type {
  position: relative;
  padding: 0 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form-type {
    padding: 0;
  }
}
.p-contact-form-type .wpcf7-radio {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form-type .wpcf7-radio {
    justify-content: space-between;
    gap: 1rem 0;
  }
}
.p-contact-form-type .wpcf7-radio .wpcf7-list-item {
  width: 28rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form-type .wpcf7-radio .wpcf7-list-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form-type .wpcf7-radio .wpcf7-list-item.last {
    padding: 0 0 0.8rem;
  }
}
.p-contact-form-type__other {
  position: absolute;
  display: block;
  bottom: 0;
  left: 53rem;
  width: 28rem;
}
.p-contact-form-type__other .wpcf7-form-control-wrap {
  display: block;
  height: 4rem;
}
.p-contact-form-type__other .wpcf7-form-control-wrap input[type=text] {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact-form-type__other {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
  }
}
.p-contact-form-type__status {
  position: absolute;
  bottom: -0.85rem;
  right: 20.5rem;
  width: 2.8rem;
  height: 2.8rem;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: url(../img/contact/icn_true.svg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-contact-form-type__status {
    right: 2.5rem;
    left: auto;
    bottom: -0.8rem;
  }
}
.is-other.is-valid .p-contact-form-type__status {
  opacity: 1;
}
.p-contact-form-type {
  /*
  .wpcf7-form-control-wrap{
  	&[data-name="type-other"]{
  		position: absolute;
  		display: block;
  		bottom: 0;
  		left: 50rem;
  		width: 28rem;
  		height: 4rem;
  		@include deviceSP{
  			position: relative;
  			bottom: auto;
  			left: auto;
  			width: 100%;
  		}
  		input[type="text"]{
  			height: 100%;
  		}
  	}			
  }
  	*/
}
.p-contact-form-mail {
  position: relative;
}
.p-contact-form-mail__status {
  position: absolute;
  top: 3.1rem;
  right: 1.5rem;
  width: 2.8rem;
  height: 2.8rem;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: url(../img/contact/icn_false.svg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-contact-form-mail__status {
    top: 2.8rem;
    right: 2.5rem;
    left: auto;
  }
}
.is-error .p-contact-form-mail__status {
  opacity: 1;
}
.is-valid .p-contact-form-mail__status {
  background: url(../img/contact/icn_true.svg) 0 0/100% auto no-repeat;
  opacity: 1;
}
.p-contact-form-apply {
  border: 1px solid #C2D2EC;
  margin-top: 8rem;
  padding: 4rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form-apply {
    margin-top: 4.8rem;
    padding: 3rem 2.4rem;
  }
}
.p-contact-form-apply__ttl {
  font-weight: 600;
  letter-spacing: 0.06em;
}
.p-contact-form-apply__ttl span {
  color: #CE4646;
}
.p-contact-form-apply__txt {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-contact-form-apply__txt {
    font-size: 1.4rem;
    letter-spacing: 0;
    margin: 0 0 2.4rem;
  }
}
.p-contact-form-apply__txt a {
  border-bottom: 1px solid #333;
}
@media (any-hover: hover) {
  .p-contact-form-apply__txt a:hover {
    opacity: 1;
    border-bottom: 1px solid transparent;
  }
}
.p-contact-form-apply__policy {
  height: 13rem;
  background: #fff;
  overflow-y: scroll;
  padding: 2.4rem 4rem;
  margin: 2.4rem 0;
}
@media screen and (max-width: 767px) {
  .p-contact-form-apply__policy {
    height: 26rem;
    padding: 2.4rem;
  }
}
.p-contact-form-apply__policy p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .p-contact-form-apply__policy p {
    font-size: 1.3rem;
  }
}
.p-contact-form-apply__policy p.bold {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-contact-form-apply__policy p.bold {
    font-size: 1.4rem;
  }
}
.p-contact-form-apply__policy p:first-of-type {
  margin-top: 0;
}
.p-contact-form-apply__check {
  width: 43.2rem;
  border: 1px solid #C2D2EC;
  background: #E2EAF5;
  text-align: center;
  padding: 1.2rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-contact-form-apply__check {
    width: auto;
    font-size: 1.5rem;
    text-align: left;
    padding: 1rem 1.6rem;
  }
}
.p-contact-form-apply__check .wpcf7-list-item {
  margin: 0;
}
.p-contact-form label {
  position: relative;
}
.p-contact-form label:has(input[type=checkbox]) input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-contact-form label:has(input[type=checkbox]) input[type=checkbox]:checked + span::before {
  background: url(../img/common/icn_check_on.svg) 0 0/100% auto no-repeat;
}
.p-contact-form label:has(input[type=checkbox]) span {
  position: relative;
  display: inline-block;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding: 0 0 0 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form label:has(input[type=checkbox]) span {
    padding: 0 0 0 4.4rem;
  }
}
.p-contact-form label:has(input[type=checkbox]) span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8rem;
  height: 2.8rem;
  background: url(../img/common/icn_check_off.svg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-contact-form label:has(input[type=checkbox]) span::before {
    top: 50%;
    transform: translateY(-50%);
  }
}
.p-contact-form label:has(input[type=radio]) input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-contact-form label:has(input[type=radio]) input[type=radio]:checked + span::before {
  background: url(../img/common/icn_radio_on.svg) center center/90% auto no-repeat;
}
.p-contact-form label:has(input[type=radio]) span {
  position: relative;
  display: inline-block;
  line-height: 1.75;
  letter-spacing: 0.01em;
  padding: 0 0 0 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form label:has(input[type=radio]) span {
    line-height: 1.6;
    padding: 0 0 0 3.2rem;
  }
}
.p-contact-form label:has(input[type=radio]) span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8rem;
  height: 2.8rem;
  background: url(../img/common/icn_radio_off.svg) center center/90% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-contact-form label:has(input[type=radio]) span::before {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.p-contact-form input[type=text],
.p-contact-form input[type=email],
.p-contact-form input[type=tel] {
  width: 100%;
  height: 6.4rem;
  background: #E2EAF5;
  border: 1px solid #C2D2EC;
  padding: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form input[type=text],
  .p-contact-form input[type=email],
  .p-contact-form input[type=tel] {
    height: 5.6rem;
    font-size: 16px;
  }
}
.p-contact-form input[type=text]:-webkit-autofill, .p-contact-form input[type=text]:-webkit-autofill:hover, .p-contact-form input[type=text]:-webkit-autofill:focus,
.p-contact-form input[type=email]:-webkit-autofill,
.p-contact-form input[type=email]:-webkit-autofill:hover,
.p-contact-form input[type=email]:-webkit-autofill:focus,
.p-contact-form input[type=tel]:-webkit-autofill,
.p-contact-form input[type=tel]:-webkit-autofill:hover,
.p-contact-form input[type=tel]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: inherit;
  transition: background-color 9999s ease-in-out 0s;
}
.p-contact-form input[type=text]:focus,
.p-contact-form input[type=email]:focus,
.p-contact-form input[type=tel]:focus {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact-form input[name=mail_confirm] {
    letter-spacing: -0.05em;
  }
}
.p-contact-form textarea {
  width: 100%;
  background: #E2EAF5;
  border: 1px solid #C2D2EC;
  padding: 1.5rem 2rem;
}
.p-contact-form textarea:focus {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact-form textarea {
    font-size: 16px;
  }
}
.p-contact-form textarea[name=message] {
  height: 12.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form textarea[name=message] {
    height: 20rem;
  }
}
.p-contact-form input[type=submit] {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 43.2rem;
  height: 6.4rem;
  background: #264BA0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 4.8rem auto 0;
  text-align: center;
  letter-spacing: 0.05em;
  border: 1px solid #264BA0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact-form input[type=submit] {
    width: 100%;
    height: 6.4rem;
    font-size: 1.8rem;
    margin-top: 4.8rem;
  }
}
@media (any-hover: hover) {
  .p-contact-form input[type=submit]:hover {
    color: #264BA0;
    background-image: url(../img/common/icn_mail.svg);
    background-color: #f1f5ff;
  }
}
.p-contact-form input[type=submit]:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.p-contact-thanks {
  padding: 5.6rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks {
    padding: 4.8rem 2.4rem 6rem;
  }
}
.p-contact-thanks__txt {
  text-align: center;
}
.p-contact-thanks__btn {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__btn {
    width: auto;
  }
}

.p-chart .c-nav {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-chart .c-nav {
    padding: 0 2.4rem;
  }
}
.p-chart-block {
  max-width: 120rem;
  margin: 0 auto;
  padding: 5.6rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-chart-block {
    background: #fff;
    padding: 4.8rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-chart-block .c-nav {
    background: #F3F7FD;
    margin-top: 4rem;
    padding: 5.6rem 2.4rem;
  }
}

.is-modal-fixed {
  overflow: hidden;
}

.p-business-index {
  max-width: 120rem;
  padding: 8rem 0 12rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-business-index {
    padding: 5.6rem 2.4rem 6rem;
  }
}
.p-business-index__ttl {
  position: relative;
  width: 25.3rem;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
  text-align: center;
  background: #264BA0;
  font-weight: 600;
  padding: 1.3rem 0;
  margin: 5.6rem 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-business-index__ttl {
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.2em;
    padding: 0.8rem 0;
    margin: 3.2rem 0 1.2rem;
  }
}
.p-business-index__ttl:first-of-type {
  margin-top: 0;
}
.p-business-index__ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00196A 0%, transparent 100%);
}
.p-business-index__ttl span {
  position: relative;
  z-index: 2;
}
.p-business-index-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-flow: column;
  gap: 5.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-business-index-list {
    gap: 3.2rem 0;
  }
}
.p-business-index-list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-business-index-list__item {
    flex-flow: column;
    gap: 1.6rem 0;
  }
}
.p-business-index-list__img {
  width: 37.6rem;
}
@media screen and (max-width: 767px) {
  .p-business-index-list__img {
    width: 100%;
  }
}
.p-business-index-list__detail {
  width: calc(100% - 44rem);
}
@media screen and (max-width: 767px) {
  .p-business-index-list__detail {
    width: 100%;
  }
}
.p-business-index-list-head {
  margin: 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-business-index-list-head {
    margin: 0;
  }
}
.p-business-index-list-head__ttl {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: -0.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-index-list-head__ttl {
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.02em;
  }
}
.p-business-index-list-head__txt {
  color: #264BA0;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin: 0.8rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-business-index-list-head__txt {
    font-size: 1.6rem;
    margin: 0.4rem 0 0;
  }
}
.p-business-index-list-head .c-hover-arrow {
  padding-right: 6rem;
}
@media screen and (max-width: 767px) {
  .p-business-index-list-head .c-hover-arrow {
    padding-right: 4.6rem;
  }
}
.p-business-index-list-head .c-hover-arrow .c-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid #264BA0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-business-index-list-head .c-hover-arrow .c-arrow {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.p-business-index-list-head .c-hover-arrow .c-arrow span::before {
  width: 1.4rem;
  height: 1.4rem;
  background: #264BA0;
}
@media (any-hover: hover) {
  .p-business-index-list-head .c-hover-arrow:hover {
    opacity: 1;
  }
  .p-business-index-list-head .c-hover-arrow:hover .c-arrow {
    right: -0.2rem;
    background: transparent;
  }
}
.p-business-index-list__txt {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-business-index-list__txt {
    display: none;
  }
}
.p-business-intro {
  max-width: 120rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 6.1rem;
  padding: 8rem 0 9rem;
  margin: 0 auto;
}
.p-business-intro.-end {
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-business-intro {
    flex-flow: column;
    gap: 1.6rem 0;
    padding: 4.8rem 2.4rem 5.6rem;
  }
}
.p-business-intro__ttl {
  font-size: 3.6rem;
  font-weight: 600;
  color: #264BA0;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}
.p-business-intro__ttl.-short {
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-business-intro__ttl {
    font-size: 2.8rem;
  }
}
.p-business-intro__inner {
  flex-shrink: 0;
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .p-business-intro__inner {
    width: auto;
  }
}
.p-business-intro__txt {
  line-height: 2;
}
.p-business-intro__logo.-factory {
  width: 39.7rem;
}
@media screen and (max-width: 767px) {
  .p-business-intro__logo.-protimes {
    width: 30.4rem;
  }
  .p-business-intro__logo.-maker {
    width: 29.4rem;
  }
  .p-business-intro__logo.-dx {
    width: 32.9rem;
  }
  .p-business-intro__logo.-recover {
    width: 20.6rem;
  }
  .p-business-intro__logo.-factory {
    width: 33rem;
  }
  .p-business-intro__logo.-owner {
    width: 100%;
  }
  .p-business-intro__logo.-pm {
    width: 18.5rem;
  }
}
.p-business-service {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-business-service {
    background: url(../img/business/bg_sp.jpg) 0 0/cover no-repeat;
    padding: 4rem 2.4rem 4.4rem;
  }
}
.p-business-service::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(120rem + (100% - 120rem) / 2);
  height: 100%;
  background: url(../img/business/bg.jpg) 0 0/cover no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-business-service::before {
    content: none;
  }
}
.p-business-service + .p-business-service {
  margin-top: 8rem;
}
.p-business-service__wrap {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
  padding: 7.2rem 0 8rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-business-service__wrap {
    padding: 0;
  }
}
.p-business-service__inner {
  max-width: 100rem;
  margin: 0 auto;
}
.p-business-service__ttl {
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-business-service__ttl {
    font-size: 2.5rem;
    margin: 0 0 3.5rem;
  }
}
.p-business-service-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-flow: column;
  gap: 5.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-business-service-list {
    gap: 4rem 0;
  }
}
.p-business-service-list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-business-service-list__item {
    flex-flow: column;
    gap: 1.6rem 0;
  }
}
.p-business-service-list__content {
  width: 54rem;
}
@media screen and (max-width: 767px) {
  .p-business-service-list__content {
    width: 100%;
  }
}
.p-business-service-list__img {
  width: 37.6rem;
}
@media screen and (max-width: 767px) {
  .p-business-service-list__img {
    width: 100%;
  }
}
.p-business-service-list__ttl {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: #264BA0;
  margin: -0.8rem 0 1.4rem;
}
.p-business-service-list__ttl.-small {
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .p-business-service-list__ttl.-small {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-business-service-list__ttl {
    font-size: 2.4rem;
    margin: 0 0 1rem;
  }
}
.p-business-service-list__ttl span {
  font-size: 1.6rem;
  vertical-align: text-top;
}
.p-business-service-list__txt {
  line-height: 2;
}
.p-business-service-list__notes {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 2rem;
}
.p-business-bnr {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 120rem;
  margin: 12rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-business-bnr {
    flex-flow: column;
    gap: 1.6rem 0;
    margin: 5.6rem 0 0;
    padding: 0 2.4rem;
  }
}
.p-business-service .p-business-bnr {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-business-service .p-business-bnr {
    padding: 0;
    margin-top: 4rem;
  }
}
.p-business-bnr__item {
  width: 58.2rem;
  height: 16rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-business-bnr__item {
    width: 100%;
  }
}
.p-business-bnr__item a, .p-business-bnr__item button {
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .p-business-bnr__item a:hover, .p-business-bnr__item button:hover {
    opacity: 1;
  }
  .p-business-bnr__item a:hover .c-arrow, .p-business-bnr__item button:hover .c-arrow {
    right: 2.4rem;
  }
  .p-business-bnr__item a:hover img, .p-business-bnr__item button:hover img {
    transform: scale(1.05);
  }
}
.p-business-bnr__item.-border {
  position: relative;
}
.p-business-bnr__item.-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border: 1px solid #264BA0;
  z-index: 2;
}
.p-business-service .p-business-bnr__item {
  width: 48.2rem;
}
@media screen and (max-width: 767px) {
  .p-business-service .p-business-bnr__item {
    width: 100%;
  }
}
.p-business-service .p-business-bnr__item.-long {
  width: 58.2rem;
}
@media screen and (max-width: 767px) {
  .p-business-service .p-business-bnr__item.-long {
    width: 100%;
  }
}
.p-business-bnr__inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 3.2rem;
  z-index: 1;
}
.p-business-bnr .c-arrow {
  position: absolute;
  bottom: 3.2rem;
  right: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-business-bnr .c-arrow {
    width: 4rem;
    height: 4rem;
  }
  .p-business-bnr .c-arrow span::before {
    width: 1.3rem;
    height: 1rem;
  }
}
.p-business-bnr__img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-business-bnr__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.p-business-bnr__en {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: #264BA0;
  letter-spacing: 0.08em;
  margin: 0 0 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-business-bnr__en {
    margin: 0 0 0.5rem;
  }
}
.-wh .p-business-bnr__en {
  color: #fff;
}
.p-business-bnr__txt {
  font-weight: 600;
  line-height: 1.5;
  color: #264BA0;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-bnr__txt {
    font-size: 1.4rem;
  }
}
.-wh .p-business-bnr__txt {
  color: #fff;
}
.p-business-bnr__ttl {
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.3;
  color: #264BA0;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-business-bnr__ttl {
    font-size: 2.4rem;
  }
  .p-business-bnr__ttl.-small {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
}
.-wh .p-business-bnr__ttl {
  color: #fff;
}
.p-business-bnr-modal {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 8rem 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal {
    padding: 8rem 2.4rem 4rem;
  }
}
.p-business-bnr-modal__wrap {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.p-business-bnr-modal__wrap.is-show {
  opacity: 1;
  pointer-events: all;
}
.p-business-bnr-modal__inner {
  position: relative;
  max-width: 100rem;
  background: url(../img/business/construction/bg_modal.png) 0 0/cover no-repeat #F3F7FD;
  margin: 0 auto;
  padding: 4rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal__inner {
    padding: 3.2rem;
  }
}
.p-business-bnr-modal__close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  width: 3.9rem;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal__close {
    top: 1.2rem;
    right: 1.2rem;
    width: 2.4rem;
  }
}
.p-business-bnr-modal__ttl {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal__ttl {
    font-size: 2.4rem;
    margin: 0 0 1.6rem;
  }
}
.p-business-bnr-modal-head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 0 3.2rem;
  margin: 0 0 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal-head {
    flex-flow: column;
    gap: 1.6rem 0;
  }
}
.p-business-bnr-modal-head__img {
  width: 45.3rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal-head__img {
    width: 100%;
  }
}
.p-business-bnr-modal-head__sub {
  font-size: 2.4rem;
  font-weight: 700;
  color: #264BA0;
  line-height: 1.5;
  margin: 0 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal-head__sub {
    font-size: 1.8rem;
    margin: 0 0 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal-head__txt {
    font-size: 1.5rem;
    line-height: 2;
  }
}
.p-business-bnr-modal-detail {
  background: url(../img/business/construction/bg_modal_detail.jpg) 0 0/100% auto no-repeat #E2EAF5;
  border: 1px solid #264BA0;
  padding: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal-detail {
    background: #E2EAF5;
    padding: 2.2rem 2.2rem 3.6rem;
  }
}
.p-business-bnr-modal-detail__ttl {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #264BA0;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal-detail__ttl {
    font-size: 2.2rem;
    line-height: 1.4;
    margin: 0 0 1rem;
  }
}
.p-business-bnr-modal-detail__txt {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal-detail__txt {
    line-height: 1.8;
  }
}
.p-business-bnr-modal-detail__define {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 2.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal-detail__define {
    flex-flow: column;
    border-bottom: 1px solid #264BA0;
  }
}
.p-business-bnr-modal-detail__define dt {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 19rem;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #264BA0;
  padding: 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal-detail__define dt {
    width: 100%;
    border-top: 1px solid #264BA0;
    border-bottom: 0;
    padding: 0.8rem 0 0.5rem;
  }
}
.p-business-bnr-modal-detail__define dd {
  width: calc(100% - 19rem);
  font-size: 1.5rem;
  line-height: 1.6;
  border-bottom: 1px solid #fff;
  padding: 1.2rem 0 1.2rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-bnr-modal-detail__define dd {
    width: 100%;
    border-bottom: 0;
    padding: 0 0 0.8rem;
  }
}
.p-business-relation {
  max-width: 120rem;
  margin: 12rem auto 0;
  padding: 0 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-business-relation {
    margin: 5.6rem 0 0;
    padding: 0 2.4rem 6.6rem;
  }
}
.p-business-relation__ttl {
  font-weight: 600;
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
  margin: 0 0 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-business-relation__ttl {
    font-size: 2.6rem;
    margin: 0 0 2.4rem;
  }
}
.p-business-relation-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3.6rem 0;
  margin: 0 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-business-relation-list {
    flex-flow: column;
    gap: 1.6rem 0;
    margin: 0 0 5.6rem;
  }
}
.p-business-relation-list__item {
  width: 58.2rem;
  height: 8.4rem;
}
@media screen and (max-width: 767px) {
  .p-business-relation-list__item {
    width: 100%;
  }
}
.p-business-relation-list__item a {
  position: relative;
  display: block;
  border: 1px solid #264BA0;
}
.p-business-relation-list__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2rem;
  width: 2rem;
  height: 2rem;
  mask: url(../img/common/icn_arrow.svg) center/75% auto no-repeat;
  background: #264BA0;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-business-relation-list__item a::before {
    right: 3.2rem;
  }
}
.p-business-relation-list__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6.8rem;
  width: 1px;
  height: 4.8rem;
  background: #1E51B0;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-business-relation-list__item a::after {
    right: 6.7rem;
    height: 4.8rem;
  }
}
@media (any-hover: hover) {
  .p-business-relation-list__item a:hover {
    opacity: 1;
  }
  .p-business-relation-list__item a:hover::before {
    right: 2.8rem;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-business-relation-list__item a:hover::before {
    right: 2.7rem;
  }
}
.p-business-relation-list__inner {
  position: absolute;
  top: 50%;
  left: 2.4rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 1.2rem;
  transform: translateY(-50%);
}
.p-business-relation-list__pre {
  font-size: 1.5rem;
  font-weight: 600;
  color: #264BA0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-business-relation-list__pre {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
.p-business-relation-list__ttl {
  font-size: 2.2rem;
  color: #264BA0;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-business-relation-list__ttl {
    font-size: 1.6rem;
  }
}
.p-business-relation-list__icn {
  width: 4.8rem;
  height: 4.8rem;
}
.p-business-relation-list__img {
  display: block;
}
.p-business-relation-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-business-relation__btn {
  width: 58.2rem;
  height: 8.4rem;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-business-relation__btn {
    width: 100%;
    font-size: 1.8rem;
  }
}
.p-business-relation__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: url(../img/business/btn.jpg) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-business-relation__btn a {
    background: url(../img/business/btn_sp.jpg) center/cover no-repeat;
  }
}
.p-business-relation__btn a .c-arrow {
  position: absolute;
  top: 50%;
  right: 3.2rem;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-business-relation__btn a .c-arrow {
    right: 3.6rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.p-business-relation__btn a .c-arrow span::before {
  width: 1.3rem;
  height: 1rem;
}
@media screen and (max-width: 767px) {
  .p-business-relation__btn a .c-arrow span::before {
    width: 1rem;
    height: 0.8rem;
  }
}
@media (any-hover: hover) {
  .p-business-relation__btn a:hover {
    opacity: 1;
  }
  .p-business-relation__btn a:hover .c-arrow {
    right: 2.4rem;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-business-relation__btn a:hover .c-arrow {
    right: 2.8rem;
  }
}

.p-concept {
  background: url(../img/concept/bg.png) 0 0/cover no-repeat #F3F7FD;
  padding: 0 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-concept {
    background: url(../img/concept/bg_sp.png) 0 3rem/cover no-repeat;
    padding: 0 0 6rem;
  }
}
.p-concept-mv {
  padding: 9.6rem 0 0;
  margin: 0 0 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-concept-mv {
    padding: 7.2rem 2.4rem 0;
    margin: 0 0 4rem;
  }
}
.p-concept-mv__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.p-concept-mv__en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: #264BA0;
  line-height: 1;
  letter-spacing: 0.125em;
  margin: 5.6rem 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-concept-mv__en {
    margin: 4rem 0 0.8rem;
  }
}
.p-concept-mv__ttl {
  position: relative;
  font-size: 4.8rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  line-height: 1;
  border-bottom: 1px solid #D8E0ED;
  padding: 0 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-concept-mv__ttl {
    font-size: 3.2rem;
    line-height: 1.6;
    padding: 0 0 1.8rem;
  }
}
.p-concept-mv__ttl::before {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 6.4rem;
  height: 1px;
  background: #264BA0;
}
.p-concept-content {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-concept-content {
    padding: 0 2.4rem;
  }
}
.p-concept-content__inner {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
}
.p-concept-content__inner + .p-concept-content__inner {
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .p-concept-content__inner + .p-concept-content__inner {
    margin-top: 5.6rem;
  }
}
.p-concept-content__ttl {
  width: 64rem;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin: -1.1rem 0 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-concept-content__ttl {
    width: auto;
    font-size: 2.2rem;
    line-height: 1.6;
    letter-spacing: 0;
    margin: 0 0 0.8rem;
  }
}
.p-concept-content__txt {
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .p-concept-content__txt {
    width: auto;
    letter-spacing: -0.03em;
  }
}
.p-concept-content__img {
  position: absolute;
  left: 68rem;
  top: 0;
  display: block;
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .p-concept-content__img {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% + 4.8rem);
    margin: 4rem -2.4rem 0;
  }
}
.p-concept-content__btn {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-concept-content__btn {
    margin-top: 7.4rem;
  }
}

.p-message {
  padding: 7.2rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding: 0 0 6rem;
  }
}
.p-message-mv {
  background: url(../img/message/bg_mv.jpg) 0 0/cover no-repeat;
  margin: 0 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-message-mv {
    background: url(../img/message/bg_mv_sp.jpg) center 0/cover no-repeat;
    margin: 0 0 5.6rem;
  }
}
.p-message-content {
  position: relative;
  overflow: hidden;
  margin: 0 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-message-content {
    margin: 0 0 5.6rem;
  }
}
.p-message-content::before {
  content: "";
  position: absolute;
  top: 40rem;
  left: calc(50% + 4.8rem);
  width: 134.7rem;
  height: 43.5rem;
  background: url(../img/message/bg.jpg) 0 0/cover no-repeat;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-message-content::before {
    top: 178rem;
    left: 0;
    width: 100%;
    height: 32.6rem;
    background: url(../img/message/bg_sp.jpg) 0 0/cover no-repeat;
    transform: none;
  }
}
.p-message-content__wrap {
  max-width: 120rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-message-content__wrap {
    padding: 0 2.4rem;
  }
}
.p-message-content-head {
  position: relative;
  border-bottom: 1px solid #D8E0ED;
  padding: 0 0 3.3rem;
  margin: 0 0 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-message-content-head {
    padding: 0 0 1.8rem;
  }
}
.p-message-content-head::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 6.4rem;
  height: 1px;
  background: #264BA0;
}
.p-message-content-head__ttl {
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-message-content-head__ttl {
    font-size: 2.4rem;
    line-height: 1.6;
    margin: 0 0 0.8rem;
  }
}
.p-message-content-head__name {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-message-content-head__name {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0;
  }
}
.p-message-content-block {
  position: relative;
}
.p-message-content-block + .p-message-content-block {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-message-content-block + .p-message-content-block {
    margin-top: 7rem;
  }
}
.p-message-content-block__inner {
  width: 80rem;
}
@media screen and (max-width: 767px) {
  .p-message-content-block__inner {
    width: auto;
  }
}
.-wide .p-message-content-block__inner {
  width: 110rem;
}
@media screen and (max-width: 767px) {
  .-wide .p-message-content-block__inner {
    width: auto;
  }
}
.p-message-content-block__ttl {
  font-size: 2.8rem;
  line-height: 1.8;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-message-content-block__ttl {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}
.p-message-content-block__ttl span {
  color: #264BA0;
}
.p-message-content-block__img {
  display: block;
  position: absolute;
  bottom: 0;
  left: 91rem;
  width: 41.2rem;
}
@media screen and (max-width: 767px) {
  .p-message-content-block__img {
    position: relative;
    bottom: auto;
    left: auto;
    width: calc(100% + 4.8rem);
    margin: 4rem -2.4rem 0;
  }
}

.p-philo {
  background: url(../img/philosophy/bg.png) center 9rem/cover no-repeat;
  padding: 7.2rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-philo {
    padding: 0 0 6rem;
  }
}
.p-philo-mv {
  background: url(../img/philosophy/bg_mv.jpg) 0 0/cover no-repeat;
  margin: 0 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-philo-mv {
    background: url(../img/philosophy/bg_mv_sp.jpg) center 0/cover no-repeat;
    margin: 0 0 5.6rem;
  }
}
.p-philo-content {
  position: relative;
  margin: 0 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-philo-content {
    margin: 0 0 5.6rem;
  }
}
.p-philo-content__wrap {
  max-width: 120rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-philo-content__wrap {
    padding: 0 2.4rem;
  }
}
.p-philo-content-head {
  position: relative;
  border-bottom: 1px solid #D8E0ED;
  padding: 0 0 1.8rem;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-philo-content-head {
    padding: 0 0 1.8rem;
  }
}
.p-philo-content-head::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 6.4rem;
  height: 1px;
  background: #264BA0;
}
.p-philo-content-head__en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.125em;
  color: #264BA0;
  line-height: 1;
}
.p-philo-content-head__ttl {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-philo-content-head__ttl {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}

.p-dx {
  counter-reset: block;
  padding: 0 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-dx {
    padding: 0 0 6rem;
  }
}
.p-dx__wrap {
  padding: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-dx__wrap {
    padding: 5.6rem 2.4rem 0;
  }
}
.p-dx-block {
  counter-increment: block 1;
  max-width: 100rem;
  margin: 0 auto;
}
.p-dx-block + .p-dx-block {
  margin-top: 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-dx-block + .p-dx-block {
    margin-top: 4.8rem;
  }
}
.p-dx-block__ttl {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-dx-block__ttl {
    font-size: 2.4rem;
    margin: 0 0 2.4rem;
  }
}
.p-dx-block__ttl::before {
  content: counter(block) ".";
  font-size: 3.6rem;
  margin-right: 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-dx-block__ttl::before {
    font-size: 2.8rem;
  }
}
.p-dx-block__sub {
  color: #264BA0;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 4rem 0 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-dx-block__sub {
    font-size: 2.2rem;
    margin: 4rem 0 0.4rem;
  }
}
.p-dx-block__sub:first-of-type {
  margin-top: 2.4rem;
}
.p-dx-block__phase {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  gap: 0 1.6rem;
  border-bottom: 1px solid #D8E0ED;
  padding: 0 0 1.2rem;
  margin: 2.8rem 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-dx-block__phase {
    gap: 0;
    margin: 2.4rem 0 0.8rem;
  }
}
.p-dx-block__phase::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 8.8rem;
  height: 1px;
  background: #264BA0;
}
@media screen and (max-width: 767px) {
  .p-dx-block__phase::before {
    width: 7.2rem;
  }
}
.p-dx-block__phase span {
  display: block;
  width: 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-dx-block__phase span {
    width: 7.2rem;
    font-size: 1.6rem;
  }
}
.p-dx-block__phase:first-of-type {
  margin-top: 1.8rem;
}
.p-dx-block__txt {
  font-size: 1.5rem;
  line-height: 1.8;
}
.p-dx-block-three {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 2.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-dx-block-three {
    flex-flow: column;
    gap: 1.6rem 0;
    margin: 1.2rem 0 0;
  }
}
.p-dx-block-three__item {
  width: max-content;
  border-left: 1px solid #AEC0D9;
  padding: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-dx-block-three__item {
    width: 100%;
    padding: 0;
    border-left: 0;
  }
}
.p-dx-block-three__item:first-child {
  border-left: 0;
}
.p-dx-block-three__ttl {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-dx-block-three__ttl {
    margin: 0 0 0.8rem;
  }
}
.p-dx-block-three__txt {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #595959;
}
.p-dx-block-dot {
  margin-top: 1.8rem;
}
.p-dx-block-dot__item {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.7;
  padding: 0 0 0 1em;
}
.p-dx-block-dot__item + .p-dx-block-dot__item {
  margin-top: 0.8rem;
}
.p-dx-block-dot__item::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background: #AEC0D9;
  border-radius: 100%;
}
.p-dx-block-table {
  width: 100%;
  margin: 2.4rem 0 3.2rem;
}
.p-dx-block-table__head {
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .p-dx-block-table__head {
    width: 12rem;
  }
}
.p-dx-block-table__sub {
  width: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-dx-block-table__sub {
    width: 7.2rem;
  }
}
.p-dx-block-table__body {
  width: auto;
}
.p-dx-block-table thead th {
  color: #264BA0;
  font-weight: 600;
  border-bottom: 1px solid #D8E0ED;
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 0 0 1.2rem 1.6rem;
}
.p-dx-block-table thead th:first-child {
  border-bottom: 1px solid #264BA0;
  padding: 0 0 1.2rem;
}
.p-dx-block-table tbody th {
  font-weight: 600;
  border-bottom: 1px solid #264BA0;
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 1.2rem 0;
  vertical-align: middle;
}
.p-dx-block-table tbody td {
  border-bottom: 1px solid #D8E0ED;
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 1.2rem 1.6rem;
}
.p-dx-message {
  max-width: 120rem;
  border: 1px solid #AEC0D9;
  padding: 5.6rem 0;
  margin: 8rem auto;
}
@media screen and (max-width: 767px) {
  .p-dx-message {
    width: calc(100% - 4.8rem);
    margin: 4.4rem auto;
    padding: 2.8rem 2.4rem;
  }
}
.p-dx-message__inner {
  max-width: 100rem;
  margin: 0 auto;
}
.p-dx-message__ttl {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-dx-message__ttl {
    font-size: 2.2rem;
  }
}
.p-dx-message__txt {
  font-size: 1.5rem;
}
.p-dx-message__name {
  font-size: 1.5rem;
  text-align: right;
  margin: 1.2rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-dx-message__name {
    margin: 1.6rem 0 0;
  }
}

.p-company {
  padding: 0 0 15rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding: 0 0 6rem;
  }
}
.p-company-overview {
  max-width: 100rem;
  margin: 0 auto;
  padding: 7.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-company-overview {
    padding: 4.8rem 2.4rem 0;
  }
}
.p-company-overview-table {
  width: 100%;
}
.p-company-overview-table__head {
  width: 16rem;
}
@media screen and (max-width: 767px) {
  .p-company-overview-table__head {
    width: 8rem;
  }
}
.p-company-overview-table__body {
  width: auto;
}
.p-company-overview-table th {
  font-weight: 600;
  border-bottom: 1px solid #264BA0;
  line-height: 2;
  padding: 1.2rem 0;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-company-overview-table th {
    font-size: 1.5rem;
    line-height: 1.7;
    padding: 0.8rem 0;
  }
}
.p-company-overview-table td {
  border-bottom: 1px solid #D8E0ED;
  line-height: 2;
  padding: 1.2rem 0;
}
@media screen and (max-width: 767px) {
  .p-company-overview-table td {
    font-size: 1.5rem;
    line-height: 1.7;
    padding: 0.8rem 0;
  }
}
.p-company-overview-table td a {
  position: relative;
  display: inline-block;
  color: #264BA0;
  border-bottom: 1px solid #264BA0;
  padding: 0 3rem 0 0;
}
.p-company-overview-table td a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.3rem;
  width: 1.5rem;
  height: 1.2rem;
  mask: url(../img/common/icn_arrow.svg) center/90% auto no-repeat;
  background: #264BA0;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-company-overview-table td a:hover {
    opacity: 1;
  }
  .p-company-overview-table td a:hover::before {
    right: 0;
  }
}
.p-company-branch {
  max-width: 100rem;
  margin: 3.2rem auto 8rem;
}
@media screen and (max-width: 767px) {
  .p-company-branch {
    padding: 0 2.4rem;
    margin: 5.6rem auto;
  }
}
.p-company-branch__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 2.4rem;
}
.p-company-branch-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-company-branch-list {
    flex-flow: column;
    gap: 2.4rem 0;
  }
}
.p-company-branch-list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 47.6rem;
  gap: 0 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-company-branch-list__item {
    width: 100%;
    gap: 0 1.6rem;
  }
}
.p-company-branch-list__img {
  width: 14rem;
  height: 14rem;
  flex-shrink: 0;
}
.p-company-branch-list__txt {
  width: max-content;
}
@media screen and (max-width: 767px) {
  .p-company-branch-list__txt {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.p-outline {
  padding: 0 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-outline {
    padding: 0 0 6rem;
  }
}
.p-outline-overview {
  max-width: 100rem;
  margin: 0 auto 8rem;
  padding: 7.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-outline-overview {
    margin: 0 auto 5.6rem;
    padding: 4.8rem 2.4rem 0;
  }
}
.p-outline-overview-table {
  width: 100%;
}
.p-outline-overview-table__head {
  width: 16rem;
}
@media screen and (max-width: 767px) {
  .p-outline-overview-table__head {
    width: 9.6rem;
  }
}
.p-outline-overview-table__body {
  width: auto;
}
.p-outline-overview-table th {
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid #264BA0;
  line-height: 2;
  padding: 1.2rem 0;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-outline-overview-table th {
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 0.8rem 0;
    vertical-align: top;
  }
}
.p-outline-overview-table th span {
  position: absolute;
  top: 50%;
  left: 8.8rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-outline-overview-table th span {
    top: 0.8rem;
    left: 5.2rem;
    transform: none;
  }
}
.p-outline-overview-table td {
  border-bottom: 1px solid #D8E0ED;
  line-height: 2;
  padding: 1.2rem 0;
}
.p-outline-overview-table td span {
  font-size: 1rem;
  vertical-align: text-top;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-outline-overview-table td {
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 0.8rem 0;
  }
}
.p-outline-overview-table td .logo {
  margin: 1.2rem 0 0;
  padding: 0 0 0.7rem;
}
.p-outline-overview-table td .logo.-protimes {
  width: 19.9rem;
}
.p-outline-overview-table td .logo.-pocket {
  width: 20.9rem;
}
.p-outline-overview-table td .logo.-ap {
  width: 19rem;
}
.p-outline-overview-table td .logo.-factory {
  width: 24rem;
}
.p-outline-overview-table td .logo.-zeenb {
  width: 17.4rem;
}
.p-outline-overview-table td .logo.-recover {
  width: 15.2rem;
}
.p-outline-overview-table td .logo.-owner {
  width: 26.3rem;
}
@media screen and (max-width: 767px) {
  .p-outline-overview-table td .logo.-owner {
    width: 100%;
  }
}
.p-outline-overview-table td .logo.-pm {
  width: 16.4rem;
}
.p-outline-overview-table td .img.-refine {
  width: 16.4rem;
}
.p-outline-overview-table td .img.-revo {
  width: 14.2rem;
}
.p-outline-overview__txt {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 3.2rem 0 0;
}

.p-tos {
  counter-reset: block;
  padding: 0 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-tos {
    padding: 0 0 6rem;
  }
}
.p-tos__wrap {
  max-width: 100rem;
  margin: 0 auto;
  padding: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-tos__wrap {
    padding: 5.6rem 2.4rem 0;
  }
}
.p-tos-block {
  counter-increment: block 1;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-tos-block {
    margin-top: 4.8rem;
  }
}
.p-tos-block__ttl {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-tos-block__ttl {
    position: relative;
    font-size: 2.2rem;
    padding: 0 0 0 3rem;
  }
}
.p-tos-block__ttl::before {
  content: counter(block) ".";
  font-size: 2.8rem;
  margin-right: 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-tos-block__ttl::before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.4rem;
    margin: 0;
  }
}
.p-tos-block__txt {
  font-size: 1.5rem;
  line-height: 2;
}
.p-tos-block-num {
  counter-reset: num;
}
.p-tos-block-num__item {
  position: relative;
  counter-increment: num 1;
  font-size: 1.5rem;
  padding: 0 0 0 2rem;
  margin-top: 2.4rem;
}
.p-tos-block-num__item:first-child {
  margin-top: 0;
}
.p-tos-block-num__item::before {
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.p-tos-block-env.-pc {
  width: 48rem;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-tos-block-env.-pc {
    width: 100%;
  }
}
.p-tos-block-env.-sp {
  width: 68rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-tos-block-env.-sp {
    width: 100%;
  }
}
.p-tos-block-env__ttl {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 600;
  margin: 0 0 0.9rem;
}
.p-tos-block-env-table {
  width: 100%;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
.p-tos-block-env-table__head {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .-pc .p-tos-block-env-table__head {
    width: 16rem;
  }
  .-sp .p-tos-block-env-table__head {
    width: 10rem;
  }
}
.p-tos-block-env-table__sub {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .p-tos-block-env-table__sub {
    width: 11rem;
  }
}
.p-tos-block-env-table__body {
  width: auto;
}
.p-tos-block-env-table thead th {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
  padding: 0.4rem 1rem;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-tos-block-env-table thead th {
    padding: 0.4rem 0;
  }
}
.p-tos-block-env-table tbody th, .p-tos-block-env-table tbody td {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  padding: 0.8rem 2.4rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .-sp .p-tos-block-env-table tbody th, .-sp .p-tos-block-env-table tbody td {
    padding: 0.8rem 1.4rem;
  }
}
.p-tos-block-notes {
  counter-reset: notes;
  margin-top: 2.4rem;
}
.p-tos-block-notes__item {
  position: relative;
  counter-increment: notes 1;
  font-size: 1.2rem;
  padding: 0 0 0 1.5rem;
}
.p-tos-block-notes__item:first-child {
  margin-top: 0;
}
.p-tos-block-notes__item::before {
  content: counter(notes) ".";
  position: absolute;
  top: 0;
  left: 0;
}