@charset "UTF-8";

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #fff;
  color: #2c2e3a;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}
img,
picture,
video,
canvas,
svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
input,
button,
textarea,
select {
  font: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: .8;
}


/* 汎用 */
@media screen and (min-width: 769px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}


/* header */
.lay-header {
  width: 100%;
  min-height: 90px;
  background: #fff;
  color: #fff;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 20;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7));
}
.lay-header-inner {
  width: 100%;
  padding: 0px 2rem;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
.lay-header-logo {
  width: 23.5%;
  max-width: 315px;
}
.nav-header {
  width: 75%;
  margin-left: 1.5%;
}
.nav-header ul {
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  gap: max(1rem, 1.5vw);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .64px;
}
.nav-header ul li a {
  color: #2c2e3a;
}
.nav-header ul li.btn-header-external a {
  color: #fff;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 5px 20px;
  border: 2px solid rgba(205, 20, 50, .8);
  border-radius: 80px;
  background-color: #cd1432;
  transition: all .3s ease;
}
.nav-header ul li.btn-header-external a:hover {
  background-color: #fff;
  color: #cd1432;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .lay-header {
    min-height: 70px;
    position: relative;
  }
  .lay-header-inner {
    padding: 0px 10px;
    display: block;
  }
  .lay-header-logo {
    display: inline-block;
    width: 58%;
    max-width: 205px;
  }
  .nav-header {
    display: none;
  }
}


/* main */
.lay-main {
  margin-top: 90px;
}

@media screen and (max-width: 768px) {
  .lay-main{
    margin-top: 0;
  }
}


/* section：mv */
.sec-mv {
  color: #fff;
  position: relative;
  text-align: center;
}
.sec-mv > img {
  max-width: 2000px;
}
.hdg-mv {
  width: 100%;
  padding: 0px 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  text-align: left;
}
.hdg-mv-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.hdg-mv h1 {
  font-size: clamp(18px, 2.7vw, 48px);
  font-weight: bold;
  line-height: 1.75;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7));
}
.hdg-mv p {
  margin-top: 2.5%;
  font-size: clamp(14px, 1.375vw, 24px);
  line-height: 1.75;
}
.hdg-mv a {
  display: inline-block;
  margin-top: 2.5%;
  font-size: clamp(14px, 1.25vw, 20px);
  font-weight: 700;
  padding: 10px 30px;
  border: 2px solid rgba(205, 20, 50, .8);
  border-radius: 80px;
  background-color: #cd1432;
  transition: all .3s ease;
}
.hdg-mv a:hover{
  background-color: #fff;
  color: #cd1432;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .hdg-mv {
    padding: 0px 20px;
    top: 5%;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    text-align: center;
  }
  .hdg-mv h1 {
    font-size: clamp(22px, 5.9vw, 45px);
  }
  .hdg-mv p {
    margin-top: 5%;
    font-size: clamp(11px, 3vw, 24px);
    line-height: 2;
  }
  .hdg-mv a {
    margin-top: 5%;
    font-size: clamp(14px, 2.285vw, 16px);
  }
}


