@charset "UTF-8";
/* ================================
Reset
================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  word-break: break-all;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}

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

dd {
  margin-left: 0;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  word-wrap: break-word;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

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

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

picture {
  display: block;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ================================
Base
================================ */
html {
  font-size: clamp(12px, 1.3vw, 16px);
  scroll-behavior: smooth;
  scroll-padding-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 3.7vw;
    scroll-padding-top: 4.6rem;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

* img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
a:hover {
  opacity: 0.7;
}

/* ================================
Container
================================ */
/* root container */
.l-wrapper {
  overflow-x: clip;
}

/* main container */
.l-content-container {
  position: relative;
  padding: 5.6rem 0 0;
}
@media screen and (max-width: 768px) {
  .l-content-container {
    padding: 5.3rem 0 0;
  }
}

/* container */
.l-container {
  width: calc(100% - 3.4rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.l-container.-sm {
  max-width: 1000px;
}
.l-container.-xs {
  max-width: 780px;
}
@media screen and (max-width: 768px) {
  .l-container.-tight_only_desktop {
    width: calc(100% - 7.1rem);
  }
}

/* ================================
Header
================================ */
.l-header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.6rem;
  background-color: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l-header__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.3rem;
  padding: 0 7.1vw 0 2.5rem;
}
.l-header__logo {
  position: relative;
  width: 14.6rem;
  aspect-ratio: 234/60;
}
.l-header__toggle {
  display: none;
}
.l-header__tel {
  -ms-flex-item-align: start;
      align-self: flex-start;
  height: 4.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 0.4rem;
  border-radius: 0 0 0.6rem 0.6rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#005bac), to(#1277d1));
  background: linear-gradient(to bottom, #005bac, #1277d1);
  padding: 0.6rem 0.9rem;
}
.l-header__tel-ico {
  height: 1.4rem;
  aspect-ratio: 19/23;
  margin: 0 0 0.3rem;
}
.l-header__tel-ico img {
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__tel-num {
  color: #fff;
  font-family: "Inter", serif;
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    padding: 0 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 5.3rem;
  }
  .l-header__inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 0 1.4rem;
    padding: 0 1.7rem;
  }
  .l-header__logo {
    width: 14.3rem;
    margin: 0 auto 0 0;
  }
  .l-header__tel {
    -ms-flex-item-align: center;
        align-self: center;
    height: 2.6rem;
    aspect-ratio: 1/1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0.7rem;
    padding: 0;
  }
  .l-header__tel-ico {
    margin: 0;
  }
  .l-header__tel-num {
    display: none;
  }
  .l-header__toggle {
    display: block;
    position: relative;
    z-index: 1000;
    width: 2.4rem;
    height: 1.9rem;
    cursor: pointer;
  }
  .l-header__toggle span {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #005bac;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l-header__toggle span:nth-of-type(1) {
    top: 0;
  }
  .l-header__toggle span:nth-of-type(2) {
    top: 0.9rem;
  }
  .l-header__toggle span:nth-of-type(3) {
    bottom: 0;
  }
  .l-header__toggle.is-active span:nth-of-type(1) {
    -webkit-transform: translateY(0.9rem) rotate(45deg);
            transform: translateY(0.9rem) rotate(45deg);
  }
  .l-header__toggle.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__toggle.is-active span:nth-of-type(3) {
    -webkit-transform: translateY(-0.8rem) rotate(-45deg);
            transform: translateY(-0.8rem) rotate(-45deg);
  }
}

.l-header-drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header-drawer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.1rem;
}
.l-header-drawer__menu-item .sub-menu {
  display: none;
}
@media screen and (min-width: 769px) {
  .l-header-drawer__menu-item > a {
    position: relative;
    display: block;
    cursor: pointer;
    font-weight: 500;
    padding: 0.5em 0;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
  .l-header-drawer__menu-item > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #005bac;
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
  .l-header-drawer__menu-item:hover > a {
    opacity: 1;
  }
  .l-header-drawer__menu-item:hover > a::after {
    opacity: 1;
  }
  .l-header-drawer__menu-item.current-menu-item > a::after {
    opacity: 1;
  }
  .l-header-drawer__menu-item.-sitemap, .l-header-drawer__menu-item.-privacy {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .l-header-drawer__menu {
    gap: 0 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header-drawer {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 100;
    top: 5.3rem;
    right: 0;
    width: 100%;
    height: calc(100svh - 5.3rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.4rem 1.7rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: -webkit-gradient(linear, left top, left bottom, from(#005bac), to(#1277d1));
    background: linear-gradient(to bottom, #005bac, #1277d1);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l-header-drawer__menu {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .l-header-drawer__menu-item {
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  .l-header-drawer__menu-item > a {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem;
  }
  .l-header-drawer__menu-item .sub-menu {
    display: block;
    margin: 0 1rem 1.4rem;
  }
  .l-header-drawer__menu-item .sub-menu li > a {
    position: relative;
    width: 100%;
    font-weight: 500;
    padding: 0 0 0 2.9rem;
  }
  .l-header-drawer__menu-item .sub-menu li > a::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 2.1rem;
    height: 1px;
    background-color: #fff;
  }
  .l-header-drawer__menu-item .sub-menu li:not(:last-child) {
    margin-bottom: 0.7rem;
  }
  .l-header-drawer.is-active {
    visibility: visible;
    opacity: 1;
  }
}

/* ================================
Footer
================================ */
.l-footer__main {
  color: #fff;
  background-color: #005bac;
  padding: 3.1rem 0;
}
.l-footer__main-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.9rem 2.5rem;
}
.l-footer__sub {
  background-color: #fff;
  padding: 0.6rem 0;
}
.l-footer__copyright {
  display: block;
  font-size: 0.9rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer__main {
    background: -webkit-gradient(linear, left top, left bottom, from(#1277D1), to(#005EB6));
    background: linear-gradient(to bottom, #1277D1, #005EB6);
    padding: 1.4rem 0;
  }
  .l-footer__sub {
    padding: 0.5rem 0;
  }
  .l-footer__copyright {
    font-size: 1rem;
  }
}

.l-footer-company__logo {
  width: 14.5rem;
  aspect-ratio: 233/60;
  margin: 0 0 1rem;
}
.l-footer-company__name {
  font-size: rerm(24);
  font-weight: 700;
  margin: 0 0 0.9rem;
}
@media screen and (max-width: 768px) {
  .l-footer-company__logo {
    display: none;
  }
  .l-footer-company__name {
    font-size: 1.4rem;
    margin: 0 0 0.7rem;
  }
}

.l-footer-nav__menu {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  gap: 1.3rem 3.8rem;
}
.l-footer-nav__menu-item > a {
  display: block;
  font-weight: 700;
}
.l-footer-nav__menu-item.-business {
  grid-column: 1/2;
  grid-row: 1/5;
}
.l-footer-nav__menu-item .sub-menu {
  margin: 1.3rem 0 0;
}
.l-footer-nav__menu-item .sub-menu li > a {
  position: relative;
  padding: 0 0 0 2.5rem;
}
.l-footer-nav__menu-item .sub-menu li > a::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 1.9rem;
  height: 1px;
  background-color: #fff;
}
.l-footer-nav__menu-item .sub-menu li:not(:last-child) {
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
  .l-footer-nav {
    display: none;
  }
}

/* ================================
Common module
================================ */
/* heading */
.c-heading {
  color: #005bac;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 3.8rem;
}
.c-heading.-sm {
  font-size: 1.5rem;
  margin: 0 0 3.1rem;
}
.c-heading.-bk {
  color: #000;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 1.4rem;
    margin: 0 0 2.1rem;
  }
  .c-heading.-sm {
    font-size: 1.1rem;
    margin: 0 0 2.1rem;
  }
}

.c-underline-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem 0;
  color: #005bac;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  margin: 0 0 3.8rem;
}
.c-underline-heading::before {
  content: attr(data-en);
  display: block;
  color: #ccdeee;
  font-size: 1.3rem;
  line-height: 1;
  text-transform: uppercase;
}
.c-underline-heading::after {
  content: "";
  display: inline-block;
  width: 3.8rem;
  height: 3px;
  background-color: currentColor;
}
@media screen and (max-width: 768px) {
  .c-underline-heading {
    gap: 1rem 0;
    font-size: 1.6rem;
    margin: 0 0 2.1rem;
  }
  .c-underline-heading::before {
    font-size: 1rem;
  }
  .c-underline-heading::after {
    width: 2.9rem;
  }
}
.c-underline-heading.-wh {
  color: #fff;
}

.c-dash-heading {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0 0 0 7.5rem;
  margin: 0 0 1.9rem;
}
.c-dash-heading::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  display: inline-block;
  width: 5.6rem;
  height: 1px;
  background-color: #005bac;
}
.c-dash-heading.-bl {
  color: #005bac;
}
.c-dash-heading:has(+ .c-def-list) {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .c-dash-heading {
    font-size: 1.1rem;
    padding: 0 0 0 4.6rem;
    margin: 0 0 1.4rem;
  }
  .c-dash-heading::before {
    width: 3.6rem;
  }
}
.c-dash-heading.-wh::before {
  background-color: #fff;
}

/* sentence */
.c-sentence {
  line-height: 2;
}
.c-sentence + .c-sentence {
  margin-top: 2em;
}
.c-sentence + .c-btn__wrap {
  margin-top: 1.9rem;
}
@media screen and (max-width: 768px) {
  .c-sentence {
    font-size: 1rem;
    line-height: 1.8;
  }
  .c-sentence + .c-sentence {
    margin-top: 1.8em;
  }
  .c-sentence + .c-btn__wrap {
    margin-top: 2.9rem;
  }
}
.c-sentence.-center_only_desktop {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-sentence.-center_only_desktop {
    text-align: left;
  }
}
.c-sentence.-right_only_desktop {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-sentence.-right_only_desktop {
    text-align: left;
  }
}

.c-underline-link {
  color: #005bac;
  text-decoration: underline;
}

/* button */
.c-chevron-btn {
  position: relative;
  min-width: 13.8rem;
  height: 3.1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.6rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, left bottom, from(#005bac), to(#1277d1));
  background: linear-gradient(to bottom, #005bac, #1277d1);
  border-radius: 0.3rem;
  padding: 0 1em;
}
.c-chevron-btn::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  aspect-ratio: 1/1;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .c-chevron-btn {
    max-width: 20rem;
    width: 100%;
    height: 2.9rem;
    padding: 0 2.5em;
  }
  .c-chevron-btn::after {
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
  }
  .c-chevron-btn span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
}
.c-chevron-btn.-wh {
  color: #005bac;
  background: #fff;
}

.c-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap {
    gap: 1rem 1rem;
  }
}
.c-btn__wrap.-left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.c-btn__wrap.-right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.c-btn__wrap.-vertical_only_desktop {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-vertical_only_desktop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-btn__wrap.-right_only_desktop {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-right_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-btn__wrap.-left_only_desktop {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-left_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-left_only_mobile {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

/* table */
.c-table {
  width: 100%;
}
.c-table th,
.c-table td {
  border-bottom: 1px solid #005bac;
  padding: 1rem 0;
}
.c-table th {
  width: 11.9rem;
  white-space: nowrap;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-table th {
    width: 4.3rem;
    text-align: left;
    padding: 1rem 0.7rem;
  }
}

/* list */
.c-dot-list li {
  position: relative;
  line-height: 1.8;
  padding: 0 0 0 1em;
}
.c-dot-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 1em;
}

/* breadcrumbs */
.c-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
}
.c-breadcrumbs__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.c-breadcrumbs__item:not(:last-of-type)::after {
  content: "＞";
  display: inline-block;
  margin: 0 0.5em;
}

/* img box */
.c-img-box {
  background-color: #ccdeee;
  border-radius: 0.6rem;
  padding: 3.1rem 6.3rem;
  margin: 2.5rem 0;
}
.c-img-box__heading {
  color: #005bac;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1.9rem;
}
.c-img-box__desc {
  line-height: 1.8;
}
.c-img-box__desc + * {
  margin-top: 1.9rem;
}
.c-img-box__img-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.4rem 3.1rem;
}
.c-img-box__img {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 auto;
}
.c-img-box__img figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  color: #005bac;
  font-size: 0.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-img-box {
    padding: 1.4rem 0.9rem;
    margin: 1.7rem 0;
  }
  .c-img-box__heading {
    font-size: 1.1rem;
    margin: 0 0 1rem;
  }
  .c-img-box__heading + .c-img-box__img-wrap {
    margin-top: 1.7rem;
  }
  .c-img-box__desc {
    margin: 0 0 1rem;
  }
  .c-img-box__img-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-img-box__img-wrap + * {
    margin-top: 1.7rem;
  }
  .c-img-box__img figcaption {
    bottom: 0.9rem;
    left: 0.9rem;
    font-size: 0.6rem;
  }
}

/* card */
.c-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  padding: 2.5rem 1.5rem 3.1rem;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0 0 0.9rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.9rem rgba(0, 0, 0, 0.1);
}
.c-card__title {
  color: #005bac;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1.3rem;
}
.c-card__desc {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-card {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    padding: 1.7rem 1.4rem;
  }
  .c-card__title {
    font-size: 1.1rem;
    margin: 0 0 0.7rem;
  }
}

.c-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.4rem 1.3rem;
}
@media screen and (max-width: 768px) {
  .c-card__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* definition list */
.c-def-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.9rem;
}
.c-def-list__row + .c-def-list__row {
  margin-top: 4.4rem;
}
.c-def-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-def-list__header {
  position: relative;
  z-index: 0;
  width: 100%;
  border-radius: 9999px;
  background-color: #005bac;
  padding: 0.6rem 6.9rem;
}
.c-def-list__num {
  position: absolute;
  top: -3rem;
  left: 1.9rem;
  font-family: "Inter", serif;
  color: #ccdeee;
  font-size: 6.3rem;
  font-weight: 700;
  line-height: 1;
}
.c-def-list__title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}
.c-def-list__content {
  padding: 0 6.9rem;
  margin: 1.9rem 0 0;
}
.c-def-list__desc {
  line-height: 1.8;
}
.c-def-list__arrow {
  width: 1.9rem;
  aspect-ratio: 31/21;
  background: url(../img/cmn/def-list_arrow.svg) no-repeat center center/contain;
  margin: 1rem auto;
}
.c-def-list__outro-wrap {
  text-align: center;
}
.c-def-list__outro {
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  color: #005bac;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 700;
  padding: 0 0.5em 0.25em;
  border-bottom: 1px solid #005bac;
}
@media screen and (max-width: 768px) {
  .c-def-list__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-def-list__header {
    padding: 0.4rem 1rem 0.4rem 4.3rem;
  }
  .c-def-list__num {
    top: -2.2rem;
    left: 1rem;
    font-size: 4.3rem;
  }
  .c-def-list__title {
    font-size: 1.1rem;
  }
  .c-def-list__content {
    padding: 0 1rem;
    margin: 1rem 0 0;
  }
  .c-def-list__content > *:not(:last-child) {
    margin-bottom: 0.7rem;
  }
  .c-def-list__desc {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
  }
  .c-def-list__arrow {
    margin: 1rem auto;
  }
  .c-def-list__outro {
    font-size: 1.1rem;
  }
}

/* faq list */
.c-faq-list__item {
  cursor: pointer;
  overflow: hidden;
  border-bottom: 1px solid #005bac;
  padding: 0 1.9rem;
}
.c-faq-list__item.is-open .c-faq-list__header::after {
  content: "－";
}
.c-faq-list__item.is-open .c-faq-list__content {
  visibility: visible;
  opacity: 1;
  height: auto;
  padding: 0 0 1.3rem;
}
.c-faq-list__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: first baseline;
      -ms-flex-align: first baseline;
          align-items: first baseline;
  padding: 1.3rem 0;
}
.c-faq-list__header::before {
  content: "Q.";
  font-weight: 700;
  margin: 0 0.5em 0 0;
}
.c-faq-list__header::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: center;
      align-self: center;
  content: "＋";
  color: #005bac;
  font-size: 1.3rem;
  line-height: 1;
  margin: 0 0 0 1.3rem;
}
.c-faq-list__question {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
}
.c-faq-list__content {
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: opacity 0.2s ease-out, height 0.2s ease-out, padding 0.2s ease-out;
  transition: opacity 0.2s ease-out, height 0.2s ease-out, padding 0.2s ease-out;
}
.c-faq-list__answer {
  color: #005bac;
  line-height: 1.8;
}
.c-faq-list__answer::before {
  content: "A.";
  display: inline-block;
  margin: 0 0.5em 0 0;
}
@media screen and (max-width: 768px) {
  .c-faq-list__item {
    padding: 0 0.7rem;
  }
  .c-faq-list__item.is-open .c-faq-list__content {
    padding: 0 0 0.7rem;
  }
  .c-faq-list__header {
    padding: 1rem 0;
  }
  .c-faq-list__header::after {
    font-size: 1.7rem;
    margin: 0 0 0 1rem;
  }
}

/* feature block */
.c-feature-block {
  border-radius: 0.6rem;
  background-color: #fff;
}
.c-feature-block__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.7rem 5rem;
  padding: 5rem 2.5rem 5rem 5rem;
}
.c-feature-block__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 0.3rem;
  overflow: hidden;
  margin: -7.5rem 0 0;
}
.c-feature-block__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-feature-block__typo {
  display: block;
  color: #ccdeee;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 2.5rem;
}
.c-feature-block__count {
  min-width: 6.5rem;
  display: inline-block;
  color: #005bac;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  background-color: #ccdeee;
  padding: 0.25em 0.5em;
  margin: 0 0 1.3rem;
}
.c-feature-block__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.3rem;
}
.c-feature-block__desc {
  line-height: 1.8;
}
.c-feature-block__point {
  margin: 1.3rem 0 0;
}
.c-feature-block__point-title {
  color: #005bac;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.c-feature-block__point-list li {
  padding: 0 0 0 1rem;
  border-left: 0.4rem solid #005bac;
}
.c-feature-block__point-list li:not(:last-child) {
  margin-bottom: 0.6rem;
}
.c-feature-block__btn-wrap {
  width: calc(100% + 5rem);
  margin: 2.3rem -5rem 0 0;
}
.c-feature-block:not(:last-of-type) {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .c-feature-block__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.9rem 1.4rem;
  }
  .c-feature-block__img {
    width: 100%;
    border-radius: 0.7rem;
    margin: -4.3rem 0 0;
  }
  .c-feature-block__typo {
    display: none;
  }
  .c-feature-block__count {
    min-width: 4.4rem;
    font-size: 1rem;
    margin: 0 0 0.7rem;
  }
  .c-feature-block__title {
    font-size: 1.1rem;
    margin: 0 0 0.7rem;
  }
  .c-feature-block__point {
    margin: 1.7rem 0 0;
  }
  .c-feature-block__point-title {
    font-size: 1rem;
    margin: 0 0 0.5rem;
  }
  .c-feature-block__point-list li {
    padding: 0 0 0 0.9rem;
    border-left: 0.3rem solid #005bac;
  }
  .c-feature-block__point-list li:not(:last-child) {
    margin-bottom: 0.7rem;
  }
  .c-feature-block__btn-wrap {
    width: 100%;
    margin: 2.1rem 0 0;
  }
}

