:root {
  --color-main-light: #EDF3F8;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

.header {
  position: relative;
  width: 100%;
  max-width: 100%;
  background-color: #FFFFFF;
  z-index: 100;
  overflow-x: hidden;
}

.header__inner {
  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: min(100%, 1280px);
  height: 100px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width:901px) {
  .header__logo {
    margin-left: 16px;
  }
}
.header__logo a {
  font-size: 4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #023E78;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  line-height: 1;
  display: inline-block;
}
.header__logo a:hover {
  opacity: 0.7;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__nav-item {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  line-height: 1.5;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__nav-item:hover {
  opacity: 0.7;
}

.header__nav-separator {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 0;
}

.header__button-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;
  padding: 24px 32px;
  min-height: 40px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #023E78;
  text-decoration: none;
  border: 1px solid #023E78;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100%;
}
.header__button-outline:hover {
  background-color: #023E78;
  color: #FFFFFF;
}

.header__button-fill {
  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;
  padding: 22px 46px;
  min-height: 40px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  border: none;
  background-color: #023E78;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100%;
}
.header__button-fill:hover {
  background-color: #002a52;
}

.header__hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 27px;
  height: 18px;
  position: relative;
}
.header__hamburger:hover {
  opacity: 0.7;
}

.header__hamburger-icon {
  display: block;
  width: 100%;
  height: 2.25px;
  background-color: #023E78;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__hamburger-icon::before, .header__hamburger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.25px;
  background-color: #023E78;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__hamburger-icon::before {
  top: -8px;
}
.header__hamburger-icon::after {
  top: 8px;
}

.header__hamburger[aria-expanded=true] .header__hamburger-icon {
  background-color: transparent;
}
.header__hamburger[aria-expanded=true] .header__hamburger-icon::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__hamburger[aria-expanded=true] .header__hamburger-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header__menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: #023E78;
  z-index: 998;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__menu.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.header__menu-inner {
  padding: 20px;
  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;
  min-height: calc(100vh - 60px);
  padding-top: 40px;
  padding-bottom: 40px;
}

.header__menu-nav {
  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: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.header__menu-nav-item {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
}
.header__menu-nav-item:hover {
  opacity: 0.7;
}

.header__menu-buttons {
  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: 32px;
  width: 100%;
  max-width: 335px;
}

.header__menu-button-outline,
.header__menu-button-fill {
  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;
  padding: 16px 24px;
  height: 68px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

.header__menu-button-outline {
  color: #FFFFFF;
  background-color: transparent;
  border: 1px solid #FFFFFF;
}
.header__menu-button-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header__menu-button-fill {
  color: #023E78;
  background-color: #FFFFFF;
}
.header__menu-button-fill:hover {
  opacity: 0.9;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header__logo a {
    font-size: 2.8rem;
  }
  .header__right {
    gap: 10px;
  }
  .header__nav {
    gap: 6px;
  }
  .header__nav-item {
    font-size: 1rem;
  }
  .header__nav-separator {
    font-size: 1rem;
  }
  .header__buttons {
    gap: 8px;
  }
  .header__button-outline {
    padding: 10px 12px;
    font-size: 1rem;
  }
  .header__button-fill {
    padding: 10px 26px;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .header__logo a {
    font-size: 3.6rem;
  }
  .header__right {
    gap: 18px;
  }
  .header__nav {
    gap: 8px;
  }
  .header__nav-item {
    font-size: 1.2rem;
  }
  .header__nav-separator {
    font-size: 1.2rem;
  }
  .header__buttons {
    gap: 8px;
  }
  .header__button-outline {
    padding: 20px 28px;
    font-size: 1.3rem;
  }
  .header__button-fill {
    padding: 20px 40px;
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .header__logo a {
    font-size: 4rem;
  }
  .header__right {
    gap: 30px;
    margin-right: 16px;
  }
  .header__nav {
    gap: 16px;
  }
  .header__nav-item {
    font-size: 1.4rem;
  }
  .header__nav-separator {
    font-size: 1.4rem;
  }
  .header__buttons {
    gap: 10px;
  }
  .header__button-outline {
    padding: 24px 32px;
  }
  .header__button-fill {
    padding: 22px 46px;
  }
}
@media (max-width: 767px) {
  .header {
    overflow-x: hidden;
    width: 100%;
    height: 60px;
    max-width: 100vw;
    position: relative;
    z-index: 1000;
    background-color: #FFFFFF;
  }
  .header__inner {
    padding: 14px 20px;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    height: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .header__logo a {
    font-size: 2.8rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #023E78;
    line-height: normal;
    letter-spacing: 0.14px;
    text-transform: capitalize;
    margin-left: 0;
  }
  .header__right {
    gap: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .header__nav {
    display: none;
  }
  .header__nav-item {
    display: none;
  }
  .header__nav-separator {
    display: none;
  }
  .header__buttons {
    display: none;
  }
  .header__button-outline {
    display: none;
  }
  .header__button-fill {
    display: none;
  }
  .header__hamburger {
    display: block;
  }
  .header__menu {
    display: none;
  }
  .header__menu.is-active {
    display: block;
  }
  .header.is-menu-open {
    z-index: 999;
    background-color: #FFFFFF;
  }
  .header.is-menu-open::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(2, 62, 120, 0.2);
    z-index: 1000;
  }
  .header.is-menu-open .header__logo a {
    color: #023E78;
  }
  .header.is-menu-open .header__hamburger-icon {
    background-color: #023E78;
  }
  .header.is-menu-open .header__hamburger-icon::before, .header.is-menu-open .header__hamburger-icon::after {
    background-color: #023E78;
  }
  .header.is-menu-open .header__hamburger[aria-expanded=true] .header__hamburger-icon {
    background-color: transparent;
  }
  .header.is-menu-open .header__hamburger[aria-expanded=true] .header__hamburger-icon::before {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background-color: #023E78;
  }
  .header.is-menu-open .header__hamburger[aria-expanded=true] .header__hamburger-icon::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    background-color: #023E78;
  }
}
@media (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav-item {
    display: inline-block;
  }
  .header__nav-separator {
    display: inline-block;
  }
  .header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__button-outline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .header__button-fill {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .header__hamburger {
    display: none;
  }
  .header__menu {
    display: none !important;
  }
}
@media (max-width: 375px) {
  .header__logo a {
    font-size: 28px;
  }
  .header__hamburger-icon {
    height: calc(2px * 100vw / 375px);
  }
  .header__hamburger-icon::before, .header__hamburger-icon::after {
    height: calc(2px * 100vw / 375px);
  }
  .header__hamburger-icon::before {
    top: calc(-8px * 100vw / 375px);
  }
  .header__hamburger-icon::after {
    top: calc(8px * 100vw / 375px);
  }
  .header__hamburger[aria-expanded=true] .header__hamburger-icon::before {
    top: 0;
  }
  .header__hamburger[aria-expanded=true] .header__hamburger-icon::after {
    top: 0;
  }
  .header__menu-inner {
    padding: 60px 40px;
  }
  .header__menu-nav-item {
    font-size: calc(1.6rem * 100vw / 375px);
    padding: calc(12px * 100vw / 375px) 0;
  }
  .header__menu-button-outline,
  .header__menu-button-fill {
    padding: calc(16px * 100vw / 375px) calc(24px * 100vw / 375px);
    min-height: calc(48px * 100vw / 375px);
    font-size: calc(1.4rem * 100vw / 375px);
  }
}
.mainvisual {
  position: relative;
  width: 100%;
  max-width: 100vw;
  padding-bottom: 150px;
  padding-left: 50px;
  padding-right: 0;
  padding-top: 0;
  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;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}

.swiper {
  width: 600px;
  height: 300px;
}

.mainvisual__image-wrapper .swiper {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .mainvisual {
    padding-left: 30px;
    padding-right: 0;
  }
  .mainvisual__image-wrapper {
    max-width: min(1190px, 100%);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mainvisual {
    padding-left: 30px;
    padding-right: 0;
  }
  .mainvisual__image-wrapper {
    max-width: min(1190px, 100%);
  }
}
@media (min-width: 768px) {
  .mainvisual {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .mainvisual__image-wrapper {
    max-width: min(1190px, 100%);
  }
}
.mainvisual__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
  justify-items: start;
  line-height: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.mainvisual__image-wrapper {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  width: 100%;
  max-width: 1190px;
  height: 700px;
  justify-self: end;
  margin-right: 0;
  margin-top: 0;
  overflow: hidden;
  z-index: 0;
}

.mainvisual__image-wrapper--sp {
  display: none;
}

.mainvisual__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.mainvisual__slide {
  position: absolute;
  inset: 0;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

.mainvisual__slide--active {
  opacity: 1;
}

.mainvisual__image {
  position: absolute;
  inset: 0;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.mainvisual__image--pc {
  display: block;
}

.mainvisual__image--sp {
  display: none;
}

.mainvisual__subtitle {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  margin-left: 0;
  margin-top: 611px;
  display: inline-grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
  justify-items: start;
  line-height: 0;
}

.mainvisual__subtitle-inner {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  margin-left: 0;
  display: inline-grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
  justify-items: start;
  line-height: 0;
}

.mainvisual__subtitle-bg {
  grid-column: 1;
  grid-row: 1;
  width: 400px;
  height: 29px;
  background-color: #023E78;
  margin-left: 0;
  margin-top: 0;
}

.mainvisual__subtitle-text {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  line-height: normal;
  margin-left: 0;
  margin-top: 0;
}

.mainvisual__title {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  margin-left: 0;
  margin-top: 0;
  display: inline-grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
  justify-items: start;
  line-height: 0;
}

.mainvisual__title-line {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  margin-left: 0;
  margin-top: 0;
  display: inline-grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
  justify-items: start;
  line-height: 0;
}

.mainvisual__title-line--sp {
  display: none;
}

.mainvisual__title-line-bg {
  grid-column: 1;
  grid-row: 1;
  position: absolute;
  background-color: #FFFFFF;
  height: 72px;
  margin-left: 0;
  margin-top: 435px;
}

.mainvisual__title-line-bg--first {
  width: 313px;
  margin-top: 523px;
}

.mainvisual__title-line-bg--second {
  width: 466px;
}

.mainvisual__title-text {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  font-size: 6rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #023E78;
  line-height: normal;
  margin-left: 0;
  margin-top: 523px;
}

.mainvisual__title-text--second {
  margin-top: 435px;
}

@media (max-width: 767px) {
  .mainvisual {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0;
    padding-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow-x: hidden;
  }
  .mainvisual__image-wrapper {
    display: none;
  }
  .mainvisual__image-wrapper--sp {
    display: block;
    grid-column: 1;
    grid-row: 1;
    position: relative;
    width: 100%;
    max-width: 335px;
    height: 607px;
    margin-left: 21px;
    margin-right: 0;
    margin-top: 0;
    overflow: hidden;
  }
  .mainvisual__slider--sp {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .mainvisual__slider--sp .mainvisual__slide {
    position: absolute;
    height: 100%;
    left: -128.86%;
    max-width: none;
    top: 0;
    width: 271.79%;
  }
  .mainvisual__slider--sp .mainvisual__slide:nth-child(2) {
    left: -42.6%;
    width: 271.77%;
  }
  .mainvisual__slider--sp .mainvisual__slide:nth-child(3) {
    left: -63.86%;
    width: 177.23%;
  }
  .mainvisual__image--pc {
    display: none;
  }
  .mainvisual__image--sp {
    display: block;
  }
  .mainvisual__subtitle {
    margin-left: 0;
    margin-top: 563px;
  }
  .mainvisual__subtitle-inner {
    margin-top: 0;
  }
  .mainvisual__subtitle-bg {
    width: 320px;
    height: 24px;
  }
  .mainvisual__subtitle-text {
    font-size: 1.6rem;
    margin-top: 0;
  }
  .mainvisual__title {
    margin-top: 387px;
  }
  .mainvisual__title-line:nth-child(2) {
    display: none;
  }
  .mainvisual__title-line--sp {
    display: inline-grid;
  }
  .mainvisual__title-line-bg {
    height: 48px;
    margin-top: 112px;
  }
  .mainvisual__title-line-bg--first {
    width: 208px;
    margin-left: 0;
  }
  .mainvisual__title-line-bg--second {
    display: none;
  }
  .mainvisual__title-line-bg--third {
    width: 145px;
    margin-left: 0;
    margin-top: 56px;
  }
  .mainvisual__title-line-bg--fourth {
    width: 156px;
    margin-left: 0;
    margin-top: 0;
  }
  .mainvisual__title-text {
    font-size: 4rem;
    margin-top: 112px;
  }
  .mainvisual__title-text--second {
    display: none;
  }
  .mainvisual__title-text--third {
    margin-left: 0;
    margin-top: 56px;
  }
  .mainvisual__title-text--fourth {
    margin-left: 0;
    margin-top: 0;
  }
}
@media (max-width: 375px) {
  .mainvisual {
    padding-left: 5.3333333333vw;
    padding-right: 0;
  }
  .mainvisual__image-wrapper--sp {
    max-width: 89.3333333333vw;
    width: 100%;
    margin-left: 5.6vw;
  }
  .mainvisual__subtitle-bg {
    width: 85.3333333333vw;
  }
  .mainvisual__title-line-bg--first {
    width: 55.4666666667vw;
  }
  .mainvisual__title-line-bg--third {
    width: 38.6666666667vw;
  }
  .mainvisual__title-line-bg--fourth {
    width: 41.6vw;
  }
}
.about {
  position: relative;
  width: 100%;
  min-height: 800px;
  padding-bottom: 0;
}

.about__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 90px;
  padding-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.about__bg {
  position: absolute;
  top: 150px;
  left: -90px;
  width: calc(100% + 90px);
  height: 800px;
  background-image: url("../images/about-bg.svg");
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  pointer-events: none;
}

.about__bg-company {
  position: absolute;
  top: 0;
  right: 0;
  width: min(500px, 39.06%);
  height: 800px;
  pointer-events: none;
}

.about__bg-company-image {
  position: absolute;
  inset: 0;
  background-image: url("../images/about-bg-company.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about__bg-company-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(2, 62, 120, 0.8);
}

.about__contents {
  position: relative;
  top: 104px;
  left: 0;
  width: 100%;
  max-width: 1100px;
}

.about__section-top {
  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%;
}

.about__hgroup {
  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;
  color: #023E78;
}

.about__hgroup-title {
  font-size: 10rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  margin: 0;
}

.about__hgroup-subtitle {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.about__button-more {
  position: relative;
  width: 288px;
  height: 51px;
  display: block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.about__button-more:hover {
  opacity: 0.7;
}

.about__button-more--white .about__button-more-text {
  margin-top: 0;
  color: #FFFFFF;
}

.about__button-more-text {
  font-size: 3.2rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  text-align: left;
  margin-right: 0;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 15.69%;
  bottom: 9.8%;
}

.about__button-more-arrow {
  position: absolute;
  width: 288px;
  top: -2.94%;
  right: 0;
  bottom: -2.94%;
  left: -1.24%;
  background-image: url("../images/arrow-white.svg");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.about__content {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .about__content::before {
    content: "";
    width: 34.45%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .about__img-company {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.about__text {
  width: 34.45%;
  margin-top: 81px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
}

.about__contents {
  position: relative;
}

.about__contents > .about__text {
  position: absolute;
  top: 178px;
  left: 0;
  width: 34.45%;
  margin-top: 81px;
  display: block;
}

.about__img-company {
  width: 61.91%;
  height: 426px;
  position: relative;
  overflow: hidden;
}

.about__img-company-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}

.about__img-company-img--pc {
  display: block;
}

.about__img-company-img--sp {
  display: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
  .about__bg {
    left: -40px;
    width: calc(100% + 40px);
  }
  .about__hgroup-title {
    font-size: 7.2rem;
  }
  .about__hgroup-subtitle {
    font-size: 2rem;
  }
  .about__button-more {
    width: 240px;
    height: 45px;
  }
  .about__button-more-text {
    font-size: 2.8rem;
  }
  .about__text {
    width: 35%;
    margin-top: 60px;
    font-size: 1.3rem;
  }
  .about__img-company {
    width: 60%;
    height: 360px;
  }
  .about__service {
    margin-top: 300px;
    padding-bottom: 60px;
  }
  .about__service-header {
    margin-bottom: 60px;
  }
  .about__service-hgroup-title {
    font-size: 7.2rem;
  }
  .about__service-hgroup-subtitle {
    font-size: 2rem;
  }
  .about__service-button-more-text {
    font-size: 2.8rem;
  }
  .about__service-icon {
    width: 100px;
    height: 42px;
  }
  .about__service-items {
    gap: 50px;
  }
  .about__service-item-image-wrapper {
    height: 350px;
  }
  .about__service-item-title {
    font-size: 2.4rem;
    width: 200px;
    height: 38px;
  }
  .about__service-item-description {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .about__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
  .about__bg {
    left: -40px;
    width: calc(100% + 40px);
  }
  .about__hgroup-title {
    font-size: 8.5rem;
  }
  .about__hgroup-subtitle {
    font-size: 2.2rem;
  }
  .about__button-more {
    width: 260px;
    height: 48px;
  }
  .about__button-more-text {
    font-size: 3rem;
  }
  .about__text {
    width: 34.45%;
    margin-top: 70px;
    font-size: 1.3rem;
  }
  .about__img-company {
    width: 61.91%;
    height: 380px;
  }
  .about__service {
    margin-top: 320px;
    padding-bottom: 70px;
  }
  .about__service-header {
    margin-bottom: 70px;
  }
  .about__service-hgroup-title {
    font-size: 8.5rem;
  }
  .about__service-hgroup-subtitle {
    font-size: 2.2rem;
  }
  .about__service-button-more-text {
    font-size: 3rem;
  }
  .about__service-icon {
    width: 110px;
    height: 46px;
  }
  .about__service-items {
    gap: 60px;
  }
  .about__service-item-image-wrapper {
    height: 400px;
  }
  .about__service-item-title {
    font-size: 2.6rem;
    width: 210px;
    height: 40px;
  }
  .about__service-item-description {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .about {
    min-height: 826px;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }
  .about__bg {
    position: absolute;
    margin-top: 167px;
    top: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    height: 854px;
    background-image: url("../images/about-bg-sp.svg");
    background-size: 100% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
  }
  .about__inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0;
    position: relative;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: visible;
  }
  .about__bg-company {
    display: none;
  }
  .about__contents {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 355px;
    padding-top: 0;
    padding-bottom: 0;
    display: inline-grid;
    grid-template-columns: -webkit-max-content;
    grid-template-columns: max-content;
    grid-template-rows: -webkit-max-content;
    grid-template-rows: max-content;
    justify-items: start;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
  .about__section-top {
    display: contents;
  }
  .about__hgroup {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    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;
    margin-left: 0;
    margin-top: 60px;
    margin-bottom: 0;
    color: #023E78;
  }
  .about__section-top .about__button-more {
    display: none !important;
  }
  .about__hgroup-title {
    font-size: 5.2rem;
    font-family: "Fira Sans", sans-serif;
    font-weight: 500;
    font-style: italic;
    line-height: normal;
    margin: 0;
  }
  .about__hgroup-subtitle {
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    line-height: normal;
    margin: 0;
  }
  .about__button-more {
    width: 190px;
    height: 40px;
  }
  .about__button-more-text {
    font-size: 2rem;
    margin-right: 55.79%;
  }
  .about__button-more-arrow {
    position: absolute;
    top: -2.5%;
    right: 0;
    bottom: -2.5%;
    left: -1.19%;
    width: 100%;
    height: 100%;
    background-image: url("../images/arrow-white-sp.svg");
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    overflow: visible;
  }
  .about__content .about__text {
    display: none !important;
  }
  .about__contents > .about__text {
    display: block !important;
    grid-column: 1;
    grid-row: 1;
    position: relative;
    width: 100%;
    max-width: 335px;
    margin-left: 0;
    top: 208px;
    margin-top: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 24px;
    color: #1a1a1a;
  }
  .about__content {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    display: inline-grid;
    grid-template-columns: -webkit-max-content;
    grid-template-columns: max-content;
    grid-template-rows: -webkit-max-content;
    grid-template-rows: max-content;
    justify-items: start;
    line-height: 0;
    margin-left: 0;
    margin-top: 526px;
  }
  .about__img-company {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    width: 100%;
    max-width: 335px;
    height: 210px;
    margin-left: 0;
    margin-top: 40px;
    overflow: hidden;
    z-index: 3;
  }
  .about__img-company-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    pointer-events: none;
  }
  .about__img-company-img--pc {
    display: none;
  }
  .about__img-company-img--sp {
    display: block;
  }
  .about__button-more--sp {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    margin-left: auto;
    margin-top: 280px;
    z-index: 5;
    max-width: 190px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 190px;
    height: 40px;
    display: block !important;
  }
  .about__content::before {
    content: "";
    grid-column: 1;
    grid-row: 1;
    position: relative;
    width: 295px;
    height: 360px;
    margin-left: 60px;
    margin-top: 0;
    background-image: url("../images/about-bg-company-sp.png");
    background-repeat: no-repeat;
    background-position: -57.78% 0;
    background-size: 215.56% 100%;
    z-index: 1;
    overflow: hidden;
  }
  .about__content::after {
    content: "";
    grid-column: 1;
    grid-row: 1;
    position: relative;
    width: 295px;
    height: 360px;
    margin-left: 60px;
    margin-top: 0;
    background-image: url("../images/about-bg-company-sp.png");
    background-repeat: no-repeat;
  }
}
@media (min-width: 768px) {
  .about__button-more--sp {
    display: none !important;
  }
}
@media (max-width: 375px) {
  .about__inner {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
  .about__contents {
    max-width: 94.6666666667vw;
    width: 100%;
  }
  .about__contents > .about__text {
    max-width: 89.3333333333vw;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .about__contents > .about__text p {
    width: 100%;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .about__content {
    width: 100%;
    max-width: 100%;
  }
  .about__img-company {
    max-width: 89.3333333333vw;
    width: 100%;
  }
  .about__content::before,
  .about__content::after {
    width: 78.6666666667vw;
    margin-left: 16vw;
  }
  .about__button-more--sp {
    margin-right: 18px;
    margin-left: auto;
    max-width: 190px;
  }
  .about__service-bg {
    top: 587.2vw;
    height: 314.1333333333vw;
  }
}
.about__service {
  position: relative;
  width: 100%;
  margin-top: 362px;
  padding-bottom: 109px;
}

.about__service-header {
  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%;
  margin-bottom: 85px;
}

.about__service-hgroup {
  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;
  color: #023E78;
}

.about__service-hgroup-title {
  font-size: 10rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  margin: 0;
}

.about__service-hgroup-subtitle {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  height: 29px;
}

.about__service-header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
}

.about__service-button-more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.about__service-button-more:hover {
  opacity: 0.7;
}

.about__service-button-more-text {
  font-size: 3.2rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  color: #023E78;
}

.about__service-icon {
  width: 121px;
  height: 51px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about__service-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  width: 100%;
  margin-bottom: 109px;
  position: relative;
  z-index: 2;
}

.about__service-item {
  position: relative;
  -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;
}

.about__service-item:nth-child(2) {
  margin-top: 60px;
}

.about__service-item:nth-child(3) {
  margin-top: 120px;
}

.about__service-item-number {
  position: absolute;
  top: -55px;
  right: 0;
  width: auto;
  height: auto;
  z-index: 3;
  pointer-events: none;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}
.about__service-item-number--01 {
  background-image: url("../images/service-number-01.png");
  width: 102px;
  height: 123px;
}
.about__service-item-number--02 {
  background-image: url("../images/service-number-02.png");
  width: 106px;
  height: 120px;
}
.about__service-item-number--03 {
  background-image: url("../images/service-number-03.png");
  width: 106px;
  height: 120px;
}

.about__service-item-image-wrapper {
  position: relative;
  width: 100%;
  height: 427px;
  overflow: visible;
}

.about__service-item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about__service-item-title {
  position: absolute;
  width: 224px;
  height: 41px;
  bottom: 33px;
  left: -32px;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #023E78;
  line-height: 1.4;
  margin: 0;
  background-color: #FFFFFF;
  z-index: 2;
  white-space: nowrap;
}

.about__service-item:nth-child(2) .about__service-item-title,
.about__service-item:nth-child(3) .about__service-item-title {
  width: auto;
  height: auto;
  white-space: normal;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: transparent;
  gap: 8px;
  padding: 0;
  left: -32px;
}

.about__service-item-title-line {
  display: inline-block;
  background-color: #FFFFFF;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.about__service-item-content {
  position: relative;
  background-color: color-main-light;
  padding-top: 14px;
  z-index: 2;
}

.about__service-item-description {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 24px;
  margin: 0;
}

.about__service-bg {
  position: absolute;
  top: 1514px;
  left: 0;
  width: 100vw;
  height: 62.5vw;
  min-height: 800px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1280' height='800' viewBox='0 0 1280 800' fill='none'%3E%3Cpath d='M0.117543 574.989L1280 800L1279.88 225.011L0 0L0.117543 574.989Z' fill='var(--color-main-light, %23EDF3F8)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .about__service {
    margin-top: 195px;
    padding-bottom: 168px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-x: visible;
    width: 100%;
  }
  .about__service-header {
    display: contents;
  }
  .about__service-hgroup {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 67px;
  }
  .about__service-hgroup-title {
    font-size: 5.2rem;
  }
  .about__service-hgroup-subtitle {
    font-size: 1.6rem;
    height: 19px;
  }
  .about__service-header-right {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 20px;
    margin-top: 29px;
    gap: 12px;
  }
  .about__service-button-more-text {
    font-size: 2rem;
    margin-right: 0;
  }
  .about__service-icon {
    width: 84.495px;
    height: 40px;
    z-index: 3;
  }
  .about__service-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 29px;
    display: contents;
  }
  .about__service-item {
    margin-top: 0 !important;
    position: relative;
    margin-right: 20px;
    margin-left: 15px;
  }
  .about__service-item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .about__service-item:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 75px !important;
  }
  .about__service-item:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 72px !important;
  }
  .about__service-item-number {
    top: -54px;
    right: 0;
    z-index: 3;
  }
  .about__service-item-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: 427px;
    overflow: visible;
    margin-bottom: 0;
  }
  .about__service-item-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .about__service-item-content {
    position: relative;
    background-color: transparent;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: auto;
    padding-top: 14px;
    padding-bottom: 0;
    z-index: 2;
  }
  .about__service-item-description {
    font-size: 1.4rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 24px;
    margin: 0;
  }
  .about__service-item-title {
    left: -15px;
  }
  .about__service-item-title-line {
    height: 41px;
  }
  .about__service-item:nth-child(2) .about__service-item-title,
  .about__service-item:nth-child(3) .about__service-item-title {
    left: -15px;
  }
  .about__service-bg {
    position: absolute;
    top: 2202px;
    left: 0;
    width: 100vw;
    height: 314.1333333333vw;
    min-height: 1178px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='375' height='1178' viewBox='0 0 375 1178' fill='none'%3E%3Cpath d='M0.0344364 1116.09L375 1178L374.966 61.9076L0 0L0.0344364 1116.09Z' fill='var(--color-main-light, %23EDF3F8)'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
  }
}
.lower-mainvisual {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
@media screen and (min-width:901px) {
  .lower-mainvisual {
    height: 250px;
  }
}

.lower-mainvisual__image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lower-mainvisual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  pointer-events: none;
}
.lower-mainvisual__image--pc {
  display: none;
}
.lower-mainvisual__image--sp {
  display: block;
}
@media screen and (min-width:901px) {
  .lower-mainvisual__image {
    -o-object-position: center;
       object-position: center;
  }
  .lower-mainvisual__image--pc {
    display: block;
  }
  .lower-mainvisual__image--sp {
    display: none;
  }
}

.lower-mainvisual__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.2);
}

.lower-mainvisual__decoration {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  z-index: 2;
}
@media screen and (min-width:901px) {
  .lower-mainvisual__decoration {
    width: 366px;
  }
}

.lower-mainvisual__decoration-image {
  width: 100%;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  display: block;
}
.lower-mainvisual__decoration-image--pc {
  display: none;
}
.lower-mainvisual__decoration-image--sp {
  display: block;
}
@media screen and (min-width:901px) {
  .lower-mainvisual__decoration-image--pc {
    display: block;
  }
  .lower-mainvisual__decoration-image--sp {
    display: none;
  }
}

.lower-mainvisual__content {
  position: absolute;
  top: 92px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 3;
}
@media screen and (min-width:901px) {
  .lower-mainvisual__content {
    top: 72.5px;
    left: 220px;
    gap: 8px;
  }
}

.lower-mainvisual__title-en {
  font-size: 3.2rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  color: #023E78;
  background-color: #FFFFFF;
  padding: 0;
  margin: 0;
  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: 100%;
  white-space: nowrap;
}
@media screen and (min-width:901px) {
  .lower-mainvisual__title-en {
    font-size: 6rem;
  }
}

.lower-mainvisual__title-ja {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  color: #023E78;
  background-color: #FFFFFF;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
  width: auto;
  line-height: 19px;
}
@media screen and (min-width:901px) {
  .lower-mainvisual__title-ja {
    font-size: 2rem;
    line-height: 24px;
  }
}

.breadcrumb {
  background-color: #FFFFFF;
  padding: 10px 0;
}

.breadcrumb__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width:901px) {
  .breadcrumb__inner {
    padding: 0 90px;
  }
}

.breadcrumb__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 17px;
}

.breadcrumb__item {
  color: #888888;
}

.breadcrumb__item--current {
  color: #1a1a1a;
}

.breadcrumb__separator {
  color: #888888;
}

.about-page {
  position: relative;
  width: 100%;
}
@media screen and (min-width:901px) {
  .about-page {
    margin-top: 70px;
  }
}

.about-page__mission {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.about-page__mission-image-wrapper {
  position: relative;
  width: 375px;
  height: 281px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width:901px) {
  .about-page__mission-image-wrapper {
    width: 100%;
    height: 353px;
    margin: 0;
  }
}

.about-page__mission-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  inset: 0;
}

.about-page__mission-image--sp {
  display: block;
}
@media screen and (min-width:901px) {
  .about-page__mission-image--sp {
    display: none;
  }
}

.about-page__mission-image--pc {
  display: none;
}
@media screen and (min-width:901px) {
  .about-page__mission-image--pc {
    display: block;
  }
}

.about-page__mission-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.2);
}

.about-page__mission-title {
  position: absolute;
  left: 20px;
  top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  color: #FFFFFF;
  z-index: 1;
}
@media screen and (min-width:901px) {
  .about-page__mission-title {
    left: 20px;
    top: 20px;
  }
}

.about-page__mission-title-ja {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width:901px) {
  .about-page__mission-title-ja {
    font-size: 2.4rem;
    margin: 0 0 0 0;
  }
}

.about-page__mission-title-en {
  font-size: 5.2rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  margin: 0;
  text-transform: uppercase;
}
@media screen and (min-width:901px) {
  .about-page__mission-title-en {
    font-size: 10rem;
  }
}

.about-page__mission-content {
  position: absolute;
  left: 20px;
  top: 241px;
  width: 335px;
  height: 234px;
  background-color: #FFFFFF;
  padding: 20px 20px;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width:901px) {
  .about-page__mission-content {
    left: 206px;
    top: 293px;
    width: 688px;
    height: auto;
    padding: 30px 40px;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.about-page__mission-content-title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  color: #023E78;
  text-align: center;
  width: 295px;
  margin: 0;
}
@media screen and (min-width:901px) {
  .about-page__mission-content-title {
    position: static;
    -webkit-transform: none;
            transform: none;
    font-size: 2.4rem;
    width: 100%;
  }
  .about-page__mission-content-title br {
    display: none;
  }
}

.about-page__mission-content-text {
  position: absolute;
  left: 20px;
  top: 96px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0;
  width: 295px;
}
@media screen and (min-width:901px) {
  .about-page__mission-content-text {
    position: static;
    width: 100%;
  }
}

.about-page__vision {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-top: 254px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.about-page__vision-image-wrapper {
  position: relative;
  width: 375px;
  height: 281px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width:901px) {
  .about-page__vision-image-wrapper {
    width: 100%;
    max-width: 1100px;
    height: 353px;
    margin: 0 auto;
  }
}

.about-page__vision-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  inset: 0;
}

.about-page__vision-image--sp {
  display: block;
}
@media screen and (min-width:901px) {
  .about-page__vision-image--sp {
    display: none;
  }
}

.about-page__vision-image--pc {
  display: none;
}
@media screen and (min-width:901px) {
  .about-page__vision-image--pc {
    display: block;
  }
}

.about-page__vision-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.2);
}

.about-page__vision-title {
  position: absolute;
  left: 20px;
  top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  color: #FFFFFF;
  z-index: 1;
}
@media screen and (min-width:901px) {
  .about-page__vision-title {
    left: 20px;
    top: 20px;
  }
}

.about-page__vision-title-ja {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width:901px) {
  .about-page__vision-title-ja {
    font-size: 2.4rem;
  }
}

.about-page__vision-title-en {
  font-size: 5.2rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  margin: 0;
  text-transform: uppercase;
}
@media screen and (min-width:901px) {
  .about-page__vision-title-en {
    font-size: 10rem;
  }
}

.about-page__vision-content {
  position: absolute;
  left: 20px;
  top: 241px;
  width: 335px;
  height: 258px;
  background-color: #FFFFFF;
  padding: 20px 20px;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width:901px) {
  .about-page__vision-content {
    left: 206px;
    top: 293px;
    width: 688px;
    height: auto;
    padding: 30px 40px;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.about-page__vision-content-title {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  color: #023E78;
  text-align: center;
  width: 295px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.about-page__vision-content-title .pc-only {
  display: none;
}
@media screen and (min-width:901px) {
  .about-page__vision-content-title {
    font-size: 2.4rem;
    margin: 0;
    width: 100%;
  }
  .about-page__vision-content-title br:not(.pc-only) {
    display: none;
  }
  .about-page__vision-content-title br.pc-only {
    display: block;
  }
}

.about-page__vision-content-text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0;
  width: 295px;
}
@media screen and (min-width:901px) {
  .about-page__vision-content-text {
    width: 100%;
  }
}

.about-page__company {
  position: relative;
  margin-top: 278px;
  width: 100%;
  min-height: 727px;
  padding: 60px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width:901px) {
  .about-page__company {
    min-height: 979px;
    margin-top: 292px;
    padding: 0;
  }
}

.about-page__company-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width:901px) {
  .about-page__company-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

.about-page__company-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/about-company-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width:901px) {
  .about-page__company-bg-image {
    background-image: url("../images/about-campany-bg- pc.png");
  }
}

.about-page__company-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(2, 62, 120, 0.8);
}
@media screen and (min-width:901px) {
  .about-page__company-bg-overlay {
    opacity: 1;
  }
}

.about-page__company-title {
  display: none;
}
@media screen and (min-width:901px) {
  .about-page__company-title {
    display: none;
  }
}

.about-page__company-content {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 335px;
  padding: 40px 20px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  z-index: 3;
}
@media screen and (min-width:901px) {
  .about-page__company-content {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 768px;
    max-width: 768px;
    margin: 0;
    padding: 60px 40px;
    border: 1px solid #707070;
    -webkit-box-shadow: none;
            box-shadow: none;
    gap: 60px;
  }
}

.about-page__company-content-title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  color: #1a1a1a;
  text-align: center;
  width: 295px;
  margin: 0 auto;
  white-space: pre-wrap;
}
@media screen and (min-width:901px) {
  .about-page__company-content-title {
    width: auto;
    margin: 0 auto;
    position: relative;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
}

.about-page__company-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 0 15px;
}
@media screen and (min-width:901px) {
  .about-page__company-table {
    padding: 0;
    gap: 0;
  }
}
.about-page__company-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width:901px) {
  .about-page__company-table tr {
    display: table-row;
  }
}
.about-page__company-table th {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 17px;
  color: #1a1a1a;
  text-align: left;
  padding: 16px 0 15px;
  width: 100px;
  max-width: 100px;
  border-top: 1px solid #023E78;
  border-bottom: 1px solid #023E78;
  border-left: 0;
  border-right: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width:901px) {
  .about-page__company-table th {
    font-size: 1.6rem;
    line-height: 24px;
    padding: 24px 32px;
    width: 200px;
    min-width: 200px;
    max-width: none;
    vertical-align: middle;
    display: table-cell;
  }
}
.about-page__company-table tr:not(:first-child) th {
  border-top: 0;
}
@media screen and (min-width:901px) {
  .about-page__company-table tr:not(:first-child) th {
    border-top: 1px solid #023E78;
  }
}
.about-page__company-table td {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 19px;
  color: #1a1a1a;
  padding: 16px 0 15px 20px;
  border-top: 1px solid #e8eaec;
  border-bottom: 1px solid #e8eaec;
  border-left: 0;
  border-right: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  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;
}
@media screen and (min-width:901px) {
  .about-page__company-table td {
    font-size: 1.6rem;
    line-height: 24px;
    padding: 24px 32px;
    max-width: none;
    vertical-align: middle;
    display: table-cell;
    white-space: normal;
  }
}
.about-page__company-table td ul {
  margin: 0;
  padding-left: 21px;
  list-style: disc;
}
@media screen and (min-width:901px) {
  .about-page__company-table td ul {
    padding-left: 24px;
  }
}
.about-page__company-table td li {
  margin: 0;
  line-height: 17px;
}
.about-page__company-table td li:last-child {
  margin-bottom: 0;
}
.about-page__company-table td p {
  margin: 0;
  line-height: 17px;
  display: block;
}
.about-page__company-table td p:first-child {
  margin-bottom: 0;
}
.about-page__company-table td p:not(:first-child) {
  margin-top: 0;
}
.about-page__company-table tr:not(:first-child) td {
  border-top: 0;
}
@media screen and (min-width:901px) {
  .about-page__company-table tr:not(:first-child) td {
    border-top: 1px solid #e8eaec;
  }
}

.about-page__staff {
  position: relative;
  width: 100%;
  padding: 60px 20px 155px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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: 40px;
}
@media screen and (min-width:901px) {
  .about-page__staff {
    padding: 120px 90px 187px;
    gap: 0;
  }
}

.about-page__staff-bg {
  position: absolute;
  top: 908px;
  left: 0;
  width: 375px;
  height: 1234px;
  background-image: url("../images/staff-bg.svg");
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width:901px) {
  .about-page__staff-bg {
    top: auto;
    bottom: -45px;
    left: 0;
    width: 1280px;
    height: 800px;
    background-image: url("../images/staff-bg-pc.svg");
  }
}

.about-page__staff-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
  width: 100%;
  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: 40px;
}
@media screen and (min-width:901px) {
  .about-page__staff-inner {
    gap: 0;
    position: relative;
    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;
  }
}

.about-page__staff-title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  color: #1a1a1a;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width:901px) {
  .about-page__staff-title {
    margin: 0 auto;
    width: auto;
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
  }
}

.about-page__staff-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: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 335px;
}
@media screen and (min-width:901px) {
  .about-page__staff-list {
    gap: 60px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 688px;
    width: 688px;
    margin-top: 60px;
  }
}

.about-page__staff-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 22px;
}
@media screen and (min-width:901px) {
  .about-page__staff-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
    width: 688px;
  }
}
@media screen and (min-width:901px) {
  .about-page__staff-card:first-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.about-page__staff-card-image {
  width: 240px;
  height: 320px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (min-width:901px) {
  .about-page__staff-card-image {
    margin: 0;
  }
}
.about-page__staff-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about-page__staff-card-content {
  -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;
  gap: 17px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 335px;
}
@media screen and (min-width:901px) {
  .about-page__staff-card-content {
    gap: 30px;
    width: 408px;
  }
}

.about-page__staff-card-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media screen and (min-width:901px) {
  .about-page__staff-card-name {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.about-page__staff-card-position {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  color: #1a1a1a;
  margin: 0;
}

.about-page__staff-card-name-text {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  color: #1a1a1a;
  text-align: center;
  margin: 0;
}

.about-page__staff-card-text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0;
  width: 100%;
  text-align: left;
}
@media screen and (min-width:901px) {
  .about-page__staff-card-text {
    text-align: left;
  }
}
.about-page__staff-card-text p {
  margin: 0;
}

.about-page__staff-card-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:901px) {
  .about-page__staff-card-sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.about-page__staff-card-sns-item {
  width: 32px;
  height: 32px;
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.about-page__staff-card-sns-item:hover {
  opacity: 0.7;
}
.about-page__staff-card-sns-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.case {
  position: relative;
  width: 100%;
  padding-top: 95px;
  padding-bottom: 128px;
  overflow: hidden;
  z-index: 1;
}

.case__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.case__bg-image {
  position: absolute;
  inset: 0;
  background-image: url("../images/about-bg-company.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.case__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(2, 62, 120, 0.8);
}

.case__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 90px;
  padding-right: 90px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #FFFFFF;
}

.case__section-top {
  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: 1100px;
}

.case__hgroup {
  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;
}

.case__hgroup-title {
  font-size: 10rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  margin: 0;
  color: #FFFFFF;
}

.case__hgroup-subtitle {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  margin-top: -5px;
  color: #FFFFFF;
}

.case__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 70px;
  margin-top: 80px;
  width: 100%;
  max-width: 1100px;
}

.case__card {
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.case__card-image-wrapper {
  width: 100%;
  height: 240px;
  background-color: #FFFFFF;
  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;
}

.case__card-logo {
  width: 200px;
  height: 200px;
  background-color: #FFFFFF;
  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;
}

.case__card-logo-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.case__card-company {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  color: #FFFFFF;
}

.case__card-bottom {
  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;
}

.case__card-tag {
  border: 1px solid #FFFFFF;
  padding: 6px 16px;
  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;
}

.case__card-tag-text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  color: #FFFFFF;
  white-space: nowrap;
}

.case__card-arrow {
  width: 30px;
  height: 30px;
  background-image: url("../images/arrow-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.case__button-more--sp {
  display: none;
}

@media (max-width: 767px) {
  .case {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .case__inner {
    max-width: 375px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .case__hgroup-title {
    font-size: 5.2rem;
  }
  .case__hgroup-subtitle {
    font-size: 1.6rem;
    margin-top: -3px;
  }
  .case__section-top {
    display: block;
    max-width: 335px;
  }
  .case__cards {
    max-width: 335px;
    width: 100%;
    margin-top: 44px;
    gap: 46px;
  }
  .case__card {
    width: 100%;
  }
  .case__card-image-wrapper {
    height: 251px;
  }
  .case__card-logo {
    width: 200px;
    height: 200px;
  }
  .case__card-company {
    font-size: 1.6rem;
  }
  .case__card-tag-text {
    font-size: 1.4rem;
  }
  .case__card-arrow {
    width: 30px;
    height: 30px;
    background-image: url("../images/arrow-icon.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .case__button-more--pc {
    display: none;
  }
  .case__button-more--sp {
    display: block;
    margin-top: 52px;
    margin-left: auto;
    margin-right: 0;
  }
  .case .about__button-more-arrow {
    left: auto;
    right: 0;
    background-position: right;
  }
}
.case-page {
  width: 100%;
  padding: 60px 0 0;
  position: relative;
}
@media screen and (min-width:901px) {
  .case-page {
    padding: 5.46875vw 7.03125vw;
    margin-bottom: 7.03125vw;
  }
}

.case-page__inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 375px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .case-page__inner {
    max-width: calc(100% - 40px);
    padding: 0 20px;
  }
}
@media screen and (min-width:901px) {
  .case-page__inner {
    max-width: 1280px;
    padding: 0;
  }
}

.case-page__category-buttons {
  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;
  margin-bottom: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:901px) {
  .case-page__category-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 16px;
    margin-bottom: 0;
  }
}

.case-page__category-button {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  background-color: #eee;
  border: none;
  border-radius: 4px;
  padding: 12px 0;
  width: 294px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .case-page__category-button {
    width: 16.25vw;
    max-width: 208px;
    height: 44px;
    padding: 0;
  }
}
@media screen and (min-width:901px) {
  .case-page__category-button {
    width: 208px;
    height: 44px;
    padding: 0;
  }
}
.case-page__category-button--active {
  background-color: #eee;
  color: #1a1a1a;
}
.case-page__category-button:hover {
  opacity: 0.8;
}

.case-page__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .case-page__section {
    width: calc(100% - 40px);
    max-width: 1100px;
    margin-top: 60px;
    margin-bottom: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
@media screen and (min-width:901px) {
  .case-page__section {
    margin-top: 6.25vw;
    margin-bottom: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 85.9375vw;
    gap: 4.6875vw;
  }
}

.case-page__heading {
  border-left: 8px solid #023E78;
  padding: 3px 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 100%;
  max-width: 335px;
}
@media screen and (min-width:901px) {
  .case-page__heading {
    max-width: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0 0 0.78125vw;
    border-left: 0.625vw solid #023E78;
    height: 3.203125vw;
  }
}

.case-page__heading-title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 29px;
  color: #1a1a1a;
  margin: 0;
}
@media screen and (min-width:901px) {
  .case-page__heading-title {
    font-size: 2.8rem;
    line-height: 34px;
  }
}

.case-page__heading-subtitle {
  font-size: 1.4rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #023E78;
  margin: 0;
  line-height: 17px;
}
@media screen and (min-width:901px) {
  .case-page__heading-subtitle {
    font-size: 1.6rem;
    height: auto;
    line-height: normal;
    margin-left: 1.5625vw;
  }
}

.case-page__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 31px;
  gap: 57px;
  width: 100%;
  max-width: 335px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .case-page__cards {
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3.125vw 4.6875vw;
    margin-top: 0;
  }
}
@media screen and (min-width:901px) {
  .case-page__cards {
    max-width: 85.9375vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4.6875vw 6.25vw;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.case-page__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
  width: 100%;
  max-width: 335px;
  overflow: visible;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .case-page__card {
    max-width: 39.84375vw;
    width: 39.84375vw;
    min-width: 300px;
  }
}
@media screen and (min-width:901px) {
  .case-page__card {
    max-width: 39.84375vw;
    width: 39.84375vw;
  }
}

.case-page__card-header {
  background-color: #023E78;
  padding: 6px 20px;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width:901px) {
  .case-page__card-header {
    padding: 1.40625vw 3.125vw;
    height: 7.8125vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.case-page__card-company {
  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%;
}
@media screen and (min-width:901px) {
  .case-page__card-company {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.case-page__card-company-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width:901px) {
  .case-page__card-company-name {
    gap: 0.625vw;
  }
}

.case-page__card-company-business {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 14px;
  margin: 0;
}
@media screen and (min-width:901px) {
  .case-page__card-company-business {
    font-size: 1.4rem;
    line-height: 17px;
  }
}

.case-page__card-company-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width:901px) {
  .case-page__card-company-title {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1.171875vw;
  }
}

.case-page__card-company-title-name {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 19px;
  margin: 0;
}
@media screen and (min-width:901px) {
  .case-page__card-company-title-name {
    font-size: 2.4rem;
    line-height: normal;
  }
}

.case-page__card-company-title-suffix {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 17px;
  margin: 0;
}
@media screen and (min-width:901px) {
  .case-page__card-company-title-suffix {
    font-size: 1.6rem;
    line-height: normal;
  }
}

.case-page__card-company-logo {
  position: relative;
  width: 90px;
  height: 68px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width:901px) {
  .case-page__card-company-logo {
    position: absolute;
    right: 1.5625vw;
    top: -0.46875vw;
    width: 12.5vw;
    height: 8.75vw;
  }
}

.case-page__card-company-logo-bg {
  position: absolute;
  width: 90px;
  height: 68px;
  background-color: #FFFFFF;
  border-radius: 4px;
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width:901px) {
  .case-page__card-company-logo-bg {
    width: 12.5vw;
    height: 8.75vw;
    border-radius: 0.9375vw;
  }
}

.case-page__card-company-logo-image {
  position: absolute;
  left: 19px;
  top: 8px;
  width: 52px;
  height: 52px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.case-page__card-company-logo-image--sp {
  display: block;
}
.case-page__card-company-logo-image--pc {
  display: none;
}
@media screen and (min-width:901px) {
  .case-page__card-company-logo-image {
    left: 2.34375vw;
    top: 0.46875vw;
    width: 7.8125vw;
    height: 7.8125vw;
  }
  .case-page__card-company-logo-image--sp {
    display: none;
  }
  .case-page__card-company-logo-image--pc {
    display: block;
  }
}

.case-page__card-content {
  padding: 20px;
  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 screen and (min-width:901px) {
  .case-page__card-content {
    padding: 2.734375vw 3.125vw;
    gap: 2.34375vw;
  }
}

.case-page__card-course {
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.case-page__card-course-line {
  position: absolute;
  top: 33px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

.case-page__card-course-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  width: 230px;
  line-height: 19px;
  margin-bottom: 14px;
}
@media screen and (min-width:901px) {
  .case-page__card-course-title {
    width: auto;
    margin-bottom: 14px;
    gap: 9px;
  }
}

.case-page__card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  position: relative;
}

.case-page__card-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
  margin-bottom: 0;
}

.case-page__card-item-icon {
  width: 15.516px;
  height: 15.516px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  margin-top: 3px;
}
.case-page__card-item-icon--sp {
  display: block;
}
.case-page__card-item-icon--pc {
  display: none;
}
@media screen and (min-width:901px) {
  .case-page__card-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 4px;
  }
  .case-page__card-item-icon--sp {
    display: none;
  }
  .case-page__card-item-icon--pc {
    display: block;
  }
}

.case-page__card-item-title-text {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 19px;
}
@media screen and (min-width:901px) {
  .case-page__card-item-title-text {
    font-size: 1.8rem;
    line-height: 22px;
  }
}

.case-page__card-item-description {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  margin: 10px 0 0 0;
  width: 100%;
  max-width: 295px;
}
@media screen and (min-width:901px) {
  .case-page__card-item-description {
    margin-top: 10px;
    max-width: 430px;
  }
}

.case-page__button {
  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;
  border: 1px solid #023E78;
  padding: 25px 30px;
  margin-top: 40px;
  width: 100%;
  max-width: 295px;
  text-decoration: none;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .case-page__button {
    margin: 0 auto;
    margin-top: 20px;
    padding: 1.796875vw 6.171875vw;
    max-width: none;
    width: auto;
    min-width: 200px;
  }
}
@media screen and (min-width:901px) {
  .case-page__button {
    margin-left: auto;
    margin-right: auto;
    margin-top: -0.3125vw;
    padding: 1.796875vw 6.171875vw;
    max-width: none;
    width: auto;
    display: block;
  }
}
.case-page__button:hover {
  background-color: #023E78;
  color: #FFFFFF;
}
.case-page__button:hover .case-page__button-text {
  color: #FFFFFF;
}
.case-page__button:hover .case-page__button-icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.case-page__button-text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #023E78;
  text-align: center;
  margin: 0;
}
@media screen and (min-width:901px) {
  .case-page__button-text {
    font-size: 1.6rem;
    line-height: 19px;
  }
}

.case-page__button-icon {
  position: absolute;
  right: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 12px;
}
.case-page__button-icon--sp {
  display: block;
}
.case-page__button-icon--pc {
  display: none;
}
@media screen and (min-width:901px) {
  .case-page__button-icon {
    right: 1.465625vw;
    top: calc(50% + 0.01953125vw);
    width: 1.581484375vw;
    height: 1.054765625vw;
  }
  .case-page__button-icon--sp {
    display: none;
  }
  .case-page__button-icon--pc {
    display: block;
  }
}

.download-page {
  width: 100%;
  padding: 60px 0 12px;
  position: relative;
}
@media screen and (min-width:901px) {
  .download-page {
    padding: 5.46875vw 0 12.5vw;
  }
}

.download-page__inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 375px;
}
@media screen and (min-width:901px) {
  .download-page__inner {
    max-width: 1280px;
    padding: 0 7.03125vw;
  }
}

.download-page__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media screen and (min-width:901px) {
  .download-page__content-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.125vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.download-page__introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
  max-width: 335px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width:901px) {
  .download-page__introduction {
    margin-bottom: 0;
    max-width: none;
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.download-page__title {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 28px;
  color: #1a1a1a;
  margin: 0 0 0 0;
  text-align: left;
  width: 100%;
}
@media screen and (min-width:901px) {
  .download-page__title {
    font-size: 2.8rem;
    line-height: 3.125vw;
    width: 39.84375vw;
    margin-bottom: 3.203125vw;
  }
}

.download-page__material-image {
  width: 275px;
  height: 389px;
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  border-radius: 0;
  margin-left: 30px;
  margin-top: 40px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
}
@media screen and (min-width:901px) {
  .download-page__material-image {
    width: 21.484375vw;
    height: 30.390625vw;
    margin-left: 9.21875vw;
    margin-top: 0;
  }
}
.download-page__material-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.download-page__material-image .download-page__material-image--sp {
  display: block;
}
@media screen and (min-width:901px) {
  .download-page__material-image .download-page__material-image--sp {
    display: none;
  }
}
.download-page__material-image .download-page__material-image--pc {
  display: none;
}
@media screen and (min-width:901px) {
  .download-page__material-image .download-page__material-image--pc {
    display: block;
  }
}

.download-page__description {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  width: 100%;
  max-width: 335px;
  margin-top: 40px;
  height: auto;
}
@media screen and (min-width:901px) {
  .download-page__description {
    font-size: 1.4rem;
    line-height: 24px;
    max-width: 39.84375vw;
    width: 39.84375vw;
    margin-top: 2.96875vw;
    height: 14.84375vw;
  }
}
.download-page__description p {
  margin: 0 0 0 0;
}
.download-page__description p:not(:last-child) {
  margin-bottom: 0;
}

.download-page__form {
  background-color: #EDF3F8;
  border-radius: 12px;
  padding: 40px 20px;
  width: 100%;
  max-width: 335px;
  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;
}
@media screen and (min-width:901px) {
  .download-page__form {
    max-width: none;
    width: 42.96875vw;
    padding: 3.125vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.download-page__form-title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  width: 100%;
  line-height: normal;
  margin-bottom: 0;
}
@media screen and (min-width:901px) {
  .download-page__form-title {
    font-size: 3.2rem;
    line-height: normal;
    margin-bottom: 0;
  }
}

.download-page__form-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 295px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width:901px) {
  .download-page__form-inner {
    gap: 3.125vw;
    max-width: none;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.download-page__form-inputs {
  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;
  width: 100%;
}
@media screen and (min-width:901px) {
  .download-page__form-inputs {
    gap: 2.5vw;
    width: 36.71875vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.download-page__form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width:901px) {
  .download-page__form-item {
    gap: 0.9375vw;
  }
}

.download-page__form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width:901px) {
  .download-page__form-label {
    gap: 0.703125vw;
  }
}

.download-page__form-label-text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 17px;
}
@media screen and (min-width:901px) {
  .download-page__form-label-text {
    font-size: 1.8rem;
    line-height: 1.71875vw;
  }
}

.download-page__form-label-required {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #E61264;
  padding: 1px 8px;
  height: 17px;
  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;
  border-radius: 0;
}
@media screen and (min-width:901px) {
  .download-page__form-label-required {
    font-size: 0.9375vw;
    width: 3.125vw;
    height: 1.5625vw;
    padding: 0 0.625vw;
  }
}

.download-page__form-input {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px 14px;
  height: 44px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width:901px) {
  .download-page__form-input {
    font-size: 1.6rem;
    padding: 0.78125vw 1.25vw;
  }
}
.download-page__form-input::-webkit-input-placeholder {
  color: #ccc;
}
.download-page__form-input::-moz-placeholder {
  color: #ccc;
}
.download-page__form-input:-ms-input-placeholder {
  color: #ccc;
}
.download-page__form-input::-ms-input-placeholder {
  color: #ccc;
}
.download-page__form-input::placeholder {
  color: #ccc;
}
.download-page__form-input:focus {
  outline: none;
  border-color: #023E78;
}

.download-page__form-checkbox {
  width: 100%;
  margin-top: 0;
}

.download-page__form-checkbox-wrapper {
  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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
@media screen and (min-width:901px) {
  .download-page__form-checkbox-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.download-page__form-checkbox-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  line-height: normal;
  width: 100%;
  margin-left: 0;
}
@media screen and (min-width:901px) {
  .download-page__form-checkbox-inner {
    gap: 0.78125vw;
  }
}

.download-page__form-checkbox-label {
  display: contents;
  cursor: pointer;
}

.download-page__form-checkbox-input {
  display: none;
}

.download-page__form-checkbox-icon {
  width: 28px;
  height: 28px;
  margin: 0;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.download-page__form-checkbox-icon--sp {
  display: block;
}
@media screen and (min-width:901px) {
  .download-page__form-checkbox-icon--sp {
    display: none;
  }
}
.download-page__form-checkbox-icon--pc {
  display: none;
}
@media screen and (min-width:901px) {
  .download-page__form-checkbox-icon--pc {
    display: block;
    width: 2.5vw;
    height: 2.5vw;
  }
}

.download-page__form-checkbox-link {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin-left: 10px;
  line-height: normal;
}
@media screen and (min-width:901px) {
  .download-page__form-checkbox-link {
    font-size: 1.6rem;
    margin-left: 0;
  }
}
.download-page__form-checkbox-link:hover {
  opacity: 0.8;
}

.download-page__form-checkbox-text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  line-height: normal;
  margin-left: 0;
}
@media screen and (min-width:901px) {
  .download-page__form-checkbox-text {
    font-size: 1.6rem;
  }
}

.download-page__form-submit {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #023E78;
  background-color: #FFFFFF;
  border: 1px solid #023E78;
  border-radius: 0;
  padding: 24px 70px;
  width: 100%;
  min-width: 295px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  margin-top: 0;
  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;
  text-align: center;
  line-height: 17px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  white-space: nowrap;
}
@media screen and (min-width:901px) {
  .download-page__form-submit {
    font-size: 1.6rem;
    line-height: 1.484375vw;
    width: auto;
    min-width: 23.046875vw;
    padding: 1.875vw 6.25vw;
  }
}
.download-page__form-submit:hover {
  background-color: #023E78;
  color: #FFFFFF;
}

.download-complete-page {
  width: 100%;
  padding: 60px 0 12px;
  position: relative;
}
@media screen and (min-width:901px) {
  .download-complete-page {
    padding: 5.46875vw 0 12.5vw;
  }
}

.download-complete-page__inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 375px;
}
@media screen and (min-width:901px) {
  .download-complete-page__inner {
    max-width: 1280px;
    padding: 0 7.03125vw;
  }
}

.download-complete-page__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  width: 100%;
}
@media screen and (min-width:901px) {
  .download-complete-page__content-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.125vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.download-complete-page__introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  position: relative;
  width: 100%;
  max-width: 335px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width:901px) {
  .download-complete-page__introduction {
    margin-bottom: 0;
    max-width: none;
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.download-complete-page__title {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 28px;
  color: #1a1a1a;
  margin: 0 0 0 0;
  text-align: left;
  width: 100%;
}
@media screen and (min-width:901px) {
  .download-complete-page__title {
    font-size: 2.8rem;
    line-height: 3.125vw;
    width: 39.84375vw;
    margin-bottom: 3.203125vw;
  }
}

.download-complete-page__material-image {
  width: 275px;
  height: 389px;
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  border-radius: 0;
  margin-left: 30px;
  margin-top: 40px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
}
@media screen and (min-width:901px) {
  .download-complete-page__material-image {
    width: 21.484375vw;
    height: 30.390625vw;
    margin-left: 9.21875vw;
    margin-top: 0;
  }
}
.download-complete-page__material-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.download-complete-page__material-image .download-complete-page__material-image--sp {
  display: block;
}
@media screen and (min-width:901px) {
  .download-complete-page__material-image .download-complete-page__material-image--sp {
    display: none;
  }
}
.download-complete-page__material-image .download-complete-page__material-image--pc {
  display: none;
}
@media screen and (min-width:901px) {
  .download-complete-page__material-image .download-complete-page__material-image--pc {
    display: block;
  }
}

.download-complete-page__description {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  width: 100%;
  max-width: 335px;
  margin-top: 40px;
  height: auto;
}
@media screen and (min-width:901px) {
  .download-complete-page__description {
    font-size: 1.4rem;
    line-height: 24px;
    max-width: 39.84375vw;
    width: 39.84375vw;
    margin-top: 2.96875vw;
    height: 14.84375vw;
  }
}
.download-complete-page__description p {
  margin: 0 0 0 0;
}
.download-complete-page__description p:not(:last-child) {
  margin-bottom: 0;
}

.download-complete-page__complete {
  background-color: #EDF3F8;
  border-radius: 12px;
  padding: 40px 20px;
  width: 100%;
  max-width: 335px;
  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;
}
@media screen and (min-width:901px) {
  .download-complete-page__complete {
    max-width: none;
    width: 42.96875vw;
    padding: 3.125vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.download-complete-page__complete-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  width: 100%;
  max-width: 295px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width:901px) {
  .download-complete-page__complete-inner {
    gap: 3.125vw;
    max-width: none;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.download-complete-page__complete-title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  width: 100%;
  line-height: 40px;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (min-width:901px) {
  .download-complete-page__complete-title {
    font-size: 3.2rem;
    line-height: 3.75vw;
    margin-bottom: 0;
    text-align: justify;
  }
}

.download-complete-page__complete-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  width: 100%;
}
@media screen and (min-width:901px) {
  .download-complete-page__complete-message {
    gap: 1.09375vw;
    width: 36.71875vw;
  }
}

.download-complete-page__complete-text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0;
}
@media screen and (min-width:901px) {
  .download-complete-page__complete-text {
    font-size: 1.4rem;
    line-height: 1.328125vw;
  }
}
.download-complete-page__complete-text:last-child {
  line-height: 28px;
}
@media screen and (min-width:901px) {
  .download-complete-page__complete-text:last-child {
    line-height: 2.1875vw;
  }
}

.download-complete-page__complete-link-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.download-complete-page__complete-link {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 17px;
  color: #023E78;
  text-decoration: underline;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width:901px) {
  .download-complete-page__complete-link {
    font-size: 1.4rem;
    line-height: 1.328125vw;
  }
}
.download-complete-page__complete-link:hover {
  opacity: 0.8;
}

.contact-page {
  width: 100%;
  padding: 60px 0 12px;
  position: relative;
}
@media screen and (min-width:901px) {
  .contact-page {
    padding: 5.46875vw 0 12.5vw;
  }
}

.contact-page__inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 375px;
}
@media screen and (min-width:901px) {
  .contact-page__inner {
    max-width: 1280px;
    padding: 0 7.03125vw;
  }
}

.contact-page__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:901px) {
  .contact-page__content-wrapper {
    gap: 6.25vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact-page__introduction {
  width: 100%;
  max-width: 335px;
}
@media screen and (min-width:901px) {
  .contact-page__introduction {
    max-width: 53.671875vw;
    width: 53.671875vw;
  }
}

.contact-page__introduction-text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0;
  text-align: left;
}
@media screen and (min-width:901px) {
  .contact-page__introduction-text {
    font-size: 1.4rem;
    line-height: 24px;
    text-align: left;
  }
}

.contact-page__form {
  width: 100%;
  max-width: 335px;
  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;
}
@media screen and (min-width:901px) {
  .contact-page__form {
    max-width: 53.671875vw;
    width: 53.671875vw;
  }
}

.contact-page__form-title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  width: 100%;
  line-height: normal;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width:901px) {
  .contact-page__form-title {
    font-size: 2.4rem;
    line-height: normal;
    margin-bottom: 4.6875vw;
  }
}

.contact-page__form-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:901px) {
  .contact-page__form-inner {
    gap: 3.125vw;
    width: 100%;
  }
}

.contact-page__form-inputs {
  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;
  width: 100%;
}
@media screen and (min-width:901px) {
  .contact-page__form-inputs {
    gap: 2.5vw;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.contact-page__form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width:901px) {
  .contact-page__form-item {
    gap: 0.9375vw;
  }
}

.contact-page__form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width:901px) {
  .contact-page__form-label {
    gap: 0.703125vw;
  }
}

.contact-page__form-label-text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 17px;
}
@media screen and (min-width:901px) {
  .contact-page__form-label-text {
    font-size: 1.8rem;
    line-height: 1.71875vw;
  }
}

.contact-page__form-label-required {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #E61264;
  padding: 1px 8px;
  height: 17px;
  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;
  border-radius: 0;
}
@media screen and (min-width:901px) {
  .contact-page__form-label-required {
    font-size: 0.9375vw;
    width: 3.125vw;
    height: 1.5625vw;
    padding: 0 0.625vw;
  }
}

.contact-page__form-input {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px 14px;
  height: 44px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width:901px) {
  .contact-page__form-input {
    font-size: 1.6rem;
    padding: 0.78125vw 1.25vw;
  }
}
.contact-page__form-input::-webkit-input-placeholder {
  color: #ccc;
}
.contact-page__form-input::-moz-placeholder {
  color: #ccc;
}
.contact-page__form-input:-ms-input-placeholder {
  color: #ccc;
}
.contact-page__form-input::-ms-input-placeholder {
  color: #ccc;
}
.contact-page__form-input::placeholder {
  color: #ccc;
}
.contact-page__form-input:focus {
  outline: none;
  border-color: #023E78;
}

.contact-page__form-select {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #ccc;
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px 14px;
  height: 44px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../images/icon-select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10.814px 6.807px;
  padding-right: 35px;
  cursor: pointer;
}
@media screen and (min-width:901px) {
  .contact-page__form-select {
    font-size: 1.6rem;
    border-radius: 4px;
    padding: 0.78125vw 2.734375vw 0.78125vw 1.25vw;
    background-position: right 1.25vw center;
    background-size: 0.84484375vw 0.531796875vw;
  }
}
.contact-page__form-select:focus {
  outline: none;
  border-color: #023E78;
}
.contact-page__form-select:hover {
  border-color: #023E78;
}
.contact-page__form-select.has-value {
  color: #1a1a1a;
}
.contact-page__form-select option {
  color: #1a1a1a;
}
.contact-page__form-select option[value=""] {
  color: #ccc;
}

.contact-page__form-textarea {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 13.5px 14px;
  width: 100%;
  min-height: 140px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  resize: vertical;
}
@media screen and (min-width:901px) {
  .contact-page__form-textarea {
    font-size: 1.6rem;
    padding: 0.9765625vw 1.25vw;
    min-height: 18.75vw;
  }
}
.contact-page__form-textarea::-webkit-input-placeholder {
  color: #ccc;
}
.contact-page__form-textarea::-moz-placeholder {
  color: #ccc;
}
.contact-page__form-textarea:-ms-input-placeholder {
  color: #ccc;
}
.contact-page__form-textarea::-ms-input-placeholder {
  color: #ccc;
}
.contact-page__form-textarea::placeholder {
  color: #ccc;
}
.contact-page__form-textarea:focus {
  outline: none;
  border-color: #023E78;
}

.contact-page__form-checkbox {
  width: 100%;
  margin-top: 0;
}

.contact-page__form-checkbox-wrapper {
  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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
@media screen and (min-width:901px) {
  .contact-page__form-checkbox-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact-page__form-checkbox-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  line-height: normal;
  width: 100%;
  margin-left: 0;
}
@media screen and (min-width:901px) {
  .contact-page__form-checkbox-inner {
    gap: 0.78125vw;
  }
}

.contact-page__form-checkbox-label {
  display: contents;
  cursor: pointer;
}

.contact-page__form-checkbox-input {
  display: none;
}

.contact-page__form-checkbox-icon {
  width: 28px;
  height: 28px;
  margin: 0;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-page__form-checkbox-icon--sp {
  display: block;
}
@media screen and (min-width:901px) {
  .contact-page__form-checkbox-icon--sp {
    display: none;
  }
}
.contact-page__form-checkbox-icon--pc {
  display: none;
}
@media screen and (min-width:901px) {
  .contact-page__form-checkbox-icon--pc {
    display: block;
    width: 2.5vw;
    height: 2.5vw;
  }
}

.contact-page__form-checkbox-link {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin-left: 10px;
  margin-right: 6px;
  line-height: 17px;
}
@media screen and (min-width:901px) {
  .contact-page__form-checkbox-link {
    font-size: 1.6rem;
    line-height: 19px;
    margin-left: 0;
    margin-right: 0;
  }
}
.contact-page__form-checkbox-link:hover {
  opacity: 0.8;
}

.contact-page__form-checkbox-text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 17px;
  margin-left: 0;
}
@media screen and (min-width:901px) {
  .contact-page__form-checkbox-text {
    font-size: 1.6rem;
  }
}

.contact-page__form-submit {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #023E78;
  background-color: #FFFFFF;
  border: 1px solid #023E78;
  border-radius: 0;
  padding: 24px 70px;
  width: 295px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  margin-top: 0;
  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;
  text-align: center;
  line-height: 17px;
  white-space: nowrap;
}
@media screen and (min-width:901px) {
  .contact-page__form-submit {
    font-size: 1.6rem;
    line-height: 24px;
    width: 295px;
    padding: 23px 80px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    white-space: nowrap;
  }
}
.contact-page__form-submit:hover {
  background-color: #023E78;
  color: #FFFFFF;
}

.contact-complete-page {
  width: 100%;
  padding: 60px 0 12px;
  position: relative;
}
@media screen and (min-width:901px) {
  .contact-complete-page {
    padding: 5.46875vw 0 11.71875vw;
  }
}

.contact-complete-page__inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 375px;
}
@media screen and (min-width:901px) {
  .contact-complete-page__inner {
    max-width: 1280px;
    padding: 0 7.03125vw;
  }
}

.contact-complete-page__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:901px) {
  .contact-complete-page__content-wrapper {
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contact-complete-page__complete-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 335px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width:901px) {
  .contact-complete-page__complete-message {
    gap: 1.09375vw;
    max-width: 53.671875vw;
    width: 53.671875vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.contact-complete-page__complete-text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  width: 100%;
  margin: 0;
}
@media screen and (min-width:901px) {
  .contact-complete-page__complete-text {
    font-size: 1.4rem;
    line-height: 24px;
    width: 100%;
  }
}
.contact-complete-page__complete-text p {
  margin: 0;
}
.contact-complete-page__complete-text p:not(:last-child) {
  margin-bottom: 0;
}

.contact-complete-page__complete-link {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #023E78;
  text-decoration: underline;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;
}
@media screen and (min-width:901px) {
  .contact-complete-page__complete-link {
    font-size: 1.4rem;
    line-height: 24px;
    width: auto;
  }
}
.contact-complete-page__complete-link:hover {
  opacity: 0.8;
}

.news {
  position: relative;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 160px;
  overflow: hidden;
}

.news__bg {
  position: absolute;
  bottom: -89px;
  left: 0;
  width: 100vw;
  height: 50vw;
  min-height: 640px;
  pointer-events: none;
}

.news__bg-image {
  position: absolute;
  inset: 0;
  background-image: url("../images/news-bg.svg");
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.news__inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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: 80px;
}

.news__section-top {
  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%;
}

.news__hgroup {
  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;
  color: #023E78;
}

.news__hgroup-title {
  font-size: 10rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  margin: 0;
}

.news__hgroup-subtitle {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.news__button-more {
  position: relative;
  width: 289px;
  height: 51px;
  display: block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.news__button-more:hover {
  opacity: 0.7;
}

.news__button-more-text {
  font-size: 3.2rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  text-align: right;
  color: #023E78;
  position: absolute;
  left: 0;
  top: 13.73%;
  bottom: 11.76%;
  right: 48.44%;
  white-space: nowrap;
}

.news__button-more-arrow {
  position: absolute;
  width: 289px;
  top: -2.94%;
  right: 0;
  bottom: -2.94%;
  left: -1.24%;
  background-image: url("../images/arrow-yellow-sp.svg");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.news__card {
  background-color: #FFFFFF;
  width: 768px;
  min-width: 768px;
  padding: 60px 40px 40px;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  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;
}

.news__card-wrapper {
  display: none;
}

.news__list {
  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;
  width: 100%;
}

.news__item {
  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: 20px;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 31px;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #ddd;
  border-left: 0;
  border-style: solid;
}
.news__item:last-child {
  border-bottom: 0;
  padding-bottom: 28px;
}

.news__item-header {
  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%;
}

.news__item-tag {
  border: 1px solid #E61264;
  padding: 7px 23px;
  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;
}

.news__item-tag-text {
  height: 17px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: normal;
  color: #E61264;
  white-space: nowrap;
}

.news__item-date {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: normal;
  color: #888888;
}

.news__item-title {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  color: #1a1a1a;
  width: 648px;
  height: 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}

@media (max-width: 767px) {
  .news {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .news__bg {
    top: 177px;
    bottom: auto;
    right: 0;
    left: auto;
    width: 100vw;
    height: 154.6666666667vw;
    min-height: 580px;
  }
  .news__bg-image {
    background-image: url("../images/news-bg-sp.svg");
    background-size: 100% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
  }
  .news__inner {
    position: relative;
    left: calc(50% + 1px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 335px;
    max-width: 335px;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    gap: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news__section-top {
    display: block;
  }
  .news__hgroup-title {
    font-size: 5.2rem;
  }
  .news__hgroup-subtitle {
    font-size: 1.6rem;
    height: 19px;
    margin-top: -3px;
  }
  .news__button-more {
    display: none;
  }
  .news__card {
    display: none;
  }
  .news__card-wrapper {
    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: 32px;
    width: 100%;
  }
  .news__card-wrapper .news__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 335px;
    min-width: 335px;
    padding: 40px 20px;
  }
  .news__item {
    padding-top: 0;
    width: 295px;
  }
  .news__item:not(:first-child) {
    padding-top: 16px;
  }
  .news__item-tag {
    padding: 5px 19px;
  }
  .news__item-tag-text {
    font-size: 1.2rem;
    height: 14px;
  }
  .news__item-date {
    font-size: 1.4rem;
  }
  .news__item-title {
    font-size: 1.4rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    line-height: 20px;
    color: #1a1a1a;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
  }
  .news__button-more--sp {
    width: 189.495px;
    height: 40px;
    display: block;
    position: relative;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .news__button-more--sp:hover {
    opacity: 0.7;
  }
  .news__button-more--sp-text {
    font-size: 2rem;
    font-family: "Fira Sans", sans-serif;
    font-weight: 500;
    font-style: italic;
    line-height: normal;
    text-align: right;
    color: #023E78;
    position: absolute;
    left: 0;
    top: 27.5%;
    bottom: 12.5%;
    right: 50.92%;
    white-space: nowrap;
  }
  .news__button-more--sp-arrow {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 55.41%;
    background-image: url("../images/arrow-yellow-sp.svg");
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
  }
}
@media (max-width: 375px) {
  .news__bg {
    width: 100vw;
    height: 154.6666666667vw;
    bottom: 26.6666666667vw;
  }
  .news__inner {
    width: 89.3333333333vw;
    max-width: 89.3333333333vw;
  }
  .news__card-wrapper .news__card {
    width: 89.3333333333vw;
    min-width: 89.3333333333vw;
  }
  .news__item {
    width: 78.6666666667vw;
  }
}
.breadcrumb {
  width: 100%;
  background-color: #FFFFFF;
}
@media screen and (min-width:901px) {
  .breadcrumb {
    padding: 10px 90px;
  }
}

.breadcrumb__inner {
  margin: 0;
  padding: 0 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.breadcrumb__inner::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
@media screen and (min-width:901px) {
  .breadcrumb__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
  }
}

.breadcrumb__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 17px;
  white-space: nowrap;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.breadcrumb__item {
  color: #888888;
  text-decoration: none;
}
.breadcrumb__item:hover {
  opacity: 0.7;
}
.breadcrumb__item--current {
  color: #1a1a1a;
}

.breadcrumb__separator {
  color: #888888;
}

.news-page {
  width: 100%;
  background-color: #FFFFFF;
  padding: 60px 20px 12px;
}
@media screen and (min-width:901px) {
  .news-page {
    padding: 70px 90px 160px;
  }
}

.news-page__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 96px;
}
@media screen and (min-width:901px) {
  .news-page__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.news-page__main {
  width: 100%;
  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;
}
@media screen and (min-width:901px) {
  .news-page__main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.news-page__title {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0 0 25px 0;
  white-space: pre-wrap;
  width: 100%;
  max-width: 335px;
}
@media screen and (min-width:901px) {
  .news-page__title {
    font-size: 3.2rem;
    line-height: 40px;
    margin-bottom: 20px;
    max-width: 760px;
  }
}

.news-page__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;
  margin-bottom: 0;
  width: 100%;
  max-width: 335px;
}
@media screen and (min-width:901px) {
  .news-page__list {
    gap: 40px;
    margin-bottom: 60px;
    max-width: 760px;
  }
}

.news-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 335px;
}
@media screen and (min-width:901px) {
  .news-page__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    max-width: 760px;
    width: auto;
  }
}

.news-page__item-thumbnail {
  width: 120px;
  height: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
@media screen and (min-width:901px) {
  .news-page__item-thumbnail {
    width: 250px;
    height: 156px;
  }
}
.news-page__item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.news-page__item-body {
  -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;
  gap: 6px;
  width: 203px;
  min-width: 0;
}
@media screen and (min-width:901px) {
  .news-page__item-body {
    gap: 15px;
    width: auto;
  }
}

.news-page__item-meta {
  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%;
  gap: 10px;
}

.news-page__item-category {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 14px;
  color: #E61264;
  border: 1px solid #E61264;
  padding: 3.5px 9px;
  display: inline-block;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width:901px) {
  .news-page__item-category {
    font-size: 1.4rem;
    padding: 4px 9px;
    line-height: 17px;
  }
}

.news-page__item-date {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: normal;
  color: #888888;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-page__item-title {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 17px;
  color: #1a1a1a;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
@media screen and (min-width:901px) {
  .news-page__item-title {
    font-size: 1.6rem;
    line-height: 19px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

.news-page__no-posts {
  padding: 60px 20px;
  text-align: center;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #888888;
}
@media screen and (min-width:901px) {
  .news-page__no-posts {
    padding: 80px 20px;
    font-size: 1.8rem;
  }
}

.news-page__pagination {
  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-top: 40px;
  gap: 6px;
  -ms-flex-item-align: center;
      align-self: center;
  width: 100%;
}
@media screen and (min-width:901px) {
  .news-page__pagination {
    gap: 30px;
    margin-top: 0;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.news-page__pagination-pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (min-width:901px) {
  .news-page__pagination-pages {
    gap: 8px;
  }
}

.news-page__pagination-page {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: normal;
  color: #888888;
  width: 40px;
  height: 40px;
  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;
  background-color: #f8f8f8;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 0;
}
@media screen and (min-width:901px) {
  .news-page__pagination-page {
    width: 50px;
    height: 50px;
  }
}
.news-page__pagination-page--active {
  background-color: #023E78;
  color: #FFFFFF;
}
.news-page__pagination-page--ellipsis {
  background-color: #f8f8f8;
  color: #888888;
  cursor: default;
  pointer-events: none;
}
.news-page__pagination-page--ellipsis:hover {
  opacity: 1;
}
.news-page__pagination-page:hover:not(.news-page__pagination-page--ellipsis) {
  opacity: 0.7;
}

.news-page__pagination-prev,
.news-page__pagination-next {
  width: 40px;
  height: 40px;
  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;
  background-color: #f8f8f8;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width:901px) {
  .news-page__pagination-prev,
  .news-page__pagination-next {
    width: 50px;
    height: 50px;
  }
}
.news-page__pagination-prev:hover,
.news-page__pagination-next:hover {
  opacity: 0.7;
}
.news-page__pagination-prev img,
.news-page__pagination-next img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-page__sidebar {
  width: 100%;
  max-width: 335px;
  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;
  margin: 0 auto;
}
@media screen and (min-width:901px) {
  .news-page__sidebar {
    width: 300px;
    max-width: none;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0;
  }
}

.news-page__sidebar-section {
  width: 100%;
  max-width: 335px;
  margin-bottom: 55px;
}
.news-page__sidebar-section:last-child {
  margin-bottom: 0;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-section {
    width: 300px;
    max-width: none;
    margin-bottom: 80px;
  }
}

.news-page__sidebar-title {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  color: #1a1a1a;
  margin-bottom: 25px;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-title {
    margin: 0;
    padding-bottom: 16px;
  }
}

.news-page__sidebar-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;
  width: 100%;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-list {
    gap: 16px;
    width: 300px;
  }
}

.news-page__sidebar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-item {
    gap: 10px;
  }
}

.news-page__sidebar-item-thumbnail {
  width: 120px;
  height: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-item-thumbnail {
    width: 100px;
    height: 100px;
  }
}
.news-page__sidebar-item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.news-page__sidebar-item-content {
  -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;
  gap: 6px;
  min-width: 0;
  width: 203px;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-item-content {
    gap: 0;
    width: auto;
  }
}

.news-page__sidebar-item-meta {
  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;
  margin-bottom: 0;
  width: 100%;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-item-meta {
    margin-bottom: 8px;
  }
}

.news-page__sidebar-item-category {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 14px;
  color: #E61264;
  border: 1px solid #E61264;
  padding: 3.5px 9px;
  display: inline-block;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-item-category {
    font-size: 1.4rem;
    padding: 5px 9px;
    line-height: 17px;
  }
}

.news-page__sidebar-item-date {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: normal;
  color: #888888;
  text-align: right;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-page__sidebar-item-title {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 17px;
  color: #1a1a1a;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-item-title {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    line-height: 17px;
  }
}

.news-page__sidebar-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-category-list {
    width: 300px;
  }
}

.news-page__sidebar-category-item {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.news-page__sidebar-category-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}
.news-page__sidebar-category-item:first-child {
  padding-top: 0;
}
.news-page__sidebar-category-item:last-child::after {
  display: none;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-category-item {
    border-top: 1px solid #ddd;
    padding-top: 17px;
    padding-bottom: 20px;
    margin-top: 0;
  }
  .news-page__sidebar-category-item::after {
    display: none;
  }
  .news-page__sidebar-category-item:first-child {
    border-top: 0;
    padding-top: 17px;
  }
  .news-page__sidebar-category-item:last-child {
    padding-bottom: 20px;
    margin-bottom: 0;
  }
}

.news-page__sidebar-category-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: relative;
  padding-top: 17px;
  padding-bottom: 20px;
  min-height: 39px;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-category-link {
    padding: 0;
    min-height: auto;
  }
}
.news-page__sidebar-category-link:hover {
  opacity: 0.7;
}

.news-page__sidebar-category-text {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 19px;
  color: #1a1a1a;
  margin-left: 39px;
}

.news-page__sidebar-category-arrow {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: 15px;
  top: 18px;
}
@media screen and (min-width:901px) {
  .news-page__sidebar-category-arrow {
    width: 20px;
    height: 16px;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.news-single {
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
}
@media screen and (min-width:901px) {
  .news-single {
    max-width: 760px;
  }
}

.news-single__header {
  margin-bottom: 24px;
}
@media screen and (min-width:901px) {
  .news-single__header {
    margin-bottom: 0;
  }
}

.news-single__meta {
  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: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width:901px) {
  .news-single__meta {
    margin-bottom: 24px;
  }
}

.news-single__category {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: normal;
  color: #E61264;
  border: 1px solid #E61264;
  padding: 7px 23px;
  display: inline-block;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width:901px) {
  .news-single__category {
    padding: 7px 23px;
  }
}

.news-single__date {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 20px;
  color: #888888;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 20px;
  width: 73px;
  text-align: right;
}
@media screen and (min-width:901px) {
  .news-single__date {
    line-height: normal;
    height: auto;
    width: auto;
    text-align: left;
  }
}

.news-single__title {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 28px;
  color: #1a1a1a;
  margin: 0;
}
@media screen and (min-width:901px) {
  .news-single__title {
    font-size: 2.4rem;
    line-height: 29px;
  }
}

.news-single__thumbnail {
  margin-bottom: 20px;
  width: 100%;
  height: 176px;
  overflow: hidden;
}
@media screen and (min-width:901px) {
  .news-single__thumbnail {
    margin-top: 24px;
    margin-bottom: 40px;
    height: auto;
    aspect-ratio: 1200/630;
    overflow: visible;
  }
}
.news-single__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media screen and (min-width:901px) {
  .news-single__thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.news-single__content {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media screen and (min-width:901px) {
  .news-single__content {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
    gap: 30px;
  }
}
.news-single__content > * {
  margin: 0;
}
.news-single__content p,
.news-single__content .news-single__p {
  margin-bottom: 16px;
}
@media screen and (min-width:901px) {
  .news-single__content p,
  .news-single__content .news-single__p {
    margin-bottom: 0;
  }
}
.news-single__content .news-single__p-0 {
  margin-bottom: 16px;
}
@media screen and (min-width:901px) {
  .news-single__content .news-single__p-0 {
    margin-bottom: 0;
  }
}
.news-single__content .news-single__p-1 {
  margin-bottom: 0;
}
@media screen and (min-width:901px) {
  .news-single__content .news-single__p-1 {
    margin-bottom: -16px;
  }
}
.news-single__content .news-single__p-2 {
  margin-bottom: 0;
}
.news-single__content .news-single__p-4 {
  margin-bottom: 0;
}
.news-single__content h2 {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 24px;
  color: #023E78;
  background-color: #f8f8f8;
  border-left: 6px solid #023E78;
  padding: 10px 20px 10px 20px;
}
@media screen and (min-width:901px) {
  .news-single__content h2 {
    font-size: 2rem;
    margin: 0 0 14px 0;
    background-color: #f8f8f8;
    border-left: 6px solid #023E78;
    padding: 10px 20px 10px 20px;
    color: #023E78;
    margin-bottom: -16px;
  }
}
.news-single__content h3,
.news-single__content .news-single__h3 {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 22px;
  color: #023E78;
  border-bottom: 1px solid #023E78;
  padding-bottom: 10px;
}
@media screen and (min-width:901px) {
  .news-single__content h3,
  .news-single__content .news-single__h3 {
    font-size: 1.8rem;
    margin: 0 0 -16px 0;
    border-bottom: 1px solid #023E78;
    padding-bottom: 10px;
    color: #023E78;
  }
}
.news-single__content h4,
.news-single__content .news-single__h4 {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 24px;
  color: #023E78;
}
@media screen and (min-width:901px) {
  .news-single__content h4,
  .news-single__content .news-single__h4 {
    font-size: 1.6rem;
    margin: 0 0 -16px 0;
    color: #023E78;
  }
}
.news-single__content ul, .news-single__content ol {
  margin: 0 0 14px 0;
  padding-left: 0;
}
@media screen and (min-width:901px) {
  .news-single__content ul, .news-single__content ol {
    margin: 0 0 14px 0;
    padding-left: 0;
  }
}
.news-single__content ol {
  list-style-type: decimal;
  list-style-position: outside;
  margin-left: 21px;
  padding-left: 0;
}
@media screen and (min-width:901px) {
  .news-single__content ol {
    margin-left: 21px;
    padding-left: 0;
    margin-bottom: 0;
  }
}
.news-single__content ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 21px;
  padding-left: 0;
  margin-bottom: 0;
}
@media screen and (min-width:901px) {
  .news-single__content ul {
    margin-left: 21px;
    padding-left: 0;
    margin-bottom: -16px;
  }
}
.news-single__content li {
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
  line-height: 24px;
  display: list-item;
}
@media screen and (min-width:901px) {
  .news-single__content li {
    margin-bottom: 0;
    line-height: 24px;
  }
}
.news-single__content li:last-child {
  margin-bottom: 0;
}
.news-single__content a {
  color: #023E78;
  text-decoration: underline;
}
.news-single__content a:hover {
  opacity: 0.7;
}
.news-single__content img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}
@media screen and (min-width:901px) {
  .news-single__content img {
    margin: 1.5em 0;
  }
}

.news-single__quote {
  background-color: #f8f8f8;
  border-left: 4px solid #023E78;
  padding: 30px 35px 30px 31px;
  position: relative;
  width: 100%;
}
@media screen and (min-width:901px) {
  .news-single__quote {
    max-width: 646px;
    margin-top: -16px;
  }
}
.news-single__quote p {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 0;
}
@media screen and (min-width:901px) {
  .news-single__quote p {
    font-size: 1.4rem;
    line-height: 24px;
    margin-bottom: 0;
  }
}
.news-single__quote p:last-child {
  margin-bottom: 0;
}

.news-single__footer {
  margin-bottom: 40px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}
@media screen and (min-width:901px) {
  .news-single__footer {
    margin-bottom: 60px;
    padding-top: 40px;
  }
}

.news-single__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.news-single__tag {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #888888;
  background-color: #f5f5f5;
  padding: 5px 12px;
  border-radius: 3px;
}

.news-single__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 0;
  width: 100%;
  max-width: 335px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width:901px) {
  .news-single__navigation {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 40px;
    margin-bottom: 0;
    padding-top: 0;
    border-top: 0;
    max-width: 335px;
  }
}

.news-single__navigation-prev {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (min-width:901px) {
  .news-single__navigation-prev {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.news-single__navigation-next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.news-single__navigation-next:only-child {
  margin-left: auto;
}
@media screen and (min-width:901px) {
  .news-single__navigation-next {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .news-single__navigation-next:only-child {
    margin-left: 0;
  }
}

.news-single__navigation-link {
  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;
  height: 36px;
  padding: 8px 16px;
  border: 1px solid #023E78;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #023E78;
  white-space: nowrap;
}
@media screen and (min-width:901px) {
  .news-single__navigation-link {
    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;
    height: 36px;
    padding: 8px 16px;
    border: 1px solid #023E78;
    border-radius: 4px;
    text-align: center;
  }
}
.news-single__navigation-link:hover {
  opacity: 0.7;
}

.news-single__navigation-text {
  display: block;
}

.news-single__navigation-label {
  display: none;
}

.news-single__navigation-title {
  display: none;
}

.news-single__back {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width:901px) {
  .news-single__back {
    margin-bottom: 60px;
  }
}

.news-single__back-link {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #023E78;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news-single__back-link:hover {
  opacity: 0.7;
}

.service-page {
  width: 100%;
  padding: 0 0 20px;
  position: relative;
}
@media screen and (min-width:901px) {
  .service-page {
    padding: 70px 0 160px;
  }
}

.service-page__bg {
  position: absolute;
  top: 1254px;
  left: 0;
  width: 375px;
  height: 1074px;
  background-image: url("../images/service-page-bg.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (min-width:901px) {
  .service-page__bg {
    width: 100%;
    max-width: 1280px;
    height: 1329px;
    top: 1094px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-image: url("../images/service-page-bg-pc.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.service-page__inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width:901px) {
  .service-page__inner {
    margin-top: 160px;
  }
}

.service-page__title-section {
  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;
  padding: 60px 0 60px;
  width: 100%;
}
@media screen and (min-width:901px) {
  .service-page__title-section {
    padding: 0 0 80px;
  }
}

.service-page__title {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 28px;
  color: #1a1a1a;
  text-align: center;
  margin: 0;
  width: 100%;
  max-width: 335px;
  white-space: normal;
}
@media screen and (min-width:901px) {
  .service-page__title {
    font-size: 2.8rem;
    line-height: 40px;
    margin: 0;
    max-width: 727px;
    width: 727px;
    white-space: nowrap;
  }
  .service-page__title br.service-page__title-br {
    display: none;
  }
}
.service-page__title p {
  margin: 0;
}
.service-page__title p:first-child {
  margin-bottom: 0;
}
.service-page__title p:last-child {
  margin-bottom: 0;
}

.service-page__service-container {
  position: relative;
  width: 100%;
}
@media screen and (min-width:901px) {
  .service-page__service-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 160px;
    position: relative;
    min-height: 3449px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.service-page__services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-bottom: 60px;
}
@media screen and (min-width:901px) {
  .service-page__services {
    gap: 0;
    margin-bottom: 100px;
  }
}

.service-page__service-card {
  position: relative;
  width: 100%;
  max-width: 335px;
  margin: 0 auto 80px;
}
@media screen and (min-width:901px) {
  .service-page__service-card {
    position: absolute;
    width: 100%;
    max-width: 1280px;
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__service-card {
    max-width: 100%;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card:not(.service-page__service-card--reverse):not(.service-page__service-card--third) {
    left: 140px;
    top: 0;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card--reverse {
    left: 50px;
    top: 1210px;
  }
}
.service-page__service-card--third {
  margin-bottom: 60px;
}
@media screen and (min-width:901px) {
  .service-page__service-card--third {
    left: 140px;
    top: 2429px;
    margin-bottom: 0;
  }
}

.service-page__service-number {
  font-size: 6.8rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: 82px;
  color: #023E78;
  position: absolute;
  left: 20px;
  top: 109px;
  z-index: 2;
}
@media screen and (min-width:901px) {
  .service-page__service-number {
    font-size: 10rem;
    position: absolute;
    left: 58px;
    top: 0;
    width: auto;
    height: auto;
    line-height: 120px;
    z-index: 3;
    text-align: right;
  }
}
.service-page__service-number::before {
  content: attr(data-number);
  position: absolute;
  left: 4px;
  top: 4px;
  color: #FFFFFF;
  z-index: -1;
}
@media screen and (min-width:901px) {
  .service-page__service-number::before {
    left: 4px;
    top: 4px;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card:not(.service-page__service-card--reverse):not(.service-page__service-card--third) .service-page__service-number {
    left: 58px;
    top: 0;
  }
  .service-page__service-card:not(.service-page__service-card--reverse):not(.service-page__service-card--third) .service-page__service-number::before {
    left: 103px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.service-page__service-card--reverse .service-page__service-number {
  left: auto;
  right: 20px;
}
@media screen and (min-width:901px) {
  .service-page__service-card--reverse .service-page__service-number {
    left: 940px;
    right: auto;
    top: 0;
  }
  .service-page__service-card--reverse .service-page__service-number::before {
    left: 110px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__service-card--reverse .service-page__service-number {
    left: calc(73.4375vw - 40px);
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card--third .service-page__service-number {
    left: 58px;
    right: auto;
    top: 0;
  }
  .service-page__service-card--third .service-page__service-number::before {
    left: 110px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.service-page__service-image-wrapper {
  position: relative;
  width: 188px;
  height: 301px;
  margin-left: auto;
  right: -20px;
  margin-bottom: 0;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width:901px) {
  .service-page__service-image-wrapper {
    position: absolute;
    width: 560px;
    height: 896px;
    margin: 0;
    z-index: 1;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__service-image-wrapper {
    width: calc(43.75vw - 40px);
    height: calc((43.75vw - 40px) * 1.6);
    max-width: 560px;
    max-height: 896px;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card:not(.service-page__service-card--reverse):not(.service-page__service-card--third) .service-page__service-image-wrapper {
    left: 530px;
    top: 116px;
    right: auto;
    margin: 0;
  }
}
.service-page__service-card--reverse .service-page__service-image-wrapper {
  margin-left: 0;
  margin-right: auto;
  right: auto;
  left: -20px;
}
@media screen and (min-width:901px) {
  .service-page__service-card--reverse .service-page__service-image-wrapper {
    left: 0;
    top: 123px;
    margin: 0;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card--third .service-page__service-image-wrapper {
    left: 530px;
    top: 124px;
    right: auto;
    margin: 0;
  }
}

.service-page__service-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service-page__service-image--pc {
  display: none;
}
.service-page__service-image--sp {
  display: block;
}
@media screen and (min-width:901px) {
  .service-page__service-image--pc {
    display: block;
  }
  .service-page__service-image--sp {
    display: none;
  }
}

.service-page__service-content {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
  padding: 39.5px 20px 144px;
  position: relative;
  margin-top: -148.5px;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width:901px) {
  .service-page__service-content {
    position: absolute;
    width: 590px;
    height: auto;
    min-height: 875px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
    padding: 60px 50px 50px;
    margin: 0;
    z-index: 2;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card:not(.service-page__service-card--reverse):not(.service-page__service-card--third) .service-page__service-content {
    left: 0;
    top: 53px;
    min-height: 875px;
  }
}
.service-page__service-content--reverse {
  padding: 42px 20px 144px;
}
@media screen and (min-width:901px) {
  .service-page__service-content--reverse {
    left: 500px;
    top: 65px;
    padding: 60px 50px 50px;
    min-height: 870px;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__service-content--reverse {
    left: calc(39.0625vw - 40px);
  }
}
@media screen and (max-width: 1000px) {
  .service-page__service-content--reverse {
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
  }
}
.service-page__service-content--third {
  padding: 42px 20px 144px;
}
@media screen and (min-width:901px) {
  .service-page__service-content--third {
    left: 0;
    top: 62px;
    padding: 60px 50px 50px;
    min-height: 869px;
  }
}

.service-page__service-header {
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (min-width:901px) {
  .service-page__service-header {
    margin-bottom: 0;
    text-align: left;
    position: absolute;
    top: 0;
    left: 40px;
    width: 490px;
  }
}

.service-page__service-title {
  font-size: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 41px;
  color: #1a1a1a;
  margin: 0 0 0 0;
}
@media screen and (min-width:901px) {
  .service-page__service-title {
    font-size: 4rem;
    line-height: 59px;
    margin-bottom: 0;
    margin-top: 82px;
  }
}
.service-page__service-title--reverse {
  line-height: 36px;
}
@media screen and (min-width:901px) {
  .service-page__service-title--reverse {
    line-height: 60px;
    width: 480px;
    margin-top: 71px;
    white-space: nowrap;
  }
  .service-page__service-title--reverse br {
    display: none;
  }
}
.service-page__service-title--third {
  line-height: 36px;
}
@media screen and (min-width:901px) {
  .service-page__service-title--third {
    line-height: 59px;
    width: 439px;
    margin-top: 74px;
    white-space: nowrap;
  }
  .service-page__service-title--third br {
    display: none;
  }
}

.service-page__service-title-en {
  font-size: 1.4rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #023E78;
  line-height: 17px;
  margin: 4px 0 0 0;
}
@media screen and (min-width:901px) {
  .service-page__service-title-en {
    font-size: 1.6rem;
    margin: 0 0 0 0;
    line-height: 1;
    width: 183px;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-content--reverse .service-page__service-title-en {
    width: 216px;
    margin-top: 0;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-content--third .service-page__service-title-en {
    width: 229px;
    margin-top: 0;
  }
}

.service-page__service-description {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 31px;
  margin-top: 30px;
}
@media screen and (min-width:901px) {
  .service-page__service-description {
    font-size: 1.4rem;
    line-height: 24px;
    margin-bottom: 0;
    margin-top: 77px;
    position: absolute;
    top: 136px;
    left: 40px;
    width: 510px;
  }
}
.service-page__service-description p {
  margin-bottom: 0;
}
@media screen and (min-width:901px) {
  .service-page__service-description p {
    margin-bottom: 0;
  }
}
.service-page__service-description p:last-child {
  margin-bottom: 0;
}

.service-page__service-table {
  border-top: 1px solid #ccc;
  margin-top: 20px;
}
@media screen and (min-width:901px) {
  .service-page__service-table {
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    top: 434px;
    left: 40px;
    width: 490px;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card:not(.service-page__service-card--reverse):not(.service-page__service-card--third) .service-page__service-table {
    top: 516px;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card--reverse .service-page__service-table {
    top: 507px;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card--third .service-page__service-table {
    top: 509px;
  }
}

.service-page__service-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width:901px) {
  .service-page__service-table-row {
    padding: 31px 0;
    gap: 52px;
    white-space: nowrap;
  }
}

.service-page__service-table-label {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:901px) {
  .service-page__service-table-label {
    font-size: 1.4rem;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.service-page__service-table-value {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width:901px) {
  .service-page__service-table-value {
    font-size: 1.4rem;
    line-height: 17px;
  }
}

.service-page__service-button {
  display: block;
  width: 295px;
  height: 72px;
  border: 1px solid #023E78;
  background-color: #FFFFFF;
  color: #023E78;
  text-decoration: none;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: absolute;
  margin-top: 32px;
  margin-bottom: 40px;
  left: 20px;
  right: auto;
}
@media screen and (min-width:901px) {
  .service-page__service-button {
    position: absolute;
    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;
    height: 72px;
    font-size: 1.6rem;
    width: 304px;
    margin: 0;
    left: 143px;
    top: 799px;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card:not(.service-page__service-card--reverse):not(.service-page__service-card--third) .service-page__service-button {
    left: 143px;
    top: 743px;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card--reverse .service-page__service-button {
    left: 143px;
    top: 738px;
  }
}
@media screen and (min-width:901px) {
  .service-page__service-card--third .service-page__service-button {
    left: 143px;
    top: 737px;
  }
}
.service-page__service-button:hover {
  opacity: 0.7;
}

.service-page__service-button-text {
  position: absolute;
  left: 50%;
  top: 24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width:901px) {
  .service-page__service-button-text {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
  }
}

.service-page__service-button-icon {
  position: absolute;
  left: 265px;
  top: 30px;
  width: 18px;
  height: 12px;
}
@media screen and (min-width:901px) {
  .service-page__service-button-icon {
    position: absolute;
    left: 264px;
    top: 29px;
    width: 20px;
    height: 14px;
  }
}

.service-page__flow {
  background-color: #023E78;
  background-image: url("../images/service-flow-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 20px;
  margin: 0 -20px;
  z-index: 0;
}
@media screen and (min-width: 375px) and (max-width: 768px) {
  .service-page__flow {
    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;
  }
}
@media screen and (min-width:901px) {
  .service-page__flow {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 552px;
    background-image: url("../images/service-flow-bg-pc.jpg");
    position: relative;
  }
}
.service-page__flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(2, 62, 120, 0.8);
}

.service-page__flow-title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width:901px) {
  .service-page__flow-title {
    font-size: 2.4rem;
    position: absolute;
    line-height: 29px;
    left: 50%;
    top: 80px;
    margin: 0;
    width: 120px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
  }
}

.service-page__flow-steps {
  position: relative;
  width: 100%;
  height: 640px;
  margin-left: 20px;
  z-index: 1;
}
@media screen and (min-width: 375px) and (max-width: 768px) {
  .service-page__flow-steps {
    margin-left: 0;
    width: calc(100% - 40px);
    max-width: 335px;
  }
}
@media screen and (min-width:901px) {
  .service-page__flow-steps {
    position: absolute;
    left: 7.03125%;
    top: 175px;
    width: auto;
    height: auto;
    margin: 0;
    display: block;
  }
}

.service-page__flow-step {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.328125%;
}
@media screen and (min-width:901px) {
  .service-page__flow-step {
    position: absolute;
    display: block;
    gap: 0;
  }
}
.service-page__flow-step--01 {
  left: 0;
  top: 0;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--01 {
    left: 0;
    top: 0;
  }
}
.service-page__flow-step--02 {
  left: 0px;
  top: 126px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--02 {
    left: 275px;
    top: 0;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--02 {
    left: 21.484375vw;
  }
}
.service-page__flow-step--03 {
  left: 0px;
  top: 287px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--03 {
    left: 550px;
    top: 0;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--03 {
    left: 42.96875vw;
  }
}
.service-page__flow-step--04 {
  left: 0px;
  top: 451px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--04 {
    left: 800px;
    top: 0;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--04 {
    left: 62.5vw;
  }
}

.service-page__flow-step-number {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  position: absolute;
  left: 0;
  top: 26px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 8px;
  }
}
.service-page__flow-step--02 .service-page__flow-step-number {
  top: 45px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--02 .service-page__flow-step-number {
    top: 0;
  }
}
.service-page__flow-step--03 .service-page__flow-step-number {
  top: 49px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--03 .service-page__flow-step-number {
    top: 0;
  }
}
.service-page__flow-step--04 .service-page__flow-step-number {
  top: 63px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--04 .service-page__flow-step-number {
    left: 25px;
    top: 0;
  }
}

.service-page__flow-step-number-label {
  font-size: 2rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #FFF400;
  line-height: 24px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step-number-label {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0;
  }
}

.service-page__flow-step-number-value {
  font-size: 4rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #FFF400;
  line-height: 1;
}
@media screen and (min-width:901px) {
  .service-page__flow-step-number-value {
    font-size: 4rem;
    line-height: 48px;
  }
}

.service-page__flow-step-image {
  display: none;
}
@media screen and (min-width:901px) {
  .service-page__flow-step-image {
    display: block;
    position: absolute;
    width: 298px;
    height: 209px;
    top: 49px;
    left: 0;
    z-index: 1;
  }
  .service-page__flow-step-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step-image {
    width: 23.28125vw;
  }
}
@media screen and (min-width:901px) {
  .service-page__flow-step--01 .service-page__flow-step-image {
    z-index: 4;
  }
}
@media screen and (min-width:901px) {
  .service-page__flow-step--02 .service-page__flow-step-image {
    z-index: 3;
  }
}
@media screen and (min-width:901px) {
  .service-page__flow-step--03 .service-page__flow-step-image {
    z-index: 2;
  }
}
@media screen and (min-width:901px) {
  .service-page__flow-step--04 .service-page__flow-step-image {
    width: 300px;
    z-index: 1;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--04 .service-page__flow-step-image {
    width: 23.4375vw;
  }
}

.service-page__flow-step-image--sp {
  display: block;
}
@media screen and (min-width:901px) {
  .service-page__flow-step-image--sp {
    display: none;
  }
}

.service-page__flow-step-image--pc {
  display: none;
}
@media screen and (min-width:901px) {
  .service-page__flow-step-image--pc {
    display: block;
  }
}

.service-page__flow-step-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  left: 60px;
  padding: 55px 20px 26px;
  width: 275px;
  position: relative;
  background-image: url("../images/service-flow-step-01.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width:901px) {
  .service-page__flow-step-content {
    position: absolute;
    left: 0;
    top: 49px;
    padding: 0;
    width: 298px;
    height: 209px;
    background-image: none;
    background-color: transparent;
    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;
    z-index: 10;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step-content {
    width: 23.28125vw;
    height: 20.953125vw;
  }
}
.service-page__flow-step--01 .service-page__flow-step-content {
  height: 148px;
  background-image: url("../images/service-flow-step-01.svg");
  z-index: 3;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--01 .service-page__flow-step-content {
    height: 209px;
    background-image: none;
    z-index: 10;
  }
}
.service-page__flow-step--02 .service-page__flow-step-content {
  height: 190px;
  background-image: url("../images/service-flow-step-02.svg");
  z-index: 2;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--02 .service-page__flow-step-content {
    height: 209px;
    background-image: none;
    z-index: 10;
  }
}
.service-page__flow-step--03 .service-page__flow-step-content {
  height: 193px;
  background-image: url("../images/service-flow-step-03.svg");
  z-index: 1;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--03 .service-page__flow-step-content {
    height: 209px;
    background-image: none;
    z-index: 10;
  }
}
.service-page__flow-step--04 .service-page__flow-step-content {
  height: 191px;
  background-image: url("../images/service-flow-step-04.svg");
}
@media screen and (min-width:901px) {
  .service-page__flow-step--04 .service-page__flow-step-content {
    height: 209px;
    width: 300px;
    background-image: none;
    z-index: 10;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--04 .service-page__flow-step-content {
    width: 23.4375vw;
    height: 21.09375vw;
  }
}

.service-page__flow-step-title {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 22px;
  color: #023E78;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width:901px) {
  .service-page__flow-step-title {
    font-size: 2rem;
    position: absolute;
    top: 95px;
    left: 0;
    -webkit-transform: none;
            transform: none;
    margin: 0;
    text-align: left;
    width: auto;
    color: #023E78;
  }
}
@media screen and (min-width:901px) {
  .service-page__flow-step--01 .service-page__flow-step-title {
    left: 43px;
    top: 46px;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--01 .service-page__flow-step-title {
    left: 3.359375vw;
    top: 3.59375vw;
  }
}
@media screen and (max-width: 1200px) and (min-width:901px) {
  .service-page__flow-step--01 .service-page__flow-step-title {
    top: 0;
  }
}
.service-page__flow-step--02 .service-page__flow-step-title {
  top: 38px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--02 .service-page__flow-step-title {
    top: 46px;
    left: 50px;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--02 .service-page__flow-step-title {
    left: 3.90625vw;
    top: 3.59375vw;
  }
}
@media screen and (max-width: 1200px) and (min-width:901px) {
  .service-page__flow-step--02 .service-page__flow-step-title {
    top: 0;
  }
}
.service-page__flow-step--03 .service-page__flow-step-title {
  top: 41px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--03 .service-page__flow-step-title {
    top: 46px;
    left: 50px;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--03 .service-page__flow-step-title {
    left: 3.90625vw;
    top: 3.59375vw;
  }
}
@media screen and (max-width: 1200px) and (min-width:901px) {
  .service-page__flow-step--03 .service-page__flow-step-title {
    top: 0;
  }
}
.service-page__flow-step--04 .service-page__flow-step-title {
  top: 42px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--04 .service-page__flow-step-title {
    top: 46px;
    left: 75px;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--04 .service-page__flow-step-title {
    left: 5.859375vw;
    top: 3.59375vw;
  }
}
@media screen and (max-width: 1200px) and (min-width:901px) {
  .service-page__flow-step--04 .service-page__flow-step-title {
    top: 0;
  }
}

.service-page__flow-step-description {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0;
  position: absolute;
  top: 55px;
  left: 20px;
  width: 235px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step-description {
    font-size: 1.4rem;
    line-height: 24px;
    position: absolute;
    top: 93px;
    left: 0;
    width: 200px;
    color: #1a1a1a;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step-description {
    width: 15.625vw;
    top: 7.265625vw;
  }
}
@media screen and (max-width: 1200px) and (min-width:901px) {
  .service-page__flow-step-description {
    top: 30px;
  }
}
@media screen and (min-width:901px) {
  .service-page__flow-step--01 .service-page__flow-step-description {
    left: 43px;
    width: 200px;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--01 .service-page__flow-step-description {
    left: 3.359375vw;
    width: 15.625vw;
    top: 7.265625vw;
  }
}
@media screen and (max-width: 1200px) and (min-width:901px) {
  .service-page__flow-step--01 .service-page__flow-step-description {
    top: 30px;
  }
}
.service-page__flow-step--02 .service-page__flow-step-description {
  top: 70px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--02 .service-page__flow-step-description {
    top: 93px;
    left: 50px;
    width: 200px;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--02 .service-page__flow-step-description {
    left: 3.90625vw;
    width: 15.625vw;
    top: 7.265625vw;
  }
}
@media screen and (max-width: 1200px) and (min-width:901px) {
  .service-page__flow-step--02 .service-page__flow-step-description {
    top: 30px;
  }
}
.service-page__flow-step--03 .service-page__flow-step-description {
  top: 74px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--03 .service-page__flow-step-description {
    top: 93px;
    left: 50px;
    width: 200px;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--03 .service-page__flow-step-description {
    left: 3.90625vw;
    width: 15.625vw;
    top: 7.265625vw;
  }
}
@media screen and (max-width: 1200px) and (min-width:901px) {
  .service-page__flow-step--03 .service-page__flow-step-description {
    top: 30px;
  }
}
.service-page__flow-step--04 .service-page__flow-step-description {
  top: 75px;
}
@media screen and (min-width:901px) {
  .service-page__flow-step--04 .service-page__flow-step-description {
    top: 93px;
    left: 76px;
    width: 200px;
    color: #1a1a1a;
  }
  .service-page__flow-step--04 .service-page__flow-step-description p {
    margin: 0;
  }
}
@media screen and (max-width: 1279px) and (min-width: 768px) and (min-width:901px) {
  .service-page__flow-step--04 .service-page__flow-step-description {
    left: 5.9375vw;
    width: 15.625vw;
    top: 7.265625vw;
  }
}
@media screen and (max-width: 1200px) and (min-width:901px) {
  .service-page__flow-step--04 .service-page__flow-step-description {
    top: 30px;
  }
}

.service-page__flow-step-description-note {
  color: #E61264;
}
@media screen and (min-width:901px) {
  .service-page__flow-step-description-note {
    display: block;
    margin-top: 0;
  }
}

.service-page__faq {
  padding: 60px 0 0;
}
@media screen and (min-width:901px) {
  .service-page__faq {
    padding: 0;
    width: 688px;
    margin: 0 auto;
  }
}

.service-page__faq-title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 auto 40px;
}
@media screen and (min-width:901px) {
  .service-page__faq-title {
    font-size: 2.4rem;
    line-height: 29px;
    margin-bottom: 60px;
  }
}

.service-page__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: 0;
}

.service-page__faq-item {
  background-color: #FFFFFF;
  border-bottom: 1px solid #ddd;
  overflow: visible;
}

.service-page__faq-question {
  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%;
  padding: 17px 20px;
  background-color: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
}
@media screen and (min-width:901px) {
  .service-page__faq-question {
    padding: 32px 0;
  }
}
.service-page__faq-question:hover {
  background-color: #f8f8f8;
}

.service-page__faq-question-text {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 19px;
  color: #1a1a1a;
  width: 262px;
  max-width: 262px;
  padding: 2px 0;
}
@media screen and (min-width:901px) {
  .service-page__faq-question-text {
    font-size: 2rem;
    line-height: 24px;
    padding: 3px 0;
    width: auto;
    max-width: calc(100% - 60px);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.service-page__faq-item--open .service-page__faq-question-text {
  color: #E61264;
}

.service-page__faq-icon {
  width: 21px;
  height: 21px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
}
@media screen and (min-width:901px) {
  .service-page__faq-icon {
    width: 21px;
    height: 21px;
  }
}
.service-page__faq-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-page__faq-icon--plus {
  display: block;
  position: absolute;
  right: 28px;
  top: 17px;
}
@media screen and (min-width:901px) {
  .service-page__faq-icon--plus {
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.service-page__faq-icon--close {
  display: none;
  position: absolute;
  width: 21px;
  height: 21px;
  right: 24px;
  top: 17px;
}
@media screen and (min-width:901px) {
  .service-page__faq-icon--close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.service-page__faq-item--open .service-page__faq-icon--plus {
  display: none;
}
.service-page__faq-item--open .service-page__faq-icon--close {
  display: block;
}

.service-page__faq-answer {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  padding: 0 20px 20px;
  display: none;
  overflow: visible;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width:901px) {
  .service-page__faq-answer {
    font-size: 1.4rem;
    line-height: 24px;
    padding: 0 40px 30px;
  }
}
.service-page__faq-answer p {
  margin-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width:901px) {
  .service-page__faq-answer p {
    margin-bottom: 0;
    line-height: 24px;
  }
}
.service-page__faq-answer p:last-child {
  margin-bottom: 0;
}

.service-page__faq-item--open .service-page__faq-answer {
  display: block;
  overflow: visible;
}

.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;
  padding: 24px 32px;
  min-height: 68px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #023E78;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--outline {
  background-color: #FFFFFF;
  color: #023E78;
  border-color: #023E78;
}

.btn--outline:hover {
  background-color: #023E78;
  color: #FFFFFF;
}

.btn--fill {
  background-color: #023E78;
  color: #FFFFFF;
  border-color: #023E78;
}

.btn--fill:hover {
  background-color: #002a52;
  border-color: #023E78;
}

.btn--outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  width: 100%;
}

.btn--outline-white:hover {
  background-color: #FFFFFF;
  color: #023E78;
}

.btn--fill-white {
  background-color: #FFFFFF;
  color: #023E78;
  border-color: #FFFFFF;
  width: 100%;
}

.btn--fill-white:hover {
  background-color: #EDF3F8;
  border-color: #FFFFFF;
}

.btn--small {
  padding: 10px 20px;
  min-height: 44px;
  font-size: 1.2rem;
}

.btn--large {
  padding: 32px 80px;
  min-height: 72px;
  font-size: 1.6rem;
}

.btn--arrow {
  position: relative;
  padding-right: 50px;
}

.btn--arrow::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath fill='%23023E78' d='M0 5h14M11 1l4 4-4 4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: right 0.3s ease, -webkit-transform 0.3s ease;
  transition: right 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, right 0.3s ease;
  transition: transform 0.3s ease, right 0.3s ease, -webkit-transform 0.3s ease;
}

.btn--arrow:hover::after {
  right: 15px;
}

.btn--fill.btn--arrow::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath fill='%23FFFFFF' d='M0 5h14M11 1l4 4-4 4'/%3E%3C/svg%3E");
}

.btn--fill.btn--arrow:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath fill='%23FFFFFF' d='M0 5h14M11 1l4 4-4 4'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  .btn {
    padding: 22px;
    min-height: 68px;
    font-size: 1.6rem;
  }
}
.footer {
  position: relative;
  width: 100%;
  background-color: #1a1a1a;
  color: #FFFFFF;
}

.footer__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 340px;
  position: relative;
}

.footer__cta-button {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.footer__cta-button-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}

.footer__cta-button-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer__cta-button--download .footer__cta-button-overlay {
  background-color: rgba(0, 87, 172, 0.8);
}

.footer__cta-button--contact .footer__cta-button-overlay {
  background-color: rgba(2, 62, 120, 0.8);
}

.footer__cta-button-content {
  position: absolute;
  top: 52px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer__cta-button-title {
  font-size: 6rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 10px 0;
}

.footer__cta-button-subtitle {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}

.footer__cta-button-link {
  position: relative;
  margin-top: 37px;
  border: 3px solid #FFF400;
  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;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2;
  width: 315px;
  height: 98px;
  padding: 34px 101px 35px 103px;
  min-width: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer__cta-button-link:hover {
  opacity: 0.8;
}

.footer__cta-button-link-text {
  font-size: 2.4rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  text-align: center;
  color: #FFF400;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.footer__cta-button-link-arrow {
  position: absolute;
  right: 32px;
  width: 20px;
  height: 14px;
  background-image: url("../images/footer-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__company {
  position: relative;
  width: 100%;
  background-color: #1a1a1a;
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 400px;
}

.footer__company-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 90px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__company-title {
  font-size: 5.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: normal;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.footer__company-address {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #FFFFFF;
  margin: 0;
}
.footer__company-address p {
  margin: 0;
}

.footer__copyright {
  position: absolute;
  bottom: 23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
  width: 100%;
  max-width: 1100px;
  padding: 0 90px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer__icon-top {
  position: absolute;
  bottom: 45px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid #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;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: 10;
}

.footer__icon-top:hover {
  opacity: 0.7;
}

.footer__icon-top-arrow {
  width: 100%;
  height: 100%;
  background-image: url("../images/icon-top.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .footer__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    margin-top: 88px;
  }
  .footer__cta-button {
    width: 100%;
    height: 265px;
    min-height: 265px;
  }
  .footer__cta-button-content {
    top: 35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0;
    padding-left: max(10px, (100% - 295px) / 2);
    padding-right: max(10px, (100% - 295px) / 2);
    width: 100%;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__cta-button-title {
    font-size: 4rem;
    margin-bottom: 6px;
  }
  .footer__cta-button-subtitle {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .footer__cta-button-link {
    margin: 40px auto 0;
    width: 295px;
    height: 77px;
    min-height: 77px;
    padding: 29px 110px;
    border-width: 2px;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    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;
  }
  .footer__cta-button-link-text {
    font-size: 1.6rem;
  }
  .footer__cta-button-link-arrow {
    right: 19px;
    width: 20px;
    height: 14px;
  }
  .footer__company {
    padding-top: 70px;
    padding-bottom: 68px;
    min-height: auto;
  }
  .footer__company-inner {
    padding: 0 48px;
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__company-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: center;
    white-space: nowrap;
  }
  .footer__company-address {
    font-size: 1.4rem;
    text-align: left;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    line-height: 24px;
  }
  .footer__copyright {
    bottom: 8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 1.2rem;
    text-align: center;
    padding: 0;
    width: calc(100% - 96px);
    max-width: none;
  }
  .footer__icon-top {
    bottom: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 375px) {
  .footer__cta-button-content {
    padding-left: max(10px, (100vw - 295px) / 2);
    padding-right: max(10px, (100vw - 295px) / 2);
  }
}