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

html {
  overflow-x: hidden;
}

body,
h1, h2, h3, h4, h5, h6,
p,
ol, ul,
figure,
blockquote,
dl, dd {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
  padding: 0;
}

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

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

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

:root {
  --header-height: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #121212;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  vertical-align: bottom;
}

section[id] {
  scroll-margin-top: 100px;
}

@media screen and (max-width: 768px) {
  section[id] {
    scroll-margin-top: 80px;
  }
}
h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Shippori Mincho", serif;
  color: #002860;
  letter-spacing: 0.03em;
  margin: 0;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

p {
  line-height: 2.1;
  color: #4a5568;
  font-size: 14px;
}

.l-header {
  width: 100%;
  height: 60px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid #dde4ee;
  -webkit-transition: -webkit-box-shadow 0.15s;
  transition: -webkit-box-shadow 0.15s;
  transition: box-shadow 0.15s;
  transition: box-shadow 0.15s, -webkit-box-shadow 0.15s;
  -webkit-box-shadow: 0 0 0 rgba(0, 60, 130, 0);
          box-shadow: 0 0 0 rgba(0, 60, 130, 0);
}
.l-header.scrolled {
  -webkit-box-shadow: 0 2px 20px rgba(0, 60, 130, 0.1);
          box-shadow: 0 2px 20px rgba(0, 60, 130, 0.1);
}
.l-header .l-inner {
  max-width: 1280px;
}
@media (max-width: 767px) {
  .l-header {
    height: 70px;
  }
}
.l-header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  text-decoration: none;
}
.l-header__logo-symbol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 44px;
}
.l-header__logo a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.1;
}
.l-header__logo-main {
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  color: #002860;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.095em;
}
@media (max-width: 767px) {
  .l-header__logo-main {
    font-size: 14px;
  }
}
.l-header__logo-sub {
  font-size: 9px;
  color: #8898aa;
  letter-spacing: 0.2em;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .l-header__logo-sub {
    font-size: 9px;
  }
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .l-inner {
    max-width: 1240px;
  }
}
@media (min-width: 1025px) {
  .l-inner {
    padding-right: 60px;
    padding-left: 60px;
    max-width: 1280px;
  }
}
@media (min-width: 2561px) {
  .l-inner {
    max-width: 2560px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1400px) {
  .l-inner {
    padding-right: 35px;
    padding-left: 35px;
  }
}
@media (max-width: 1024px) {
  .l-inner {
    padding-left: 2.6vw;
    padding-right: 2.6vw;
  }
}
@media (max-width: 767px) {
  .l-inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.l-footer {
  background-color: #0e1a2e;
  color: #ffffff;
  padding-top: 64px;
}
.l-footer .l-inner {
  max-width: 1280px;
}
@media (max-width: 767px) {
  .l-footer {
    padding-top: 60px;
  }
}
.l-footer__content {
  text-align: center;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media (max-width: 767px) {
  .l-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__logo-unit {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .l-footer__logo-unit {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .l-footer__logo-unit {
    margin-bottom: 25px;
  }
}
.l-footer__logo__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.l-footer__logo__wrap .symbol {
  width: 44px;
}
@media (max-width: 767px) {
  .l-footer__logo__wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
}
.l-footer__logo {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  min-width: 240px;
}
@media (max-width: 767px) {
  .l-footer__logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-footer__logo-main {
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .l-footer__logo-main {
    font-size: 14px;
  }
}
.l-footer__logo-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.2em;
  text-align: left;
  margin-top: 2px;
}
.l-footer__description {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 2.1;
  letter-spacing: 0.04em;
  text-align: left;
}
@media (max-width: 1024px) {
  .l-footer__description {
    font-size: 11px;
  }
}
@media (max-width: 767px) {
  .l-footer__description {
    text-align: center;
  }
  .l-footer__description br:nth-of-type(2) {
    display: none;
  }
}
.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 50px;
  text-align: left;
  width: 85%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__nav {
    gap: 10px;
    width: calc(100% - 200px);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .l-footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: center;
    gap: 30px 20px;
    width: 100%;
  }
}
.l-footer__nav-block {
  -webkit-box-flex: inherit;
      -ms-flex: inherit;
          flex: inherit;
  max-width: calc((100% - 30px) / 2);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__nav-block {
    max-width: calc((100% - 30px) / 4);
  }
}
@media (max-width: 767px) {
  .l-footer__nav-block {
    width: 100%;
  }
}
.l-footer__nav-title {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #4a86c8;
}
@media (max-width: 1024px) {
  .l-footer__nav-title {
    font-size: 14px;
  }
}
.l-footer__nav-title a {
  color: inherit;
  text-decoration: none;
}
.l-footer__nav-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.l-footer__nav-list li {
  line-height: 1.4;
}
.l-footer__nav-list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer__nav-list li a:hover {
  opacity: 1;
}
@media (max-width: 1024px) {
  .l-footer__nav-list li a {
    font-size: 11px;
    line-height: 1.156;
  }
}
.l-footer__bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  max-width: 1280px;
  margin: auto;
}
.l-footer__bottom-wrap {
  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: 30px;
}
@media (max-width: 767px) {
  .l-footer__bottom-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
  }
}
.l-footer__copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.08em;
}
.l-footer__privacy a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.l-footer__privacy a:hover {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.l-contact-container {
  position: relative;
  background-color: #ffffff;
  padding: 60px 15px;
}
@media screen and (min-width: 768px) {
  .l-contact-container {
    padding: 95px 60px;
  }
}
.l-contact-container::before, .l-contact-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: rgba(231, 237, 242, 0.5);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .l-contact-container::before, .l-contact-container::after {
    width: 60px;
  }
}
.l-contact-container::before {
  left: 0;
}
.l-contact-container::after {
  right: 0;
}

.l-post-container {
  position: relative;
  background-color: #ffffff;
  padding: 60px 15px;
}
@media screen and (min-width: 768px) {
  .l-post-container {
    padding: 95px 60px;
  }
}
.l-post-container::before, .l-post-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: rgba(231, 237, 242, 0.5);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .l-post-container::before, .l-post-container::after {
    width: 60px;
  }
}
.l-post-container::before {
  left: 0;
}
.l-post-container::after {
  right: 0;
}

.p-entry {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-entry {
    padding: 0 30px;
  }
}
.p-entry__header {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(231, 237, 242, 0.5);
  padding-bottom: 20px;
}
.p-entry__date {
  display: block;
  font-size: 14px;
  color: #7C8C99;
  margin-bottom: 10px;
}
.p-entry__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .p-entry__title {
    font-size: 25px;
  }
}
.p-entry__thumbnail {
  margin-bottom: 40px;
}
.p-entry__thumbnail img {
  width: 100%;
  height: auto;
}
.p-entry__body {
  line-height: 1.8;
  color: #222222;
}
.p-entry__body p {
  margin-bottom: 1.5em;
}
.p-entry__body h2 {
  margin-top: 2em;
}

.p-entry-nav {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(231, 237, 242, 0.5);
}
.p-entry-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-entry-nav__prev, .p-entry-nav__next {
  width: 30%;
}
.p-entry-nav__prev a, .p-entry-nav__next a {
  color: #005FA2;
  text-decoration: none;
  font-weight: bold;
}
.p-entry-nav__prev a:hover, .p-entry-nav__next a:hover {
  opacity: 0.7;
}
.p-entry-nav__next {
  text-align: right;
}
.p-entry-nav__list a {
  display: inline-block;
  padding: 10px 20px;
  background: #222222;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}
.p-entry-nav__list a:hover {
  opacity: 0.8;
}

.c-hamburger {
  display: block;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1000;
  padding: 0;
  right: -10px;
}
@media (min-width: 1025px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger span {
  display: block;
  height: 2px;
  background-color: #005FA2;
  position: absolute;
  right: 8px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.c-hamburger span:nth-child(1) {
  top: 12px;
  width: 24px;
}
.c-hamburger span:nth-child(2) {
  top: 19px;
  width: 24px;
}
.c-hamburger span:nth-child(3) {
  top: 26px;
  width: 24px;
}
.c-hamburger.is-active span {
  width: 24px !important;
  right: 8px !important;
}
.c-hamburger.is-active span:nth-child(1) {
  top: 19px !important;
  -webkit-transform: rotate(135deg) !important;
          transform: rotate(135deg) !important;
}
.c-hamburger.is-active span:nth-child(2) {
  opacity: 0 !important;
  -webkit-transform: translateX(20px) !important;
          transform: translateX(20px) !important;
}
.c-hamburger.is-active span:nth-child(3) {
  top: 19px !important;
  -webkit-transform: rotate(-135deg) !important;
          transform: rotate(-135deg) !important;
}

.c-common-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.c-common-heading.-left {
  position: relative;
}
.c-common-heading.-left-border {
  margin-bottom: 48px;
  padding-left: 22px;
  border-left: 4px solid #0057a8;
}
.c-common-heading.-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.c-common-heading.-center .c-common-heading__sub {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-common-heading.-white * {
  color: #fff;
}
.c-common-heading__sub {
  font-size: 11px;
  font-weight: 600;
  color: #0057a8;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  margin-bottom: 5px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.c-common-heading__sub::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #0057a8;
}
.c-common-heading__main {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Shippori Mincho", serif;
  color: #002860;
  margin: 15px 0 0;
}
@media (max-width: 767px) {
  .c-common-heading__main {
    font-size: 24px;
  }
}
.c-common-heading__main.mt-none {
  margin-top: 0;
}
.c-common-heading.-border .c-common-heading__main {
  /*padding-bottom: 25px;*/
  position: relative;
}
.c-common-heading.-border .c-common-heading__main::after {
  /*content: "";*/
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: #0057a8;
}
.c-common-heading.center-border .c-common-heading__main {
  /*padding-bottom: 25px;*/
  position: relative;
}
.c-common-heading.center-border .c-common-heading__main::after {
  /*content: "";*/
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #0057a8;
}

.c-btn-border {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 160px;
  padding: 10px 20px;
  border: 1px solid #cbd5e0;
  background-color: transparent;
  color: #718096;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.c-btn-border::after {
  content: "→";
  margin-left: 10px;
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-btn-border:hover {
  background-color: #005FA2;
  border-color: #005FA2;
  color: #ffffff;
}
.c-btn-border:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
@media (max-width: 767px) {
  .c-btn-border {
    min-width: 140px;
    padding: 8px 16px;
    font-size: 13px;
  }
}

.c-btn-contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #005bac;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  padding: 22px 60px;
  border-radius: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn-contact__arrow {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-left: 20px;
  position: relative;
}
.c-btn-contact__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 42%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.c-btn-contact:hover {
  background-color: rgb(0, 104.4912790698, 197.5);
  opacity: 0.9;
}
@media (max-width: 767px) {
  .c-btn-contact {
    font-size: 18px;
    padding: 15px 30px;
    width: 100%;
  }
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 240px;
  padding: 12px 28px;
  background-color: #0057a8;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #0057a8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-btn {
    min-width: 200px;
    padding: 15px 20px;
    font-size: 15px;
  }
}
.c-btn:hover {
  background-color: #fff;
  color: #0057a8;
  opacity: 1;
}
.c-btn--outline {
  background-color: #fff;
  color: #0057a8;
  border: 1px solid #0057a8;
}
.c-btn--outline:hover {
  background-color: #0057a8;
  color: #fff;
}
.c-btn--white {
  background-color: #fff;
  color: #222222;
  border: 1px solid #dde4ee;
}
.c-btn--white:hover {
  background-color: #222222;
  color: #fff;
  border-color: #222222;
}
.c-btn::after {
  content: "→";
  font-weight: normal;
  width: 8px;
  height: 8px;
  margin-left: 15px;
  line-height: 0.7;
}

.c-btn-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0057a8;
  font-weight: 700;
  font-size: 12px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.c-btn-more::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 12px;
  height: 1px;
  background-color: #0057a8;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0057a8;
  border-right: 1px solid #0057a8;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-top-service__item:hover .c-btn-more {
  opacity: 0.8;
}

.c-btn-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 260px;
  padding: 18px 20px;
  min-height: 40px;
  border: 1px solid #0057a8;
  color: #0057a8;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  font-size: 14px;
}
.c-btn-outline::after {
  content: "→";
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-btn-outline:hover {
  background-color: #0057a8;
  color: #ffffff;
}
.c-btn-outline:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.c-link-more {
  font-size: 12px;
  font-weight: 700;
  color: #002860;
  text-decoration: none;
  border-bottom: 1px solid #002860;
  padding-bottom: 2px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-link-more:hover {
  opacity: 0.7;
}

.c-btn-down-load {
  font-size: 14px !important;
  border-radius: 0;
  padding: 0.75em;
  width: 100%;
}
.c-btn-down-load i {
  display: inline-block;
  font-size: 22px;
  margin-right: 10px;
  font-weight: 300;
}

.p-contact__submit-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 13px;
     -moz-column-gap: 13px;
          column-gap: 13px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.p-contact__submit-wrap::after {
  content: "\ea6c";
  font-family: "remixicon" !important;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: normal;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}
.p-contact__submit-wrap .c-btn-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  height: 60px;
  background-color: #005bac;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  padding: 0;
  text-align: center;
}
.p-contact__submit-wrap .c-btn-submit:hover {
  opacity: 0.8;
  background-color: #003366;
}

.wpcf7-spinner {
  display: none;
}

.c-list-maru {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.c-list-maru__item {
  position: relative;
  line-height: 1.6;
  padding: 1em 1em 1em 2em;
  background: #fafaf2;
  text-indent: -1em;
}
.c-list-maru__item:not(:last-child) {
  margin-bottom: 0.5em;
}

.c-list-number {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
.c-list-number__item {
  position: relative;
  padding: 1em 1em 1em 2em;
  line-height: 1.6;
  border: 1px solid #005FA2;
  font-size: 1.1rem;
  font-weight: bold;
}
.c-list-number__item::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 700;
  color: #00469b;
  font-family: "Arial", sans-serif;
  font-size: 1.1rem;
}
.c-list-number__item:not(:last-child) {
  margin-bottom: 0.8em;
}

.c-label-req {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 6px;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.4;
  vertical-align: middle;
  border-radius: 2px;
}

.c-btn--primary {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 18px;
  background-color: #005FA2;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn--primary:hover {
  opacity: 0.8;
}

.c-form-field {
  width: 100%;
  padding: 12px;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-form-field:focus {
  outline: none;
  border-color: #005FA2;
}
.c-form-field--textarea {
  height: 240px;
}

.c-form-acceptance .wpcf7-list-item {
  margin: 0;
}
.c-form-acceptance input {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.c-form-acceptance .wpcf7-list-item-label {
  font-size: 15px;
  cursor: pointer;
  vertical-align: middle;
}

.c-form-acceptance input[type=checkbox] {
  -moz-appearance: checkbox;
       appearance: checkbox;
  width: 20px;
  height: 20px;
  -webkit-appearance: checkbox;
  display: inline-block;
  opacity: 1;
  visibility: visible;
  vertical-align: middle;
  position: static;
}

.c-section-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #002860;
  font-size: 34px;
  letter-spacing: 0.06em;
  line-height: 1.45;
}
@media (max-width: 1024px) {
  .c-section-title {
    font-size: 22px;
  }
}

.c-section-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #0057a8;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.c-section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #0057a8;
}

.c-section-sub-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #002860;
  font-size: 24px;
  margin-top: 30px;
  letter-spacing: 0.06em;
  line-height: 1.45;
}
@media (max-width: 1024px) {
  .c-section-sub-title {
    font-size: 17px;
  }
}

.p-gnav {
  height: 100%;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .p-gnav {
    display: none !important;
  }
}
.p-gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-gnav__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0;
}
.p-gnav__item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 14px;
  color: #333;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  position: relative;
  white-space: nowrap;
  position: relative;
}
.p-gnav__item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background-color: #002860;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-gnav__item:hover > a {
  color: #002860;
}
.p-gnav__item:hover > a::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.p-gnav__item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
.p-gnav__item--contact {
  margin-left: 14px;
}
.p-gnav__item--contact > a {
  color: #fff;
  padding: 13px 24px;
  background-color: #0057a8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
}
.p-gnav__item--contact > a:hover {
  color: #fff;
  background-color: #002860;
}
.p-gnav__item--contact > a::after {
  display: none;
}

.sub-menu {
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(10px);
          transform: translateX(-50%) translateY(10px);
  width: 180px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}
.sub-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.sub-menu::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
  display: block;
}
.sub-menu li {
  width: 100%;
}
.sub-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  text-align: left;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.sub-menu li a:hover {
  background-color: #f5f8fa;
  color: #002860;
}

.p-contact__field.top select {
  border: 2px solid #002860;
}

.p-drawer {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 99;
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 15px;
  padding-top: 100px;
}
.p-drawer.is-active {
  top: 0;
}
.p-drawer__list {
  width: 100%;
  overflow-y: auto;
  max-height: 100%;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 100px;
}
.p-drawer__item {
  border-bottom: 1px solid rgba(231, 237, 242, 0.5);
}
.p-drawer__item a {
  display: block;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  text-decoration: none;
}
.p-drawer__item--contact {
  border-bottom: none;
  margin-top: 30px;
}
.p-drawer__item--contact a {
  background-color: #005FA2;
  color: #ffffff !important;
  text-align: center;
  padding: 15px;
  border-radius: 4px;
}

.p-drawer__item {
  border-bottom: 1px solid #eee;
}
.p-drawer__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.p-drawer__item a {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  color: #005FA2;
  text-decoration: none;
}
.p-drawer__item.has-sub .p-drawer__toggle {
  display: block;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  border-left: 1px solid #eee;
  position: relative;
  cursor: pointer;
}
.p-drawer__item.has-sub .p-drawer__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #005FA2;
  border-right: 2px solid #005FA2;
  -webkit-transform: translate(-50%, -70%) rotate(135deg);
          transform: translate(-50%, -70%) rotate(135deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-drawer__item.has-sub.is-open .p-drawer__toggle::after {
  -webkit-transform: translate(-50%, -30%) rotate(-45deg);
          transform: translate(-50%, -30%) rotate(-45deg);
}
.p-drawer__item.has-sub.is-open .p-drawer__sub {
  display: block;
}
.p-drawer__sub {
  display: none;
  background: #f8f8f8;
  list-style: none;
  padding: 0;
}
.p-drawer__sub-item a {
  padding: 12px 20px 12px 40px;
  font-size: 0.9em;
  border-bottom: 1px solid #fff;
}

@-webkit-keyframes p-mv-zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes p-mv-zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.p-mv-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 75dvh;
}
@media (min-width: 1401px) {
  .p-mv-wrapper {
    min-height: 780px;
  }
}
.p-mv-wrapper {
  margin-top: 60px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .p-mv-wrapper {
    height: 68dvh;
    min-height: 68dvh;
    margin-top: 70px;
  }
}
.p-mv-wrapper .slick-list,
.p-mv-wrapper .slick-track,
.p-mv-wrapper .slick-slide,
.p-mv-wrapper .slick-slide > div {
  height: 100% !important;
}

.p-mv {
  height: 100%;
  z-index: 1;
}
.p-mv__slide {
  height: 100% !important;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.p-mv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 2s ease, -webkit-transform 3s linear;
  transition: opacity 2s ease, -webkit-transform 3s linear;
  transition: opacity 2s ease, transform 3s linear;
  transition: opacity 2s ease, transform 3s linear, -webkit-transform 3s linear;
}
.p-mv__slide.slick-active img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition: opacity 2s ease, -webkit-transform 9s linear;
  transition: opacity 2s ease, -webkit-transform 9s linear;
  transition: opacity 2s ease, transform 9s linear;
  transition: opacity 2s ease, transform 9s linear, -webkit-transform 9s linear;
}
.p-mv__slide--white {
  background-color: #fff;
  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;
}
.p-mv__inner {
  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;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-mv__text {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #002860;
  text-align: center;
  position: relative;
  z-index: 3;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.p-mv__dots-container {
  position: absolute;
  bottom: 60px;
  right: 200px;
  z-index: 10;
}
@media (max-width: 767px) {
  .p-mv__dots-container {
    right: 150px;
    bottom: 60px;
  }
}
.p-mv__dots-container .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-mv__dots-container .slick-dots li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
}
.p-mv__dots-container .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background-color: #d1d1d1;
  border-radius: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border: none;
  font-size: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-mv__dots-container .slick-dots li.slick-active button {
  background-color: #004098;
  width: 15px;
  height: 15px;
}
.p-mv__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(0, 64, 152, 0.1);
  z-index: 50;
}
.p-mv__progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background-color: #004098;
}

.p-breadcrumb {
  background-color: #0a253a;
  width: 100%;
}
.p-breadcrumb__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 60px;
  font-size: 0.7rem;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .p-breadcrumb__inner {
    padding: 10px 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner {
    padding: 8px 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.p-breadcrumb__inner a {
  color: #aaa;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-breadcrumb__inner a:hover {
  opacity: 0.7;
}

.p-top-about {
  padding: 95px 0;
  background-color: #fff;
}
.p-top-about__header {
  margin-bottom: 40px;
}
.p-top-about__header .c-section-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-about__header .c-section-label::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #0057a8;
  margin-right: 5px;
}
.p-top-about__header .c-section-title {
  margin-top: 15px;
}
.p-top-about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media (max-width: 1024px) {
  .p-top-about__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .p-top-about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-top-about__main {
  -webkit-box-flex: 1.245;
      -ms-flex: 1.245;
          flex: 1.245;
}
.p-top-about__image {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 4px;
}
.p-top-about__image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-top-about__since {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0057a8;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.15em;
  padding: 12px 20px;
}
.p-top-about__lead {
  font-size: 14px;
  line-height: 2.1;
  color: #4a5568;
  letter-spacing: 0.04em;
}
.p-top-about__side {
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top-about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.p-top-about__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #dde4ee;
}
.p-top-about__list-item:first-child {
  border-top: 1px solid #dde4ee;
}
.p-top-about__list-num {
  font-size: 20px;
  font-weight: 700;
  color: #0057a8;
  font-family: "Shippori Mincho", serif;
  margin-right: 15px;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 2px;
  min-width: 36px;
}
@media (max-width: 1024px) {
  .p-top-about__list-num {
    margin-right: 15px;
  }
}
.p-top-about__list-title {
  font-size: 16px;
  font-weight: 700;
  color: #002860;
  margin-bottom: 6px;
}
.p-top-about__list-text {
  font-size: 14px;
  line-height: 1.9;
  color: #4a5568;
}
.p-top-about__btn .c-btn-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 284px;
  padding: 11px 28px;
  border: 2px solid #0057a8;
  color: #0057a8;
  border-radius: 2px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.p-top-about__btn .c-btn-outline::after {
  content: "→";
  margin-left: 10px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.p-top-about__btn .c-btn-outline:hover {
  background-color: #0057a8;
  color: #fff;
}
.p-top-about__btn .c-btn-outline:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
@media (max-width: 767px) {
  .p-top-about__btn .c-btn-outline {
    width: 100%;
  }
}

.p-top-service {
  padding: 95px 0;
  background-color: #f5f7fa;
}
@media (max-width: 767px) {
  .p-top-service {
    padding: 60px 0;
  }
}
.p-top-service__header {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .p-top-service__header {
    margin-bottom: 40px;
  }
}
.p-top-service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .p-top-service__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.p-top-service__title-group .c-section-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #0057a8;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}
.p-top-service__title-group .c-section-label::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #0057a8;
}
.p-top-service__title-group .c-section-title {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-top-service__link-wrapper {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
.p-top-service__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .p-top-service__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-service__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto;
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dde4ee;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
}
.p-top-service__item:hover {
  -webkit-box-shadow: 0 12px 48px rgba(0, 87, 168, 0.12);
          box-shadow: 0 12px 48px rgba(0, 87, 168, 0.12);
  border: 1px solid #0057a8;
  top: -10px;
}
.p-top-service__item:hover .p-top-service__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.4;
}
.p-top-service__item:hover .p-top-service__content {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.p-top-service__item:hover .p-top-service__item::after {
  border-color: #0057a8 !important;
}
.p-top-service__image {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  max-height: 240px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .p-top-service__image {
    max-height: 200px;
  }
}
.p-top-service__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
}
.p-top-service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.p-top-service__content {
  position: relative;
  z-index: 2;
  padding: 32px 32px 36px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  background: #fff;
}
@media (max-width: 767px) {
  .p-top-service__content {
    padding: 30px 20px;
  }
}
.p-top-service__sub {
  display: inline-block;
  font-size: 10px;
  color: #0057a8;
  border: 1px solid #0057a8;
  padding: 3px 10px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.p-top-service__title {
  font-size: 19px;
  font-weight: 700;
  color: #002860;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-top-service__title {
    font-size: 17px;
  }
}
.p-top-service__text {
  font-size: 14px;
  line-height: 2;
  color: #4a5568;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .p-top-service__text {
    font-size: 14px;
  }
}

.p-top-member {
  padding: 95px 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.p-top-member .members-sub-label {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  color: #002860;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 56px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0057a8;
  display: inline-block;
}
@media (min-width: 1024px) {
  .p-top-member .c-btn {
    min-width: 310px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .p-top-member {
    padding: 60px 0;
  }
}
.p-top-member__header {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .p-top-member__header {
    margin-bottom: 40px;
  }
}
.p-top-member__lead {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #222222;
}
@media (max-width: 767px) {
  .p-top-member__lead {
    font-size: 14px;
  }
}
.p-top-member__btn {
  margin-bottom: 50px;
  text-align: left;
}

.p-member-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
  margin: 0 auto;
  max-width: 1160px;
  position: relative;
  z-index: 1;
}
.p-member-list__item {
  width: calc((100% - 60px) / 4);
  background: #fff;
  border: 1px solid #dde4ee;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-member-list__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #0057a8;
}
@media (max-width: 1024px) {
  .p-member-list__item {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 767px) {
  .p-member-list__item {
    width: calc((100% - 20px) / 2);
  }
}
.p-member-list__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.p-member-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.p-member-list__item:hover .p-member-list__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-member-list__body {
  padding: 18px 16px 20px;
  text-align: left;
}
.p-member-list__role {
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  color: #4a5568;
  margin-bottom: 8px;
}
.p-member-list__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
  color: #1a1f2e;
  margin: 0;
}
.p-member-list__text {
  margin-top: 1em;
  font-size: 14px;
  line-height: 1.7;
  color: #4a5568;
}

.p-top-news {
  padding: 95px 0;
  background-color: #f8f9fa;
}
@media (max-width: 767px) {
  .p-top-news {
    padding: 60px 0;
  }
}
.p-top-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media (max-width: 1024px) {
  .p-top-news__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-top-news__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}
@media (max-width: 1024px) {
  .p-top-news__left {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.p-top-news__lead {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 25px;
  color: #4a5568;
}
.p-top-news__more {
  margin-top: 40px;
}
.p-top-news__more .c-link-text {
  font-size: 14px;
  font-weight: 700;
  color: #0057a8;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #0057a8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;
  display: block;
  max-width: 240px;
}
.p-top-news__more .c-link-text:hover {
  opacity: 0.7;
}
.p-top-news__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #dde4ee;
}
.p-top-news__item {
  border-bottom: 1px solid #dde4ee;
}
.p-top-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .p-top-news__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 0;
  }
}
.p-top-news__link:hover {
  padding-left: 10px;
}
.p-top-news__link:hover .p-top-news__title {
  color: #0057a8;
}
.p-top-news__link:hover .p-top-news__arrow {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  background-color: #0057a8;
  border-color: #0057a8;
}
.p-top-news__link:hover .p-top-news__arrow::after {
  border-color: #ffffff;
}
.p-top-news__date {
  font-size: 14px;
  color: #999;
  width: 100px;
}
@media (max-width: 767px) {
  .p-top-news__date {
    width: auto;
    margin-right: 15px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-top-news__label {
  font-size: 10px;
  font-weight: 700;
  color: #0057a8;
  border: 1px solid #0057a8;
  padding: 4px 15px;
  margin: 0 30px;
  min-width: 100px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-news__label {
    margin: 0 auto 0 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    min-width: 80px;
    padding: 2px 10px;
  }
}
.p-top-news__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 767px) {
  .p-top-news__title {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: calc(100% - 40px);
    margin-top: 12px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-top-news__arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #dde4ee;
  border-radius: 50%;
  position: relative;
  margin-left: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-top-news__arrow {
    margin: 12px 0 0 auto;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 30px;
    height: 30px;
  }
}
.p-top-news__arrow::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #0057a8;
  border-right: 1px solid #0057a8;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 45%;
  margin-top: -3px;
}

.p-top-news {
  padding: 95px 0;
  background-color: #f8f9fa;
}
@media (max-width: 767px) {
  .p-top-news {
    padding: 60px 0;
  }
}
.p-top-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media (max-width: 1024px) {
  .p-top-news__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-top-news__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}
@media (max-width: 1024px) {
  .p-top-news__left {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.p-top-news__lead {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 25px;
  color: #4a5568;
}
.p-top-news__more {
  margin-top: 40px;
}
.p-top-news__more .c-link-text {
  font-size: 14px;
  font-weight: 700;
  color: #0057a8;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #0057a8;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;
  display: block;
  max-width: 240px;
}
.p-top-news__more .c-link-text:hover {
  opacity: 0.7;
}
.p-top-news__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #dde4ee;
}
.p-top-news__item {
  border-bottom: 1px solid #dde4ee;
}
.p-top-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .p-top-news__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 0;
  }
}
.p-top-news__link:hover {
  padding-left: 10px;
}
.p-top-news__link:hover .p-top-news__title {
  color: #0057a8;
}
.p-top-news__link:hover .p-top-news__arrow {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  background-color: #0057a8;
  border-color: #0057a8;
}
.p-top-news__link:hover .p-top-news__arrow::after {
  border-color: #ffffff;
}
.p-top-news__date {
  font-size: 14px;
  color: #999;
  width: 100px;
}
@media (max-width: 767px) {
  .p-top-news__date {
    width: auto;
    margin-right: 15px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-top-news__label {
  font-size: 10px;
  font-weight: 700;
  color: #0057a8;
  border: 1px solid #0057a8;
  padding: 4px 15px;
  margin: 0 30px;
  min-width: 100px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-news__label {
    margin: 0 auto 0 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    min-width: 80px;
    padding: 2px 10px;
  }
}
.p-top-news__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 767px) {
  .p-top-news__title {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: calc(100% - 40px);
    margin-top: 12px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-top-news__arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #dde4ee;
  border-radius: 50%;
  position: relative;
  margin-left: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-top-news__arrow {
    margin: 12px 0 0 auto;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 30px;
    height: 30px;
  }
}
.p-top-news__arrow::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #0057a8;
  border-right: 1px solid #0057a8;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 45%;
  margin-top: -3px;
}

.p-top-contact {
  background-color: #002860;
  padding: 80px 0 100px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.p-top-contact::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}
@media (max-width: 767px) {
  .p-top-contact {
    padding: 80px 0;
  }
  .p-top-contact::before {
    display: none;
  }
}
.p-top-contact__container {
  max-width: 800px;
  margin: 0 auto;
}
.p-top-contact__header {
  margin-bottom: 30px;
}
.p-top-contact__header .c-common-heading__sub {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.p-top-contact__header .c-common-heading__sub::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}
.p-top-contact__header .c-common-heading__main {
  color: #ffffff;
  margin-top: 10px;
}
.p-top-contact__btns {
  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: 15px;
  margin-bottom: 25px;
}
.p-top-contact .c-btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 340px;
  min-height: 48px;
  border-radius: 2px;
  padding: 18px 32px;
  background: #0057a8;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-top-contact .c-btn-contact:hover {
  opacity: 0.7;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.p-top-contact .c-btn-contact__arrow {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: none;
}
.p-top-contact .c-btn-contact__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  width: 14px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-top-contact .c-btn-contact__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 27%;
  left: inherit;
  width: 5px;
  height: 5px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 767px) {
  .p-top-contact .c-btn-contact {
    height: 44px;
    padding: 0 15px 0 24px;
    font-size: 16px;
  }
}
.p-top-contact__text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  opacity: 0.7;
  color: #fff;
}
@media (max-width: 768px) {
  .p-top-contact__text {
    text-align: left;
    display: inline-block;
    padding: 0 20px;
  }
}

