@charset "UTF-8";
/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span, small, em, time, i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

a:-webkit-any-link:focus-visible {
  outline-offset: 1px;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.7;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, select {
  vertical-align: middle;
}

abbr[title], dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: inherit;
}

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

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

body,
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Noto sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  color: #333;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 100px;
}

@media (max-width: 767px) {
  :target {
    scroll-margin-top: 60px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

@media (max-width: 767px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.4;
  }
}
th, dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

a[href^=tel] {
  cursor: default;
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 1.8;
  }
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }
}
.txt-right {
  text-align: right;
}

.hover {
  transition: opacity 0.5s;
}
.hover:hover {
  opacity: 0.5;
}

.header {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
}
.header .logo {
  display: flex;
  align-items: center;
}
@media (max-width: 959px) {
  .header .logo {
    padding: 10px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .header .logo {
    width: 55%;
    padding: 10px;
    margin-right: 0;
  }
}
@media (max-width: 400px) {
  .header .logo {
    padding: 0;
  }
}
.header .logo img {
  width: clamp(110px, 9.7222vw, 140px);
}
.header .button.-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 220px;
  height: 46px;
  background-color: #250E6C;
  color: #fff;
  border-radius: 60px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .header .button.-cta {
    width: 80%;
    margin: 0 auto;
  }
}
.header .button.-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 30px;
  height: 4px;
  background: url(../images/icon-arow-header.svg) no-repeat center/contain;
}
.header .button.-cta:hover {
  background-color: #fff;
  color: #192348;
  border: 1px solid #192348;
}
.header .button.-cta:hover::before {
  background: url(../images/icon-arow-header_b.svg) no-repeat center/contain;
}
.header .button.-cta.wide {
  margin: 0 auto;
  width: 260px;
}
@media (max-width: 767px) {
  .header .button.-cta.wide {
    width: 80%;
  }
}
.header .button.-cta .tb {
  display: none;
}
.header .button.-cta span {
  position: relative;
  right: 10px;
  font-size: 14px;
  letter-spacing: 0;
}

.header-contentWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 999;
  margin: 0 auto;
  padding: 10px 20px;
  height: 84px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}
@media (max-width: 767px) {
  .header-contentWrapper {
    padding: 0;
    height: 55px;
    justify-content: space-between;
  }
}

.gnav-pc {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 37px;
}
@media (max-width: 1286px) {
  .gnav-pc {
    display: none;
  }
}
.gnav-pc a,
.gnav-pc a:visited {
  color: #333;
  text-decoration: none;
}
.gnav-pc-list {
  position: relative;
  margin-right: 0;
  text-align: right;
  font-weight: 500;
}
.gnav-pc .item {
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 960px) and (max-width: 1450px) {
  .gnav-pc .item {
    font-size: 15px;
  }
  .gnav-pc .item:not(:first-child) {
    margin-left: 35px;
  }
}
.gnav-pc .item:not(:first-child) {
  margin-left: 20px;
}
.gnav-pc .item a {
  transition: opacity 0.4s ease;
}
.gnav-pc .item a:hover {
  opacity: 0.6;
}

.gnav-sp {
  display: none;
}
@media (max-width: 1286px) {
  .gnav-sp {
    display: block;
  }
}
.gnav-sp-contents {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9999;
  padding-bottom: 30px;
  background-color: #fff;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 959px) {
  .gnav-sp-contents {
    top: 75px;
  }
}
@media (max-width: 767px) {
  .gnav-sp-contents {
    top: 50px;
  }
}
.gnav-sp-contents.is-open {
  display: block;
  height: 100%;
  overflow-y: auto;
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.gnav-sp-list {
  display: block;
  width: 80%;
  margin: 30px auto;
}
.gnav-sp-list .item {
  position: relative;
  width: 100%;
  font-weight: 500;
  background: #fff;
  border-bottom: 1px solid #E8E8E8;
  transition: 0.3s;
}
.gnav-sp-list .item a {
  transition: opacity 0.4s ease;
}
.gnav-sp-list .item a:hover {
  opacity: 0.6;
}
.gnav-sp-list .link {
  display: block;
  position: relative;
  padding: 20px;
  text-decoration: none;
}
.gnav-sp-list .link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 14px;
  background: url(../images/icon-arow.svg) no-repeat center/contain;
}
.gnav-sp-child {
  display: none;
  margin-top: 10px;
}
.gnav-sp .child-list {
  padding-bottom: 15px;
}
.gnav-sp .child-list li {
  padding: 10px 0 10px 20px;
}
.gnav-sp .child-list li::before {
  content: "- ";
  color: #192348;
}

@media (min-width: 1287px) {
  .hamburger {
    display: none;
  }
}
.hamburger {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .hamburger {
    margin-right: 10px;
  }
}
.hamburger span {
  position: absolute;
  left: 50%;
  width: 25px;
  height: 1px;
  background: #192348;
  transform: translateX(-50%);
  transition: 0.4s;
}
.hamburger span:nth-of-type(1) {
  top: 30%;
}
.hamburger span:nth-of-type(2) {
  top: 50%;
}
.hamburger span:nth-of-type(3) {
  top: 70%;
}
.hamburger.is-open span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-open span:nth-of-type(2) {
  display: none;
}
.hamburger.is-open span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mainContents {
  margin-top: 84px;
}

.o-topWrapperHero {
  padding: 95px 0 90px;
  background: url(../images/mv_bg.jpg) center/cover no-repeat;
  margin-bottom: 40px;
}
.o-topWrapperHero .inner {
  max-width: 936px;
  margin: 0 auto;
}
.o-topWrapperHero .title img {
  width: 100%;
}
.o-topWrapperHero .text {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  margin: 80px 0 0;
  color: #000;
  line-height: 1.6;
}