/* section：lead */
.sec-lead {
  padding: 50px 40px 30px;
  position: relative;
}
.sec-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
  column-gap: 4%;
}
.img-lead {
  width: 30%;
  max-width: 350px;
}
.hdg-lead {
  width: 70%;
}
.hdg-lead h2 {
  color: #153785;
  font-size: 43px;
  font-weight: bold;
  line-height: 1.5;
}
.hdg-lead h2 span.mark-lead{
  padding: 0 5px;
  background: linear-gradient(transparent 55%, #9bd5f4 45%);
  position: relative;
}
.hdg-lead p {
  margin-top: 25px;
  font-size: 18px;
}
.img-logo-windows {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: right;
}
.img-logo-windows img {
  width: 21.75%;
  max-width: 260px;
}

@media screen and (max-width: 768px) {
  .sec-lead {
    padding: 80px 20px 35px;
  }
  .sec-inner {
    display: block;
  }
  .hdg-lead {
    width: 100%;
  }
  .hdg-lead h2 {
    font-size: 26px;
    text-align: center;
  }
  .hdg-lead p {
    margin-top: 15px;
    font-size: 16px;
  }
  .img-lead {
    width: 100%;
    max-width: 250px;
    margin: 20px auto 0;
  }
  .img-logo-windows img {
    width: 100%;
    max-width: 210px;
  }
}


/* section：about */
.sec-about {
  padding: 60px 40px;
  background: #f7f7f7;
}
.hdg-level2-01 {
  text-align: center;
}
.hdg-level2-01 h2 {
  font-size: 43px;
  font-weight: bold;
}
.hdg-level2-01 h2 span.hdg-level2-01__label {
  display: block;
  margin-bottom: 10px;
  color: #153785;
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  line-height: 1;
}
.item-about {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
}
.hdg-level3-01 h3{
  display: block;
  background: #153785;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 30px;
}
.box-about-01 {
  margin-top: 40px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.box-about-list-01 li {
  margin-top: 15px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-left: 50px;
}
.box-about-list-01 li:first-child {
  margin-top: 0;
}
.box-about-list-01 li:before {
  content: "";
  background: url(../img/icon_about_list.webp) no-repeat;
  background-size: cover;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.box-about-01 .box-about-img {
  margin-left: 5%;
  width: 15%;
  max-width: 150px;
}
.box-about-list-02 {
  margin-top: 30px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  column-gap: 5%;
}
.box-about-list-02 li {
  width: 25%;
  text-align: center;
}
.box-about-list-02 li img {
  display: block;
  margin: 0 auto;
  height: clamp(100px, 16.67vw, 200px);
  object-fit: contain;
}
.box-about-list-02 li p {
  margin-top: 10px;
  color: #e65968;
  font-size: clamp(13px, 1.67vw, 20px);
  font-weight: bold;
  line-height: 1.25;
}
.box-about-02 {
  margin-top: 40px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.box-about-02 .box-about-img {
  margin-right: 1%;
  width: 300px;
}
.copy-about-01 {
  margin-top: 15px;
  color: #e65968;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.txt-about {
  margin-top: 30px;
  color: #153785;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec-about {
    padding: 35px 20px;
  }
  .hdg-level2-01 h2 {
    font-size: 26px;
    line-height: 1.5;
  }
  .hdg-level2-01 h2 span.hdg-level2-01__label {
    font-size: 20px;
  }
  .item-about {
    margin: 30px auto 0;
  }
  .hdg-level3-01 h3 {
    font-size: 20px;
    line-height: 1.25;
    border-radius: 40px;
  }
  .box-about-01 {
    margin-top: 25px;
    display: block;
  }
  .box-about-list-01 li {
    margin-top: 10px;
    font-size: 18px;
    padding-left: 45px;
  }
  .box-about-list-01 li:before {
    width: 30px;
    height: 30px;
  }
  .box-about-01 .box-about-img {
    margin: 20px auto 0;
    width: 100%;
  }
  .box-about-list-02 {
    margin-top: 25px;
    display: block;
  }
  .box-about-list-02 li {
    margin-top: 20px;
    width: 100%;
  }
  .box-about-list-02 li:first-child {
    margin-top: 0;
  }
  .box-about-list-02 li img {
    height: auto;
    width: 60%;
    max-width: 200px;
  }
  .box-about-list-02 li p {
    font-size: clamp(15px, 2.57vw, 18px);
  }
  .box-about-02 {
    margin-top: 25px;
    display: block;
  }
  .copy-about-01 {
    font-size: clamp(15px, 2.57vw, 18px);
  }
  .box-about-02 .box-about-img {
    margin: 20px auto 0;
    width: 100%;
    max-width: 350px;
  }
  .txt-about {
    margin-top: 15px;
    font-size: 18px;
  }
}


/* section：choice */
.sec-choice {
  padding: 80px 40px 60px;
}
.box-choice-list-01 {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 0;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  column-gap: 5%;
}
.box-choice-list-01 li {
  width: 33.333%;
  text-align: center;
}
.box-choice-list-01 li img {
  display: block;
  margin: 0 auto;
  height: clamp(100px, 16.67vw, 200px);
  object-fit: contain;
}
.box-choice-list-01 li p {
  margin-top: 10px;
  color: #e65968;
  font-size: clamp(13px, 1.67vw, 20px);
  font-weight: bold;
  line-height: 1.25;
}
.arr-down-01 {
  margin: 50px auto;
  width: 100%;
  max-width: 200px;
}
.msg-choice {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.msg-choice p {
  display: inline-block;
  color: #153785;
  font-size: clamp(23px, 2.5vw, 30px);
  font-weight: bold;
  position: relative;
  padding: 0 10%;
}
.msg-choice p:before,
.msg-choice p:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #153785;
  position: absolute;
}
.msg-choice p:before {
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(60deg);
  -webkit-transform: translateY(-50%) rotate(60deg);
  -ms-transform: translateY(-50%) rotate(60deg);
}
.msg-choice p:after {
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-60deg);
  -webkit-transform: translateY(-50%) rotate(-60deg);
  -ms-transform: translateY(-50%) rotate(-60deg);
}
.msg-choice p span.mark-choice {
  margin: 0 5px;
  background: linear-gradient(transparent 55%, #9bd5f4 45%);
  position: relative;
}

@media screen and (max-width: 768px) {
  .sec-choice {
    padding: 55px 20px;
  }
  .box-choice-list-01 {
    margin-top: 25px;
    display: block;
  }
  .box-choice-list-01 li {
    margin-top: 20px;
    width: 100%;
  }
  .box-choice-list-01 li:first-child {
    margin-top: 0;
  }
  .box-choice-list-01 li img {
    height: auto;
    width: 60%;
    max-width: 200px;
  }
  .box-choice-list-01 li p {
    font-size: clamp(15px, 2.57vw, 18px);
  }
  .arr-down-01 {
    margin: 40px auto;
    max-width: 160px;
  }
  .msg-choice p {
    font-size: clamp(18px, 3.14vw, 22px);
  }
  .msg-choice p:before {
    left: -25px;
    transform: translateY(-50%) rotate(70deg);
    -webkit-transform: translateY(-50%) rotate(70deg);
    -ms-transform: translateY(-50%) rotate(70deg);
  }
  .msg-choice p:after {
    right: -25px;
    transform: translateY(-50%) rotate(-70deg);
    -webkit-transform: translateY(-50%) rotate(-70deg);
    -ms-transform: translateY(-50%) rotate(-70deg);
  }
}


/* section：problem */
.sec-problem {
  padding: 60px 40px;
  background: #d6eefa;
}
.box-problem-list {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  column-gap: 20%;
}
.box-problem-list.box-problem-list-02 {
  margin: -120px auto 0;
}
.box-problem-item {
  width: 20%;
  text-align: center;
}
.txt-problem-item {
  background: #fff;
  border-radius: 15px;
  padding: 20px 10px;
  font-size: clamp(12px, 1.33vw, 16px);
  position: relative;
  margin-bottom: 30px;
}
.txt-problem-item:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-width: 25px 10px 0px 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.hdg-problem-item {
  display: block;
  color: #153785;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
}
.img-problem-item img {
  display: block;
  margin: 0 auto;
  height: clamp(80px, 10.83vw, 130px);
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .sec-problem {
    padding: 35px 20px;
  }
  .box-problem-list {
    display: block;
    margin-top: 20px;
  }
  .box-problem-item {
    margin-top: 15px;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }
  .box-problem-item:first-child {
    margin-top: 0;
  }
  .box-problem-list.box-problem-list-02{
    margin-top: 15px;
  }
  .img-problem-item {
    width: 30%;
  }
  .img-problem-item img {
    height: clamp(100px, 10.83vw, 130px);
  }
  .txt-problem-item {
    margin: 0;
    width: 70%;
    font-size: 16px;
  }
  .txt-problem-item:after {
    left: -45px;
    top: 50%;
    transform: translateY(calc(-50% + 10px)) rotate(90deg);
  -webkit-transform: translateY(calc(-50% + 10px)) rotate(90deg);
  -ms-transform: translateY(calc(-50% + 10px)) rotate(90deg);
  }
}


/* section：question */
.sec-question {
  padding: 60px 40px;
  background-image: linear-gradient(90deg, #f5f6ff 1px, transparent 1px), linear-gradient(#f5f6ff 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 19px 19px;
  background-color: #fff;
}
.msg-question {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 50px;
  text-align: center;
}
.msg-question p {
  display: inline-block;
  color: #153785;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: bold;
  position: relative;
  padding: 0 10%;
}
.msg-question p:before,
.msg-question p:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #153785;
  position: absolute;
}
.msg-question p:before {
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(60deg);
  -webkit-transform: translateY(-50%) rotate(60deg);
  -ms-transform: translateY(-50%) rotate(60deg);
}
.msg-question p:after {
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-60deg);
  -webkit-transform: translateY(-50%) rotate(-60deg);
  -ms-transform: translateY(-50%) rotate(-60deg);
}
.msg-question p span.mark-question {
  margin: 0 5px;
  background: linear-gradient(transparent 55%, #9bd5f4 45%);
  position: relative;
}
.tbl-question {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
}
.tbl-question .hdg-level3-01 h3 {
  max-width: 750px;
}
.tbl-question table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 16px;
  text-align: center;
  background: #fff;
  border: 1px solid #b3b3b3;
}
.tbl-question table thead {
  background: #2c2e3a;
  color: #fff;
  font-weight: bold;
}
.tbl-question table thead tr th {
  padding: 10px 5px;
  border-left: 1px solid #b3b3b3;
}
.tbl-question table thead tr th:first-child {
  border-left: none;
}
.tbl-question table tbody {
  color: #000;
  font-weight: bold;
}
.tbl-question table tbody tr th {
  background: #e6e6e6;
}
.tbl-question table tbody tr th,
.tbl-question table tbody tr td {
  padding: 10px 5px;
  border-top: 1px solid #b3b3b3;
}
.tbl-question table tbody tr td {
  border-left: 1px solid #b3b3b3;
}
.tbl-question table thead tr th.emph-tbl-question {
  background: #e65968;
  border: none;
}
.tbl-question table tbody tr td.emph-tbl-question {
  background: #fdf2f3;
  color: #e65968;
  border-left: 2px solid #e65968;
  border-right: 2px solid #e65968;
}
.tbl-question table tbody tr:last-child td.emph-tbl-question {
  border-bottom: 2px solid #e65968;
}
.note-question-list {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 0;
}
.note-question-list li {
  margin-top: 5px;
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
}
.note-question-list li:first-child {
  margin-top: 0;
}
.note-question-list li:before{
  content: "※";
}
.box-question-list{
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  column-gap: 5%;
}
.box-question-list li {
  width: 33.333%;
  position: relative;
}
.box-question-list li img {
  width: 45px;
  position: absolute;
  top: -20px;
  left: -15px;
}
.box-question-list li p {
  background: #d6eefa;
  border: 1px solid #153785;
  border-radius: 20px;
  font-size: clamp(12px, 1vw, 16px);
  text-align: center;
  padding: 45px 5%;
  line-height: 1.5;
}
.box-question-list li p span.hdg-question-list {
  display: block;
  color: #153785;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .sec-question {
    padding: 35px 20px;
  }
  .msg-question {
    margin: 20px auto 30px;
  }
  .msg-question p {
    font-size: clamp(20px, 3.14vw, 22px);
  }
  .msg-question p:before,
  .msg-question p:after {
    width: 150px;
  }
  .msg-question p:before {
    left: -80px;
    transform: translateY(-50%) rotate(70deg);
    -webkit-transform: translateY(-50%) rotate(70deg);
    -ms-transform: translateY(-50%) rotate(70deg);
  }
  .msg-question p:after {
    right: -80px;
    transform: translateY(-50%) rotate(-70deg);
    -webkit-transform: translateY(-50%) rotate(-70deg);
    -ms-transform: translateY(-50%) rotate(-70deg);
  }
  .tbl-question {
    margin: 30px auto 0;
    overflow: auto;
  }
  .tbl-question table {
    width: 1200px;
  }
  .tbl-question table thead tr th {
    width: 30%;
  }
  .tbl-question table thead tr th:first-child {
    width: 10%;
  }
  .note-question-list {
    margin-top: 20px;
  }
  .note-question-list li {
    font-size: 12px;
  }
  .box-question-list {
    margin: 40px auto 0;
    display: block;
  }
  .box-question-list li {
    margin: 40px auto 0;
    width: 100%;
    max-width: 360px;
  }
  .box-question-list li:first-child {
    margin-top: 0;
  }
  .box-question-list li p {
    font-size: 14px;
    padding: 25px 5%;
  }
  .box-question-list li p span.hdg-question-list {
    font-size: 18px;
  }
}


/* section：lineup */
.sec-lineup {
  padding: 60px 40px;
  background: #153785;
}
.sec-lineup .hdg-level2-01 h2 {
  color: #fff;
}
.sec-lineup .hdg-level2-01 h2 span.hdg-level2-01__label {
  color: #9bd5f4;
}
.box-lineup-list {
  margin-top: 50px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  column-gap: 5%;
}
.box-lineup-list.box-lineup-list-02{
  margin-top: 30px;
}
.box-lineup-item {
  width: 50%;
  max-width: 500px;
}
.img-lineup-item {
  background: #fff;
  border-radius: 15px 15px 0 0;
  padding: 20px;
}
.img-lineup-item.img-lineup-item__aipc {
  background: #9bd5f4;
}
.img-lineup-item img {
  display: block;
  margin: 0 auto;
  height: clamp(60px, 8.33vw, 100px);
  object-fit: contain;
}
.txt-lineup-item {
  border: 1px solid #fff;
  border-top: none;
  border-radius: 0 0 15px 15px;
  padding: 20px;
  color: #fff;
  text-align: center;
  min-height: 113px;
}
.box-lineup-list.box-lineup-list-02 .txt-lineup-item {
  min-height: 142px;
}
.txt-lineup-item p {
  display: block;
  font-size: clamp(16px, 1.5vw, 18px);
}
.txt-lineup-item p span.hdg-lineup-item {
  display: block;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .sec-lineup {
    padding: 35px 20px;
  }
  .box-lineup-list {
    margin-top: 30px;
    display: block;
  }
  .box-lineup-list.box-lineup-list-02 {
    margin-top: 20px;
  }
  .box-lineup-item {
    margin: 20px auto 0;
    width: 100%;
  }
  .box-lineup-item:first-child {
    margin-top: 0;
  }
  .img-lineup-item {
    padding: 15px;
  }
  .img-lineup-item img {
    height: 100px;
  }
  .txt-lineup-item {
    padding: 15px;
    min-height: auto;
  }
  .box-lineup-list.box-lineup-list-02 .txt-lineup-item {
    min-height: auto;
  }
  .txt-lineup-item p {
    font-size: 14px;
  }
  .txt-lineup-item p span.hdg-lineup-item {
    font-size: 18px;
    margin-bottom: 10px;
  }
}


/* section：support */
.sec-support {
  padding: 60px 40px;
}
.sec-support .hdg-level2-01 h2 span.hdg-level2-01__label {
  color: #e65968;
}
.box-support-list {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  column-gap: 1%;
}
.box-support-list li {
  width: 25%;
  text-align: center;
}
.no-support {
  margin: 0 auto 30px;
  padding-top: 10px;
  width: 90px;
  height: 90px;
  background: #e65968;
  border-radius: 50%;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: relative;
}
.no-support:after{
  content: '';
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-width: 18px 8px 0 8px;
  border-style: solid;
  border-color: #e65968 transparent transparent transparent;
}
.no-support span.no-support-label {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.txt-support-item {
  font-size: clamp(14px, 1.33vw, 16px);
}
.txt-support-item span.hdg-support-item {
  display: block;
  color: #e65968;
  font-size: clamp(18px, 1.67vw, 22px);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .sec-support {
    padding: 35px 20px;
  }
  .box-support-list {
    margin: 30px auto 0;
    display: block;
  }
  .box-support-list li {
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
  }
  .box-support-list li:first-child {
    margin-top: 0;
  }
  .txt-support-item {
    width: calc(100% - 100px);
    margin-left: 20px;
    font-size: 14px;
  }
  .txt-support-item span.hdg-support-item {
    font-size: 18px;
  }
  .no-support {
    margin: 0 auto;
    padding-top: 5px;
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  .no-support:after {
    top: 78px;
  }
  .no-support span.no-support-label {
    font-size: 12px;
  }
}


/* section：case */
.sec-case {
  padding: 60px 40px;
  background: #f7f7f7;
}
.box-case-list {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
}
.box-case-list li {
  margin-top: 65px;
  background: #fff;
  border: 1px solid #153785;
  border-radius: 10px;
  position: relative;
}
.box-case-list li:first-child {
  margin-top: 0;
}
.no-case {
  width: 90px;
  height: 90px;
  background: #153785;
  border-radius: 50%;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: absolute;
  top: -45px;
  left: -20px;
}
.no-case span.no-case-label {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.no-case:after{
  content: '';
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-width: 18px 8px 0 8px;
  border-style: solid;
  border-color: #153785 transparent transparent transparent;
}
.txt-case-item {
  padding: 30px 20px 30px 90px;
  font-size: 16px;
}
.txt-case-item span.hdg-case-item {
  display: block;
  color: #153785;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .sec-case {
    padding: 35px 20px;
  }
  .box-case-list {
    margin: 100px auto 0;
  }
  .box-case-list li {
    margin-top: 90px;
  }
  .no-case {
    width: 80px;
    height: 80px;
    font-size: 32px;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .no-case span.no-case-label {
    font-size: 12px;
  }
  .no-case:after {
    top: 78px;
  }
  .txt-case-item {
    padding: 30px 20px;
    font-size: 14px;
  }
  .txt-case-item span.hdg-case-item {
    font-size: 18px;
    line-height: 1.25;
  }
}


/* section：flow */
.sec-flow {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 60px 40px;
  background: url(../img/bg_flow_pc.jpg) no-repeat;
  background-size: cover;
}
.sec-flow-inner {
  width: 100%;
}
.sec-flow .hdg-level2-01 h2 {
  color: #fff;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7));
}
.sec-flow .hdg-level2-01 h2 span.hdg-level2-01__label {
  color: #8b639d;
}
.box-flow-list-01 {
  width: 100%;
  max-width: 1200px;
  margin: 65px auto 0;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  column-gap: 1.5%;
}
.box-flow-list-01 li {
  width: 20%;
  padding: 70px 1% 20px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  position: relative;
}
.no-flow {
  background: #8b639d;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.no-flow span.no-flow-label {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.no-flow:after {
  content: '';
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-width: 18px 8px 0 8px;
  border-style: solid;
  border-color: #8b639d transparent transparent transparent;
}
.hdg-flow-item {
  color: #8b639d;
  font-size: clamp(15px, 1.67vw, 20px);
  font-weight: bold;
}
.box-flow-list-01 li img {
  display: block;
  margin: 15px auto;
  height: clamp(40px, 31.11vw, 70px);
  object-fit: contain;
}
.txt-flow-item {
  font-size: clamp(10px, 1.33vw, 16px);
}
.box-flow-last {
  width: 100%;
  max-width: 650px;
  background: #fff;
  margin: 65px auto 0;
  padding: 48px 10px 25px;
  border-radius: 15px;
  text-align: center;
  position: relative;
}
.box-flow-last p {
  font-size: 18px;
  font-weight: bold;
}
.box-flow-last p.label-flow-last {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  background: #8b639d;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  padding: 10px;
  border-radius: 25px;
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .sec-flow {
    padding: 35px 20px;
    background: url(../img/bg_flow_sp.jpg) no-repeat;
    background-size: cover;
  }
  .sec-flow .hdg-level2-01 h2 {
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.7));
  }
  .box-flow-list-01 {
    display: block;
  }
  .box-flow-list-01 li {
    margin: 25px auto 0;
    width: 100%;
    max-width: 350px;
    padding: 25px 15px 25px 120px;
  }
  .box-flow-list-01 li:first-child {
    margin-top: 0;
  }
  .no-flow {
    font-size: 32px;
    width: 80px;
    height: 80px;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .no-flow:after {
    top: 78px;
  }
  .no-flow span.no-flow-label {
    font-size: 12px;
  }
  .hdg-flow-item {
    font-size: 18px;
  }
  .txt-flow-item {
    font-size: 14px;
  }
  .box-flow-last {
    margin: 50px auto 0;
    padding: 39px 10px 20px;
  }
  .box-flow-last p {
    font-size: 16px;
  }
  .box-flow-last p.label-flow-last {
    width: 80%;
    font-size: 18px;
    top: -19px;
  }
}


/* section：faq */
.sec-faq {
  padding: 60px 40px;
  background: #f7f7f7;
}
.box-faq-list {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
}
.list-faq-item {
  padding: 0 30px;
  border-bottom: 1px solid #b3b3b3;
}
.txt-faq-que {
  color: #153785;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  padding: 30px 30px 30px 40px;
  cursor: pointer;
}
.txt-faq-que:before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 30px;
}
.txt-faq-que:after {
  content: "";
  background: url(../img/icon_faq_list.webp) no-repeat;
  background-size: cover;
  width: 20px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(1);
  -webkit-transform: translateY(-50%) scaleY(1);
  -ms-transform: translateY(-50%) scaleY(1);
  transition: transform 0.3s ease;
}
.txt-faq-que:hover {
  opacity: .8;
}
.txt-faq-ans {
  font-size: 16px;
  background: #edf0f5;
  border-radius: 20px;
  margin: 0 -30px 0;
  padding: 0 30px;
  position: relative;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0s linear, padding 0.3s linear;
}
.list-faq-item__on .txt-faq-que:after {
  transform: translateY(-50%) scaleY(-1);
  -webkit-transform: translateY(-50%) scaleY(-1);
  -ms-transform: translateY(-50%) scaleY(-1);
}
.list-faq-item__on .txt-faq-ans {
  max-height: 500px;
  margin: 0 -30px 30px;
  padding: 30px;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.icon-ans-faq {
  color: #153785;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .sec-faq {
    padding: 35px 20px;
  }
  .box-faq-list {
    margin: 30px auto 0;
  }
  .list-faq-item {
    padding: 0 15px;
  }
  .txt-faq-que {
    font-size: 18px;
    padding: 15px 20px 15px 30px;
  }
  .txt-faq-que:before {
    top: 15px;
  }
  .txt-faq-que:after {
    width: 15px;
    height: 9px;
  }
  .txt-faq-ans {
    margin: 0 -15px 0;
    padding: 0 15px;
  }
  .list-faq-item__on .txt-faq-ans {
    margin: 0 -15px 15px;
    padding: 15px;
  }
  .icon-ans-faq {
    margin-right: 10px;
    font-size: 18px;
  }
}


/* section：cta */
.sec-cta {
  position: relative;
}
.bg-cta {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
.content-cta {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.hdg-level2-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.17vw, 38px);
  font-weight: bold;
  line-height: 1;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7));
}
.btn-cta {
  margin-top: 30px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  column-gap: 5%;
}
.btn-cta a{
  width: 25%;
  padding: 15px 10px;
  border-radius: 80px;
  background: #cd1432;
  border: 2px solid rgba(205, 20, 50, .8);
  color: #fff;
  font-size: clamp(16px, 1.67vw, 20px);
  font-weight: bold;
  line-height: 1;
}
.btn-cta a:hover {
  background-color: #fff;
  color: #cd1432;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .content-cta {
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .hdg-level2-cta h2 {
    font-size: clamp(24px, 4.95vw, 38px);
  }
  .btn-cta {
    margin-top: 8%;
    display: block;
  }
  .btn-cta a {
    display: block;
    width: 260px;
    margin: 5% auto 0;
    font-size: clamp(16px, 2.6vw, 20px);
  }
  .btn-cta a:first-child {
    margin-top: 0;
  }
}


/* footer */
.lay-footer {
  padding: 20px 40px;
}
.nav-footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-footer ul {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  column-gap: 1.5%;
}
.nav-footer ul li a{
  font-size: clamp(10px, 1.31vw, 14px);
}
.box-footer {
  width: 100%;
  max-width: 1200px;
  margin: 25px auto 0;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
.logo-footer {
  width: 227px;
}
.copyright-footer p{
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .lay-footer {
    padding: 10px 20px;
  }
  .nav-footer ul {
    flex-wrap: wrap;
    column-gap: 1%;
  }
  .nav-footer ul li {
    width: 49.5%;
  }
  .nav-footer ul li a {
    font-size: 10px;
  }
  .box-footer {
    display: block;
    margin: 15px auto 0;
  }
  .logo-footer {
    margin: 0 auto;
  }
  .copyright-footer {
    margin-top: 15px;
    text-align: center;
  }
}