@media screen and (max-width: 768px) {
  .c-feature-block01__btn01 span {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .c-feature-block03__btn {
    padding: 0 1em;
  }
}

.c-feature-block__wrap {
  background: -webkit-gradient(linear, left top, left bottom, from(#005bac), to(#1277d1));
  background: linear-gradient(to bottom, #005bac, #1277d1);
  padding: 6.3rem 0;
}
@media screen and (max-width: 768px) {
  .c-feature-block__wrap {
    padding: 4.3rem 0;
  }
}

/* about block */
.c-about-block {
  background-color: #ccdeee;
  border-radius: 0.6rem;
  overflow: hidden;
  margin: 6.3rem auto 0;
}
.c-about-block__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem 6.9rem;
  padding: 0 5.6rem;
}
.c-about-block__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40%;
  margin: -3.1rem 0;
}
.c-about-block__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .c-about-block {
    margin: 6.4rem auto 0;
  }
  .c-about-block__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.1rem 1.4rem;
  }
  .c-about-block__img {
    width: 100%;
    margin: 0;
  }
}

/* CTA */
.c-recruit-cta {
  color: #fff;
  background: url(../img/cmn/recruit-cta_bg.jpg) no-repeat center center/cover;
  padding: 7.5rem 0 5.6rem;
}
@media screen and (max-width: 768px) {
  .c-recruit-cta {
    padding: 2.9rem 0;
  }
  .c-recruit-cta__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 1em;
  }
  .c-recruit-cta__btn .c-chevron-btn__text {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

/* ================================
Page
================================ */
.p-page-content {
  padding: 4.4rem 0 6.3rem;
}
.p-page-content.-pb0 {
  padding-bottom: 0;
}
.p-page-content__editable-area h2 {
  color: #005bac;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1em 0 0.25em;
}
.p-page-content__editable-area h3 {
  color: #005bac;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1em 0 0.25em;
}
.p-page-content__editable-area p {
  line-height: 2;
}
.p-page-content__editable-area p + p {
  margin-top: 1em;
}
.p-page-content__editable-area .wp-block-separator {
  height: 1px;
  border-top: 1px solid #C8C8C8;
  margin: 3.8rem 0;
}
@media screen and (max-width: 768px) {
  .p-page-content {
    padding: 3.6rem 0 5rem;
  }
  .p-page-content__editable-area h2 {
    font-size: 1.4rem;
    margin: 1em 0 0.5em;
  }
  .p-page-content__editable-area h3 {
    font-size: 1.1rem;
    margin: 1em 0 0.5em;
  }
  .p-page-content__editable-area p {
    line-height: 1.7;
  }
}

.p-page-header {
  margin: 0 0 4.4rem;
}
@media screen and (max-width: 768px) {
  .p-page-header {
    margin: 0 0 2.1rem;
  }
}

.p-page-nav {
  margin: 0 0 4.4rem;
}
.p-page-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem 1.3rem;
}
.p-page-nav__item {
  min-width: 14.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.3rem;
  color: #005bac;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border: 1px solid #005bac;
  border-radius: 0.3rem;
}
.p-page-nav__item::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  border-bottom: 1px solid #005bac;
  border-right: 1px solid #005bac;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: -0.3rem 0 0;
}
.p-page-nav__item span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-page-nav {
    margin: 0 0 3.6rem;
  }
  .p-page-nav__list {
    gap: 0.7rem 0.7rem;
  }
  .p-page-nav__item {
    min-width: calc(50% - 0.4rem);
    gap: 0 0.4rem;
    padding: 0.5rem 1rem;
  }
}

.p-page-links {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #ccdeee), to(#ccdeee));
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #ccdeee 50%, #ccdeee 100%);
  padding: 3.8rem 0;
  margin: 3.8rem 0 0;
}
.p-page-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.4rem 2.9rem;
}
.p-page-links__item {
  position: relative;
  z-index: 0;
  width: calc((100% - 5.8rem) / 3);
  aspect-ratio: 370/274;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-radius: 0.6rem;
  overflow: hidden;
  padding: 0.6rem 1.3rem;
}
.p-page-links__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}
.p-page-links__item.-company {
  background: url(../img/company/page-mv_bg_sp.jpg) no-repeat center center/cover;
}
.p-page-links__item.-faq {
  background: url(../img/faq/page-mv_bg_sp.jpg) no-repeat center center/cover;
}
.p-page-links__item.-sdgs {
  background: url(../img/sdgs/page-mv_bg_sp.jpg) no-repeat center center/cover;
}
.p-page-links__item.-environment {
  background: url(../img/environment/page-mv_bg_sp.jpg) no-repeat center center/cover;
}
.p-page-links__item.-benefits {
  background: url(../img/benefits/page-mv_bg_sp.jpg) no-repeat center center/cover;
}
.p-page-links__item.-benefits2 {
  background: url(../img/environment/page-mv_bg_sp2.jpg) no-repeat center center/cover;
}
.p-page-links__item.-interview {
  background: url(../img/recruit/mv_bg_sp.jpg) no-repeat center center/cover;
}
.p-page-links__title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-page-links {
    background: #ccdeee;
    padding: 2.9rem 0;
    margin: 3.6rem 0 0;
  }
  .p-page-links__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-page-links__item {
    width: 100%;
    aspect-ratio: 328/115;
    border-radius: 0.7rem;
    padding: 0.7rem 1.4rem;
  }
  .p-page-links__title {
    font-size: 1.1rem;
  }
}

/* ================================
Post
================================ */
.p-post-single__footer {
  margin: 6.3rem 0 0;
}
.p-post-single__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 3.8rem;
  margin: 0 auto;
}
.p-post-single__pager-item {
  color: #005bac;
  font-size: 1.1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-post-single__footer {
    margin: 4.3rem 0 0;
  }
  .p-post-single__pager {
    gap: 0 2.1rem;
  }
  .p-post-single__pager-item {
    font-size: 1.1rem;
  }
}

.p-post-article__header {
  margin: 6.3rem 0 5rem;
}
.p-post-article__title {
  font-size: 2rem;
  font-weight: 500;
  margin: 0.6rem 0 2.5rem;
}
.p-post-article__thumb {
  width: 100%;
}
.p-post-article__editable-area p {
  line-height: 2;
}
.p-post-article__editable-area p:has(img) {
  margin: 1.9rem 0;
}
.p-post-article__editable-area p a {
  text-decoration: underline;
}
.p-post-article__editable-area p + p {
  margin-top: 2em;
}
.p-post-article__editable-area h2 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  background-color: #000;
  padding: 0.6rem 1.9rem;
  margin: 1.9rem 0;
}
.p-post-article__editable-area h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #005bac;
  padding: 0.6rem 1.9rem;
  margin: 1.9rem 0;
}
.p-post-article__editable-area h4 {
  color: #005bac;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0 0 0.6rem;
  border-bottom: 1px solid #000;
  margin: 1.3rem 0;
}
.p-post-article__editable-area div:has(img) {
  margin: 1.9rem 0;
}
.p-post-article__editable-area ul {
  margin: 1.9rem 0;
}
.p-post-article__editable-area ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-post-article__editable-area ul li::before {
  content: "・";
  width: 1em;
}
.p-post-article__editable-area ul li:not(:last-child) {
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 768px) {
  .p-post-article__header {
    margin: 1.9rem 0;
  }
  .p-post-article__title {
    font-size: 1.5rem;
    margin: 1rem 0 1.9rem;
  }
  .p-post-article__editable-area p {
    font-size: 1rem;
    line-height: 2.4;
  }
  .p-post-article__editable-area h2 {
    font-size: 1.3rem;
    padding: 0.6rem 0.9rem;
    margin: 1.9rem 0;
  }
  .p-post-article__editable-area h3 {
    font-size: 1.1rem;
    font-weight: 600;
  }
  .p-post-article__editable-area h4 {
    font-size: 1rem;
  }
  .p-post-article__editable-area div:has(img) {
    margin: 1.9rem 0;
  }
  .p-post-article__editable-area ul {
    margin: 1.3rem 0;
  }
}

/* ================================
Top
================================ */
.p-top-problem {
  position: relative;
  z-index: 1;
  background: url(../img/top/problem_bg.png) no-repeat bottom center/cover;
  padding: 5rem 0 8.8rem;
}
.p-top-problem__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.3rem 1.3rem;
}
.p-top-problem__list li {
  width: calc(50% - 0.7rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
  font-weight: 700;
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 1.8rem 1.5rem;
}
.p-top-problem__list li::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  height: 1.4375em;
  aspect-ratio: 27/23;
  background: url(../img/cmn/comment_ico_bl.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .p-top-problem {
    background: url(../img/top/problem_bg_sp.png) no-repeat bottom center/cover;
    padding: 2.1rem 0 5rem;
  }
  .p-top-problem__list {
    gap: 0.9rem 0;
  }
  .p-top-problem__list li {
    width: 100%;
    padding: 0.7rem 1.1rem;
  }
}

.p-top-business {
  padding: 4.4rem;
}
.p-top-business__heading {
  margin: 0 0 -1.9rem;
}
.p-top-business__block:not(:last-of-type) {
  margin-bottom: 1.3rem;
}
.p-top-business__header {
  position: relative;
  z-index: 0;
  min-height: 12.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0.6rem;
}
.p-top-business__count {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -6.3rem;
  font-family: "Inter", serif;
  color: #ccdeee;
  font-size: 12.5rem;
  font-weight: 700;
  line-height: 1;
}
.p-top-business__title {
  color: #005bac;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
}
.p-top-business__video {
  position: relative;
  width: 100%;
  aspect-ratio: 1200/674;
  border-radius: 0.6rem;
  overflow: hidden;
  margin: 3.8rem 0 6.3rem;
}
.p-top-business__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-business {
    padding: 2.9rem 0 0;
  }
  .p-top-business__block:not(:last-of-type) {
    margin-bottom: 3.6rem;
  }
  .p-top-business__heading {
    margin: 0 0 0.7rem;
  }
  .p-top-business__header {
    min-height: initial;
    gap: 0.7rem 0;
    margin: 0 0 1.4rem;
  }
  .p-top-business__count {
    position: initial;
    font-size: 5rem;
  }
  .p-top-business__title {
    font-size: 1.4rem;
  }
  .p-top-business__video {
    border-radius: 0.7rem;
    margin: 1.7rem 0 2.9rem;
  }
}

/* ================================
会社概要
================================ */
.p-company-message {
  padding: 0 0 6.3rem;
}
.p-company-message__name {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: right;
  margin: 2.3rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-company-message {
    padding: 0 0 3.6rem;
  }
  .p-company-message__name {
    font-size: 1.1rem;
    margin: 1.1rem 0 0;
  }
}

.p-company-philo {
  background-color: #ccdeee;
  padding: 5.6rem 0;
  margin: 0 0 6.3rem;
}
.p-company-philo__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.1rem 0;
  margin: 0 0 3.8rem;
}
.p-company-philo__item {
  width: 15.6rem;
}
.p-company-philo__ico {
  width: 100%;
  aspect-ratio: 1/1;
  margin: 0 0 1.9rem;
}
.p-company-philo__title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
.p-company-philo__outro-wrap {
  text-align: center;
}
.p-company-philo__outro {
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  font-size: 1.3rem;
  text-align: center;
  line-height: 2;
  font-weight: 700;
  padding: 0 0 0.6rem;
  border-bottom: 1px solid #005bac;
}
@media screen and (max-width: 768px) {
  .p-company-philo {
    padding: 3.6rem 0;
    margin: 0 0 3.6rem;
  }
  .p-company-philo__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 2.1rem;
  }
  .p-company-philo__item {
    width: 14.3rem;
  }
  .p-company-philo__ico {
    margin: 0 0 0.7rem;
  }
  .p-company-philo__title {
    font-size: 1.1rem;
  }
  .p-company-philo__outro {
    font-size: 1rem;
    padding: 0 0 0.3rem;
  }
}

.p-company-info__address img {
  width: auto;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
  margin: 0 0 2px 0.4rem;
}

/* ================================
業務内容
================================ */
.p-business-links {
  margin: 4.4rem 0;
}
.p-business-links__btn-wrap {
  gap: 1.5rem 3.1rem;
}
.p-business-links__btn {
  width: 22.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 3.4rem;
}
.p-business-links__btn .c-chevron-btn__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.p-business-scm {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#1277d1), to(#005bac));
  background: linear-gradient(to bottom, #1277d1, #005bac);
  padding: 0 0 4.4rem;
}
.p-business-scm__heading {
  color: #ccdeee;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.6rem;
}
.p-business-scm__catch {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.p-business-scm__desc {
  line-height: 1.8;
}
.p-business-scm__desc + .p-business-scm__desc {
  margin-top: 0.6rem;
}
.p-business-scm__title01 {
  margin: 0.6rem 0;
}
.p-business-scm__title02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1.3rem 0 0.6rem;
}
.p-business-scm__title02::before {
  content: "・";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-business-scm {
    padding: 2.9rem 0;
  }
  .p-business-scm__heading {
    font-size: 1.1rem;
  }
  .p-business-scm__catch {
    font-size: 1.1rem;
    text-align: left;
  }
  .p-business-scm__title01 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
  }
  .p-business-scm__title02 {
    font-size: 1.1rem;
    margin: 0.7rem 0 0.5rem;
  }
}

.p-business-block01 {
  padding: 4.4rem 0 0;
}
.p-business-block01__box-img {
  max-width: 55.9rem;
}
@media screen and (max-width: 768px) {
  .p-business-block01 {
    padding: 3.6rem 0 0;
  }
  .p-business-block01__box {
    padding: 2.9rem 0.9rem;
  }
  .p-business-block01__box-heading {
    font-size: 1.4rem;
  }
  .p-business-block01__box-img {
    max-width: 18rem;
  }
}

.p-business-kodawari {
  padding: 5.6rem 0;
}
.p-business-kodawari__list {
  margin: 3.8rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-business-kodawari {
    padding: 0;
    margin: 0;
  }
  .p-business-kodawari__list {
    margin: 2.1rem 0 0;
  }
}

.p-business-block02 {
  padding: 3.8rem 0 0;
}
.p-business-block02__img {
  border-radius: 0.6rem;
  overflow: hidden;
  margin: 2.5rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-business-block02 {
    padding: 2.9rem 0 0;
  }
  .p-business-block02__img {
    margin: 1.4rem 0 0;
  }
}

/* ================================
導入までの流れ
================================ */
.p-flow-list__desc01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: first baseline;
      -ms-flex-align: first baseline;
          align-items: first baseline;
  line-height: 1.5;
}
.p-flow-list__desc01 .-arrow {
  display: inline-block;
  height: 0.875em;
  aspect-ratio: 13/15;
  margin: 0 1em;
}
.p-flow-list__desc01 .-arrow img {
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}
.p-flow-list__desc02 .-keyword {
  display: inline-block;
  min-width: 6rem;
  color: #005bac;
  text-align: center;
  font-weight: 700;
  background-color: #ccdeee;
  border-radius: 0.3rem;
  padding: 0.5em;
  margin: 0 0.5em 0 0;
}
.p-flow-list__arrow {
  margin: 2.5rem auto;
}
@media screen and (max-width: 768px) {
  .p-flow-list__desc01 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-flow-list__desc02 {
    text-align: center;
  }
  .p-flow-list__desc02 .-keyword {
    min-width: 5rem;
    padding: 0 0.5em;
    margin: 0 0 0 0.25em;
  }
  .p-flow-list__arrow {
    margin: 1.4rem auto 2.1rem;
  }
}

/* ================================
管理システム
================================ */
.p-control-main__img01 {
  max-width: 50rem;
}

.p-control-case01 {
  margin: 0 0 7.5rem;
}
.p-control-case01__img-box {
  padding: 1.3rem;
}
@media screen and (max-width: 768px) {
  .p-control-case01 {
    margin: 0 0 6.4rem;
  }
  .p-control-case01__img-box {
    position: relative;
    padding: 0 0 2.1rem;
  }
  .p-control-case01__img {
    position: initial;
  }
}

.p-control-case02__img-box {
  position: relative;
  padding: 0;
}
.p-control-case02__img {
  position: initial;
}
.p-control-case02__img figcaption {
  bottom: 1.3rem;
  left: 1.3rem;
}
@media screen and (max-width: 768px) {
  .p-control-case02__img {
    position: relative;
  }
  .p-control-case02__img figcaption {
    font-size: 0.6rem;
  }
}

/* ================================
コールセンター
================================ */
.p-call-case__heading {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: #005bac;
  border-radius: 9999px;
  padding: 0.6rem 2.8rem;
  margin: 0 0 1.5rem;
}
.p-call-case__block01 {
  margin-top: 3.8rem;
}
.p-call-case__block03 {
  background-color: #ccdeee;
  padding: 4.4rem 0;
}
.p-call-case__arrow {
  width: 1.9rem;
  aspect-ratio: 31/21;
  background: url(../img/cmn/def-list_arrow.svg) no-repeat center center/contain;
  margin: 3.1rem auto;
}
.p-call-case__box {
  margin: 3.1rem 0 0;
}
.p-call-case__box-img {
  max-width: 57.5rem;
}
@media screen and (max-width: 768px) {
  .p-call-case__heading {
    font-size: 1rem;
    text-indent: -3em;
    padding: 0.5rem 1.4rem 0.5rem 4.4rem;
  }
  .p-call-case__block01 {
    margin: 2.9rem 0;
  }
  .p-call-case__block03 {
    padding: 2.9rem 0;
  }
  .p-call-case__arrow {
    margin: 1.7rem auto;
  }
}

/* ================================
SDGs宣言
================================ */
.p-sdgs-header__symbol {
  width: 9.8rem;
  aspect-ratio: 1/1;
  margin: 2.5rem auto;
}
@media screen and (max-width: 768px) {
  .p-sdgs-header__symbol {
    width: 10.4rem;
    margin: 2.1rem auto 1.7rem;
  }
}

.p-sdgs-list__block:not(:last-of-type) {
  margin-bottom: 3.1rem;
}
.p-sdgs-list__heading {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: #005bac;
  border-radius: 9999px;
  padding: 0.6rem 3.8rem;
  margin: 0 0 1.9rem;
}
.p-sdgs-list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 1.9rem;
  padding: 0 3.8rem;
}
.p-sdgs-list__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-sdgs-list__goal-list {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.8rem;
}
.p-sdgs-list__goal-list li {
  width: calc((100% - 2.3rem) / 4);
  aspect-ratio: 1/1;
}
.p-sdgs-list__goal-list li img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-sdgs-list__block:not(:last-of-type) {
    margin-bottom: 2.9rem;
  }
  .p-sdgs-list__heading {
    font-size: 1rem;
    text-align: center;
    margin: 0 0 1rem;
  }
  .p-sdgs-list__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .p-sdgs-list__goal-list {
    width: 100%;
    gap: 0.4rem 0.4rem;
  }
  .p-sdgs-list__goal-list li {
    width: calc((100% - 1.1rem) / 4);
  }
}

/* ================================
採用情報
================================ */
.p-recruit-intro {
  position: relative;
  z-index: 0;
  background: url(../img/recruit/intro_bg.jpg) no-repeat center center/cover;
  padding: 15.6rem 0 8.8rem;
  margin: -9.4rem 0 8.8rem;
}
.p-recruit-intro__body {
  max-width: 460px;
  width: 100%;
  margin: 0 0 0 auto;
}
.p-recruit-intro__catch {
  color: #005bac;
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 0.9rem;
}
.p-recruit-intro__desc {
  color: #005bac;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 2;
  margin: 0 0 1.9rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-intro {
    background: url(../img/recruit/intro_bg_sp.jpg) no-repeat center center/cover;
    padding: 8.6rem 0 8.9rem;
    margin: -6.4rem 0 2.6rem;
  }
  .p-recruit-intro__catch {
    font-size: 1.4rem;
  }
  .p-recruit-intro__desc {
    font-size: 1.1rem;
  }
}

.p-recruit-interview__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem 6.3rem;
}
.p-recruit-interview__block:not(:last-of-type) {
  margin-bottom: 3.1rem;
}
.p-recruit-interview__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-recruit-interview__thumb {
  width: 54%;
  aspect-ratio: 655/395;
}
.p-recruit-interview__catch {
  color: #005bac;
  margin: 0 0 0.6rem;
}
.p-recruit-interview__meta {
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 1em;
  font-weight: 700;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 769px) {
  .p-recruit-interview__block:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-recruit-interview__block:nth-of-type(even) .p-recruit-interview__thumb {
    margin: 0 0 0 -6.3rem;
  }
  .p-recruit-interview__thumb {
    margin: 0 -6.3rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-interview__list {
    margin: 2.9rem 0 0;
  }
  .p-recruit-interview__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-recruit-interview__block:not(:last-of-type) {
    margin-bottom: 2.9rem;
  }
  .p-recruit-interview__thumb {
    width: 100%;
  }
  .p-recruit-interview__catch {
    margin: 0 0 0.5rem;
  }
}

/* ================================
先輩インタビュー
================================ */
.p-interview-mv {
  position: relative;
  z-index: 0;
  height: 29.4rem;
}
.p-interview-mv__thumb-wrap {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-interview-mv__thumb-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#005eb6), color-stop(40%, #005eb6), to(rgba(18, 119, 209, 0)));
  background: linear-gradient(to right, #005eb6, #005eb6 40%, rgba(18, 119, 209, 0));
}
.p-interview-mv__thumb {
  z-index: -2;
  position: absolute;
  top: 0;
  right: 0;
  width: 55.7142857143%;
  height: 100%;
}
.p-interview-mv__thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, color-stop(60%, rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 60%, #fff);
}
.p-interview-mv__inner {
  position: relative;
  height: 100%;
  padding: 3.8rem 0;
}
.p-interview-mv__breadcrumbs {
  position: absolute;
  top: 1.3rem;
  left: 0;
  color: #fff;
}
.p-interview-mv__content {
  height: 100%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem 0;
}
.p-interview-mv__catch {
  max-width: 70%;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
}
.p-interview-mv__text-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 2.5rem;
  margin: 0 auto;
}
.p-interview-mv__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1em;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-interview-mv__name {
  font-size: 3.8rem;
  line-height: 1;
}
.p-interview-mv__name::after {
  content: attr(data-en);
  display: block;
  font-family: "Inter", serif;
  font-size: 1.5rem;
  color: #ccdeee;
  margin: 0.8rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-interview-mv {
    height: 27.4rem;
  }
  .p-interview-mv__breadcrumbs {
    display: none;
  }
  .p-interview-mv__thumb-wrap::before {
    background: -webkit-gradient(linear, left bottom, left top, from(#005eb6), color-stop(40%, #005eb6), color-stop(70%, rgba(18, 119, 209, 0.3)), to(rgba(18, 119, 209, 0.3)));
    background: linear-gradient(to top, #005eb6, #005eb6 40%, rgba(18, 119, 209, 0.3) 70%, rgba(18, 119, 209, 0.3));
  }
  .p-interview-mv__thumb {
    width: 100%;
    height: 16.4rem;
    margin: 0 0 auto;
  }
  .p-interview-mv__thumb img {
    opacity: 0.7;
  }
  .p-interview-mv__thumb::before {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, rgba(255, 255, 255, 0)), to(#fff));
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 60%, #fff);
  }
  .p-interview-mv__inner {
    width: calc(100% - 2.3rem);
    padding: 2.1rem 0;
  }
  .p-interview-mv__content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 1.4rem 0;
  }
  .p-interview-mv__catch {
    max-width: initial;
    font-size: 1.4rem;
  }
  .p-interview-mv__text-wrap {
    gap: 0 1.7rem;
    margin: 0 0 0 auto;
  }
  .p-interview-mv__meta {
    font-size: 1.1rem;
  }
  .p-interview-mv__name {
    font-size: 2.1rem;
  }
  .p-interview-mv__name::after {
    font-size: 1.1rem;
    margin: 0.5rem 0 0;
  }
}

.p-interview-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem 5rem;
}
.p-interview-block__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-interview-block__title {
  color: #005bac;
  margin: 0 0 2.5rem;
}
.p-interview-block__text p {
  line-height: 1.7;
}
.p-interview-block__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 39.1666666667%;
}
.p-interview-block:not(:last-of-type) {
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 768px) {
  .p-interview-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-interview-block__title {
    margin: 0 0 1rem;
  }
  .p-interview-block__img {
    width: 100%;
  }
  .p-interview-block:not(:last-of-type) {
    margin-bottom: 2.6rem;
  }
}

/* ================================
社内環境
================================ */
.p-env-sec__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.1rem 3.1rem;
}
.p-env-sec__img {
  width: calc(50% - 1.6rem);
  aspect-ratio: 573/374;
}
.p-env-sec:not(:last-of-type) {
  margin-bottom: 6.3rem;
}
@media screen and (max-width: 768px) {
  .p-env-sec__gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4rem 0;
  }
  .p-env-sec__img {
    width: 100%;
  }
  .p-env-sec:not(:last-of-type) {
    margin-bottom: 2.5rem;
  }
}

/* ================================
社内制度
================================ */
.p-benefit-list__block {
  display: grid;
  grid-template-areas: "img title" "img content";
  grid-template-columns: 47% 1fr;
  grid-template-rows: -webkit-min-content 1fr;
  grid-template-rows: min-content 1fr;
  gap: 0 4.4rem;
}
.p-benefit-list__block:not(:last-of-type) {
  margin-bottom: 3.8rem;
}
.p-benefit-list__title {
  grid-area: title;
  text-align: left;
  margin: 0 0 1.9rem;
  padding: 1.9rem 0 0;
}
.p-benefit-list__content {
  grid-area: content;
  align-self: start;
  padding: 0 0 1.9rem;
}
.p-benefit-list__img {
  grid-area: img;
  width: 100%;
  aspect-ratio: 575/320;
}
@media screen and (max-width: 768px) {
  .p-benefit-list__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-benefit-list__block:not(:last-of-type) {
    margin-bottom: 2.9rem;
  }
  .p-benefit-list__img {
    width: 100%;
    margin: 0 0 1.4rem;
  }
  .p-benefit-list__title {
    text-align: center;
    padding: 0;
    margin: 0 0 1.4rem;
  }
  .p-benefit-list__content {
    padding: 0;
    font-size: 1.1rem;
  }
}

/* ================================
募集要項
================================ */
.p-req-archive__card {
  display: grid;
  grid-template-areas: "thumb title" "thumb content";
  grid-template-columns: 47% 1fr;
  grid-template-rows: -webkit-min-content 1fr;
  grid-template-rows: min-content 1fr;
  gap: 0 4.4rem;
}
.p-req-archive__card:not(:last-of-type) {
  margin-bottom: 3.8rem;
}
.p-req-archive__title {
  grid-area: title;
  text-align: left;
  text-decoration: underline;
  margin: 0 0 1.3rem;
}
.p-req-archive__content {
  grid-area: content;
  align-self: start;
}
.p-req-archive__thumb {
  grid-area: thumb;
  width: 100%;
  aspect-ratio: 575/320;
}
.p-req-archive__meta-wrap {
  margin: 0 0 3.1rem;
}
.p-req-archive__meta {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-req-archive__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-req-archive__card:not(:last-of-type) {
    margin-bottom: 2.9rem;
  }
  .p-req-archive__thumb {
    width: 100%;
    margin: 0 0 1.4rem;
  }
  .p-req-archive__title {
    margin: 0 0 1.4rem;
  }
  .p-req-archive__meta-wrap {
    margin: 0 0 1.4rem;
  }
  .p-req-archive__meta {
    font-size: 1.1rem;
  }
}

.p-req-article__iframe {
  width: 100%;
  height: 80svh;
}

/* ================================
TMSの想い
================================ */
.p-message__block:not(:last-of-type) {
  margin-bottom: 3.8rem;
}
.p-message__list-title {
  color: #005bac;
  font-size: 1.1rem;
  font-weight: 700;
}
.p-message__list-title:not(:first-of-type) {
  margin-top: 1.9rem;
}

/* ================================
サイトマップ
================================ */
.p-sitemap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.4rem 0;
}
.p-sitemap__col {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 33.3333333333%;
}
.p-sitemap__menu-item {
  font-size: 1.5rem;
  font-weight: 500;
}
.p-sitemap__menu-item > a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5em;
}
.p-sitemap__menu-item > a::after {
  content: "";
  height: 1.25em;
  aspect-ratio: 1/1;
  background: url(../img/sitemap/circle-chevron_ico.svg) no-repeat center center/contain;
}
.p-sitemap__menu-item:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
.p-sitemap__sub-menu {
  margin: 1.3rem 0 0;
}
.p-sitemap__sub-menu-item {
  font-size: 1.3rem;
}
.p-sitemap__sub-menu-item > a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
}
.p-sitemap__sub-menu-item > a:before {
  content: "";
  display: inline-block;
  width: 0.5em;
  aspect-ratio: 1/1;
  border-top: 1px solid #005bac;
  border-right: 1px solid #005bac;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-sitemap__sub-menu-item:not(:last-of-type) {
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
  .p-sitemap__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-sitemap__col {
    max-width: initial;
    width: 100%;
  }
  .p-sitemap__menu-item {
    font-size: 1.4rem;
  }
  .p-sitemap__menu-item:not(:last-of-type) {
    margin-bottom: 1.4rem;
  }
  .p-sitemap__sub-menu {
    margin: 0.7rem 0 0;
  }
  .p-sitemap__sub-menu-item {
    font-size: 1.1rem;
  }
}

/* ================================
Adjistment
================================ */
.u-fit--contain {
  text-align: center;
}
.u-fit--contain img,
.u-fit--contain source {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.u-color--main {
  color: #005bac;
}
.u-color--main_pale {
  color: #ccdeee;
}
.u-color--wh {
  color: #fff;
}
.u-color--rd {
  color: #FF4B4B;
}

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

.u-display_ib {
  display: inline-block;
}
.u-display_ib--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_ib--sm {
    display: inline-block;
  }
}

.u-display--lg {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-display--lg {
    display: block;
  }
}
.u-display--md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display--md {
    display: block;
  }
}
.u-display--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--sm {
    display: block;
  }
}

.u-display_flex--lg {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-display_flex--lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display_flex--md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_flex--sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1200px) {
  .u-hidden--lg {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden--md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-hidden--sm {
    display: none;
  }
}