.p-background {
  padding: 60px 0;
}
.p-background .p-background__row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  .p-background {
    padding: 95px 0;
  }
}
.p-background .l-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}
.p-background .l-container h2 {
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .p-background .l-container {
    padding: 0 25px;
  }
}
@media (min-width: 1025px) {
  .p-background .l-container {
    padding: 0 60px;
  }
}
.p-background__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.p-background__row:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-background__row.mb__none {
  margin-bottom: 0 !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: none !important;
}
.p-background__row:not(:last-child) {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(231, 237, 242, 0.5);
}
@media (min-width: 768px) {
  .p-background__row:not(:last-child) {
    margin-bottom: 95px;
    padding-bottom: 47.5px;
  }
}
@media (min-width: 768px) {
  .p-background__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .p-background__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 500px;
            flex: 0 0 500px;
    position: sticky;
    top: 40px;
  }
}
.p-background__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .p-background__right {
    max-width: 550px;
  }
}
.p-background__text-group {
  position: relative;
}
.p-background__info-box {
  margin-top: 30px;
  padding: 15px 20px;
  font-size: 0.85rem;
  color: #7C8C99;
  background-color: #ffffff;
  border: 1px solid rgba(231, 237, 242, 0.5);
  display: inline-block;
}

.p-philosophy {
  padding: 60px 0;
  border-top: 1px solid #eee;
}
@media (min-width: 768px) {
  .p-philosophy {
    padding: 95px 0;
  }
}
.p-philosophy .l-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .p-philosophy .l-container {
    padding: 0 25px;
  }
}
@media (min-width: 1025px) {
  .p-philosophy .l-container {
    padding: 0 60px;
  }
}
.p-philosophy__block:not(:last-child) {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .p-philosophy__block:not(:last-child) {
    margin-bottom: 95px;
  }
}
.p-philosophy__block .c-common-heading {
  margin-bottom: 3em;
}
.p-philosophy__content {
  max-width: 800px;
  margin: 0 auto;
}
.p-philosophy__content .u-text {
  line-height: 2;
  margin-bottom: 1.5em;
  color: #222222;
}
.p-philosophy__content .u-text.-lead {
  font-size: 1.4rem;
  font-weight: 700;
  color: #005FA2;
  margin-bottom: 2em;
  padding: 25px;
  background-color: rgba(231, 237, 242, 0.5);
  border-left: 4px solid #d4af37;
  text-align: center;
}
.p-philosophy__list {
  margin-top: 40px;
  list-style: none;
  padding: 0;
}
.p-philosophy__list li {
  margin-bottom: 24px;
  padding: 25px;
  background-color: #ffffff;
  border: 1px solid rgba(231, 237, 242, 0.5);
}
.p-philosophy__list li strong {
  display: block;
  font-size: 1.15rem;
  color: #005FA2;
  margin-bottom: 0.8em;
  font-family: "Noto Serif JP", serif;
}
.p-philosophy__list li span {
  display: block;
  line-height: 1.8;
  font-size: 1rem;
  color: #444;
}

.p-council {
  padding: 60px 0;
  border-top: 1px solid #eee;
}
@media (min-width: 768px) {
  .p-council {
    padding: 95px 0;
  }
}
.p-council .l-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .p-council .l-container {
    padding: 0 25px;
  }
}
@media (min-width: 1025px) {
  .p-council .l-container {
    padding: 0 60px;
  }
}

.p-council-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #005FA2;
}
.p-council-table tr {
  border-bottom: 1px solid #dcdcdc;
}
.p-council-table tr:nth-child(even) {
  background-color: #fbfdff;
}
.p-council-table th, .p-council-table td {
  padding: 1.5em;
  text-align: left;
  line-height: 1.85;
}
.p-council-table th {
  width: 30%;
  font-weight: 700;
  vertical-align: middle;
  white-space: nowrap;
}
.p-council-table td {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .p-council-table th, .p-council-table td {
    display: block;
    width: 100%;
    padding: 1em;
  }
  .p-council-table th {
    padding-bottom: 0;
  }
}
.p-sub-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 400px;
  max-height: 550px;
  background: url(../images/sub/mv.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 2560px) {
  .p-sub-mv {
    height: 550px;
  }
}
@media screen and (max-width: 1024px) {
  .p-sub-mv {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-mv {
    height: 200px;
  }
}
.p-sub-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-sub-mv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-sub-mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-sub-mv__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.p-sub-mv__title {
  display: inline-block;
  margin: 0;
  padding: 0.4em 4em 0.4em 1.5em;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  font-family: sans-serif;
  background: -webkit-gradient(linear, left top, right top, from(#005FA2), color-stop(60%, #005FA2), to(transparent));
  background: linear-gradient(90deg, #005FA2 0%, #005FA2 60%, transparent 100%);
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W6", HiraMinProN-W6, HG明朝E, "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
@media screen and (max-width: 1024px) {
  .p-sub-mv__title {
    font-size: 32px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title {
    font-size: 24px;
    padding-left: 20px;
    padding-right: 3em;
  }
}

.p-sub-mv--about {
  background: url(../images/sub/bg_01.jpg) no-repeat center center/cover;
}

.p-sub-mv--select-collection-company {
  background: url(../images/select-collection-company/mv.jpg) no-repeat center center/cover;
}

.p-sub-mv--contact {
  background: url(../images/contact/mv.jpg) no-repeat center center/cover;
}

.p-sub-mv--privacy-policy {
  background: url(../images/contact/mv.jpg) no-repeat center center/cover;
}

.p-destinations {
  padding: 60px 0;
  border-top: 1px solid #eee;
}
.p-destinations .etc {
  margin-top: 1em;
  text-align: right;
}
@media (min-width: 768px) {
  .p-destinations {
    padding: 95px 0;
  }
}
.p-destinations .l-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .p-destinations .l-container {
    padding: 0 25px;
  }
}
@media (min-width: 1025px) {
  .p-destinations .l-container {
    padding: 0 60px;
  }
}
.p-destinations__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-destinations__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-destinations__media {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-destinations__media {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-destinations__media img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-destinations__logo {
  max-width: 250px;
}
.p-destinations__photo {
  width: 100%;
}
.p-destinations__photo img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-destinations__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .p-destinations__body {
    width: 100%;
  }
}

.p-destinations-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #005FA2;
}
.p-destinations-table tr {
  border-bottom: 1px solid #dcdcdc;
}
.p-destinations-table tr:nth-child(even) {
  background-color: #fbfdff;
}
.p-destinations-table th, .p-destinations-table td {
  padding: 1.5em;
  text-align: left;
  line-height: 1.85;
  font-size: 0.85rem;
}
.p-destinations-table th {
  width: 30%;
  font-weight: 700;
  vertical-align: middle;
  white-space: nowrap;
}
.p-destinations-table td {
  width: 70%;
}

@media screen and (max-width: 767px) {
  .p-destinations-table th, .p-destinations-table td {
    display: block;
    width: 100%;
    padding: 1em;
  }
  .p-destinations-table th {
    padding-bottom: 0;
  }
}
.p-destinations-business {
  margin-top: 2em;
}
.p-destinations-business__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 15px;
}
.p-destinations-business__item {
  position: relative;
  padding: 1em 1em 1em 2.5em;
  border: 1px solid #005FA2;
  background-color: #ffffff;
  border-radius: 4px;
}
.p-destinations-business__item a {
  color: #005FA2;
  text-decoration: underline;
}
.p-destinations-business__item a:hover {
  text-decoration: none;
}
.p-destinations-business__item::before {
  content: "●";
  position: absolute;
  left: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #005FA2;
  font-size: 0.8em;
}
.p-destinations-business__entry > *:first-child {
  margin-top: 0;
}
.p-destinations-business__entry > *:last-child {
  margin-bottom: 0;
}
.p-destinations-business__entry p {
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .p-destinations-business__item {
    padding: 0.8em 1em 0.8em 2.2em;
  }
}
.p-destinations-comment {
  margin-top: 40px;
  padding: 30px;
  background-color: rgba(231, 237, 242, 0.5);
  border-radius: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .p-destinations-comment {
    padding: 20px;
    margin-top: 30px;
  }
}
.p-destinations-comment__inner {
  position: relative;
}
.p-destinations-comment__inner::before {
  content: "“";
  position: absolute;
  top: -45px;
  left: -15px;
  font-size: 60px;
  color: rgba(0, 95, 162, 0.2);
  font-family: serif;
}
.p-destinations-comment__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #222222;
  text-align: left;
}

.p-destinations-area {
  margin-top: 40px;
  background-color: #f0f7ff;
  padding: 30px;
}
@media (max-width: 767px) {
  .p-destinations-area {
    margin-top: 30px;
    padding: 20px;
  }
}
.p-destinations-area__inner {
  max-width: 100%;
}
.p-destinations-area__title {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #005FA2;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #005FA2;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 767px) {
  .p-destinations-area__title {
    font-size: 1rem;
  }
}
.p-destinations-area__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #222222;
}

.p-destinations-archive {
  padding: 80px 0;
  background-color: #fcfcfc;
}
@media (max-width: 768px) {
  .p-destinations-archive {
    padding: 40px 0;
  }
}

.p-destinations-group {
  margin-bottom: 60px;
}
.p-destinations-group:last-child {
  margin-bottom: 0;
}
.p-destinations-group__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #005bac;
  display: inline-block;
}
@media (max-width: 767px) {
  .p-destinations-group__title {
    font-size: 1.4rem;
  }
}
.p-destinations-group__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .p-destinations-group__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .p-destinations-group__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.p-destinations-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border: 1px solid #eef2f6;
  border-radius: 4px;
  padding: 30px 20px;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-destinations-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.p-destinations-card__position {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  margin: 0 auto 1em;
  color: #0057a8;
}
.p-destinations-card__image {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 16/9;
  margin-bottom: 20px;
  text-align: center;
  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;
}
.p-destinations-card__image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  display: block;
  margin: auto;
}
.p-destinations-card__body {
  text-align: center;
}
.p-destinations-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0a253a;
  line-height: 1.4;
  word-break: break-all;
}

.p-page-selection {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-page-selection {
    padding: 95px 0;
  }
}
.p-page-selection .l-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .p-page-selection .l-container {
    padding: 0 25px;
  }
}
@media (min-width: 1025px) {
  .p-page-selection .l-container {
    padding: 0 60px;
  }
}
.p-page-selection__intro {
  margin-bottom: 60px;
}
.p-page-selection__intro p {
  line-height: 2;
  margin-bottom: 1.5em;
}
.p-page-selection__outro {
  margin-top: 60px;
}

.p-selection-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.p-selection-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 25px 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}
@media (max-width: 767px) {
  .p-selection-list__item {
    -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;
    padding: 20px;
  }
}
.p-selection-list__number {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #005FA2;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #ddd;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-selection-list__number {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #005FA2;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
}
.p-selection-list p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
}

.u-box.-caution {
  background-color: #fff9f9;
  border: 2px solid #f2dede;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}
.u-box.-caution p {
  margin: 0;
  color: #a94442;
  font-weight: 700;
  line-height: 1.8;
}

.p-page-header {
  background-color: #002860;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .p-page-header {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}
.p-page-header::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(74, 134, 200, 0.08);
}
.p-page-header::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}
.p-page-header__container {
  padding-top: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-page-header__container {
    padding-top: 40px;
  }
}
.p-page-header__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}
.p-page-header__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-page-header__breadcrumb {
  margin-bottom: 40px;
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.5;
}
.p-page-header__breadcrumb span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-right: 3px;
  margin-left: 3px;
}
.p-page-header__breadcrumb span a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-page-header__breadcrumb span a:hover {
  opacity: 1;
}
.p-page-header__breadcrumb span:last-child::after {
  display: none;
}
.p-page-header__title-unit {
  margin-bottom: 30px;
}
.p-page-header__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  opacity: 0.5;
}
.p-page-header__sub::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #ffffff;
}
.p-page-header__main {
  font-family: "Shippori Mincho", serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .p-page-header__main {
    font-size: 30px;
  }
}
.p-page-header__lead {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
  max-width: 850px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .p-page-header__lead {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 20px;
  }
}

.p-contact {
  width: 100%;
}
.p-contact__item {
  margin-bottom: 24px;
}
.p-contact__item:last-child {
  margin-bottom: 0;
}
.p-contact__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 15px;
  color: #002860;
}
.p-contact__label .c-tag {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 2px;
  color: #fff;
  font-weight: normal;
}
.p-contact__label .c-tag--required {
  background-color: #005bac;
}
.p-contact__label .c-tag--optional {
  background: #f5f7fa;
  color: #8898aa;
  padding: 2px 7px;
  border-radius: 2px;
  border: 1px solid #dde4ee;
}
.p-contact__field .wpcf7-form-control-wrap {
  display: block;
}
.p-contact__field input[type=text],
.p-contact__field input[type=email],
.p-contact__field input[type=tel],
.p-contact__field select,
.p-contact__field textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 15px;
  background-color: #fff;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.p-contact__field input[type=text]:focus,
.p-contact__field input[type=email]:focus,
.p-contact__field input[type=tel]:focus,
.p-contact__field select:focus,
.p-contact__field textarea:focus {
  border-color: #005bac;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 91, 172, 0.1);
          box-shadow: 0 0 0 2px rgba(0, 91, 172, 0.1);
  outline: none;
}
.p-contact__field input[type=text]::-webkit-input-placeholder, .p-contact__field input[type=email]::-webkit-input-placeholder, .p-contact__field input[type=tel]::-webkit-input-placeholder, .p-contact__field select::-webkit-input-placeholder, .p-contact__field textarea::-webkit-input-placeholder {
  color: #ccc;
}
.p-contact__field input[type=text]::-moz-placeholder, .p-contact__field input[type=email]::-moz-placeholder, .p-contact__field input[type=tel]::-moz-placeholder, .p-contact__field select::-moz-placeholder, .p-contact__field textarea::-moz-placeholder {
  color: #ccc;
}
.p-contact__field input[type=text]:-ms-input-placeholder, .p-contact__field input[type=email]:-ms-input-placeholder, .p-contact__field input[type=tel]:-ms-input-placeholder, .p-contact__field select:-ms-input-placeholder, .p-contact__field textarea:-ms-input-placeholder {
  color: #ccc;
}
.p-contact__field input[type=text]::-ms-input-placeholder, .p-contact__field input[type=email]::-ms-input-placeholder, .p-contact__field input[type=tel]::-ms-input-placeholder, .p-contact__field select::-ms-input-placeholder, .p-contact__field textarea::-ms-input-placeholder {
  color: #ccc;
}
.p-contact__field input[type=text]::placeholder,
.p-contact__field input[type=email]::placeholder,
.p-contact__field input[type=tel]::placeholder,
.p-contact__field select::placeholder,
.p-contact__field textarea::placeholder {
  color: #ccc;
}
.p-contact__field textarea {
  height: 180px;
  line-height: 1.6;
}
.p-contact__field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23005bac'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.p-contact__field select:focus {
  border: 2px solid #002860;
}
.p-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-contact__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-contact__group {
  margin: 30px 0;
  padding: 30px;
  border-left: 4px solid #005bac;
  background-color: #f9f9f9;
}
@media (max-width: 768px) {
  .p-contact__group {
    padding: 20px 15px;
  }
}
.p-contact__group-title {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #005bac;
  font-weight: 700;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-contact__group-title::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #005bac;
}
.p-contact__group--alert {
  background-color: #fff5f5;
  border: 1px solid #feb2b2;
  padding: 15px;
  margin-bottom: 20px;
  color: #c53030;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 4px;
}
.p-contact__note {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
}
.p-contact__consent {
  background-color: #f5f8fa;
  padding: 1em;
  margin: 40px 0;
  text-align: left;
  border-radius: 0;
  border: 1px solid #dde4ee;
}
.p-contact__consent p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.p-contact__consent p:last-of-type {
  margin-bottom: 0.5em;
}
.p-contact__consent p a {
  color: #005bac;
  text-decoration: underline;
}
.p-contact__consent p a:hover {
  text-decoration: none;
}
.p-contact__consent .wpcf7-list-item {
  margin: 0;
}
.p-contact__consent label {
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-contact__submit-wrap {
  text-align: center;
}

.wpcf7-not-valid-tip {
  font-size: 0.8rem;
  margin-bottom: 0.2em;
}

.p-contact-page {
  padding: 80px 0;
  background-color: #f0f4f8;
}
@media (max-width: 768px) {
  .p-contact-page {
    padding: 40px 0;
  }
}
.p-contact-page__container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .p-contact-page__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-contact-page__main {
  background-color: #fff;
  padding: 60px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #dde4ee;
}
@media (max-width: 768px) {
  .p-contact-page__main {
    padding: 30px 20px;
  }
}
.p-contact-page__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.p-contact-side-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 0;
  border: 1px solid #dde4ee;
}
.p-contact-side-card__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid #005bac;
  line-height: 1.2;
  color: #333;
}
.p-contact-side-card__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.p-contact-side-card__info-row:first-child {
  padding-top: 0;
}
.p-contact-side-card__info-row:last-child {
  border-bottom: none;
}
.p-contact-side-card__info-row dt {
  font-size: 14px;
  color: #888;
}
.p-contact-side-card__info-row dd {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.p-contact-side-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}
.p-contact-side-card__text a {
  color: #005bac;
  text-decoration: underline;
  font-weight: 700;
}
.p-contact-side-card__note {
  font-size: 14px;
  color: #999;
  margin-top: 15px;
  line-height: 1.6;
}
.p-contact-side-card--dark-navy {
  background-color: #00224e;
  border: none;
}
.p-contact-side-card--dark-navy .p-contact-side-card__title {
  color: #fff;
  border-left-color: #fff;
}
.p-contact-side-card--dark-navy .p-contact-side-card__text {
  color: #fff;
}

.anchor-nav {
  max-width: 1160px;
  margin: 40px auto;
  padding: 0;
}
.anchor-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .anchor-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.anchor-nav__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .anchor-nav__item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .anchor-nav__item {
    width: 31.3333333333%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.anchor-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 90px;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  line-height: 1.4;
  font-size: 14px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W6", HiraMinProN-W6, HG明朝E, "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.anchor-nav__link i {
  font-size: 24px;
  color: #00529b;
  margin-left: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .anchor-nav__link br {
    display: none;
  }
}
.anchor-nav__link:hover {
  border-color: #00529b;
}
.anchor-nav__link:hover i {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.anchor-nav__link.is-active {
  border: 1.5px solid #00529b;
  color: #00529b;
}
.anchor-nav__link.is-active i {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .anchor-nav__link {
    min-height: 60px;
  }
}

.p-about-problem__lead {
  margin-top: 40px;
  font-size: 16px;
  line-height: 2;
  color: #222222;
}
@media (max-width: 767px) {
  .p-about-problem__lead {
    margin-top: 30px;
    font-size: 14px;
  }
}
.p-about-problem__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 1024px) {
  .p-about-problem__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-about-problem__Text {
  width: 43%;
}
@media (max-width: 767px) {
  .p-about-problem__Text {
    width: 100%;
  }
}
.p-about-problem__cards-wrap {
  width: 57%;
}
@media (max-width: 767px) {
  .p-about-problem__cards-wrap {
    width: 100%;
  }
}
.p-about-problem__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 40px;
  list-style: none;
}
@media (max-width: 1024px) {
  .p-about-problem__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-about-problem__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  border: 1px solid #dde4ee;
  border-top: 4px solid #0057a8;
  padding: 40px 20px;
  text-align: center;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .p-about-problem__card {
    padding: 30px 15px;
  }
}
.p-about-problem__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #0057a8;
  margin-bottom: 0;
}
.p-about-problem__val {
  font-family: "Shippori Mincho", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-about-problem__val {
    font-size: 40px;
  }
}
.p-about-problem__unit {
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  margin-left: 5px;
}
.p-about-problem__label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.p-about-problem__note {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.05em;
}

.p-about-definition__container {
  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: 60px;
}
@media (max-width: 1024px) {
  .p-about-definition__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
.p-about-definition__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about-definition__body {
  margin: 40px 0;
  font-size: 16px;
  line-height: 2;
}
.p-about-definition__body p + p {
  margin-top: 1.5em;
}
@media (max-width: 767px) {
  .p-about-definition__body {
    margin: 30px 0;
    font-size: 14px;
  }
}
.p-about-definition__image-unit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-top: 30px;
  padding-right: 30px;
}
@media (max-width: 1024px) {
  .p-about-definition__image-unit {
    width: 100%;
    padding: 0;
  }
}
.p-about-definition__image {
  position: relative;
  z-index: 2;
  line-height: 0;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.p-about-definition__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about-definition__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0057a8;
  color: #ffffff;
  padding: 18px 25px;
  font-size: 14px;
  font-weight: 400;
  z-index: 3;
}
@media (max-width: 767px) {
  .p-about-definition__caption {
    padding: 10px 15px;
    font-size: 14px;
  }
}
.p-about-definition__image-decoration {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 120px;
  height: 120px;
  border: 2px solid #dde4ee;
  z-index: 1;
}
@media (max-width: 1024px) {
  .p-about-definition__image-decoration {
    display: none;
  }
}
.p-about-definition__btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-about-definition__btn {
    margin-top: 30px;
  }
}

.p-about-system {
  background-color: #fff;
}
.p-about-system__lead {
  margin-top: 40px;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .p-about-system__lead {
    margin-top: 30px;
    font-size: 14px;
  }
}
.p-about-system h3 {
  margin-top: 30px;
  color: #002860;
}
.p-about-system__table-wrapper {
  margin-top: 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .p-about-system__table-wrapper {
    margin-top: 40px;
    margin-right: -15px;
    padding-right: 15px;
  }
}
.p-about-system__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  font-size: 14px;
}
.p-about-system__table th, .p-about-system__table td {
  border-bottom: 1px solid #dde4ee;
  padding: 14px 20px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .p-about-system__table th, .p-about-system__table td {
    font-size: 0.8rem;
    padding: 1em;
  }
}
.p-about-system__table thead th:first-child,
.p-about-system__table tbody th {
  width: 20%;
  text-align: left;
  font-weight: 700;
  color: #222222;
  background-color: #f5f7fa;
}
.p-about-system__table thead th {
  text-align: center;
  padding: 14px 20px;
  font-weight: 700;
  background: #f5f7fa;
  border-top: 1px solid #dde4ee;
  border-bottom: 1px solid #dde4ee;
}
.p-about-system__table thead th span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.p-about-system__table thead th.-highlight {
  background-color: #002860;
  color: #ffffff;
}
.p-about-system__table tbody th {
  color: #002860;
}
.p-about-system__table tbody td {
  width: 40%;
  text-align: center;
  color: #555;
}
.p-about-system__table tbody td:nth-of-type(2) {
  background: #f0f6ff;
}
.p-about-system__note {
  margin-top: 50px;
  padding: 30px 30px;
  background-color: #fff;
  border: 1px solid #dde4ee;
  border-left: 4px solid #0057a8;
  font-size: 13px;
  line-height: 2;
}
.p-about-system__note p {
  font-size: 14px;
}
@media (max-width: 767px) {
  .p-about-system__note {
    padding: 20px;
    font-size: 13px;
  }
}

.p-about-risk h3.c-common-heading__main {
  font-size: 26px;
}
.p-about-risk__lead {
  margin-top: 40px;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .p-about-risk__lead {
    margin-top: 30px;
    font-size: 14px;
  }
}
.p-about-risk__warning {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .p-about-risk__warning {
    margin-top: 60px;
  }
}
.p-about-risk__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .p-about-risk__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-about-risk__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  list-style: none;
  padding: 0;
}
.p-about-risk__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px 24px;
  padding: 25px 0;
  border-bottom: 1px solid #fce4e4;
}
.p-about-risk__item:first-child {
  border-top: 1px solid #fce4e4;
}
.p-about-risk__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 24px;
  margin-top: -5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #d0021b !important;
}
.p-about-risk__item-title {
  font-size: 14px;
  font-weight: 700;
  color: #d0021b;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .p-about-risk__item-title {
    font-size: 16px;
  }
}
.p-about-risk__item-text {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 767px) {
  .p-about-risk__item-text {
    font-size: 13px;
  }
}
.p-about-risk__image-unit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}
@media (max-width: 1024px) {
  .p-about-risk__image-unit {
    width: 100%;
  }
}
.p-about-risk__image {
  position: relative;
  line-height: 0;
}
.p-about-risk__image img {
  width: 100%;
  height: auto;
}
.p-about-risk__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #e54d42;
  color: #ffffff;
  padding: 18px 25px;
  font-size: 14px;
  font-weight: 400;
}

.p-about-founding {
  background-color: #f5f7fa;
}
.p-about-founding__main-unit {
  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: 60px;
}
@media (max-width: 1024px) {
  .p-about-founding__main-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
.p-about-founding__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about-founding__lead {
  font-size: 16px;
  line-height: 2;
}
.p-about-founding__lead p + p {
  margin-top: 1.5em;
}
.p-about-founding__lead p:first-of-type {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .p-about-founding__lead {
    margin-top: 0;
    font-size: 14px;
  }
  .p-about-founding__lead p:first-of-type {
    margin-top: 30px;
  }
}
.p-about-founding__image-unit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-top: 30px;
  padding-right: 0;
}
@media (max-width: 1024px) {
  .p-about-founding__image-unit {
    width: 100%;
    padding: 0;
  }
}
.p-about-founding__image {
  position: relative;
  z-index: 2;
  line-height: 0;
}
.p-about-founding__image img {
  width: 100%;
  height: auto;
}
.p-about-founding__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0057a8;
  color: #ffffff;
  padding: 18px 25px;
  font-size: 14px;
  font-weight: 400;
  z-index: 3;
}
.p-about-founding__image-decoration {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 120px;
  height: 120px;
  border: 1px solid #dde4ee;
  z-index: 1;
}
@media (max-width: 1024px) {
  .p-about-founding__image-decoration {
    display: none;
  }
}
.p-about-founding__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
  list-style: none;
  padding: 0;
}
@media (max-width: 1024px) {
  .p-about-founding__points {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}
.p-about-founding__point {
  background-color: #f5f7fa;
  padding: 32px 24px;
  border: 6px double #dde4ee;
}
.p-about-founding__point-num {
  display: block;
  font-size: 32px;
  font-family: "Shippori Mincho", serif;
  color: #4a86c8;
  opacity: 0.5;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}
.p-about-founding__point-title {
  font-size: 16px;
  font-weight: 700;
  color: #002860;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.p-about-founding__point-text {
  font-size: 13px;
  line-height: 1.9;
}
.p-about-founding__vision {
  margin-top: 100px;
  color: #002860;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0 0;
  max-width: 1130px;
}
.p-about-founding__vision .l-inner {
  margin-top: 24px;
  padding: 40px 48px;
  border: 1px solid #dde4ee;
  background: #fff;
}
@media (max-width: 767px) {
  .p-about-founding__vision {
    margin-top: 60px;
    padding: 60px 20px;
  }
}
.p-about-founding__vision-sub {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  opacity: 0.7;
}
.p-about-founding__vision-main {
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  color: #002860;
}
@media (max-width: 767px) {
  .p-about-founding__vision-main {
    font-size: 18px;
  }
}

.info-section {
  padding: 40px 0;
  margin: 0 auto;
}
.info-section .info-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #dde4ee;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 30px;
}
.info-section .info-table tr {
  border-bottom: 1px solid #dde4ee;
}
.info-section .info-table tr:nth-child(even) {
  background-color: #f5f7fa;
}
.info-section .info-table th {
  width: 30%;
  padding: 20px;
  text-align: left;
  vertical-align: top;
  color: #002860;
  font-weight: bold;
  white-space: nowrap;
  font-size: 14px;
}
.info-section .info-table td {
  padding: 20px;
  vertical-align: middle;
  font-size: 14px;
}

@media (max-width: 600px) {
  .info-section .info-table th, .info-section .info-table td {
    display: block;
    width: 100%;
    padding: 10px 15px;
  }
  .info-section .info-table th {
    padding-bottom: 0;
  }
}
.p-guide-line__lead {
  margin: 30px 30px;
  font-size: 15px;
  max-width: 800px;
}
@media (max-width: 767px) {
  .p-guide-line__lead {
    margin-bottom: 0;
  }
}
.p-guide-line__lead p {
  margin-top: 20px;
}
.p-guide-line__container {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  border: 1px solid #dde4ee;
}
@media (max-width: 1024px) {
  .p-guide-line__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-guide-line__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-guide-line__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  padding: 16px 0;
  border-bottom: 1px solid #dde4ee;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-guide-line__item:first-of-type {
  border-top: 1px solid #dde4ee;
}
.p-guide-line__item:hover {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
@media (max-width: 767px) {
  .p-guide-line__item {
    gap: 15px;
    padding: 20px 0;
  }
  .p-guide-line__item:hover {
    -webkit-transform: none;
            transform: none;
  }
}
.p-guide-line__num {
  font-size: 22px;
  font-weight: 700;
  color: rgba(0, 87, 168, 0.3);
  font-family: "Shippori Mincho", serif;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-guide-line__title {
  font-size: 14px;
  font-weight: 700;
  color: #002860;
}
.p-guide-line__text {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
}
.p-guide-line__side {
  width: 380px;
  position: sticky;
  top: 100px;
  background-color: #f5f7fa;
}
.p-guide-line__side p {
  color: #fff;
}
@media (max-width: 1024px) {
  .p-guide-line__side {
    width: 100%;
    position: static;
  }
}
.p-guide-line__panel {
  background-color: #002860;
  color: #ffffff;
  padding: 40px 48px;
}
.p-guide-line__panel-btn a {
  background: #fff;
  color: #002860;
}
.p-guide-line__panel-sub {
  display: block;
  font-size: 14px;
  opacity: 0.6;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.p-guide-line__panel-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 25px;
}
.p-guide-line__panel-lead span {
  font-weight: bold;
}
.p-guide-line__panel-text {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.p-guide-line__panel-text:last-of-type {
  margin-bottom: 30px;
}
.p-guide-line__note {
  color: #999;
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}
.p-guide-line__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.p-guide-line__title-wrap .icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #002860;
  padding: 10px;
}
.p-guide-line__title-wrap h4 {
  margin-bottom: 0;
}
.p-guide-line__info {
  padding: 30px;
  background-color: #f5f7fa;
}
.p-guide-line__info-title {
  font-size: 14px;
  font-weight: 700;
  color: #002860;
  margin-bottom: 15px;
}
.p-guide-line__info-list li {
  font-size: 13px;
  position: relative;
  padding-left: 1.2em;
  color: #4a5568;
  margin-bottom: 10px;
}
.p-guide-line__info-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #0057a8;
}

.p-common-next-step {
  background-color: #002860;
  background-image: radial-gradient(circle at right, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
}
.p-common-next-step .c-common-heading__sub {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .p-common-next-step {
    padding: 60px 0;
  }
}
.p-common-next-step__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-common-next-step__lead {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.6;
}
.p-common-next-step__lead p {
  color: #fff;
}
@media (max-width: 767px) {
  .p-common-next-step__lead {
    font-size: 14px;
  }
  .p-common-next-step__lead br {
    display: none;
  }
}
.p-common-next-step__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .p-common-next-step__btns {
    -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: 15px;
    margin-top: 35px;
  }
}
.p-common-next-step .c-btn-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 280px;
  background: #ffffff;
  color: #002860;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-common-next-step .c-btn-next.-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.p-common-next-step .c-btn-next:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}
.p-common-next-step .c-btn-next__arrow {
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: currentColor;
  margin-left: 15px;
  position: relative;
}
.p-common-next-step .c-btn-next__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 767px) {
  .p-common-next-step .c-btn-next {
    max-width: 100%;
    height: 60px;
    font-size: 15px;
    padding: 1em;
  }
}

.p-join-feature__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media (max-width: 767px) {
  .p-join-feature__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-join-feature__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-join-feature__text {
  margin-top: 30px;
  font-size: 15px;
  line-height: 2;
}
.p-join-feature__btn {
  margin-top: 40px;
}
.p-join-feature__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.p-join-feature__image::after {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid #dde4ee;
  z-index: -1;
  border-radius: 2px;
}
.p-join-feature__img-wrap {
  position: relative;
  overflow: hidden;
}
.p-join-feature__img-wrap img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.p-join-feature__label {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0057a8;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 400;
}

.p-join-benefits {
  background-color: #f8fafc;
}
@media (max-width: 767px) {
  .p-join-benefits {
    padding: 60px 0;
  }
}
.p-join-benefits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .p-join-benefits__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-join-benefits__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}
.p-join-benefits__item {
  background-color: #ffffff;
  padding: 40px 30px;
  border: 1px solid #dde4ee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.p-join-benefits__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #0057a8;
}
@media (max-width: 767px) {
  .p-join-benefits__item {
    padding: 30px 20px;
  }
}
.p-join-benefits__number {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: rgba(0, 87, 168, 0.2);
  line-height: 1;
  font-family: "Shippori Mincho", serif;
}
.p-join-benefits__title {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #002860;
}
.p-join-benefits__text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 2.1;
}

.p-join-conditions__lead {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .p-join-conditions__lead {
    font-size: 14px;
    margin-top: 20px;
  }
}
.p-join-conditions__table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .p-join-conditions__table-wrapper {
    margin-top: 30px;
  }
}
.p-join-conditions__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.p-join-conditions__table thead {
  background-color: #002860;
  color: #ffffff;
}
.p-join-conditions__table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
}
.p-join-conditions__table tbody tr {
  border-bottom: 1px solid #dde4ee;
}
.p-join-conditions__table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}
.p-join-conditions__table tbody tr th, .p-join-conditions__table tbody tr td {
  font-size: 13px;
}
.p-join-conditions__table tbody tr th {
  width: 180px;
}
@media (max-width: 767px) {
  .p-join-conditions__table tbody tr th {
    width: 20%;
  }
}
.p-join-conditions__table tbody tr th {
  padding: 16px 20px;
  background-color: #f1f5f9;
  color: #002860;
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
}
.p-join-conditions__table tbody tr td {
  padding: 16px 20px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-join-conditions__table tbody tr th,
  .p-join-conditions__table tbody tr td {
    padding: 15px 20px;
    font-size: 13px;
  }
}
.p-join-conditions__notes {
  margin-top: 20px;
}
.p-join-conditions__notes p {
  font-size: 14px;
  color: #8898aa;
  line-height: 1.8;
  text-indent: -1em;
  padding-left: 1em;
}

.p-join-flow {
  background-color: #f5f7fa;
}
.p-join-flow__content {
  margin-top: 60px;
  position: relative;
}
@media (max-width: 767px) {
  .p-join-flow__content {
    margin-top: 40px;
  }
}
.p-join-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.p-join-flow__list::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 50px;
  right: 50px;
  height: 1px;
  background-color: #dde4ee;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-join-flow__list::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-join-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-join-flow__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  position: relative;
  padding: 0 10px;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-join-flow__item {
    padding: 0;
  }
}
.p-join-flow__num {
  width: 70px;
  height: 70px;
  background-color: #0057a8;
  color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  position: relative;
}
@media (max-width: 767px) {
  .p-join-flow__num {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}
.p-join-flow__title {
  margin-top: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #003f80;
}
@media (max-width: 767px) {
  .p-join-flow__title {
    margin-top: 15px;
    font-size: 14px;
  }
}
.p-join-flow__text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 15px;
}
.p-join-flow__text a {
  text-decoration: underline;
  font-weight: 700;
  color: #0057a8;
}
@media (max-width: 767px) {
  .p-join-flow__text {
    padding: 0;
  }
}
.p-join-flow__note {
  margin-top: 30px;
  text-align: center;
}
.p-join-flow__note p {
  font-size: 13px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .p-join-flow__note {
    margin-top: 30px;
    text-align: left;
  }
}

.p-join-faq__content {
  margin-top: 40px;
}
.p-join-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.p-join-faq__item {
  border: 1px solid #dde4ee;
  border-radius: 4px;
  overflow: hidden;
}
.p-join-faq__q {
  background-color: #f1f5f9;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .p-join-faq__q {
    padding: 15px 20px;
  }
}
.p-join-faq__icon {
  width: 32px;
  height: 32px;
  background-color: #0057a8;
  color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-join-faq__q-text {
  font-weight: 700;
  font-size: 16px;
  color: #002860;
}
@media (max-width: 767px) {
  .p-join-faq__q-text {
    font-size: 16px;
  }
}
.p-join-faq__a {
  background-color: #ffffff;
  padding: 25px 30px 25px 77px;
}
@media (max-width: 767px) {
  .p-join-faq__a {
    padding: 20px;
  }
}
.p-join-faq__a-text {
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-join-faq__a-text {
    font-size: 13px;
  }
}

#faq {
  margin-top: -150px;
  padding-top: 150px;
}
@media (max-width: 767px) {
  #faq {
    margin-top: -90px;
    padding-top: 90px;
  }
}

.p-consumer-feature__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media (max-width: 767px) {
  .p-consumer-feature__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-consumer-feature__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-consumer-feature__text {
  margin-top: 30px;
}
.p-consumer-feature__text p + p {
  margin-top: 1.5em;
}
.p-consumer-feature__link-box {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: 2px;
  background-color: #f1f5f9;
  border: 1px solid #dde4ee;
  border-left: 4px solid #0057a8;
  font-size: 13px;
}
.p-consumer-feature__link-box p {
  font-size: 14px;
}
.p-consumer-feature__link-box a {
  font-size: 14px;
  font-weight: 700;
  color: #0057a8;
  text-decoration: underline;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-consumer-feature__link-box {
    padding: 20px;
    margin-top: 30px;
  }
}
.p-consumer-feature__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.p-consumer-feature__image::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid #dde4ee;
  z-index: -1;
}
.p-consumer-feature__img-wrap {
  position: relative;
  overflow: hidden;
}
.p-consumer-feature__img-wrap img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.p-consumer-feature__label {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0057a8;
  color: #ffffff;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 400;
}

.p-consumer-check {
  background-color: #f5f7fa;
}
.p-consumer-check__lead {
  margin-top: 30px;
  font-size: 15px;
  max-width: 800px;
}
.p-consumer-check__container {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
}
@media (max-width: 1024px) {
  .p-consumer-check__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-consumer-check__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-consumer-check__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  padding: 16px 0;
  border-bottom: 1px solid #dde4ee;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-consumer-check__item:first-of-type {
  border-top: 1px solid #dde4ee;
}
.p-consumer-check__item:hover {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
@media (max-width: 767px) {
  .p-consumer-check__item {
    gap: 15px;
    padding: 20px 0;
  }
  .p-consumer-check__item:hover {
    -webkit-transform: none;
            transform: none;
  }
}
.p-consumer-check__num {
  font-size: 22px;
  font-weight: 700;
  color: rgba(0, 87, 168, 0.3);
  font-family: "Shippori Mincho", serif;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-consumer-check__title {
  font-size: 14px;
  font-weight: 700;
  color: #002860;
}
.p-consumer-check__text {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
}
.p-consumer-check__side {
  width: 380px;
  position: sticky;
  top: 100px;
}
.p-consumer-check__side p {
  color: #fff;
}
@media (max-width: 1024px) {
  .p-consumer-check__side {
    width: 100%;
    position: static;
  }
}
.p-consumer-check__panel {
  background-color: #002860;
  color: #ffffff;
  padding: 40px 48px;
}
.p-consumer-check__panel-btn a {
  background: #fff;
  color: #002860;
}
.p-consumer-check__panel-sub {
  display: block;
  font-size: 14px;
  opacity: 0.6;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.p-consumer-check__panel-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 25px;
}
.p-consumer-check__panel-lead span {
  font-weight: bold;
}
.p-consumer-check__panel-text {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.p-consumer-check__panel-text:last-of-type {
  margin-bottom: 30px;
}
.p-consumer-check__info {
  margin-top: 30px;
  padding: 30px;
  background-color: #fff;
  border: 1px solid #dde4ee;
}
.p-consumer-check__info-title {
  font-size: 14px;
  font-weight: 700;
  color: #002860;
  margin-bottom: 15px;
}
.p-consumer-check__info-list li {
  font-size: 13px;
  position: relative;
  padding-left: 1.2em;
  color: #4a5568;
  margin-bottom: 10px;
}
.p-consumer-check__info-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #0057a8;
}

.p-consumer-standards__lead {
  margin-top: 30px;
  font-size: 15px;
  max-width: 900px;
}
.p-consumer-standards__table-wrapper {
  margin-top: 50px;
  overflow-x: auto;
}
.p-consumer-standards__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 768px;
}
@media (max-width: 767px) {
  .p-consumer-standards__table {
    min-width: auto;
  }
}
.p-consumer-standards__table thead {
  background-color: #002860;
  color: #ffffff;
}
.p-consumer-standards__table thead th {
  padding: 20px;
  text-align: left;
  font-weight: 700;
}
.p-consumer-standards__table thead th.u-text-center {
  text-align: center;
  width: 80px;
}
@media (max-width: 767px) {
  .p-consumer-standards__table thead {
    font-size: 0.8rem;
  }
}
.p-consumer-standards__table tbody {
  font-size: 13px;
}
.p-consumer-standards__table tbody tr {
  border-bottom: 1px solid #dde4ee;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-consumer-standards__table tbody tr:hover, .p-consumer-standards__table tbody tr.is-active {
  background-color: #f1f5f9;
  -webkit-box-shadow: inset 4px 0 0 0 #0057a8;
          box-shadow: inset 4px 0 0 0 #0057a8;
}
.p-consumer-standards__table tbody tr:hover .p-consumer-standards__num, .p-consumer-standards__table tbody tr.is-active .p-consumer-standards__num {
  background-color: #0057a8;
  color: #ffffff;
  border-color: #0057a8;
}
.p-consumer-standards__table tbody tr th {
  width: 250px;
  padding: 25px 20px;
  text-align: left;
  color: #002860;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-consumer-standards__table tbody tr th {
    font-size: 0.8rem;
    width: 100px;
    padding: 12px;
  }
}
.p-consumer-standards__table tbody tr td {
  padding: 25px 20px;
  line-height: 1.6;
}
.p-consumer-standards__table tbody tr td.u-text-center {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .p-consumer-standards__table tbody tr td {
    font-size: 0.8rem;
    padding: 12px;
  }
}
.p-consumer-standards__num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #0057a8;
  border-radius: 50%;
  color: #0057a8;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-consumer-standards__notes {
  margin-top: 25px;
}
.p-consumer-standards__notes p {
  font-size: 13px;
  opacity: 0.8;
}
.p-consumer-standards .p-consumer-standards__notes {
  font-size: 14px;
}

.p-mission-feature__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1024px) {
  .p-mission-feature__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-mission-feature__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-mission-feature__text {
  margin-top: 30px;
}
.p-mission-feature__list {
  margin-top: 40px;
  border-top: 1px solid #dde4ee;
}
.p-mission-feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #dde4ee;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-mission-feature__item:hover {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.p-mission-feature__item-num {
  width: 40px;
  height: 40px;
  background-color: #0057a8;
  color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-mission-feature__item-title {
  font-size: 16px;
  font-weight: 700;
  color: #002860;
}
.p-mission-feature__item-text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
}
.p-mission-feature__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.p-mission-feature__image::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border: 1px solid #dde4ee;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-mission-feature__image {
    width: 100%;
  }
  .p-mission-feature__image::after {
    right: -10px;
    top: -10px;
  }
}
.p-mission-feature__img-wrap {
  position: relative;
}
.p-mission-feature__img-wrap img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.p-mission-feature__label {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0057a8;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
}

.p-mission-purpose {
  background-color: #fff;
}
.p-mission-purpose__lead {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
}
@media (max-width: 767px) {
  .p-mission-purpose__lead {
    text-align: left;
  }
}
.p-mission-purpose__list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .p-mission-purpose__list {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 20px;
  }
}
.p-mission-purpose__item {
  background-color: #ffffff;
  border: 1px solid #dde4ee;
  padding: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-mission-purpose__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border: 1px solid #0057a8;
  -webkit-box-shadow: 0 10px 30px rgba(0, 40, 96, 0.05);
          box-shadow: 0 10px 30px rgba(0, 40, 96, 0.05);
}
@media (max-width: 767px) {
  .p-mission-purpose__item {
    padding: 30px 25px;
  }
}
.p-mission-purpose__num {
  font-size: 40px;
  font-weight: 700;
  color: rgba(0, 87, 168, 0.15);
  font-family: "Shippori Mincho", serif;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.p-mission-purpose__title {
  font-size: 16px;
  font-weight: 700;
  color: #002860;
  margin-bottom: 15px;
}
.p-mission-purpose__text {
  font-size: 13px;
  line-height: 1.8;
}

.p-mission-policy__lead {
  margin-top: 30px;
  font-size: 15px;
}
.p-mission-policy__container {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .p-mission-policy__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.p-mission-policy__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-mission-policy__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid #dde4ee;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-mission-policy__item:first-of-type {
  border-top: 1px solid #dde4ee;
}
.p-mission-policy__item:hover {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
@media (max-width: 767px) {
  .p-mission-policy__item {
    gap: 20px;
    padding: 25px 0;
  }
}
.p-mission-policy__num {
  font-size: 24px;
  font-weight: 700;
  color: rgba(0, 87, 168, 0.3);
  font-family: "Shippori Mincho", serif;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-mission-policy__title {
  font-size: 15px;
  font-weight: 700;
  color: #002860;
}
.p-mission-policy__text {
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.7;
}
.p-mission-policy__side {
  width: 48%;
}
@media (max-width: 1024px) {
  .p-mission-policy__side {
    width: 100%;
  }
}
.p-mission-policy__action-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.p-mission-policy__action-head::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #0057a8;
}
.p-mission-policy__action-sub {
  font-size: 16px;
  font-weight: 700;
  color: #0057a8;
  letter-spacing: 0.1em;
}
.p-mission-policy__action-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.p-mission-policy__card {
  background-color: #f8fafc;
  border: 1px solid #dde4ee;
  border-left: 4px solid #0057a8;
  padding: 30px;
}
.p-mission-policy__card-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #0057a8;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.p-mission-policy__card-title {
  font-size: 15px;
  font-weight: 700;
  color: #002860;
  margin-bottom: 15px;
}
.p-mission-policy__card-text {
  font-size: 13px;
  line-height: 1.8;
}

.p-about-founding__vision {
  margin-top: 0;
}

.p-mission-conduct__lead {
  margin-top: 30px;
  font-size: 15px;
}
.p-mission-conduct__tabs-wrapper {
  margin-top: 60px;
}
.p-mission-conduct__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #000;
  background-color: #ffffff;
}
.p-mission-conduct__tab-phase {
  font-size: 12px;
  color: #0057a8;
}
@media (max-width: 767px) {
  .p-mission-conduct__tab-phase {
    font-size: 10px;
  }
}
.p-mission-conduct__tab-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 25px;
  cursor: pointer;
  border-right: 2px solid #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #002860;
  gap: 8px;
}
@media (max-width: 767px) {
  .p-mission-conduct__tab-item {
    padding: 12px;
    font-size: 0.8rem;
  }
}
.p-mission-conduct__tab-item::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #eee;
  margin-top: 5px;
}
.p-mission-conduct__tab-item:last-child {
  border-right: none;
}
.p-mission-conduct__tab-item.is-active {
  background-color: #002860;
}
.p-mission-conduct__tab-item.is-active .p-mission-conduct__tab-phase,
.p-mission-conduct__tab-item.is-active .p-mission-conduct__tab-name {
  color: #ffffff;
}
.p-mission-conduct__tab-item.is-active::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  margin-top: 5px;
}
.p-mission-conduct__tab-item-phase {
  font-size: 11px;
  font-weight: 700;
  color: #0057a8;
  letter-spacing: 0.1em;
}
.p-mission-conduct__tab-item-name {
  font-size: 16px;
  font-weight: 700;
  color: #002860;
}
.p-mission-conduct__content-wrapper {
  border: 1px solid #dde4ee;
  border-top: none;
}
.p-mission-conduct__panel {
  display: none;
  -webkit-animation: fadeIn 0.5s ease forwards;
          animation: fadeIn 0.5s ease forwards;
}
.p-mission-conduct__panel.is-active {
  display: block;
}
.p-mission-conduct__table {
  width: 100%;
  border-collapse: collapse;
}
.p-mission-conduct__table tr {
  border-bottom: 1px solid #f0f4f8;
}
.p-mission-conduct__table tr:last-child {
  border-bottom: none;
}
.p-mission-conduct__table th {
  width: 250px;
  padding: 20px 28px;
  background-color: #f8fafc;
  text-align: left;
  font-size: 13px;
  color: #002860;
}
@media (max-width: 1024px) {
  .p-mission-conduct__table th {
    padding: 1em;
  }
}
@media (max-width: 767px) {
  .p-mission-conduct__table th {
    width: 140px;
    padding: 10px;
    font-size: 14px;
  }
}
.p-mission-conduct__table td {
  padding: 20px 28px;
  font-size: 13px;
  line-height: 2;
}
@media (max-width: 767px) {
  .p-mission-conduct__table td {
    padding: 20px;
    font-size: 14px;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-mission-governance {
  background: #f5f7fa;
}
.p-mission-governance.white {
  background-color: #fff;
}
.p-mission-governance__lead {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
}
.p-mission-governance__lead a {
  text-decoration: underline;
  color: #0057a8;
}
.p-mission-governance__lead a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-mission-governance__lead {
    text-align: left;
  }
}
.p-mission-governance__list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .p-mission-governance__list {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 20px;
  }
}
.p-mission-governance__item {
  background-color: #ffffff;
  border: 1px solid #dde4ee;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-mission-governance__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media (max-width: 767px) {
  .p-mission-governance__item {
    padding: 20px;
    gap: 15px;
  }
}
.p-mission-governance__icon-wrap {
  width: 40px;
  height: 40px;
  background-color: #002860;
  color: #ffffff;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-mission-governance__icon {
  font-size: 24px;
  font-weight: normal;
}
.p-mission-governance__item-title {
  font-size: 14px;
  font-weight: 700;
  color: #002860;
}
.p-mission-governance__item-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}
.p-mission-governance__feature-wrapper {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #dde4ee;
}
@media (max-width: 767px) {
  .p-mission-governance__feature-wrapper {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
.p-mission-governance__feature {
  padding: 60px 40px;
  color: #ffffff;
}
.p-mission-governance__feature.-blue-deep {
  background-color: #002860;
}
.p-mission-governance__feature.-blue {
  background-color: #0057a8;
}
@media (max-width: 767px) {
  .p-mission-governance__feature {
    padding: 40px 25px;
  }
}
.p-mission-governance__feature-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.p-mission-governance__feature-head::before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
}
.p-mission-governance__feature-sub {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.p-mission-governance__feature-text {
  font-size: 14px;
  line-height: 2.1;
  color: #fff;
}
.p-mission-governance__feature-text span {
  font-weight: 700;
  border-bottom: 2px solid #0057a8;
}

.p-privacy {
  padding: 80px 0;
}
.p-privacy__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-privacy__intro {
  line-height: 1.8;
  margin-bottom: 60px;
}
.p-privacy__section {
  margin-bottom: 60px;
}
.p-privacy__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #003366;
  padding-bottom: 10px;
  border-bottom: 2px solid #003366;
  margin-bottom: 25px;
}
.p-privacy__text {
  line-height: 1.8;
  margin-bottom: 20px;
}
.p-privacy__list {
  margin-top: 15px;
}
.p-privacy__list-item {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 14px;
  color: #4a5568;
}
.p-privacy__list-item::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #003366;
}
.p-privacy__contact {
  background-color: #f8f9fa;
  border-left: 4px solid #003366;
  padding: 40px;
  margin-top: 80px;
}
.p-privacy__contact-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 20px;
}
.p-privacy__contact-text {
  margin-bottom: 25px;
}
.p-privacy__contact-info {
  margin-bottom: 30px;
}
.p-privacy__contact-name {
  font-weight: 700;
  margin-bottom: 5px;
}
.p-privacy__contact-detail {
  font-size: 0.95rem;
  line-height: 1.6;
}
.p-privacy__contact-btn-wrap {
  margin-top: 30px;
}
.p-privacy__contact-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0056b3;
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-privacy__contact-btn::after {
  content: "→";
  margin-left: 10px;
}
.p-privacy__contact-btn:hover {
  opacity: 0.8;
}
.p-privacy__date {
  margin-top: 40px;
  text-align: right;
  font-size: 0.85rem;
  color: #666;
}
.p-privacy__date p {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .p-privacy {
    padding: 50px 0;
  }
  .p-privacy__intro {
    margin-bottom: 40px;
  }
  .p-privacy__contact {
    padding: 25px;
  }
  .p-privacy__heading {
    font-size: 1.1rem;
  }
}
.p-thanks {
  padding: 60px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-thanks {
    padding: 95px 0;
  }
}
.p-thanks__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-thanks__inner {
    padding: 0 30px;
  }
}
.p-thanks__icon {
  margin-bottom: 24px;
}
.p-thanks__icon .c-icon-check {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 95, 162, 0.1);
  color: #005FA2;
  border-radius: 50%;
  position: relative;
}
.p-thanks__icon .c-icon-check::after {
  content: "✓";
  font-size: 40px;
  line-height: 80px;
  font-weight: bold;
}
.p-thanks__body {
  margin-top: 30px;
}
.p-thanks__text {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #222222;
}
.p-thanks__action {
  margin-top: 50px;
}
.p-thanks__action .c-btn--primary {
  max-width: 280px;
  text-decoration: none;
}
.p-thanks__note {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(231, 237, 242, 0.5);
  font-size: 14px;
  color: #7C8C99;
}

.u-section-padding {
  padding-top: 95px;
  padding-bottom: 95px;
}
@media (max-width: 767px) {
  .u-section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.u-section-padding-top {
  padding-top: 0;
}

.u-text {
  line-height: 2;
  margin-bottom: 1.5em;
  color: #222222;
}
.u-text.-lead {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0057a8;
  margin-bottom: 2em;
  margin-top: 5vh;
  padding: 10px 25px;
  background-color: #f5f7fa;
  border-left: 4px solid #0057a8;
}

p.Center {
  text-align: center;
  margin: 0 auto 40px;
  display: block;
}
p.Center img {
  margin: auto;
}

.blue-rule {
  display: block;
  width: 36px;
  height: 3px;
  background: #0057a8;
  margin: 20px 0 32px;
  border-radius: 2px;
}

.u-color-red {
  color: #d0021b;
  font-weight: 700;
}

.u-color-green {
  color: #28a745;
  font-weight: 700;
}

.u-off-white {
  background: #f5f7fa;
}

.u-white {
  background: #fff;
}

.u-top-border {
  border-top: 1px solid #dde4ee !important;
}

small.small {
  display: block;
  font-size: 10px;
  margin-top: 1em;
  color: #777;
}

.u-fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  will-change: opacity, transform;
}
.u-fade-up.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.u-fade-up:nth-of-type(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.u-fade-up:nth-of-type(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.u-fade-up:nth-of-type(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.u-fade-up:nth-of-type(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.u-fade-up:nth-of-type(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.u-fade-up:nth-of-type(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}