@media screen and (max-width: 1045px) {
  .o-topWrapperHero {
    padding: 87px 0 80px;
  }
  .o-topWrapperHero .inner {
    margin: 0 20px;
  }
  .o-topWrapperHero .text {
    font-size: 13px;
    letter-spacing: 0;
    margin: 25px 0 0;
  }
}
.o-topWrapperSec01 {
  padding-bottom: 40px;
}
.o-topWrapperSec01 .articleList {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.o-topWrapperSec01 .articleList .item {
  margin-bottom: 20px;
  position: relative;
}
.o-topWrapperSec01 .articleList .item a {
  transition: opacity 0.3s ease;
}
.o-topWrapperSec01 .articleList .item a:hover {
  opacity: 0.6;
}
.o-topWrapperSec01 .articleList .title {
  display: block;
  color: #08243A;
  font-size: 16px;
}
.o-topWrapperSec01 .headlineWrap {
  margin-right: 180px;
  display: flex;
  align-items: center;
}
.o-topWrapperSec01 .o-component {
  display: flex;
  justify-content: center;
  min-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.headline-top {
  text-align: center;
  font-size: 36px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 25px;
}
.headline-top span {
  font-size: 61px;
  font-family: "Inter", sans-serif;
}
.headline-top.-white {
  font-size: 54px;
}

.textDesc-top {
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 50px;
}

.post-data {
  line-height: 1;
  font-size: 12px;
  color: #08243A;
  margin-bottom: 5px;
}

.o-topWrapperSec02 {
  background: linear-gradient(to right, #192143, #12326F);
  color: #fff;
  padding: 81px 0 60px;
}

.o-topWrapperSec03 {
  padding: 120px 0;
  background-color: rgba(232, 232, 232, 0.3);
}
.o-topWrapperSec03__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
  text-align: center;
}
.o-topWrapperSec03__lead {
  font-size: 20px;
  margin-bottom: 45px;
  font-weight: 500;
  text-align: center;
}

.lineup__panel {
  background-color: #fff;
  border-radius: 40px;
  padding: 60px 130px;
  display: grid;
  grid-template-columns: 1fr 250px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  position: relative;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.lineup__panel::after {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 80px;
  grid-column: 2;
  width: 1px;
  border-left: 1px dashed #cfcfcf;
}
.lineup__btn-wrap {
  text-align: center;
}
.lineup__btn-wrap--right {
  margin-top: 40px;
}

@media (max-width: 1227px) {
  .container {
    padding: 40px 40px;
    grid-template-columns: 1fr 220px;
  }
}
@media (max-width: 1075px) {
  .lineup__panel {
    padding: 40px 40px;
  }
  .container {
    grid-template-columns: 1fr 220px;
  }
}
.group {
  margin-bottom: 60px;
}
.group.group--block {
  margin-bottom: 48px;
}

.group__heading {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #250E6C;
  margin-bottom: 18px;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
}
.group__heading.orange {
  color: #F7B214;
  padding-left: 50px;
}

.cards {
  display: grid;
  gap: 20px;
}
.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards--2 {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
.cards--1 {
  margin: 0 auto;
  padding-left: 50px;
  gap: 30px;
}

.card {
  text-align: center;
  position: relative;
  min-width: 200px;
  padding-top: 22px;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-color: #250E6C;
}
.card.orange::before {
  background-color: #F7B214;
}
.card__cat {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.card__img {
  margin-bottom: 20px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__img.wide {
  margin-bottom: 0;
  height: 100%;
}
.card__img.wide img {
  width: 100%;
}
.card__img.small {
  height: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__img img {
  width: 78%;
}
.card__img img.min {
  width: 50.5%;
}
.card__label {
  background-color: #250E6C;
  color: #fff;
  padding: 7px 0;
  font-size: 17px;
  font-weight: 600;
  margin: 0 10px 14px;
  line-height: 1.5;
}
.card__label.orange {
  background-color: #F7B214;
  padding: 16px 0;
  width: 100%;
  margin: 0 auto;
}
.card__label span {
  font-size: 12px;
  display: block;
}
.card__plan {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}
.card__desc {
  font-size: 14px;
  margin-bottom: 11px;
  font-weight: 600;
  line-height: 1.5;
  color: #14316A;
}
.card__desc.orange {
  color: #040404;
  margin: 40px 0 25px;
}
.card__desc.small {
  font-size: 13px;
}
.card__note {
  font-size: 10px;
}

.object {
  text-align: center;
}
.object__label {
  background: #f5a300;
  color: #fff;
  font-weight: 600;
  padding: 16px 0;
  border-radius: 4px;
  margin-bottom: 20px;
}
.object__text {
  font-size: 14px;
  margin-bottom: 30px;
}
.object__img {
  background: linear-gradient(180deg, #ffd34d, #f5a300);
  padding: 30px;
  border-radius: 12px;
}

.o-topWrapperSec04 {
  background-color: rgba(232, 232, 232, 0.3);
}
.o-topWrapperSec04 .o-topWrapperSec04__title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0;
}
.o-topWrapperSec04 .sec04__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  background: url(../images/sec04_bg.jpg) no-repeat center/cover;
}
.o-topWrapperSec04 .sec04__content {
  padding: 50px 45px 50px 68px;
  color: #fff;
}
.o-topWrapperSec04 .sec04__lead {
  font-size: 20px;
  text-align: center;
  margin-bottom: 12px;
}
.o-topWrapperSec04 .sec04__title {
  font-size: 56px;
  margin-bottom: 40px;
  line-height: 1;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 16px;
  letter-spacing: 0;
}
.o-topWrapperSec04 .sec04__title img {
  width: 190px;
  line-height: 1;
}
.o-topWrapperSec04 .sec04__title-small {
  font-size: 24px;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  left: -14px;
  font-weight: 600;
}
.o-topWrapperSec04 .sec04__text {
  max-width: 370px;
  font-size: 16px;
  line-height: 1.8;
}
.o-topWrapperSec04 .sec04-box {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.o-topWrapperSec04 .sec04-box .l-img {
  margin: 0 0 0 40px;
}
.o-topWrapperSec04 .sec04-box .l-img img {
  width: 100%;
}

.o-topWrapperSec05 {
  background: url(../images/sec05_bg.jpg) no-repeat center/cover;
  padding: 120px 0 130px;
  height: 100%;
}
.o-topWrapperSec05 .sec05-title {
  text-align: center;
  margin-bottom: 35px;
}
.o-topWrapperSec05 .sec05-title .jp {
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
.o-topWrapperSec05 .sec05-title .en {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 64px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.o-topWrapperSec05 .sec05-txt {
  text-align: center;
  margin-bottom: 50px;
}
.o-topWrapperSec05 .sec05-box-style {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 150px;
  background-color: #fff;
  border-radius: 40px;
}
.o-topWrapperSec05 .sec05-box-style .top-card03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 80px;
  -moz-column-gap: 5.5%;
       column-gap: 5.5%;
}
.o-topWrapperSec05 .sec05-box-style .top-card03 > li {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color_border);
}
.o-topWrapperSec05 .sec05-box-style .top-card03 .card-desc {
  margin-top: 20px;
}
.o-topWrapperSec05 .sec05-box-style .top-card03 .card-desc p {
  letter-spacing: 0;
}
.o-topWrapperSec05 .sec05-box-style .top-card03 .card-number {
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}
.o-topWrapperSec05 .sec05-box-style .top-card03 .card-ttl {
  text-align: center;
  margin-bottom: 5px;
  font-size: 21px;
  line-height: 1.7;
  min-height: 5.1em;
  align-items: center;
  justify-content: center;
  display: flex;
  font-weight: 600;
}
.o-topWrapperSec05 .sec05-box-style .top-card03 .card-ttl.three-lines {
  line-height: 1.4;
}
.o-topWrapperSec05 .sec05-box-style .top-card03 .card-btn {
  padding: 0 7%;
  margin: auto 0 30px;
  text-align: center;
}

.o-topWrapperSec06 {
  background: url(../images/sec06_bg.jpg) no-repeat center/cover;
  padding: 70px 0;
  color: #fff;
  text-align: center;
}
.o-topWrapperSec06 .sec06-title {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 35px;
}
.o-topWrapperSec06 .sec06-txt {
  margin-bottom: 40px;
}

.o-topWrapperSec07 {
  padding: 100px 0 110px;
  background-color: rgba(232, 232, 232, 0.3);
}
.o-topWrapperSec07 .o-component {
  max-width: 1000px;
  margin: 0 auto;
}
.o-topWrapperSec07 .sec07-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 25px;
}
.o-topWrapperSec07 .top-card02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2%;
  margin-bottom: 100px;
}
.o-topWrapperSec07 .top-card02 .top-card02-item {
  background-color: #fff;
  padding: 14px 20px 32px;
  height: 100%;
}
.o-topWrapperSec07 .top-card02 .card-desc .card-txt {
  margin-top: 10px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}
.o-topWrapperSec07 .top-card02 .card-desc .card-txt.small {
  font-size: 13px;
  font-weight: 400;
}
.o-topWrapperSec07 .top-card02 .card-img {
  display: flex;
  justify-content: center;
}
.o-topWrapperSec07 .top-card02 .card-ttl {
  text-align: center;
  margin-bottom: 7px;
  height: 60px; /* txt01 がなくても高さが確保される */
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦方向の中央揃え */
  align-items: center;
}
.o-topWrapperSec07 .top-card02 .card-ttl .txt01 {
  display: block;
  font-size: 12px;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 1;
}
.o-topWrapperSec07 .top-card02 .card-ttl .txt02 {
  display: block;
  font-size: 21px;
  font-weight: 600;
}
.o-topWrapperSec07 .sec07-box {
  background: linear-gradient(135deg, rgba(182, 220, 235, 0.5) 0%, rgba(175, 213, 228, 0.5) 100%);
  border: 1px solid rgba(145, 189, 206, 0.6);
  padding: 74px 0 74px 7.5%;
  display: flex;
  align-items: center;
  gap: 5.5%;
  transition: opacity 0.5s;
  position: relative;
}
.o-topWrapperSec07 .sec07-box::before {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 152px;
  height: 20px;
  background: url(../images/sec07_box_deco.png) no-repeat;
}
.o-topWrapperSec07 .sec07-box:hover {
  opacity: 0.5;
}
.o-topWrapperSec07 .sec07-box-img {
  max-width: 460px;
}
.o-topWrapperSec07 .sec07-box-title {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}

.o-topWrapperSec08 {
  background: linear-gradient(to right, #192143, #12326F);
  color: #fff;
  padding: 73px 0 80px;
}
.o-topWrapperSec08 .sec08-title {
  font-size: 34px;
  text-align: center;
  margin-bottom: 38px;
}

.footer .copyright {
  font-size: 1rem;
  line-height: 1.6;
  color: #8c8c8c;
  padding: 20px 0;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.footer-ctaWrapper {
  padding: 100px 0;
}

.footer-ctaWrapper .list {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 960px) {
  .footer-ctaWrapper .list li {
    width: 48%;
  }
}
.footer-ctaWrapper .list .button {
  width: 395px;
  max-width: 100%;
  font-size: 2.4rem;
}

.footer-contentWrapper {
  background-color: #005cca;
  padding: 30px 0 50px;
}

.footer-contentWrapper .logo {
  text-align: center;
  margin-bottom: 15px;
  display: block;
}
.footer-contentWrapper .logo img {
  width: 200px;
}

.footer-navigation {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  color: #fff;
}

.footer-navigation .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-navigation .list li a {
  text-decoration: none;
}

.footer-navigation .link {
  padding-left: 15px;
  font-size: 14px;
  position: relative;
}
.footer-navigation .link::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}
.footer-navigation .link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

@media screen and (min-width: 768px) {
  .footer-navigation .item:hover .link:after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.pagetop {
  background-color: #005cca;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: fixed;
  z-index: 999;
  transition: 0.3s;
  bottom: 5px;
  right: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.pagetop::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 0px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.pagetop:hover {
  opacity: 0.8;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .pagetop {
    bottom: 30px;
    right: 30px;
  }
}
.fixed-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 100;
  transition: 0.3s;
}

.fixed-btn-link:hover {
  opacity: 0.8;
}

.fixed-btn-link img {
  width: 200px;
  height: 200px;
}

.fixed-btn--close {
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
  color: #fff;
  text-align: center;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 99;
  cursor: pointer;
  width: 33px;
  height: 33px;
  background-color: #005cca;
  border-radius: 17px;
}

.fixed-btn.is-close {
  display: none;
}

.fixed-btn--left {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 100;
  transition: 0.3s;
  right: auto;
  left: 30px;
}

.fixed-btn--close02 {
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
  color: #fff;
  text-align: center;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 99;
  cursor: pointer;
  width: 33px;
  height: 33px;
  background-color: #005cca;
  border-radius: 17px;
}

.download {
  text-align: right;
  margin-bottom: 10px;
}

.list,
.download-list {
  display: flex;
  -moz-column-gap: 33px;
       column-gap: 33px;
  row-gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.list li a,
.download-list li a {
  transition: opacity 0.4s ease;
}
.list li a:hover,
.download-list li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 766px) {
  .card__description {
    justify-content: center;
  }
  .card__img.wide {
    width: 50%;
  }
  .card__img.wide img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .mainContents {
    margin-top: 55px;
  }
  .o-topWrapperHero {
    padding: 60px 0 85px;
  }
  .o-topWrapperHero .title {
    width: 80%;
    margin: 0 auto;
  }
  .o-component {
    display: block;
    min-width: 90%;
  }
  .o-topWrapperSec01 {
    padding-bottom: 20px;
  }
  .o-topWrapperSec01 .o-component {
    display: block;
    width: 80%;
    min-width: 0;
    margin: 0 auto;
  }
  .o-topWrapperSec01 .articleList .item {
    display: flex;
    gap: 12px;
    align-items: baseline;
  }
  .o-topWrapperSec01 .articleList .title {
    font-size: 12px;
  }
  .o-topWrapperSec01 .headlineWrap {
    justify-content: center;
    margin: 0;
  }
  .o-topWrapperSec01 .headline-top {
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
  }
  .o-topWrapperSec02 {
    padding: 40px 0;
  }
  .o-topWrapperSec03 {
    padding: 60px 0;
  }
  .o-topWrapperSec03__title {
    font-size: 24px;
    letter-spacing: 0;
  }
  .o-topWrapperSec03__lead {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 40px;
  }
  .o-topWrapperSec03 {
    padding: 70px 0;
  }
  .lineup__panel {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    border-radius: 24px;
  }
  .lineup__panel::after {
    display: none;
  }
  .lineup__left, .lineup__right {
    width: 100%;
  }
  .lineup__right {
    margin-top: 60px;
  }
  .cards--3 {
    grid-template-columns: 1fr;
  }
  .cards--2 {
    flex-direction: column;
    gap: 20px;
  }
  .cards--1 {
    padding-left: 0;
  }
  .group__heading.orange {
    padding-left: 0;
  }
  .o-topWrapperSec04 .o-topWrapperSec04__title {
    font-size: 22px;
    margin-bottom: 13px;
  }
  .o-topWrapperSec04 .sec04__inner {
    max-width: 90%;
  }
  .o-topWrapperSec04 .sec04__content {
    padding: 34px 15px 20px;
  }
  .o-topWrapperSec04 .sec04__lead {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 17px;
  }
  .o-topWrapperSec04 .sec04__title {
    font-size: 43px;
    margin-bottom: 22px;
  }
  .o-topWrapperSec04 .sec04__title img {
    width: 50%;
  }
  .o-topWrapperSec04 .sec04__title-small {
    font-size: 15px;
  }
  .o-topWrapperSec04 .sec04-box {
    flex-direction: column-reverse;
  }
  .o-topWrapperSec04 .sec04-box .l-img {
    margin: 0 auto;
    margin-top: 24px;
  }
  .o-topWrapperSec04 .sec04-box .l-desc p {
    font-size: 13px;
  }
  .o-topWrapperSec05 {
    padding: 76px 0 60px;
  }
  .o-topWrapperSec05 .sec05-title {
    margin-bottom: 15px;
  }
  .o-topWrapperSec05 .sec05-title .jp {
    font-size: 16px;
    letter-spacing: 0;
    margin-bottom: 0;
  }
  .o-topWrapperSec05 .sec05-title .en {
    font-size: 52px;
    line-height: 1.5;
  }
  .o-topWrapperSec05 .sec05-txt {
    padding: 0 20px;
    font-size: 13px;
    letter-spacing: 0;
    margin-bottom: 40px;
  }
  .o-topWrapperSec05 .sec05-box-style {
    padding: 44px 38px 10px;
    border-radius: 30px;
  }
  .o-topWrapperSec05 .sec05-box-style .top-card03 {
    display: block;
  }
  .o-topWrapperSec05 .sec05-box-style .top-card03 .card-ttl {
    font-size: 20px;
    min-height: 0;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .o-topWrapperSec05 .sec05-box-style .top-card03 .card-img img {
    width: 90%;
    margin: 0 auto;
    display: flex;
  }
  .o-topWrapperSec05 .sec05-box-style .top-card03 .card-desc {
    margin-top: 15px;
    font-size: 14px;
  }
  .o-topWrapperSec05 .sec05-box-style .top-card03 li {
    margin-bottom: 40px;
  }
  .o-topWrapperSec06 {
    padding: 55px 30px 60px;
  }
  .o-topWrapperSec06 .sec06-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .o-topWrapperSec06 .sec06-txt {
    font-size: 13px;
  }
  .o-topWrapperSec06 .btn-more {
    font-size: 14px;
    width: 90%;
  }
  .o-topWrapperSec06 .btn-more::before {
    right: 10px;
    width: 30px;
    height: 6px;
  }
  .o-topWrapperSec07 {
    padding: 50px 27px 40px;
  }
  .o-topWrapperSec07 .sec07-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .o-topWrapperSec07 .top-card02 {
    display: block;
    margin-bottom: 40px;
  }
  .o-topWrapperSec07 .top-card02 .card-ttl {
    display: block;
    height: auto;
    margin-bottom: 15px;
  }
  .o-topWrapperSec07 .top-card02 .top-card02-item {
    margin-bottom: 30px;
    padding: 20px;
  }
  .o-topWrapperSec07 .top-card02 .card-desc .card-txt {
    font-size: 15px;
  }
  .o-topWrapperSec08 {
    padding: 40px 20px;
  }
  .o-topWrapperSec08 .sec08-title {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 0;
    line-height: 1.6;
  }
  .lineup__panel {
    padding: 35px 20px;
    display: block;
    border-radius: 30px;
  }
  .lineup__panel::after {
    border-left: none;
  }
  .card__flex {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
  .card__img {
    margin-bottom: 0;
  }
  .card__label {
    font-size: 14px;
    margin: 0;
    padding: 6px 5px;
    align-items: center;
    min-width: 130px;
  }
  .card__label span {
    font-size: 11px;
  }
  .cards {
    display: block;
    gap: 20px;
  }
  .cards--3 {
    display: block;
  }
  .cards--2 {
    display: block;
    margin: 0 auto;
    justify-content: center;
  }
  .cards--1 {
    justify-content: center;
  }
  .group.group--block {
    margin-bottom: 10px;
  }
  .o-component {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .headlineWrap {
    text-align: center;
  }
  .headline-top {
    text-align: center;
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 25px;
  }
  .headline-top span {
    font-size: 28px;
  }
  .headline-top.-white {
    font-size: 26px;
  }
  .headlineWrap .headline-top {
    text-align: left;
    margin-bottom: 20px;
  }
  .card {
    max-width: 100%;
    background-color: #F4F6F9;
    padding: 10px 20px 20px 15px;
    margin-bottom: 22px;
  }
  .card.orange {
    background-color: #F9F9F9;
  }
  .card__cat {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .card__img img {
    width: auto;
    height: 50px;
  }
  .card__img img.min {
    width: auto;
  }
  .card__description {
    display: flex;
    gap: 16px;
    margin-top: 10px;
  }
  .card__desc {
    line-height: 1.3;
    margin-bottom: 3px;
    font-size: 13px;
  }
  .card__plan {
    padding-right: 10px;
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.4;
    position: relative;
  }
  .card__plan::after {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    right: 0;
    width: 1px;
    height: 100%;
    border-right: 1px dashed #717171;
  }
  .card__body {
    display: flex;
    flex-direction: column;
  }
  .lineup__panel .card__inner {
    display: flex;
    flex-direction: row-reverse;
    margin: 10px auto 0;
    width: 50%;
  }
  .lineup__panel .card__inner.orange {
    text-align: left;
  }
  .lineup__panel .card__right {
    margin-left: 15px;
    flex: 1;
  }
  .lineup__panel .card__label.orange {
    margin-top: 10px;
  }
  .lineup__panel .card__desc.orange {
    margin: 10px 0 0;
    text-align: left;
  }
  .textDesc-top {
    font-size: 13px;
    margin-bottom: 30px;
    letter-spacing: 0;
    font-weight: 400;
  }
  .footer .copyright {
    font-size: 12px;
  }
  .footer-ctaWrapper {
    padding: 40px 0;
  }
  .footer-ctaWrapper .list {
    display: block;
  }
  .footer-ctaWrapper .list li {
    width: 100%;
  }
  .footer-ctaWrapper .list .button {
    width: 100%;
    font-size: 1.8rem;
  }
  .footer-contentWrapper {
    padding: 15px 0 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .footer-navigation {
    max-width: 100%;
    width: 100%;
    background-color: #0052b4;
  }
  .footer-navigation .list {
    justify-content: flex-start;
    font-size: 1.2rem;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .footer-navigation .list .link {
    padding: 20px 5px 20px 15px;
    display: inline-flex;
    position: relative;
  }
  .footer-navigation .list .link::before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    left: 0;
    top: calc(20px + 0.9em);
    transform: translateY(-50%) rotate(45deg);
  }
  .footer-navigation .list .link::after {
    display: none;
  }
  .footer-navigation .list .item {
    padding-left: 15px;
    width: 50%;
    box-sizing: border-box;
    border-bottom: 1px solid #005cca;
    display: flex;
    align-items: center;
  }
  .footer-navigation .list .item:last-child {
    width: 100%;
  }
  .footer-navigation .list .item:nth-child(odd) {
    border-right: 1px solid #005cca;
  }
}
@media screen and (max-width: 767px) {
  .fixed-btn {
    bottom: 70px;
    right: 20px;
  }
  .fixed-btn-link img {
    width: 180px;
    height: 180px;
  }
  .fixed-btn--close {
    font-size: 20px;
    line-height: 26px;
    width: 27px;
    height: 27px;
  }
  .fixed-btn--left {
    bottom: 70px;
    right: auto;
    left: 20px;
    max-width: 43%;
  }
  .fixed-btn--close02 {
    font-size: 20px;
    line-height: 26px;
    width: 27px;
    height: 27px;
    top: -9px;
    right: -5px;
  }
}
@media screen and (max-width: 609px) {
  .card__img.wide {
    width: 50%;
  }
  .card__img.wide img {
    width: 100%;
  }
  .lineup__panel .card__inner {
    display: flex;
    flex-direction: row-reverse;
    margin: 10px 0 0;
    width: 100%;
  }
  .lineup__panel .card__inner.orange {
    text-align: left;
  }
  .lineup__panel .card__right {
    margin-left: 15px;
    flex: 1;
  }
  .lineup__panel .card__label.orange {
    margin-top: 10px;
  }
  .lineup__panel .card__desc.orange {
    margin: 10px 0 0;
    text-align: left;
  }
}
@media screen and (max-width: 1017px) {
  .o-topWrapperSec07 .sec07-box {
    padding: 50px;
    display: flex;
    margin: 0 20px;
  }
  .o-topWrapperSec07 .sec07-box .sec07-box-img {
    max-width: 45%;
    margin-bottom: 0;
  }
  .o-topWrapperSec07 .sec07-box .sec07-box-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 619px) {
  .o-topWrapperSec07 .sec07-box {
    display: block;
    padding: 28px 0 45px 26px;
    margin: 0;
  }
  .o-topWrapperSec07 .sec07-box::before {
    width: 116px;
    height: 14px;
    right: 15px;
    bottom: 15px;
    background-size: contain;
  }
  .o-topWrapperSec07 .sec07-box .sec07-box-img {
    max-width: 195px;
    margin-bottom: 15px;
  }
  .o-topWrapperSec07 .sec07-box .sec07-box-title {
    font-size: 14px;
  }
}
.o-underWrapperttl {
  background: url(../images/under/u-ttl_bg.jpg) center/cover no-repeat;
  height: 208px;
  min-height: 208px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 84px;
  z-index: 3;
}
.o-underWrapperttl .title {
  font-size: 34px;
  color: #08243A;
}
.o-underWrapperttl .title span {
  letter-spacing: 0;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .o-underWrapperttl {
    margin-top: 55px;
  }
  .o-underWrapperttl .title {
    font-size: 25px;
  }
}
.o-underWrappersection {
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.o-underWrappersection:first-child {
  padding-top: 90px;
  z-index: 2;
}
.o-underWrappersection.min {
  padding: 80px 0;
}
.o-underWrappersection.hight {
  padding-bottom: 120px;
}
.o-underWrappersection.bottom {
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .o-underWrappersection {
    padding-bottom: 60px;
  }
  .o-underWrappersection:first-child {
    padding-top: 50px;
  }
  .o-underWrappersection.min {
    padding: 40px 0;
  }
  .o-underWrappersection.hight {
    padding-bottom: 40px;
  }
  .o-underWrappersection.bottom {
    padding-bottom: 50px;
  }
}
.o-undercomponent {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.o-undercomponent.narrow {
  max-width: 1040px;
}

@media (max-width: 767px) {
  .o-undercomponent {
    max-width: 90%;
  }
}
.o-underWrapperbg {
  background: #F9F9F9;
}

.o-underttl {
  font-size: 46px;
  margin-bottom: 35px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0;
  color: #171819;
}
.o-underttl .-sub {
  font-size: 26px;
  display: block;
}
.o-underttl .-main {
  font-size: 46px;
}
.o-underttl.mb01 {
  margin-bottom: 50px;
}
.o-underttl.mb02 {
  margin-bottom: 28px;
}
.o-underttl span {
  font-size: 26px;
  display: block;
}

@media (max-width: 767px) {
  .o-underttl {
    margin-bottom: 20px;
    font-size: 27px;
  }
  .o-underttl span {
    font-size: 18px;
  }
  .o-underttl.mb01 {
    margin-bottom: 30px;
  }
  .o-underttl .-sub {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 5px;
    display: block;
  }
  .o-underttl .-main {
    font-size: 24px;
  }
}
.o-undertxt {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .o-undertxt {
    text-align: left;
  }
}
.u-contentwrapper01 {
  background-color: #fff;
  border-radius: 40px;
  padding: 60px 50px 70px;
}
.u-contentwrapper01 .u-table {
  color: #250E6C;
}
.u-contentwrapper01 .u-table tr:not(:last-child) {
  border-bottom: 1px dashed #A4A4A4;
}
.u-contentwrapper01 .u-table tr:first-child th:last-child {
  border-right: none;
}
.u-contentwrapper01 .u-table th,
.u-contentwrapper01 .u-table td {
  padding: 20px 13px;
  text-align: center;
}
.u-contentwrapper01 .u-table th {
  border-right: 1px solid #E8E8E8;
  font-size: 1.25vw;
}
@media screen and (min-width: 1400px) {
  .u-contentwrapper01 .u-table th {
    font-size: 18px;
  }
}
.u-contentwrapper01 .u-table th .ttl-deco {
  background-color: #250E6C;
  color: #fff;
  font-size: 14px;
  padding: 15px 5px;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.6;
}
.u-contentwrapper01 .u-table th .ttl-deco::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 14px solid #250E6C;
  border-bottom: 0;
}
.u-contentwrapper01 .u-table th p {
  letter-spacing: 0;
}
.u-contentwrapper01 .u-table td {
  font-size: 17px;
  vertical-align: top;
}
.u-contentwrapper01 .u-table td:not(:last-child) {
  border-right: 1px solid #E8E8E8;
}
.u-contentwrapper01 .u-table td .td-ttl {
  background-color: #F6F5F9;
  padding: 7px;
  font-weight: 800;
  margin-bottom: 15px;
}
.u-contentwrapper01 .u-table td .td-img {
  height: 80px;
  width: 67%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.u-contentwrapper01 .u-table td .td-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.u-contentwrapper01 .u-table td .td-img.min {
  width: 49%;
}
.u-contentwrapper01 .u-bnr01 {
  background: url(../images/under/aff-asa/aff-asa_bg01.jpg) center/cover no-repeat;
  margin-top: 65px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.u-contentwrapper01 .u-bnr01 .txt01 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 5px;
}
.u-contentwrapper01 .u-bnr01 .txt02 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 25px;
}
.u-contentwrapper01 .u-bnr01 .txt02 .large {
  font-size: 77px;
  font-weight: 700;
  background: linear-gradient(to right, #FFFFFF, #86B9BB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.u-contentwrapper01 .u-bnr01 .txt03 {
  font-size: 16px;
  text-align: center;
}

@media (max-width: 767px) {
  .u-contentwrapper01 {
    padding: 30px 20px 40px;
    border-radius: 20px;
  }
  .u-contentwrapper01 .u-bnr01 {
    margin-top: 50px;
    padding: 30px 20px;
  }
  .u-contentwrapper01 .u-bnr01 .txt01 {
    font-size: 15px;
    line-height: 1.4;
  }
  .u-contentwrapper01 .u-bnr01 .txt02 {
    font-size: 15px;
  }
  .u-contentwrapper01 .u-bnr01 .txt02 .large {
    font-size: 43px;
  }
  .u-contentwrapper01 .u-bnr01 .txt03 {
    font-size: 12px;
    text-align: left;
  }
  .scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .scroll::before {
    content: "※横にスクロールできます。";
  }
  .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }
  .scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #192348;
  }
  .scroll table {
    margin-bottom: 10px;
    width: 400%;
  }
}
.o-underanchorlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.o-underanchorlist .list-item {
  width: 280px;
  height: 74px;
  background-color: #250E6C;
  border-radius: 80px;
  color: #fff;
  text-align: center;
  position: relative;
  line-height: 1.5;
  font-weight: 700;
  font-size: 14px;
  padding-bottom: 10px;
}
.o-underanchorlist .list-item::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg) translateX(-50%);
  width: 8px;
  height: 8px;
}
.o-underanchorlist .list-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 500;
  letter-spacing: 0;
}
.o-underanchorlist.type01 {
  margin-bottom: 20px;
}
.o-underanchorlist.type01 .list-item {
  width: 270px;
}
.o-underanchorlist_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 120px;
}

@media (max-width: 767px) {
  .o-underanchorlist {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .o-underanchorlist .list-item {
    width: 100%;
    height: 74px;
  }
  .o-underanchorlist.type01 {
    margin-bottom: 10px;
  }
  .o-underanchorlist.type01 .list-item {
    width: 100%;
  }
  .o-underanchorlist_wrap {
    margin-bottom: 50px;
  }
}
.u-contentwrapper02 {
  background-color: #fff;
  border-radius: 40px;
  border: 1px solid #250E6C;
  width: 100%;
}
.u-contentwrapper02 + .u-contentwrapper02 {
  margin-top: 70px;
}
.u-contentwrapper02 .box-ttl-wrap {
  background-color: #250E6C;
  border-radius: 40px 40px 0 0;
  color: #fff;
  display: flex;
  align-items: flex-start;
}
.u-contentwrapper02 .box-ttl-wrap .num-wrap {
  font-family: "Harmattan", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border-right: 1px solid #F8F8F8;
  width: 11.44%;
  padding: 30px 45px 5px;
}
.u-contentwrapper02 .box-ttl-wrap .num-wrap .num {
  font-size: 56px;
  display: block;
}
.u-contentwrapper02 .box-ttl-wrap .num-wrap .en {
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}
.u-contentwrapper02 .box-ttl {
  text-align: center;
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-left: 130px;
  flex: 1;
  padding: 35px 10px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}
.u-contentwrapper02 .box-ttl span {
  font-size: 22px;
  position: relative;
  top: 5px;
}
.u-contentwrapper02 .box-inr-top {
  padding: 45px 70px;
  display: flex;
}
.u-contentwrapper02 .box-inr-top .box-img-wrap {
  width: 48%;
  margin-right: 50px;
}
.u-contentwrapper02 .box-inr-top .box-img_txt {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
}
.u-contentwrapper02 .box-inr-top .box-desc {
  flex: 1;
  font-size: 14px;
}
.u-contentwrapper02 .box-inr-top .box-desc_list {
  display: grid;
  grid-gap: 15px;
  margin-bottom: 20px;
}
.u-contentwrapper02 .box-inr-top .box-desc_list li {
  padding-bottom: 15px;
  border-bottom: 1px dashed #A4A4A4;
}
.u-contentwrapper02 .box-inr-top .box-desc_txt {
  font-weight: 700;
  margin-bottom: 10px;
}
.u-contentwrapper02 .box-inr-top .box-desc_dl {
  display: grid;
  grid-template-columns: 70px 1fr;
}
.u-contentwrapper02 .box-inr-top .box-desc_dl dt {
  font-weight: 400;
}
.u-contentwrapper02 .box-inr-bottom {
  background-color: #F4F6F9;
  border-radius: 0 0 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}
.u-contentwrapper02 .box-inr-bottom .box-inr-ttl {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #A4A4A4;
}
.u-contentwrapper02 .box-inr-bottom .box-inr-txt {
  font-size: 14px;
  margin-bottom: 10px;
}
.u-contentwrapper02 .box-inr-bottom .box-inr-list {
  font-size: 14px;
}
.u-contentwrapper02 .box-inr02 {
  padding: 40px 60px;
}
.u-contentwrapper02 .box-inr02 .box-inr-txt {
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px;
}
.u-contentwrapper02 .box-inr02 .box-inr_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  position: relative;
}
.u-contentwrapper02 .box-inr02 .box-inr_list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 23px solid #005CCA;
  border-right: 0;
  transform: translate(-50%, -50%);
}
.u-contentwrapper02 .box-inr02 .box-inr_list li {
  border: 1px solid #DCDCDC;
  padding: 20px;
}
.u-contentwrapper02 .box-inr02 .box-inr_list-ttl {
  background-color: #250E6C;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  padding: 5px;
  margin-bottom: 20px;
}
.u-contentwrapper02 .box-inr02 .box-inr_list-txt {
  font-size: 14px;
  margin-bottom: 20px;
}
.u-contentwrapper02 .box-inr03 {
  padding: 40px 80px 60px;
}
.u-contentwrapper02 .box-inr03 .box-inr-txt {
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px;
}
.u-contentwrapper02 .box-inr03 .box-inr-img {
  border: 1px solid #DCDCDC;
  padding: 30px 30px 30px 80px;
}
.u-contentwrapper02 .box-inr03 .box-inr-img.type01 {
  padding: 20px 80px 30px;
}
.u-contentwrapper02 .box-inr04 {
  padding: 40px 80px 70px;
}
.u-contentwrapper02 .box-inr04 .box-inr-txt {
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px;
}
.u-contentwrapper02 .box-inr04 .box-inr_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.u-contentwrapper02 .box-inr04 .box-inr_list li {
  border: 1px solid #DCDCDC;
  padding: 30px;
}
.u-contentwrapper02 .box-inr04 .box-inr_list-ttl {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
}
.u-contentwrapper02 .box-inr04 .box-inr_list-imgwrap {
  text-align: center;
  display: flex;
}
.u-contentwrapper02 .box-inr04 .box-inr_list-imgwrap.type01 .item {
  max-width: 310px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.u-contentwrapper02 .box-inr04 .box-inr_list-imgwrap .item {
  flex: 1;
  height: 226px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.u-contentwrapper02 .box-inr04 .box-inr_list-imgwrap .item + .item {
  margin-left: 20px;
}
.u-contentwrapper02 .box-inr04 .box-inr_list-img {
  margin-bottom: 15px;
}
.u-contentwrapper02 .box-inr04 .box-inr_list-imgtxt {
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}
.u-contentwrapper02 .box-inr04 .box-inr_list-imgtxtwrap {
  display: flex;
  justify-content: space-between;
  padding: 0 2%;
}
.u-contentwrapper02 .box-inr04 .box-inr_list-imgtxtwrap .box-inr_list-imgtxt {
  letter-spacing: 0;
  white-space: nowrap;
}
.u-contentwrapper02 .box-inr04 .box-inr_list-txt {
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  line-height: 1.6;
}
.u-contentwrapper02 .box-inr05 {
  padding: 40px 80px 80px;
  display: grid;
  grid-gap: 60px;
}
.u-contentwrapper02 .box-inr05 .box-inr-txt {
  text-align: center;
  font-size: 14px;
  margin-bottom: 40px;
}
.u-contentwrapper02 .box-inr05 .box-inr-img {
  border: 1px solid #DCDCDC;
  padding: 40px;
  text-align: center;
}
.u-contentwrapper02 .box-inr05 .box-inr-img.type01 {
  padding: 40px 0 15px 90px;
}
.u-contentwrapper02 .box-inr05 .box-inr-imgttl {
  font-size: 24px;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}
.u-contentwrapper02 .box-inr07 .box-inr-txt {
  padding-top: 47px;
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.7;
}
.u-contentwrapper02 .box-inr07 .box-inr-img {
  border: 1px solid #DCDCDC;
  padding: 30px 30px 30px 80px;
}
.u-contentwrapper02 .box-inr07 .box-inr-img.type01 {
  padding: 20px 80px 30px;
}
.u-contentwrapper02 .box-inr07 .box-inr-wrapper {
  background-color: #F4F6F9;
  border-radius: 0 0 40px 40px;
  padding: 30px 160px 30px 40px;
  justify-content: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}
.u-contentwrapper02 .box-inr07 .box-inr-wrapper .prestige__image img {
  width: 168px;
  height: auto;
  display: block;
}
.u-contentwrapper02 .box-inr07 .box-inr-wrapper .prestige__title {
  position: relative;
  color: #e60012;
  letter-spacing: 0;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  font-weight: 600;
}
.u-contentwrapper02 .box-inr07 .box-inr-wrapper .prestige__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  border-bottom: 1px dotted #A4A4A4;
}
.u-contentwrapper02 .box-inr07 .box-inr-wrapper .prestige__title.large::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-bottom: 1px dotted #A4A4A4;
}
.u-contentwrapper02 .box-inr07 .box-inr-wrapper .prestige__text {
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  margin: 0 10px;
}
.u-contentwrapper02 .box-inr07 .box-inr-wrapper .prestige__text.large {
  margin: 0 52px;
}
.u-contentwrapper02 .box-inr08 {
  padding: 40px 65px 60px;
}
.u-contentwrapper02 .box-inr08 .box-inr-txt {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  line-height: 1.7em;
}
.u-contentwrapper02 .box-inr08 .box-inr_item {
  border: 1px solid #DCDCDC;
  padding: 45px 46px 47px;
  max-width: 1040px;
  color: #250E6C;
  text-align: center;
}
.u-contentwrapper02 .box-inr08 .box-inr_item-ttl {
  font-size: 26px;
  margin-bottom: 15px;
  letter-spacing: 0;
  text-align: left;
}
.u-contentwrapper02 .box-inr08 .box-inr_item-desc {
  justify-content: center;
  display: grid;
}
.u-contentwrapper02 .box-inr08 .box-inr_item-txt {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  line-height: 1.7;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 27px;
}
.u-contentwrapper02 .box-inr08 .box-inr_item-txt .item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.u-contentwrapper02 .box-inr08 .box-inr_item-txt .item-ttl {
  width: 260px;
  flex-shrink: 0;
  position: relative;
}
.u-contentwrapper02 .box-inr08 .box-inr_item-txt .item-ttl::before {
  content: "→";
  position: absolute;
  right: 0;
}
.u-contentwrapper02 .box-inr08 .box-inr_item-txt .item-desc {
  flex: 1;
  letter-spacing: 0;
}
.u-contentwrapper02 .box-inr08 .box-inr_wrapitem {
  display: flex;
  gap: 26px;
}
.u-contentwrapper02 .box-inr08 .box-inr_wrapitem .item {
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .u-contentwrapper02 {
    border-radius: 20px;
  }
  .u-contentwrapper02 + .u-contentwrapper02 {
    margin-top: 40px;
  }
  .u-contentwrapper02 .box-ttl-wrap {
    border-radius: 20px 20px 0 0;
  }
  .u-contentwrapper02 .box-ttl-wrap .num-wrap {
    padding: 15px 10px 5px;
    width: 20%;
  }
  .u-contentwrapper02 .box-ttl-wrap .num-wrap .num {
    font-size: 30px;
  }
  .u-contentwrapper02 .box-ttl-wrap .num-wrap .en {
    font-size: 10px;
    margin-bottom: 0;
  }
  .u-contentwrapper02 .box-ttl {
    font-size: 18px;
    text-align: left;
    padding: 15px 10px 15px 20px;
    min-height: 100px;
    justify-content: flex-start;
  }
  .u-contentwrapper02 .box-ttl.small {
    display: block;
    line-height: 1.4;
  }
  .u-contentwrapper02 .box-ttl.small span {
    font-size: 15px;
    top: -1px;
  }
  .u-contentwrapper02 .box-inr-top {
    padding: 30px 20px;
    display: block;
  }
  .u-contentwrapper02 .box-inr-top .box-img-wrap {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .u-contentwrapper02 .box-inr-top .box-img_txt {
    font-size: 17px;
  }
  .u-contentwrapper02 .box-inr-top .box-desc_dl {
    grid-template-columns: 60px 1fr;
  }
  .u-contentwrapper02 .box-inr-bottom {
    border-radius: 0 0 20px 20px;
    padding: 30px 20px;
  }
  .u-contentwrapper02 .box-inr-bottom .box-inr-ttl {
    font-size: 17px;
  }
  .u-contentwrapper02 .box-inr02 {
    padding: 30px 20px;
  }
  .u-contentwrapper02 .box-inr02 .box-inr-txt {
    margin-bottom: 30px;
    text-align: left;
  }
  .u-contentwrapper02 .box-inr02 .box-inr_list {
    grid-template-columns: 1fr;
  }
  .u-contentwrapper02 .box-inr02 .box-inr_list::before {
    top: 47%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .u-contentwrapper02 .box-inr02 .box-inr_list-ttl {
    font-size: 16px;
  }
  .u-contentwrapper02 .box-inr03 {
    padding: 30px 20px;
  }
  .u-contentwrapper02 .box-inr03 .box-inr-txt {
    text-align: left;
    margin-bottom: 30px;
  }
  .u-contentwrapper02 .box-inr03 .box-inr-img {
    padding: 20px;
  }
  .u-contentwrapper02 .box-inr03 .box-inr-img.type01 {
    padding: 20px;
  }
  .u-contentwrapper02 .box-inr04 {
    padding: 30px 20px;
  }
  .u-contentwrapper02 .box-inr04 .box-inr-txt {
    text-align: left;
    margin-bottom: 30px;
  }
  .u-contentwrapper02 .box-inr04 .box-inr_list {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .u-contentwrapper02 .box-inr04 .box-inr_list li {
    padding: 20px;
  }
  .u-contentwrapper02 .box-inr04 .box-inr_list-ttl {
    font-size: 16px;
    height: auto;
  }
  .u-contentwrapper02 .box-inr04 .box-inr_list-imgwrap {
    display: block;
  }
  .u-contentwrapper02 .box-inr04 .box-inr_list-imgwrap .item {
    height: auto;
  }
  .u-contentwrapper02 .box-inr04 .box-inr_list-imgwrap .item + .item {
    margin-left: 0;
    margin-top: 15px;
  }
  .u-contentwrapper02 .box-inr04 .box-inr_list-imgtxtwrap {
    padding: 0 3%;
    justify-content: space-around;
  }
  .u-contentwrapper02 .box-inr04 .box-inr_list-txt {
    font-size: 15px;
  }
  .u-contentwrapper02 .box-inr05 {
    padding: 30px 20px;
    grid-gap: 30px;
  }
  .u-contentwrapper02 .box-inr05 .box-inr-txt {
    text-align: left;
    margin-bottom: 30px;
  }
  .u-contentwrapper02 .box-inr05 .box-inr-img {
    padding: 20px;
  }
  .u-contentwrapper02 .box-inr05 .box-inr-img.type01 {
    padding: 20px;
  }
  .u-contentwrapper02 .box-inr05 .box-inr-imgttl {
    font-size: 18px;
  }
  .u-contentwrapper02 .box-inr07 .box-inr-txt {
    text-align: left;
    padding-top: 0;
    padding: 30px 20px;
    margin-bottom: 0;
  }
  .u-contentwrapper02 .box-inr07 .box-inr_item {
    padding: 30px 20px;
  }
  .u-contentwrapper02 .box-inr07 .box-inr_item-ttl {
    font-size: 18px;
  }
  .u-contentwrapper02 .box-inr07 .box-inr_item-txt {
    font-size: 16px;
  }
  .u-contentwrapper02 .box-inr07 .box-inr-wrapper {
    padding: 30px 20px;
    display: block;
    border-radius: 0 0 20px 20px;
  }
  .u-contentwrapper02 .box-inr07 .box-inr-wrapper .prestige__image {
    margin-bottom: 25px;
  }
  .u-contentwrapper02 .box-inr07 .box-inr-wrapper .prestige__image img {
    width: 60%;
    margin: 0 auto;
  }
  .u-contentwrapper02 .box-inr07 .box-inr-wrapper .prestige__title {
    font-size: 20px;
  }
  .u-contentwrapper02 .box-inr07 .box-inr-wrapper .prestige__text {
    font-size: 14px;
    margin: 0;
  }
  .u-contentwrapper02 .box-inr07 .box-inr-wrapper .prestige__text.large {
    margin: 0;
  }
  .u-contentwrapper02 .box-inr08 {
    padding: 30px 20px;
  }
  .u-contentwrapper02 .box-inr08 .box-inr-txt {
    text-align: left;
    margin-bottom: 30px;
    font-size: 14px;
  }
  .u-contentwrapper02 .box-inr08 .box-inr-img {
    padding: 20px;
  }
  .u-contentwrapper02 .box-inr08 .box-inr_item {
    min-width: auto;
    padding: 25px 20px;
  }
  .u-contentwrapper02 .box-inr08 .box-inr_item-ttl {
    font-size: 18px;
    text-align: center;
  }
  .u-contentwrapper02 .box-inr08 .box-inr_item-txt {
    font-size: 15px;
    width: 100%;
    margin: 0 auto 10px;
  }
  .u-contentwrapper02 .box-inr08 .box-inr_item-txt .item {
    flex-direction: column;
    gap: 2px;
    margin-bottom: 5px;
  }
  .u-contentwrapper02 .box-inr08 .box-inr_item-txt .item-ttl {
    width: 100%;
    padding-left: 0;
  }
  .u-contentwrapper02 .box-inr08 .box-inr_item-txt .item-ttl::before {
    display: none;
  }
  .u-contentwrapper02 .box-inr08 .box-inr_item-txt .item-desc {
    width: 100%;
    line-height: 1.4;
    font-size: 14px;
  }
  .u-contentwrapper02 .box-inr08 .box-inr_wrapitem {
    flex-direction: column;
    gap: 16px;
  }
}
.o-underWrapperbox-panel .o-underWrapperbox-ttl {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  color: #250E6C;
}

.o-underWrapperbox {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  align-items: center;
  background-color: #F7B214;
  color: #fff;
  position: relative;
  transition: 0.3s;
}
.o-underWrapperbox.blue {
  background-color: #250E6C;
  margin-bottom: 30px;
}
.o-underWrapperbox.blue.storage {
  margin: 120px auto 90px;
}
.o-underWrapperbox .box-img {
  width: 26%;
  margin-right: 70px;
}
.o-underWrapperbox .box-txt {
  font-size: 20px;
  font-weight: 700;
}
.o-underWrapperbox .box-ttl {
  letter-spacing: 0;
  line-height: 1;
  font-size: 20px;
  display: flex;
  align-items: last baseline;
}
.o-underWrapperbox .box-ttl .large {
  font-size: 50px;
  font-family: "Inter", sans-serif;
  margin-right: 5px;
  display: block;
}
.o-underWrapperbox::before {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 28px;
  background: url(../images/under/arrow.svg) center/contain no-repeat;
  width: 154px;
  height: 20px;
  transition: 0.3s;
}
.o-underWrapperbox:hover {
  opacity: 0.5;
}
.o-underWrapperbox:hover::before {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .o-underWrapperbox-panel .o-underWrapperbox-ttl {
    font-size: 22px;
  }
  .o-underWrapperbox {
    max-width: initial;
    display: block;
  }
  .o-underWrapperbox .box-img {
    width: 100%;
    margin-right: 0;
  }
  .o-underWrapperbox .box-desc {
    padding: 20px 20px 50px;
  }
  .o-underWrapperbox .box-txt {
    font-size: 16px;
  }
  .o-underWrapperbox .box-ttl {
    font-size: 14px;
  }
  .o-underWrapperbox .box-ttl .large {
    font-size: 20px;
    font-weight: bold;
  }
  .o-underWrapperbox.blue.storage {
    margin: 20px auto 40px;
  }
  .o-underWrapperbox::before {
    bottom: 20px;
    right: 20px;
    width: 114px;
    height: 15px;
    transition: 0.3s;
  }
  .o-underWrapperbox:hover {
    opacity: 0.5;
  }
  .o-underWrapperbox:hover::before {
    transform: translateX(5px);
  }
}
.o-underWrappercont01 {
  background: url(../images/sec06_bg.jpg) no-repeat center/cover;
  padding: 70px 0;
  color: #fff;
  text-align: center;
}
.o-underWrappercont01 .cont01-title {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 35px;
}
.o-underWrappercont01 .cont01-txt {
  font-size: 19px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .o-underWrappercont01 {
    padding: 55px 30px 60px;
  }
  .o-underWrappercont01 .cont01-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .o-underWrappercont01 .cont01-txt {
    font-size: 13px;
  }
  .o-underWrappercont01 .btn-more {
    font-size: 14px;
    width: 90%;
  }
  .o-underWrappercont01 .btn-more::before {
    right: 10px;
    width: 30px;
    height: 6px;
  }
}
.o-underWrappercont02 {
  color: #250E6C;
  padding: 60px 0;
}
.o-underWrappercont02 .cont02-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.o-underWrappercont02.blue {
  background-color: #250E6C;
  color: #fff;
}

@media (max-width: 767px) {
  .o-underWrappercont02 {
    padding: 40px 20px;
  }
  .o-underWrappercont02 .cont02-title {
    font-size: 19px;
    margin-bottom: 20px;
    letter-spacing: 0;
  }
}
.bg-deco {
  position: relative;
}
.bg-deco::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/under/aff-asa/aff-asa_bg02.png) center/cover no-repeat;
  width: 90.49vw;
  height: 1433px;
  z-index: -1;
}
.bg-deco.reasons::before {
  content: "";
  position: absolute;
  top: -11.5%;
  left: 0;
  background: url(../images/under/aff-asa/aff-asa_bg02.png) center/cover no-repeat;
  width: 90.49vw;
  height: 1433px;
  z-index: -5;
}
.bg-deco.storagegrid::before {
  top: -45%;
}

@media (max-width: 767px) {
  .bg-deco::before {
    background: none;
  }
}
.o-underlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 45px;
}
.o-underlist_item {
  border: 2px solid #250E6C;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}
.o-underlist_item > a {
  display: block;
  width: 100%;
  height: 100%;
}
.o-underlist_item > a:hover .o-underlist_img {
  transform: scale(1.1);
}
.o-underlist_ttl {
  background-color: #250E6C;
  padding: 24px 30px;
  color: #fff;
  letter-spacing: 0;
  font-size: 17px;
}
.o-underlist_desc {
  padding: 30px 30px 40px;
  display: flex;
}
.o-underlist_desc.storagegrid {
  display: block;
}
.o-underlist_img {
  margin-right: 15px;
  width: 50%;
  transition: 0.3s;
}
.o-underlist_img.storagegrid {
  margin: 0 auto 20px;
}
.o-underlist_txt {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
}
.o-underlist_txt p + p {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .o-underlist {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .o-underlist_ttl {
    padding: 20px;
    font-size: 16px;
  }
  .o-underlist_desc {
    padding: 30px 20px;
  }
  .o-underlist_txt p + p {
    margin-top: 1rem;
  }
}
.storage-imgR {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 950px;
  margin: 0 auto;
  align-items: center;
}
.storage-imgR .storage-img {
  margin: 0 40px 0 0;
  width: 36%;
}
.storage-imgR .storage-img.small {
  width: 30%;
}
.storage-imgR .storage-desc {
  flex: 1;
}

@media (max-width: 767px) {
  .storage-imgR {
    display: block;
  }
  .storage-imgR .storage-img {
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }
  .storage-imgR .storage-img.small {
    width: 100%;
  }
}
.o-underfeature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.o-underfeature-item {
  border-radius: 40px;
  background-color: #fff;
  overflow: hidden;
  padding: 44px 0 38px;
  text-align: center;
}
.o-underfeature-ttl-sub {
  font-size: 22px;
  margin-bottom: 23px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #000;
}
.o-underfeature-txt {
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
  line-height: 1.8;
  color: #000;
}
.o-underfeature-img img {
  width: 62%;
}

@media (max-width: 767px) {
  .o-underfeature {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .o-underfeature-item {
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
    padding: 40px 0;
    text-align: center;
  }
  .o-underfeature-ttl-sub {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  .o-underfeature-txt {
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
  }
  .o-underfeature-img img {
    width: 80%;
  }
}
.o-usecase {
  min-width: 1200px;
  display: flex;
  justify-content: center;
}
.o-usecase-img img {
  width: 100%;
}

@media (max-width: 767px) {
  .o-usecase {
    padding: 20px;
    border-radius: 20px;
  }
  .o-usecase-img img {
    width: 100%;
  }
}
.feature {
  padding: 0 0 60px;
}
.feature__inner {
  width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.feature__col {
  width: 48%;
}
.feature__item {
  padding: 24px 0;
  border: none;
  background-image: repeating-linear-gradient(to right, #A4A4A4 0 1px, transparent 1px 4px);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom;
}
.feature__head {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
}
.feature__num {
  letter-spacing: 0.1em;
  flex-shrink: 0;
  color: #250E6C;
  font-size: 17px;
  letter-spacing: 0;
  position: relative;
}
.feature__num::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background: #250E6C;
}
.feature__ttl {
  text-decoration: underline;
  font-size: 16px;
  color: #250E6C;
}
.feature__desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-left: 50px;
}
@media (max-width: 767px) {
  .feature {
    padding: 0 20px 40px;
  }
  .feature__inner {
    width: 100%;
    flex-direction: column;
  }
  .feature__col {
    width: 100%;
  }
  .feature__item {
    padding: 18px 0;
  }
  .feature__head {
    font-size: 16px;
  }
  .feature__desc {
    font-size: 14px;
    line-height: 1.7;
  }
}

.box-inr06 {
  padding: 40px 80px 60px;
}
.box-inr06 .box-inr-txt {
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
}
.box-inr06 .box-inr-img img {
  width: 100%;
}
.box-inr06 .box-inr-img-wrap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px 30px;
}
.box-inr06 .box-inr_item {
  border: 1px solid #DCDCDC;
  padding: 45px 35px 30px;
  color: #250E6C;
  text-align: center;
}
.box-inr06 .box-inr_item .partner-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.box-inr06 .box-inr_item .partner-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.box-inr06 .box-inr_item .partner-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 7px 10px;
}
.box-inr06 .box-inr_item .partner-table th {
  background: #1E3590;
  color: #fff;
  padding: 13px 30px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  font-size: 16px;
}
.box-inr06 .box-inr_item .partner-table td {
  padding: 20px 24px;
  font-weight: 500;
}
.box-inr06 .box-inr_item .partner-table tbody tr:nth-child(odd) td {
  background: #F7F9FB;
  text-align: left;
  padding: 12px 14px;
}
.box-inr06 .box-inr_item .partner-table tbody tr:nth-child(even) td {
  background: #ECF0F5;
  text-align: left;
  padding: 12px 14px;
}
.box-inr06 .box-inr_item-ttl {
  font-size: 30px;
  margin-bottom: 15px;
  letter-spacing: 0;
}
.box-inr06 .box-inr_item-txt {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.box-inr06 .box-inr_wrapitem {
  display: flex;
  gap: 26px;
}
.box-inr06 .box-inr_wrapitem .item {
  display: flex;
  flex-direction: column;
}
.box-inr06 .box-inr_listwrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 258px;
  flex: 1;
}
.box-inr06 .box-inr_list {
  display: grid;
  grid-gap: 7px;
}
.box-inr06 .box-inr_list li {
  background-color: #F4F6F9;
  padding: 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.box-inr06 .box-inr_list li:first-child {
  font-size: 20px;
  font-weight: 700;
}
.box-inr06 .box-inr_list li.min {
  padding: 8px;
}
.box-inr06 .box-inr_list li.large {
  padding: 35px;
}
.box-inr06 .box-inr_list.type01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px;
  margin-top: 8px;
}
.box-inr06 .box-inr_list.type01 li {
  font-size: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}
.box-inr06 .box-inr_list.type01 li span {
  font-size: 12px;
}
.box-inr06 .box-inr_list-img {
  width: 70%;
  margin: 15px auto 0;
}
.box-inr06 .box-inr_ttllist {
  display: grid;
  grid-gap: 13px;
  margin-top: 15px;
  list-style: none;
  padding: 0;
}
.box-inr06 .box-inr_ttllist li {
  background-color: #005CCA;
  color: #fff;
  font-size: 15px;
  padding: 15px;
  width: 100%;
  letter-spacing: -0.04em;
  font-weight: 500;
  clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
}
.box-inr06 .box-inr_ttllist li:first-child {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 22px;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .box-inr06 {
    padding: 30px 20px;
  }
  .box-inr06 .box-inr-txt {
    text-align: left;
  }
  .box-inr06 .box-inr-img-wrap {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
  .box-inr06 .box-inr_item {
    padding: 30px 20px;
  }
  .box-inr06 .box-inr_item-ttl {
    font-size: 18px;
  }
  .box-inr06 .box-inr_item-txt {
    font-size: 15px;
  }
  .box-inr06 .box-inr_item .partner-table th {
    padding: 11px 20px;
    font-size: 14px;
  }
  .box-inr06 .box-inr_item .partner-table td {
    padding: 15px 20px;
    font-size: 14px;
  }
  .box-inr06 .box-inr_item .partner-table tbody tr:nth-child(odd) td {
    font-size: 14px;
    padding: 10px 10px;
  }
  .box-inr06 .box-inr_item .partner-table tbody tr:nth-child(even) td {
    font-size: 14px;
    padding: 10px 10px;
  }
  .box-inr06 .box-inr_wrapitem {
    display: block;
    gap: 20px;
  }
  .box-inr06 .box-inr_wrapitem .item {
    margin-bottom: 30px;
  }
  .box-inr06 .box-inr_listwrap {
    height: auto;
  }
  .box-inr06 .box-inr_list li {
    padding: 20px;
    font-size: 16px;
  }
  .box-inr06 .box-inr_list li:first-child {
    font-size: 18px;
  }
  .box-inr06 .box-inr_list li.min {
    padding: 20px;
  }
  .box-inr06 .box-inr_list li.large {
    padding: 20px;
  }
  .box-inr06 .box-inr_list.type01 {
    grid-template-columns: 1fr;
    grid-gap: 8px;
  }
  .box-inr06 .box-inr_list.type01 li {
    font-size: 16px;
    padding: 20px;
  }
  .box-inr06 .box-inr_list-img {
    width: 100%;
  }
  .box-inr06 .box-inr_ttllist li {
    padding: 30px 15px 15px; /* 上の余白を増やしてとんがりスペースを確保 */
    font-size: 14px;
    clip-path: polygon(50% 0%, 100% 20px, 100% 100%, 0% 100%, 0% 20px);
  }
  .box-inr06 .box-inr_ttllist li:first-child {
    font-size: 16px;
  }
}
.storagegrid-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.usecase_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 45px;
}
.usecase_list_item {
  background-color: #fff;
  border-radius: 20px;
}
.usecase_list_ttl {
  padding: 25px 30px 20px;
  font-size: 20px;
  text-align: center;
}
.usecase_list_desc {
  display: flex;
  padding: 0 30px 40px;
}
.usecase_list_img {
  margin-right: 20px;
  width: 50%;
  max-width: 250px;
}
.usecase_list_txt {
  flex: 1;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .usecase_list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
  .usecase_list_ttl {
    padding: 20px;
    font-size: 17px;
  }
  .usecase_list_desc {
    display: block;
  }
  .usecase_list_img {
    min-width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.storage__img img {
  width: 100%;
  border-radius: 20px;
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/
.btn-more {
  display: block;
  width: 100%;
  max-width: 415px;
  padding: 20px 25px;
  font-size: 19px;
  line-height: 1.5;
  text-align: center;
  font-weight: 600;
  color: #192348;
  background-color: #fff;
  border: 1px solid #192348;
  transition: 0.3s;
  position: relative;
  border-radius: 140px;
}
.btn-more:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 40px;
  height: 6px;
  background: url(../images/icon-arow.svg) no-repeat;
  background-size: contain;
}
.btn-more:hover {
  color: #fff;
  background-color: #192348;
  border: 1px solid #fff;
}
.btn-more:hover:before {
  background: url(../images/icon-arow-w.svg) no-repeat;
}
.btn-more.--b {
  background-color: #250E6C;
  color: #fff;
}
.btn-more.--b:before {
  background: url(../images/icon-arow-w.svg) no-repeat;
  background-size: contain;
}
.btn-more.--b:hover {
  color: #192348;
  background-color: #fff;
  border: 1px solid #192348;
}
.btn-more.--b:hover:before {
  background: url(../images/icon-arow.svg) no-repeat;
}
.btn-more.small {
  padding: 10px 30px;
  text-align: left;
  font-size: 16px;
}
.btn-more.small::before {
  right: 15px;
  width: 40px;
  height: 6px;
}
.btn-more.center {
  margin-left: auto;
  margin-right: auto;
}
.btn-more.wide {
  max-width: 320px;
}
.btn-more.left {
  text-align: left;
  padding-left: 60px;
}
.btn-more.btn-contact {
  max-width: 574px;
  font-size: 26px;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -8px;
}
.btn-wrap a {
  margin: 8px;
}
.btn-wrap.center {
  justify-content: center;
  margin-left: 0;
}

@media (max-width: 767px) {
  .btn-more {
    width: 80%;
    padding: 15px 20px;
    font-size: 14px;
    min-width: auto;
    max-width: none;
  }
  .btn-more::before {
    width: 33px;
    height: 5px;
    right: 8px;
    background-size: contain;
  }
  .btn-more.small {
    text-align: center;
    padding: 15px 20px;
  }
  .btn-more.left {
    text-align: left;
    padding: 15px 30px;
  }
  .btn-more.left {
    text-align: center;
    padding-left: 0;
  }
  .btn-more.btn-contact {
    max-width: 574px;
    font-size: 15px;
  }
  .btn-wrap {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    text-align: center;
  }
  .btn-wrap a {
    margin: 0;
  }
  .btn-wrap a:not(:last-child) {
    margin-bottom: 15px;
  }
}
.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.underline {
  text-decoration: underline;
}

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}
.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}
.link:is(:hover, :focus) {
  text-decoration: none;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.tel {
  display: inline-block;
  font-size: 28px;
  font-family: "Inter", sans-serif;
  color: #192348;
  line-height: 1;
  padding-left: 25px;
  position: relative;
}
.tel:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/share/icon_tel.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 25px;
}

@media (max-width: 767px) {
  .tel {
    font-size: 24px;
    padding-left: 25px;
  }
  .tel:before {
    width: 20px;
    height: 25px;
  }
}
.fz12 {
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */