@import "normalize.css"; /* == @import "../node_modules/normalize.css/normalize.css"; */
/**
 * Custom media queries
 * @example
 * @media (--mobile) {
 *    styles for mobile viewport
 * }
 */
/**
 * for mobile viewoport
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
@custom-media --mobile screen and (max-width: 767px);
@custom-media --large screen and (min-width: 768px);
@custom-media --tablet screen and (max-width: 1023px) and (min-width: 768px);
@custom-media --vw_outside screen and (min-width: 1600px);
@custom-media --vw_inside screen and (min-width: 768px) and (max-width: 1599px);
html {
  scroll-behavior: smooth;
  scroll-padding-top: 15rem;
}
@media screen and (min-width: 1200px), print {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  html {
    font-size: calc(10vw / 1400 * 100);
  }
}
@media screen and (max-width: 767px), print {
  html {
    font-size: calc(10vw / 400 * 100);
  }
}
html.is-hidden {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}
html * {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  background: #FFFFFF;
}

a {
  color: #000;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
p {
  padding: 0;
  margin: 0;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

figure {
  padding: 0;
  margin: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.l-main {
  line-height: 1.2;
}

svg,
img {
  max-width: 100%;
}

@media (--mobile) {
  html,
  body {
    width: 100%;
    height: 100%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  dl,
  dt,
  dd,
  p {
    padding: 0;
    margin: 0;
  }
  img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  [href*="tel:"] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}
.f-eg {
  font-family: "Outfit", sans-serif;
}

[x-cloak] {
  display: none;
}

.c-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 101;
  box-shadow: 0 2px 10px rgba(0, 26, 76, 0.24);
}
.c-header-top {
  background: #0D1625;
  padding: 0 3rem;
  height: 5rem;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-header-top {
    height: 5.6rem;
    padding: 0 2rem;
  }
}
.c-header-top > figure {
  width: 21rem;
}
@media screen and (max-width: 767px) {
  .c-header-top > figure {
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .c-header-top-link {
    display: none;
  }
}
.c-header-top-link a {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.7rem;
       column-gap: 0.7rem;
}
.c-header-top-link a > div {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.7rem;
       column-gap: 0.7rem;
}
.c-header-top-link a > div span {
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #FFF;
  font-weight: 500;
}
.c-header-top-link a > svg {
  width: 1.4rem;
  overflow: inherit;
}
.c-header-top-menu {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-header-top-menu {
    display: none;
  }
}
.c-header-top-menu__search {
  margin-top: 0.5rem;
}
.c-header-top-menu__search svg {
  width: 1.8rem;
  overflow: inherit;
}
.c-header-top-menu__drawer {
  position: relative;
  width: 2rem;
}
.c-header-top-menu__drawer > span {
  position: absolute;
  width: 2rem;
  height: 2px;
  background: #FFFFFF;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-header-top-menu__drawer > span:first-of-type {
  transform: translate(-50%, -50%) translateY(-0.8rem);
}
.is-open .c-header-top-menu__drawer > span:first-of-type {
  transform: translate(-50%, -50%) rotate(135deg);
}

.is-open .c-header-top-menu__drawer > span:nth-of-type(2) {
  opacity: 0;
}

.c-header-top-menu__drawer > span:last-of-type {
  transform: translate(-50%, -50%) translateY(0.8rem);
}
.is-open .c-header-top-menu__drawer > span:last-of-type {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.c-header-mega > div {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
}
.c-header-mega > div > span {
  font-size: 1.3rem;
  display: flex;
  text-align: center;
  color: #FFF;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.c-header-mega-content {
  position: absolute;
  background: #FFFFFF;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 3rem;
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s all;
}
.c-header-mega-content.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-header-mega-content__wrap {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 6.5rem;
       column-gap: 6.5rem;
}
@media screen and (max-width: 767px) {
  .c-header-mega-content__wrap {
    max-width: inherit;
    width: 100%;
    grid-template-columns: 1fr;
  }
}
.c-header-mega-content__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 767px) {
  .c-header-mega-content__list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.c-header-mega-content__list-item {
  position: relative;
}
.c-header-mega-content__list-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background-color: #5171CB;
  opacity: 0;
  transition: opacity 0.3s;
}
.c-header-mega-content__list-item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1rem;
  border-radius: 0.8rem;
  background: #FFF;
  transition: 0.3s all;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-header-mega-content__list-item > a:hover {
    border-color: #5171CB;
  }
}
@media screen and (max-width: 767px) {
  .c-header-mega-content__list-item > a {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 0.5rem;
    padding: 1rem;
  }
}
.c-header-mega-content__list-item > a::after {
  content: "";
  display: block;
  width: 1px;
  height: 12.8rem;
  background-color: #DDE2EA;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.c-header-mega-content__list-item > a figure {
  width: 7rem;
}
@media screen and (max-width: 768px), print {
  .c-header-mega-content__list-item > a figure {
    width: 4.5rem;
  }
}
.c-header-mega-content__list-item > a h3 {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .c-header-mega-content__list-item > a h3 {
    font-size: 1.4rem;
  }
}
.c-header-mega-content__list-item > a h3 span {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-header-mega-content__list-item > a h3 span {
    font-size: 1.2rem;
  }
}
.c-header-mega-content__list-item.is-active::after {
  opacity: 1;
}
.c-header-mega-content__list-item.is-active .c-header-mega-content__sub-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-header-mega-content__list-item:nth-of-type(n + 4) .c-header-mega-content__sub-list {
  left: auto;
  right: 0;
}
.c-header-mega-content__sub-list {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 3rem 4rem;
  background-color: white;
  border-radius: 0 0 0.8rem 0.8rem/0 0 0.8rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s;
}
.c-header-mega-content__sub-list-item > a {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: flex-start;
  transition: color 0.3s;
}
@media (hover: hover) {
  .c-header-mega-content__sub-list-item > a:hover {
    color: #5171CB;
  }
}
.c-header-mega-content__sub-list-item > a > .in-angle {
  width: 0.9rem;
  flex-shrink: 0;
}
.c-header-mega-content__sub-list-item > a > .in-text {
  font-size: 1.4rem;
  white-space: nowrap;
}
.c-header-mega-content__ttl {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  justify-content: center;
}
.c-header-mega-content__ttl h4 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.c-header-nav {
  background: #5171CB;
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-header-nav {
    display: none;
  }
}
.c-header-nav__wrap {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 15.6rem;
  align-items: center;
  justify-content: space-between;
}
.c-header-nav__wrap > ul {
  width: 79.5rem;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.c-header-nav__wrap > ul > li {
  border-right: 1px solid #DDE2EA;
}
.c-header-nav__wrap > ul > li > a, .c-header-nav__wrap > ul > li > div:not(.c-header-mega-content) {
  padding: 0.8rem 0;
  display: grid;
  grid-template-rows: 3.5rem auto;
  align-items: center;
  justify-items: center;
  align-content: space-evenly;
  height: 100%;
}
.c-header-nav__wrap > ul > li > a > figure, .c-header-nav__wrap > ul > li > div:not(.c-header-mega-content) > figure {
  width: 4.5rem;
  height: 3.5rem;
  margin: 0 auto;
}
.c-header-nav__wrap > ul > li > a > figure img, .c-header-nav__wrap > ul > li > div:not(.c-header-mega-content) > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-header-nav__wrap > ul > li > a > span, .c-header-nav__wrap > ul > li > div:not(.c-header-mega-content) > span {
  font-size: 1.3rem;
  display: flex;
  text-align: center;
  color: #FFF;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.is-mega-open .c-header-nav__wrap > ul > li.js-mega-trigger {
  z-index: 101;
  background: #5171CB;
}

.c-header-nav__wrap > ul > li > a {
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .c-header-nav__wrap > ul > li > a:hover {
    background: #8DA3E0;
  }
}
.c-header-nav__wrap .c-search-keyword {
  height: 100%;
}
.c-header-nav__wrap .c-search-keyword a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: solid 1px white;
  height: 100%;
  gap: 1rem;
  transition: background-color 0.3s;
}
@media (hover: hover) {
  .c-header-nav__wrap .c-search-keyword a:hover {
    background-color: #8DA3E0;
  }
}
.c-header-nav__wrap .c-search-keyword a img {
  width: 2.8rem;
}
.c-header-nav__wrap .c-search-keyword a span {
  color: white;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .c-header-nav__wrap .c-search-keyword {
    display: none;
  }
}
.c-header-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #919499;
  mix-blend-mode: multiply;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}
.is-mega-open .c-header-overlay {
  opacity: 1;
}

.c-header-content {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  max-height: 100vh;
  padding: 2rem;
  padding-bottom: 10rem;
  top: 5.6rem;
  background: #F5F5F5;
  pointer-events: none;
  transform: translateX(100%);
  transition: 0.3s all;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .c-header-content {
    display: none;
  }
}
.is-open .c-header-content {
  pointer-events: auto;
  transform: translate(0);
}

@media screen and (max-width: 767px) {
  .c-header-content__link {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.c-header-content__link > li {
  position: relative;
}
@media screen and (max-width: 768px), print {
  .c-header-content__link > li {
    padding: 1.4rem 2rem;
    border-radius: 0.8rem;
    background: #FFF;
    box-shadow: 0 2px 10px rgba(0, 26, 76, 0.12);
  }
}
.c-header-content__link > li > a {
  display: grid;
  grid-template-columns: 7rem 1fr;
  align-items: center;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  min-height: 9.6rem;
}
@media screen and (min-width: 769px), print {
  .c-header-content__link > li > a {
    padding: 1.4rem 2rem;
    border-radius: 0.8rem;
    background: #FFF;
    box-shadow: 0 2px 10px rgba(0, 26, 76, 0.12);
  }
}
@media screen and (max-width: 767px) {
  .c-header-content__link > li > a {
    grid-template-columns: 5rem 1fr;
    gap: 1rem;
    min-height: 0;
  }
  .c-header-content__link > li > a figure {
    height: 4rem;
    width: 100%;
    text-align: center;
  }
  .c-header-content__link > li > a figure img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
}
.c-header-content__link > li > a h3 {
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-header-content__link > li > a h3 {
    font-size: 1.4rem;
  }
}
.c-header-content__link > li > a h3 span {
  font-size: 1.4rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-header-content__link > li > a h3 span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px), print {
  .c-header-content__link > li.is-active .c-header-content__mobile-toggle > .in-bar--rotate {
    transform: translate(-50%, -50%);
  }
  .c-header-content__link > li.is-active .c-header-content__sub-link {
    max-height: 30rem;
    padding-top: 1.7rem;
  }
}
.c-header-content__mobile-toggle {
  display: none;
}
@media screen and (max-width: 768px), print {
  .c-header-content__mobile-toggle {
    display: block;
    position: absolute;
    width: 6rem;
    height: 7rem;
    top: 0;
    right: 0;
    border: none;
    background-color: transparent;
  }
  .c-header-content__mobile-toggle > .in-bar {
    width: 1.4rem;
    height: 0.2rem;
    background-color: #5171CB;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .c-header-content__mobile-toggle > .in-bar--rotate {
    transform: translate(-50%, -50%) rotate(-90deg);
    transition: transform 0.3s;
  }
}
@media screen and (max-width: 768px), print {
  .c-header-content__sub-link {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s, padding 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .c-header-content__sub-link > li a {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .c-header-content__sub-link > li a > .in-angle {
    width: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  .c-header-content__sub-link > li a > .in-text {
    font-size: 1.2rem;
  }
}
.c-header-content__nav {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}
.c-header-content .c-h-nav {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #DDE2EA;
}
.c-header-content .c-h-nav svg {
  width: 0.6rem;
  overflow: inherit;
}
.c-header-content .c-h-nav span {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-left: 0.5rem;
}
.c-header-content .c-h-nav-noborder {
  border-bottom: none;
}
.c-header-search {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  padding: 2rem;
  top: 5.6rem;
  background: #FFF;
  transform: translateX(100%);
  transition: 0.3s all;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .c-header-search {
    display: none;
  }
}
.is-s-open .c-header-search {
  pointer-events: auto;
  transform: translate(0);
}

.c-header-search .c-search-keyword {
  padding-top: 4rem;
}
.c-header-search .c-search-keyword input {
  height: 4rem;
}
.c-header-search__close {
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: #5171CB;
  top: 3rem;
  right: 2rem;
}
.c-header-search__close > span {
  position: absolute;
  width: 1rem;
  height: 1px;
  background: #FFF;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-header-search__close > span:first-of-type {
  transform: translate(-50%, -50%) rotate(135deg);
}
.c-header-search__close > span:last-of-type {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.js-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #919499;
  mix-blend-mode: multiply;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}
.is-mega-open .js-overlay {
  opacity: 1;
}

.c-footer {
  background: #0D1625;
}
.c-footer-wrap {
  padding: 6rem 8rem 6.5rem 8rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-footer-wrap {
    flex-direction: column;
    padding: 4.8rem 2rem 4rem 2rem;
  }
}
.c-footer-wrap__logo img {
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .c-footer-wrap__logo {
    text-align: center;
  }
}
.c-footer-wrap__link {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .c-footer-wrap__link {
    margin-top: 2rem;
    text-align: center;
  }
}
.c-footer-wrap__link a {
  display: inline-flex;
  padding: 0 1.6rem 0 2rem;
  border-radius: 2.5rem;
  height: 4rem;
  border: 1px solid #FFFFFF;
  align-items: center;
  -moz-column-gap: 0.7rem;
       column-gap: 0.7rem;
}
.c-footer-wrap__link a > div {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.7rem;
       column-gap: 0.7rem;
}
.c-footer-wrap__link a > div span {
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #FFF;
  font-weight: 500;
}
.c-footer-wrap__link a > svg {
  width: 1.4rem;
  overflow: inherit;
}
@media screen and (max-width: 767px) {
  .c-footer-wrap__link a > svg {
    width: 0.9rem;
  }
}
.c-footer-nav {
  display: grid;
  grid-template-columns: max-content max-content;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}
@media screen and (max-width: 767px) {
  .c-footer-nav {
    grid-template-columns: 1fr;
    row-gap: 3rem;
    margin-top: 4rem;
  }
}
.c-footer-nav > div {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.c-footer-nav > div h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #B1B4BB;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-footer-nav > div h4 {
    font-size: 1.3rem;
  }
}
.c-footer-nav__left {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.c-footer-nav .c-f-nav {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.c-footer-nav .c-f-nav svg {
  width: 0.6rem;
  overflow: inherit;
}
.c-footer-nav .c-f-nav span {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .c-footer-nav .c-f-nav span {
    font-size: 1.3rem;
  }
}
.c-footer-nav__right {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-footer-nav__right {
    display: grid;
    grid-template-rows: 1fr 1fr max-content;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    grid-auto-flow: column;
  }
}
.c-footer-nav .c-f-subnav {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .c-footer-nav .c-f-subnav {
    font-size: 1.3rem;
  }
}
.c-footer-bottom {
  border-top: 1px solid #B1B4BB;
  display: flex;
  justify-content: space-between;
  padding: 2rem 8rem;
}
@media screen and (max-width: 767px) {
  .c-footer-bottom {
    padding: 2rem;
    align-items: flex-start;
  }
}
.c-footer-bottom__sns {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  align-items: center;
}
.c-footer-bottom__link > ul {
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .c-footer-bottom__link > ul {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.c-footer-bottom__link > ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #FFF;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-footer-bottom__link > ul li a {
    font-size: 1.3rem;
  }
}
.c-footer-bottom__link > ul li .c-f-link {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.c-footer-bottom__link > ul li .c-f-link svg {
  width: 1.2rem;
  overflow: inherit;
}
@media screen and (max-width: 767px) {
  .c-footer-bottom__link > ul li .c-f-link svg {
    width: 1.1rem;
  }
}
.c-footer-bottom__link > p {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #B1B4BB;
  margin-top: 1rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .c-footer-bottom__link > p {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

.c-l-inner {
  width: 120rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-l-inner {
    width: 100%;
    padding: 0 2rem;
  }
}

.c-i-inner {
  width: 117rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-i-inner {
    width: 100%;
    padding: 0 2rem;
  }
}

.c-s-inner {
  width: 96rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-s-inner {
    width: 100%;
    padding: 0 2rem;
  }
}

.c-ttl01 {
  position: relative;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .c-ttl01 {
    font-size: 2.2rem;
  }
}
.c-ttl01::before {
  content: "";
  width: 100%;
  height: 0.4rem;
  background: #DDE2EA;
  position: absolute;
  left: 0;
  bottom: 0;
}
.c-ttl01::after {
  content: "";
  width: 10rem;
  height: 0.4rem;
  background: #5171CB;
  position: absolute;
  left: 0;
  bottom: 0;
}

.c-ttl02 {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #333333;
  padding-left: 1.1rem;
}
.c-ttl02::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: #5171CB;
  left: 0;
  top: 0;
}

.c-subttl01 {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding-left: 1.1rem;
}
@media screen and (max-width: 767px) {
  .c-subttl01 {
    font-size: 1.8rem;
  }
}
.c-subttl01::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 95%;
  background: #5171CB;
}

.c-btn01 {
  position: relative;
  background: #5171CB;
  min-width: 30rem;
  height: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.2rem;
  padding: 0 9rem;
  transition: 0.3s all;
  border: 1px solid transparent;
}
@media screen and (min-width: 768px) {
  .c-btn01:hover {
    border-color: #5171CB;
    background: #FFF;
  }
  .c-btn01:hover span {
    color: #5171CB;
  }
  .c-btn01:hover svg path {
    stroke: #5171CB;
  }
}
.c-btn01 > span {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FFF;
  transition: 0.3s all;
}
.c-btn01 svg {
  position: absolute;
  width: 0.7rem;
  overflow: inherit;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.c-btn01 svg * {
  transition: 0.3s all;
}

.c-btn02 {
  display: inline-flex;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  align-items: center;
}
.c-btn02 span {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
  transition: 0.3s all;
}
.c-btn02 svg {
  width: 1.8rem;
  overflow: inherit;
}
@media screen and (min-width: 768px) {
  .c-btn02:hover span {
    color: #5171CB;
  }
}

.c-btn03 {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 10rem;
  height: 5rem;
  background: #5171CB;
  border-radius: 3.2rem;
  border: 1px solid transparent;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn03 {
    height: 4rem;
    padding: 0 8rem;
  }
}
.c-btn03 span {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FFF;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn03 span {
    font-size: 1.4rem;
  }
}
.c-btn03 svg {
  position: absolute;
  width: 1.2rem;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
}
.c-btn03 svg * {
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .c-btn03:hover {
    border-color: #5171CB;
    background: #FFF;
  }
  .c-btn03:hover span {
    color: #5171CB;
  }
  .c-btn03:hover svg path {
    stroke: #5171CB;
  }
}

.c-article-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-article-list {
    margin-top: 2.4rem;
  }
}
.c-article-list > li a {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #DDE2EA;
}
@media screen and (min-width: 768px) {
  .c-article-list > li a:hover p {
    color: #5171CB;
  }
}
.c-article-list > li a > span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #F1F3F7;
  font-size: 1.8rem;
  font-weight: 500;
  color: #5171CB;
  font-family: "Outfit", sans-serif;
}
.c-article-list > li a > p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-article-list > li a > p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.c-contact {
  padding: 4rem 0;
  background-color: #5171CB;
}
@media screen and (max-width: 767px) {
  .c-contact {
    padding: 3rem 2rem;
  }
}
.c-contact-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .c-contact-inner {
    width: 100%;
    flex-direction: column;
    gap: 1.2rem;
  }
}
.c-contact-btn {
  width: 43.8rem;
  padding: 3rem;
  border-radius: 0.8rem;
  background: #FFF;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-contact-btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .c-contact-btn {
    padding: 1.5rem 2rem 2.2rem 2rem;
    grid-template-columns: 4.8rem 1fr;
    row-gap: 0.8rem;
    -moz-column-gap: 1.2rem;
         column-gap: 1.2rem;
    place-items: center;
    justify-items: flex-start;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-contact-btn > div {
    display: contents;
  }
}
.c-contact-btn > div > span {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.c-contact-btn > div p {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-contact-btn > div p {
    grid-column: span 2;
    font-size: 1.4rem;
  }
}
.c-contact-btn--check {
  width: 53.4rem;
}
.c-contact-btn--check p > span {
  color: #5171CB;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-contact-btn--check p > span:hover {
    opacity: 0.8;
  }
}

.c-search {
  width: 100%;
  background-color: #FFF;
  border-radius: 0.8rem;
  padding: 2.4rem;
}
.c-search > p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-search > p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
  }
}
.c-search-wrap {
  margin-top: 3rem;
}
.c-search-wrap h4 {
  font-size: 1.4rem;
  font-weight: 500;
}
.c-search-keyword form, .c-search-keyword__form {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-search-keyword form, .c-search-keyword__form {
    text-align: center;
  }
}
.c-search-keyword form input, .c-search-keyword__form input {
  width: 100%;
  padding: 1.6rem 10.5rem 1.6rem 2rem;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  border: 1px solid #B1B4BB;
}
.c-search-keyword form button, .c-search-keyword__form button {
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  display: inline-flex;
  align-items: center;
  outline: none;
  border: none;
  padding: 0 2.5rem;
  background: #5171CB;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  height: 3.4rem;
  border-radius: 4rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-search-keyword form button, .c-search-keyword__form button {
    position: static;
    height: 4rem;
    padding: 0 5rem;
    margin: 1rem auto 0 auto;
    transform: inherit;
  }
}
.c-search-keyword-s form input {
  font-size: 1.4rem;
  padding: 1.3rem 6rem 1.3rem 1.4rem;
  border: none;
}
.c-search-keyword-s form button {
  height: 2.7rem;
  font-size: 1.2rem;
  padding: 0 1.2rem;
}
.c-search-list {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  row-gap: 1rem;
}
.c-search-list li a {
  display: inline-flex;
  height: 2.1rem;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: #5171CB;
  background: #F1F3F7;
  padding: 0 1rem;
  border-radius: 2rem;
  letter-spacing: 0.04em;
  transition: 0.3s all;
}
.c-search-list li a:hover {
  color: #FFF;
  background: #5171CB;
}
.c-search-select {
  width: 40rem;
  height: 4rem;
  margin-top: 1.6rem;
  max-width: 100%;
}
.c-search-select > select {
  width: 100%;
  height: 100%;
  border: solid 1px #5171CB;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}
.c-search-select > select:active, .c-search-select > select:focus {
  outline: none;
}

.c-breadcrumb {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  padding: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    flex-wrap: wrap;
  }
}
.c-breadcrumb li {
  font-size: 1rem;
  font-weight: 500;
  color: #B1B4BB;
  letter-spacing: 0.04em;
}
.c-breadcrumb li a {
  color: #333333;
  position: relative;
  transition: color 0.3s, opacity 0.3s;
}
@media (hover: hover) {
  .c-breadcrumb li a:hover {
    color: #5171CB;
    opacity: 0.8;
  }
}
.c-breadcrumb li a::after {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #B1B4BB;
  border-left: 0;
  border-bottom: 0;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.c-pagetop {
  position: fixed;
  width: 5rem;
  height: 5rem;
  background: #5171CB;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 1.5rem;
  bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    width: 4.3rem;
    height: 4.3rem;
    right: 1rem;
    bottom: 2rem;
  }
}
.c-pagetop svg {
  width: 2.4rem;
  overflow: inherit;
}
@media screen and (max-width: 767px) {
  .c-pagetop svg {
    width: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .c-mv {
    display: flex;
    flex-direction: column-reverse;
  }
}
.c-mv-inner {
  background: #DDE2EA;
  padding: 4rem 0;
}
.c-mv-inner-s {
  padding: 2rem 0;
}
.c-mv-ttl {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-mv-ttl {
    font-size: 2.2rem;
  }
}
.c-mv-ttl.text-left {
  text-align: start;
}
.c-mv .c-search {
  margin-top: 1.6rem;
  padding: 3rem 7rem;
}
@media screen and (max-width: 767px) {
  .c-mv .c-search {
    margin-top: 2.4rem;
    padding: 2.4rem 2rem;
  }
}

.c-pagenavi {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-pagenavi {
    margin-top: 3rem;
  }
}
.c-pagenavi .wp-pagenavi {
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  font-size: 1.8rem;
  font-weight: 500;
}
.c-pagenavi .wp-pagenavi .current {
  position: relative;
  color: #FFF;
  margin: 0 1rem;
}
.c-pagenavi .wp-pagenavi .current::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background: #5171CB;
  border-radius: 50%;
  z-index: -1;
}

.l-faq-archive-inner {
  display: flex;
  flex-direction: column;
}
.l-faq-archive-inner--reverse {
  flex-direction: column-reverse;
}

.c-block-editor *:first-child, .editor-styles-wrapper *:first-child {
  margin-top: 0;
}
.c-block-editor h2, .editor-styles-wrapper h2 {
  font-size: 2.4rem;
  margin-block: 6rem 2rem;
  padding-top: 6rem;
  border-top: solid 1px #eeeeee;
}
@media screen and (max-width: 768px), print {
  .c-block-editor h2, .editor-styles-wrapper h2 {
    font-size: 1.8rem;
    margin-block: 3rem 2rem;
    padding-top: 0;
    border-top: none;
  }
}
.c-block-editor h2:first-child, .editor-styles-wrapper h2:first-child {
  padding-top: 0;
  border-top: none;
}
.c-block-editor h3, .editor-styles-wrapper h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-block: 5rem 1rem;
}
@media screen and (max-width: 768px), print {
  .c-block-editor h3, .editor-styles-wrapper h3 {
    font-size: 1.4rem;
    margin-block-start: 3rem 1rem;
  }
}
.c-block-editor p, .editor-styles-wrapper p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px), print {
  .c-block-editor p, .editor-styles-wrapper p {
    font-size: 1.4rem;
  }
}
.c-block-editor ul, .c-block-editor ol, .editor-styles-wrapper ul, .editor-styles-wrapper ol {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px), print {
  .c-block-editor ul, .c-block-editor ol, .editor-styles-wrapper ul, .editor-styles-wrapper ol {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px), print {
  .c-block-editor table, .editor-styles-wrapper table {
    width: 100% !important;
  }
}
.c-block-editor table td, .c-block-editor table th, .editor-styles-wrapper table td, .editor-styles-wrapper table th {
  padding: 1rem 1.6rem;
  font-size: 1.4rem;
  line-height: 1.8;
  border-color: #b6bbc2;
}
.c-block-editor table td span, .c-block-editor table th span, .editor-styles-wrapper table td span, .editor-styles-wrapper table th span {
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px), print {
  .c-block-editor table td span, .c-block-editor table th span, .editor-styles-wrapper table td span, .editor-styles-wrapper table th span {
    font-size: 1.4rem;
  }
}
.c-block-editor table th, .editor-styles-wrapper table th {
  text-align: center;
  background-color: #f1f3f7;
}
.c-block-editor a, .editor-styles-wrapper a {
  color: #5171cb;
}
.c-block-editor iframe, .editor-styles-wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: 2rem;
}
.c-block-editor figure, .editor-styles-wrapper figure {
  margin-block: 2rem;
}
.c-block-editor .audioBox, .editor-styles-wrapper .audioBox {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 1rem;
}
.c-block-editor .audioBox .numSquare, .editor-styles-wrapper .audioBox .numSquare {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #232d4c;
  color: white;
  font-weight: bold;
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (max-width: 768px), print {
  .c-block-editor .audioBox .sp-w200, .editor-styles-wrapper .audioBox .sp-w200 {
    width: 20rem;
  }
}

.c-release-block-editor {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.c-release-block-editor *:first-child {
  margin-top: 0;
}
.c-release-block-editor p {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-release-block-editor p {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.4;
  }
  .c-release-block-editor p:nth-child(n+2) {
    margin-top: 1.6rem;
  }
}
.c-release-block-editor h2 {
  width: 100%;
  border-bottom: 1px solid #182B4D;
  margin-block: 4.6rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-release-block-editor h2 {
    margin-top: 4rem;
  }
}
.c-release-block-editor h2 span {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 4.4rem;
  padding: 0 4.3rem 0 1.8rem;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #FFF;
}
.c-release-block-editor h2 span::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #182B4D;
  left: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
}
.c-release-block-editor h3 {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #182B4D;
  padding-left: 3rem;
  margin-block: 2.4rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-release-block-editor h3 {
    margin-top: 2.4rem;
  }
}
.c-release-block-editor h3::before, .c-release-block-editor h3::after {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 2.7rem;
  top: 0;
}
.c-release-block-editor h3::before {
  background: #182B4D;
  left: 0;
}
.c-release-block-editor h3::after {
  background: #182B4D;
  opacity: 0.5;
  left: 0.8rem;
}
.c-release-block-editor ul {
  padding-left: 2rem;
  margin-block: 1.8rem 4.5rem;
}
.c-release-block-editor ul li {
  list-style-type: disc;
}

.c-highlight {
  background-color: #fff6b3;
  color: #cd485e;
}

.c-contact-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-contact-list {
    row-gap: 3rem;
  }
}
.c-contact-list__item {
  display: grid;
  grid-template-columns: 1fr 65rem;
}
@media screen and (max-width: 767px) {
  .c-contact-list__item {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
}
.c-contact-list__title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 1.5rem;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-contact-list__title {
    margin-top: 0;
  }
}
.c-contact-list__required {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #FFF;
  height: 2.1rem;
  background: #E23A4D;
  border-radius: 0.4rem;
  padding: 0 0.6rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-contact-list__required {
    margin-top: 0.3rem;
  }
}
.c-contact-list__data {
  width: 100%;
  font-size: 1.6rem;
}
.c-contact-list__data input[type=text], .c-contact-list__data input[type=email], .c-contact-list__data input[type=tel] {
  width: 100%;
  height: 6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #F1F3F7;
  border: none;
  padding: 1.6rem;
  font-size: 1.6rem;
  border-radius: 0.4rem;
}
.c-contact-list__data select {
  width: 100%;
  height: 6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #F1F3F7;
  border: none;
  padding: 1.6rem;
  font-size: 1.6rem;
  border-radius: 0.4rem;
  color: #8a8a8a;
}
@media screen and (max-width: 767px) {
  .c-contact-list__data select {
    height: auto;
  }
}
.c-contact-list__data textarea {
  width: 100%;
  height: 14rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #F1F3F7;
  border: none;
  padding: 1.6rem;
  font-size: 1.6rem;
  border-radius: 0.4rem;
}
.c-contact-list__data .selectArea {
  position: relative;
}
.c-contact-list__data .selectArea::after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border: 3px solid #B1B4BB;
  border-left: 0;
  border-bottom: 0;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-contact-list__data .selectArea::after {
    border: 2px solid #B1B4BB;
    border-left: 0;
    border-bottom: 0;
    transform: translateY(-50%) translateY(-0.2rem) rotate(135deg);
  }
}
.c-contact-list__data .fileArea {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}
.c-contact-list__data .fileArea li {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-contact-list__data .fileArea li {
    height: 5rem;
    font-size: 1.5rem;
  }
}
.c-contact-list__data .fileArea li .c-up-file {
  display: flex;
  align-items: center;
  padding: 0 1.6rem;
  height: 6rem;
  border: 1px solid #B1B4BB;
  border-radius: 0.4rem;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.c-contact-list__data .fileArea li .c-up-file__title {
  width: 18rem;
  color: #FFF;
  background: #5171CB;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-contact-list__data .fileArea li .c-up-file input {
  display: none;
}
.c-contact-list__data .fileArea li .c-up-file__name {
  width: 100%;
  height: 6rem;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  background-color: white;
  padding-left: 1rem;
}
.c-contact-list__data .caption {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.c-contact-list__data .caption p {
  margin-top: 0.8rem;
}
.c-contact-list__data .caption p + p {
  margin-top: 1.6rem;
}
.c-contact-list__data .caption .num {
  counter-reset: listnum;
  list-style: none;
}
.c-contact-list__data .caption .num > li {
  position: relative;
  padding-left: 1.5rem;
}
.c-contact-list__data .caption .num > li::before {
  position: absolute;
  counter-increment: listnum;
  content: counter(listnum) ".";
  left: 0;
}
.c-contact-list__remarks {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px), print {
  .c-contact-list__remarks {
    font-size: 1.2rem;
  }
}
.c-contact-list__attention {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #E23A4D;
}
@media screen and (max-width: 768px), print {
  .c-contact-list__attention {
    font-size: 1.2rem;
  }
}

.c-howto-item {
  padding-left: 5rem;
  counter-increment: howtoCount;
  position: relative;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px), print {
  .c-howto-item {
    padding-bottom: 3rem;
    padding-left: 3.5rem;
  }
}
.c-howto-item:last-of-type::before {
  display: none;
}
.c-howto-item::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: calc(100% + 2rem);
  position: absolute;
  top: 1rem;
  left: 1.8rem;
  background-color: rgb(200, 200, 200);
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px), print {
  .c-howto-item::before {
    left: 1.4rem;
    width: 0.3rem;
    height: 100%;
  }
}
.c-howto-item h2 {
  margin-left: -5rem !important;
  position: relative;
  padding-left: 4.5rem;
}
@media screen and (max-width: 768px), print {
  .c-howto-item h2 {
    margin-left: -3.5rem !important;
    padding-left: 3.5rem;
  }
}
.c-howto-item h2::before {
  content: counter(howtoCount);
  display: flex;
  width: 3.6rem;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgb(44, 182, 150);
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 768px), print {
  .c-howto-item h2::before {
    width: 2.8rem;
    font-size: 1.4rem;
  }
}

.c-accordion {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px), print {
  .c-accordion {
    font-size: 1.4rem;
  }
}
.c-accordion__title {
  padding: 2rem 4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: #f1f3f7;
  cursor: pointer;
}
@media screen and (max-width: 768px), print {
  .c-accordion__title {
    padding: 2rem;
  }
}
.c-accordion__title::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border: 0;
  border-bottom: solid 0.2rem #333;
  border-right: solid 0.2rem #333;
  transform: rotate(45deg);
  margin-top: 0.8rem;
}
.c-accordion__contents-inner {
  padding: 2rem 4rem;
}
@media screen and (max-width: 768px), print {
  .c-accordion__contents-inner {
    padding: 2rem;
  }
}

.p-top .s-mv {
  position: relative;
  margin-top: 13rem;
  width: 100%;
  padding: 4rem 0;
  background: #585F6B;
}
@media screen and (max-width: 767px) {
  .p-top .s-mv {
    height: 100%;
    padding: 12rem 2rem 2rem 2rem;
    margin-top: 0;
  }
}
.p-top .s-mv::before {
  content: "";
  position: absolute;
  width: 25.7rem;
  height: 26.2rem;
  background: url(../images/common/bg-logo.png);
  background-size: cover;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top .s-mv::before {
    width: 13.9rem;
    height: 14.1rem;
    left: 1.2rem;
    top: 6rem;
    transform: inherit;
  }
}
.p-top .s-mv-inner {
  width: 111rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 60.6rem;
  -moz-column-gap: 6.5rem;
       column-gap: 6.5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top .s-mv-inner {
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 5rem;
  }
  .p-top .s-mv-inner figure {
    padding: 0 2rem;
  }
}
.p-top .s-anchor {
  padding: 2rem 0;
  background: #DDE2EA;
}
@media screen and (max-width: 767px) {
  .p-top .s-anchor {
    padding: 1.5rem 1rem;
  }
}
.p-top .s-anchor ul {
  display: grid;
  grid-template-columns: repeat(2, 38rem);
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top .s-anchor ul {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 0.8rem;
         column-gap: 0.8rem;
  }
}
.p-top .s-anchor ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #5171CB;
  padding: 1rem 0;
  border-radius: 0.4rem;
  -moz-column-gap: 0.3rem;
       column-gap: 0.3rem;
  box-shadow: 0 2px 10px rgba(0, 26, 75, 0.1);
}
.p-top .s-anchor ul li a svg {
  width: 2rem;
  overflow: inherit;
}
.p-top .s-anchor ul li a > span {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top .s-anchor ul li a > span {
    font-size: 1.4rem;
  }
}
.p-top .s-category {
  background: #F5F5F5;
  padding: 5rem 0 6rem 0;
}
@media screen and (max-width: 767px) {
  .p-top .s-category {
    padding: 2.4rem 0 3rem 0;
  }
}
.p-top .s-category h2 {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top .s-category h2 {
    font-size: 2.2rem;
  }
}
.p-top .s-category ul {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  row-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top .s-category ul {
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
  }
}
.p-top .s-category ul li a {
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem 2.4rem 2rem;
  border-radius: 0.8rem;
  background: #FFF;
  box-shadow: 0 2px 10px rgba(0, 26, 76, 0.12);
}
.p-top .s-category ul li a * {
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-top .s-category ul li a {
    padding: 1.5rem 2.4rem 2.4rem 2.4rem;
  }
}
.p-top .s-category ul li a > p {
  margin-top: 2.4rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 0 1rem 2rem 1rem;
  min-height: 7rem;
}
@media screen and (max-width: 767px) {
  .p-top .s-category ul li a > p {
    padding: 0 0 2rem 0;
  }
}
@media screen and (min-width: 768px) {
  .p-top .s-category ul li a:hover .s-category-more {
    color: #5171CB;
  }
}
.p-top .s-category-desc {
  display: grid;
  grid-template-columns: 9rem 1fr;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top .s-category-desc {
    grid-template-columns: 8.6rem 1fr;
  }
}
.p-top .s-category-desc h3 {
  text-align: left;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top .s-category-desc h3 {
    font-size: 2rem;
  }
}
.p-top .s-category-desc h3 span {
  font-size: 1.8rem;
  display: block;
}
.p-top .s-category-more {
  margin-left: auto;
  margin-right: 1rem;
  display: flex;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top .s-category-more {
    margin-right: 0;
  }
}
.p-top .s-category-more span {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
}
.p-top .s-category-more svg {
  width: 1.8rem;
  overflow: inherit;
}
.p-top .s-category-btn {
  margin-top: 4rem;
  text-align: center;
}
.p-top .s-article {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .p-top .s-article {
    padding: 4rem 0;
  }
}
.p-top .s-article-inner {
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
}
.p-top .s-article-btn {
  margin-top: 2rem;
  text-align: right;
}
.p-top .s-release {
  border-top: 1.3rem solid #F5F5F5;
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .p-top .s-release {
    border-top: 2rem solid #F5F5F5;
    padding: 4rem 0;
  }
}
.p-top .s-release ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-top .s-release ul {
    margin-top: 0;
  }
}
.p-top .s-release ul li {
  border-bottom: 1px solid #DDE2EA;
}
.p-top .s-release ul li a {
  padding: 2rem 0 1.4rem 0;
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top .s-release ul li a {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1rem;
  }
}
.p-top .s-release ul li a .top-desc {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.p-top .s-release ul li a .top-desc-date {
  max-width: 10rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-top .s-release ul li a .top-desc-cat {
  min-width: 13.6rem;
  height: 2.7rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0 1rem;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  border-radius: 2rem;
}
.p-top .s-release ul li a .top-desc-cat--release {
  background: #182B4D;
}
.p-top .s-release ul li a .top-desc-cat--maintenance {
  background: #D8A936;
}
.p-top .s-release ul li a .top-desc-cat--failure {
  background: #D55169;
}
.p-top .s-release ul li a .bottom-ttl {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-top .s-release-btn {
  margin-top: 2rem;
  text-align: right;
}

.p-subpage {
  overflow: hidden;
  margin-top: 14.5rem;
}
@media screen and (max-width: 767px) {
  .p-subpage {
    margin-top: 5.6rem;
  }
}
.p-subpage .s-category {
  background: #F5F5F5;
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-category {
    padding: 2.4rem 0 3rem 0;
  }
}
.p-subpage .s-category h2 {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-category h2 {
    font-size: 2.2rem;
  }
}
.p-subpage .s-category ul {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-category ul {
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
  }
}
.p-subpage .s-category ul li a {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  background: #FFF;
  box-shadow: 0 2px 10px rgba(0, 26, 76, 0.12);
  border: 1px solid transparent;
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .p-subpage .s-category ul li a:hover {
    border-color: #5171CB;
  }
}
.p-subpage .s-category-desc {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-category-desc {
    grid-template-columns: 8.6rem 1fr;
  }
}
.p-subpage .s-category-desc h3 {
  text-align: left;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}
.p-subpage .s-category-desc h3 span {
  font-size: 1.5rem;
  display: block;
}
.p-subpage .s-category-more {
  margin-left: auto;
  margin-right: 1rem;
  display: flex;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-category-more {
    margin-right: 0;
  }
}
.p-subpage .s-category-more span {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
}
.p-subpage .s-category-more svg {
  width: 1.8rem;
  overflow: inherit;
}
.p-subpage .s-category-btn {
  margin-top: 4rem;
  text-align: center;
}
.p-subpage .s-article {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-article {
    padding: 4rem 0;
  }
}
.p-subpage .s-article-inner {
  position: relative;
  display: flex;
  flex-direction: column;
}
.p-subpage .s-article-inner > div:not(:last-of-type):not(.s-result-num) {
  position: relative;
  padding-bottom: 5rem;
  margin-bottom: 6rem;
}
.p-subpage .s-article-inner .s-result-num {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-article-inner .s-result-num {
    margin-bottom: 2rem;
  }
}
.p-subpage .s-article-table {
  margin-top: 3rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-article-table {
    width: 100%;
    overflow-x: scroll;
  }
}
.p-subpage .s-article-table table {
  border-color: #B1B4BB;
  border-collapse: collapse;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-article-table table {
    width: 64.8rem;
  }
}
.p-subpage .s-article-table table tr th {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: left;
  background: #F1F3F7;
  padding: 1rem 1.6rem;
}
.p-subpage .s-article-table table tr th:not(:last-of-type) {
  width: 17rem;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-article-table table tr th:not(:last-of-type) {
    width: 10rem;
  }
}
.p-subpage .s-article-table table tr td {
  font-size: 1.6rem;
  vertical-align: top;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 1.6rem;
}
.p-subpage .s-article-list {
  margin-top: 3rem;
}
.p-subpage .s-article-list dl {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.p-subpage .s-article-list dl > div {
  border-radius: 0.4rem;
  border: 1px solid #B1B4BB;
  overflow: hidden;
}
.p-subpage .s-article-list dl > div dt {
  position: relative;
  background: #F1F3F7;
  padding: 1rem 2rem;
  border-bottom: 1px solid #B1B4BB;
}
.p-subpage .s-article-list dl > div dt p {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.p-subpage .s-article-list dl > div dt > span {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  right: 1rem;
  top: 1.7rem;
}
.p-subpage .s-article-list dl > div dt > span > span {
  position: absolute;
  width: 1px;
  height: 100%;
  background: #333333;
}
.p-subpage .s-article-list dl > div dt > span > span:last-of-type {
  transform: rotate(90deg);
}
.p-subpage .s-article-list dl > div dd {
  padding: 1.5rem 2rem;
}
.p-subpage .s-article-list dl > div dd > ul {
  display: grid;
  grid-template-columns: max-content 18rem 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
.p-subpage .s-article-list dl > div dd > ul li.os {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-subpage .s-article-list dl > div dd > ul li.os > span {
  color: #B1B4BB;
  display: block;
}
.p-subpage .s-article-list dl > div dd > ul li.operation {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.p-subpage .s-article-list dl > div dd > ul li.operation .maru {
  display: block;
  margin-bottom: 0.5rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 3px solid #D55169;
}
.p-subpage .s-article-list dl > div dd > ul li.text {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.p-subpage .s-article-list dl > div dd > ul li:not(:first-child) {
  position: relative;
}
.p-subpage .s-article-list dl > div dd > ul li:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #B1B4BB;
  position: absolute;
  left: -2rem;
  top: 0;
}
.p-subpage .s-result {
  padding-top: 6rem;
}
.p-subpage .s-result-num {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-subpage .s-result-num > span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 0.5rem;
  color: #5171CB;
}
.p-subpage .s-result .s-article {
  padding-top: 0;
  margin-top: 4rem;
}
.p-subpage .s-result-btn {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-result-btn {
    margin-top: 3rem;
  }
}
.p-subpage .s-release {
  margin-bottom: 10rem;
}
.p-subpage .s-release-detail .date-wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release-detail .date-wrap {
    -moz-column-gap: 1.3rem;
         column-gap: 1.3rem;
  }
}
.p-subpage .s-release-detail .date-wrap .date {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-subpage .s-release-detail .date-wrap .cat {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFF;
  letter-spacing: 0.04em;
  height: 2.7rem;
  padding: 0 1rem;
  border-radius: 2rem;
  background: #182B4D;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release-detail .date-wrap .cat {
    font-size: 1.2rem;
  }
}
.p-subpage .s-release-detail h1 {
  margin-top: 1rem;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release-detail h1 {
    margin-top: 1.4rem;
    font-size: 2rem;
  }
}
.p-subpage .s-release-detail__sns {
  background: #F1F3F7;
  width: 100%;
  margin-top: 6rem;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release-detail__sns {
    margin-top: 4.4rem;
    padding: 1.6rem 0;
  }
}
.p-subpage .s-release-detail__sns ul {
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.8rem;
       column-gap: 1.8rem;
}
.p-subpage .s-release-detail__btn {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release-detail__btn {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .l-content {
    margin-top: 4.1rem;
  }
}
.p-subpage .s-release .l-content ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .l-content ul {
    margin-top: 0;
  }
}
.p-subpage .s-release .l-content ul li {
  border-bottom: 1px solid #DDE2EA;
}
.p-subpage .s-release .l-content ul li a {
  padding: 2rem 0 1.4rem 0;
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .l-content ul li a {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.2rem;
  }
}
.p-subpage .s-release .l-content ul li a .top-desc {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.p-subpage .s-release .l-content ul li a .top-desc-date {
  max-width: 10rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-subpage .s-release .l-content ul li a .top-desc-cat {
  min-width: 13.6rem;
  height: 2.7rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0 1rem;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  border-radius: 2rem;
}
.p-subpage .s-release .l-content ul li a .top-desc-cat--release {
  background: #182B4D;
}
.p-subpage .s-release .l-content ul li a .top-desc-cat--maintenance {
  background: #D8A936;
}
.p-subpage .s-release .l-content ul li a .top-desc-cat--failure {
  background: #D55169;
}
.p-subpage .s-release .l-content ul li a .bottom-ttl {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-subpage .s-release .l-content p {
  font-size: 1.6rem;
}
.p-subpage .s-release .bar {
  width: 100vw;
  height: 1rem;
  background-color: #F8F9FC;
  margin: 0 -2rem;
  margin-top: 5rem;
}
.p-subpage .s-release .r-content-banner {
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .r-content-banner {
    flex-direction: row;
    gap: 1.6rem;
  }
}
.p-subpage .s-release .r-content-search {
  margin-top: 4rem;
  background-color: #DDE2EA;
  padding: 2rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .r-content-search {
    padding: 0;
    background-color: transparent;
  }
}
.p-subpage .s-release .r-content-search p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .r-content-search p {
    text-align: left;
    padding-left: 1.2rem;
    position: relative;
  }
}
.p-subpage .s-release .r-content-search p::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: #5171CB;
  left: 0%;
  top: 0%;
}
.p-subpage .s-release .r-content-search__form {
  position: relative;
  margin-top: 1.2rem;
  border-radius: 0.4rem;
  overflow: hidden;
  border: 1px solid #B1B4BB;
}
.p-subpage .s-release .r-content-search__form input {
  position: relative;
  width: calc(100% - 5rem);
  height: 4rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0 1.2rem;
}
.p-subpage .s-release .r-content-search__form button {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 5rem;
  height: 100%;
  right: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #FFFFFF;
  background: #5171CB;
}
.p-subpage .s-release .r-content-cat {
  margin-top: 4rem;
}
.p-subpage .s-release .r-content-cat ul {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  row-gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .r-content-cat ul {
    width: 30rem;
    margin-right: auto;
  }
}
.p-subpage .s-release .r-content-cat ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFF;
  display: flex;
  padding: 0.6rem 0;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  border-radius: 2rem;
}
.p-subpage .s-release .r-content-cat ul li:first-child a {
  background: #5171CB;
}
.p-subpage .s-release .r-content-cat ul li:nth-child(2) a {
  background: #182B4D;
}
.p-subpage .s-release .r-content-cat ul li:nth-child(3) a {
  background: #D8A936;
}
.p-subpage .s-release .r-content-cat ul li:last-child a {
  background: #D55169;
}
.p-subpage .s-release .r-content-archive {
  margin-top: 4rem;
}
.p-subpage .s-release .r-content-archive__list {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .r-content-archive__list {
    border-radius: 0.4rem;
    border: 1px solid #B1B4BB;
    padding: 0 1.6rem;
  }
}
.p-subpage .s-release .r-content-archive__list > div {
  font-size: 1.6rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DDE2EA;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .r-content-archive__list > div {
    height: 5rem;
    position: relative;
    justify-content: flex-start;
    background: #FFF;
  }
  .p-subpage .s-release .r-content-archive__list > div::after {
    content: "";
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #B1B4BB;
    border-left: 0;
    border-bottom: 0;
    transform: translateY(-50%) translateY(-0.2rem) rotate(135deg);
    top: 50%;
    right: 0;
  }
  .p-subpage .s-release .r-content-archive__list > div.is-open::after {
    transform: translateY(-50%) translateY(-0.2rem) rotate(-45deg);
  }
}
.p-subpage .s-release .r-content-archive__list ul {
  border: 2px solid #DDE2EA;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .r-content-archive__list ul {
    border: none;
    display: none;
  }
}
.p-subpage .s-release .r-content-archive__list ul li {
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .r-content-archive__list ul li {
    text-align: left;
  }
}
.p-subpage .s-release .r-content-archive__list ul li:nth-child(n+2) {
  border-top: 2px solid #DDE2EA;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release .r-content-archive__list ul li:nth-child(n+2) {
    border: none;
  }
}
.p-subpage .s-release .r-content-archive__list ul li a {
  font-size: 1.6rem;
}
.p-subpage .s-release-wrap {
  width: 120rem;
  margin: 0 auto;
  margin-top: 5.6rem;
  display: grid;
  grid-template-columns: 1fr 27.4rem;
  -moz-column-gap: 9rem;
       column-gap: 9rem;
}
@media screen and (max-width: 767px) {
  .p-subpage .s-release-wrap {
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
}

.p-contact {
  margin-top: 14.5rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin-top: 5.6rem;
    margin-bottom: 7rem;
  }
}
.p-contact .s-lead {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-contact .s-lead {
    margin-top: 1rem;
  }
}
.p-contact .s-lead-wrap {
  width: -moz-fit-content;
  width: fit-content;
  padding: 3rem 3.5rem;
  margin: 0 auto;
  display: grid;
  justify-content: center;
  grid-template-columns: 6.4rem max-content;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  border: 1px solid #B1B4BB;
}
@media screen and (max-width: 767px) {
  .p-contact .s-lead-wrap {
    grid-template-columns: 6rem auto;
    -moz-column-gap: 1.4rem;
         column-gap: 1.4rem;
    padding: 1.6rem 3.4rem;
    align-items: center;
    width: 100%;
  }
}
.p-contact .s-lead-wrap p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-contact .s-lead-wrap p {
    font-size: 1.6rem;
  }
}
.p-contact .s-lead-wrap p a {
  color: #5171CB;
  text-decoration: underline;
}
.p-contact .s-lead > p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact .s-lead > p {
    margin-top: 2.4rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.p-contact .s-lead > p + p {
  margin-top: 1.6rem;
}
.p-contact .s-form {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form {
    margin-top: 5rem;
  }
}
.p-contact .s-form.confirm .c-contact-list__item {
  margin-top: 1.6rem;
}
.p-contact .s-form.confirm .c-contact-list__title {
  margin-top: 0;
}
.p-contact .s-form.confirm .selectArea::after {
  display: none;
}
.p-contact .s-form__inner > p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form__inner > p {
    margin-top: 2.4rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.p-contact .s-form-privacy {
  text-align: center;
  margin-top: 4rem;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.p-contact .s-form-privacy input[type=checkbox] {
  transform: translate(0, 0.4rem);
}
.p-contact .s-form-privacy__check {
  position: relative;
  padding-left: 3rem;
}
.p-contact .s-form-privacy__check::before {
  width: 2rem;
  height: 2rem;
  position: absolute;
  content: "";
  background: #FFF;
  border: 1px solid #5171CB;
  left: 0;
  top: 0.2rem;
  border-radius: 0.2rem;
}
.p-contact .s-form-privacy__check::after {
  position: absolute;
  content: "";
  width: 0.7rem;
  height: 1.1rem;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
}
.p-contact .s-form-privacy input[type=checkbox]:checked + .checkbox::before {
  background: #5171CB;
}
.p-contact .s-form-privacy input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}
.p-contact .s-form-privacy a {
  text-decoration: underline;
  color: #5171CB;
}
.p-contact .s-form-privacy p {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form-privacy p {
    text-align: left;
  }
}
.p-contact .s-form-btn {
  margin-top: 3.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form-btn {
    margin-top: 3rem;
  }
}
.p-contact .s-form-btn button {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 10rem;
  height: 6rem;
  background: #5171CB;
  border-radius: 3.2rem;
  font-size: 2rem;
  color: #FFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form-btn button {
    font-size: 1.6rem;
    padding: 0 4rem;
    height: 5.2rem;
  }
}

.p-404 {
  width: 100vw;
  height: 30vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-404 {
    height: 80vw;
  }
}
.p-404 h4 {
  font-size: 1.7rem;
  text-align: center;
  line-height: 2.5;
}
.p-404 .c-btn01 {
  margin-top: 3.5rem;
}

.c-l-inner.i-404 {
  top: 8rem;
}

@media screen and (max-width: 767px) {
  .p-single .s-release-wrap {
    margin-top: 4rem;
    flex-direction: column;
    row-gap: 9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single .s-release .r-content {
    position: relative;
  }
  .p-single .s-release .r-content::before {
    content: "";
    width: calc(100% + 4rem);
    height: 1rem;
    background: #F8F9FC;
    left: -2rem;
    position: absolute;
    top: -5rem;
  }
}

.p-f-single {
  margin-top: 14.5rem;
}
@media screen and (max-width: 767px) {
  .p-f-single {
    margin-top: 5.6rem;
  }
}
.p-f-single .s-detail {
  margin-top: 7rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-f-single .s-detail {
    margin-top: 3rem;
  }
}
.p-f-single .s-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 76rem;
  -moz-column-gap: 9rem;
       column-gap: 9rem;
}
@media screen and (min-width: 768px) {
  .p-f-single .s-detail-wrap {
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .p-f-single .s-detail-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-f-single .s-detail-wrap-noside {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-f-single .s-detail-wrap .l-toc {
    position: sticky;
    top: 15.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-f-single .s-detail-wrap .l-toc {
    order: 3;
    margin-top: 2rem;
    padding: 2rem 1.6rem;
    border: 1px solid #DDE2EA;
    width: 100%;
  }
}
.p-f-single .s-detail-wrap .l-toc ul {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}
.p-f-single .s-detail-wrap .l-toc ul li {
  border-bottom: 1px solid #DDE2EA;
  counter-increment: tocCounter;
}
.p-f-single .s-detail-wrap .l-toc ul li a {
  display: block;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .p-f-single .s-detail-wrap .l-toc ul li a:hover {
    color: #5171CB;
  }
}
.p-f-single .s-detail-wrap .l-toc ul li a::before {
  content: counter(tocCounter) ". ";
}
@media screen and (max-width: 767px) {
  .p-f-single .s-detail-wrap .r-content {
    display: contents;
  }
}
.p-f-single .s-detail-wrap .r-content .cat {
  display: inline-flex;
  padding: 0 1.6rem;
  background: #182B4D;
  height: 2.7rem;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FFF;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-f-single .s-detail-wrap .r-content .cat {
    order: 1;
    font-size: 1.2rem;
    padding: 0 1.2rem;
    height: 2.5rem;
  }
}
.p-f-single .s-detail-wrap .r-content .ttl {
  margin-top: 1rem;
  font-size: 3rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-f-single .s-detail-wrap .r-content .ttl {
    order: 2;
    margin-top: 0.6rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-f-single .s-detail-wrap .r-content-detail {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-f-single .s-detail-wrap .r-content-detail {
    order: 4;
  }
}
.p-f-single .s-detail-wrap .r-content-btn {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-f-single .s-detail-wrap .r-content-btn {
    order: 5;
    margin: 3rem auto 0 auto;
  }
}

.p-privacy-policy {
  margin-top: 14.5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy {
    margin-top: 5.6rem;
  }
}
.p-privacy-policy .text-16 {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 170%;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy .text-16 {
    font-size: 1.4rem;
  }
}
.p-privacy-policy .text-16.text-b {
  font-weight: bold;
  line-height: 180%;
  margin-bottom: 0.6rem;
  margin-top: 1.6rem;
}
.p-privacy-policy .no-list .text-16 {
  padding-left: 2rem;
  position: relative;
}
.p-privacy-policy .no-list .text-16::before {
  position: absolute;
  top: 0rem;
  left: 0;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 170%;
  font-weight: 500;
  color: #333;
}
.p-privacy-policy .no-list .text-16:nth-child(1)::before {
  content: "1.";
}
.p-privacy-policy .no-list .text-16:nth-child(2)::before {
  content: "2.";
}
.p-privacy-policy .no-list .text-16:nth-child(3)::before {
  content: "3.";
}
.p-privacy-policy .no-list .text-16:nth-child(4)::before {
  content: "4.";
}
.p-privacy-policy .no-list .text-16:nth-child(5)::before {
  content: "5.";
}
.p-privacy-policy .table-wrap .table-item {
  border-top: 1px solid #B1B4BB;
  border-left: 1px solid #B1B4BB;
  display: flex;
}
.p-privacy-policy .table-wrap .table-item:nth-of-type(n+2) {
  border-top: 0px solid #B1B4BB;
}
.p-privacy-policy .table-wrap .table-item .left {
  width: 21rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #DDE2EA;
  border-right: 1px solid #B1B4BB;
  border-bottom: 1px solid #B1B4BB;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy .table-wrap .table-item .left {
    width: 100%;
    max-width: 11rem;
    padding: 0.8rem;
  }
}
.p-privacy-policy .table-wrap .table-item .left.w-thick {
  width: 40.8rem;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy .table-wrap .table-item .left.w-thick {
    width: 100%;
    max-width: 21rem;
  }
}
.p-privacy-policy .table-wrap .table-item .right {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #B1B4BB;
  border-bottom: 1px solid #B1B4BB;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy .table-wrap .table-item .right {
    padding: 0.8rem;
  }
}
.p-privacy-policy .table-wrap .table-item .right .text-16 {
  padding-left: 1.8rem;
  position: relative;
}
.p-privacy-policy .table-wrap .table-item .right .text-16::before {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 9999px;
  top: 1.3rem;
  left: 0.7rem;
}
.p-privacy-policy .table-wrap .table-item .right .text-16.non-dot {
  padding-left: 0;
  position: static;
}
.p-privacy-policy .table-wrap .table-item .right .text-16.non-dot::before {
  display: none;
}
.p-privacy-policy .table-wrap .table-item .right .text-16.right-in {
  margin: 0 -2rem;
  margin-top: 2rem;
  padding-left: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #B1B4BB;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy .table-wrap .table-item .right .text-16.right-in {
    margin: 0 -0.8rem;
    margin-top: 0.8rem;
    padding-left: 0.8rem;
    padding-top: 0.8rem;
  }
}
.p-privacy-policy__main {
  padding-top: 6rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__main {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
}
.p-privacy-policy__main__wrap {
  position: relative;
  padding-bottom: 11.8rem;
  width: 96rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__main__wrap {
    width: 100%;
    padding: 0 2rem;
    padding-bottom: 11.8rem;
  }
}
.p-privacy-policy__main__wrap .t-privacy-policy {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.p-privacy-policy__main__wrap .t-privacy-policy .text-r {
  text-align: right;
}
.p-privacy-policy__main__wrap .t-handling {
  margin-top: 6rem;
}
.p-privacy-policy__main__wrap .t-handling .c-ttl01 {
  margin-bottom: 3rem;
}
.p-privacy-policy__main__wrap .t-handling .c-subttl01 {
  margin-top: 4rem;
  margin-bottom: 1.6rem;
}
.p-privacy-policy__main__wrap .mt-text {
  margin-top: 2.4rem;
}
.p-privacy-policy__main__wrap .table-wrap {
  margin-top: 1.6rem;
}
.p-privacy-policy__main__wrap .ic-policy {
  width: 10rem;
  height: 10rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__main__wrap .ic-policy {
    left: 2rem;
  }
}

.p-page {
  margin-top: 14.5rem;
}
@media screen and (max-width: 767px) {
  .p-page {
    margin-top: 5.6rem;
  }
}
.p-page__content {
  padding-block: 6rem 12rem;
}
@media screen and (max-width: 768px), print {
  .p-page__content {
    padding-block: 3rem 6rem;
  }
}/*# sourceMappingURL=styles.css.map */