@import url("destyle.min.css");
:root {
  --sub-color: #ccc;
  --sub-color2: #999;
  --sub-color3: #ddd;
}

.houjin {
  --sub-color: #83d2e5;
  --sub-color2: #13aadc;
  --sub-color3: #e4f5f9;
}

.kojin {
  --sub-color: #83ddbc;
  --sub-color2: #1c7f68;
  --sub-color3: #dff6ee;
}

* {
  box-sizing: border-box;
}

html {
  line-height: inherit;
  scroll-behavior: smooth;
  scroll-padding-top: calc(50px - 2px);
}

img {
  max-width: 100%;
}

a {
  color: #1a1a1a;
}
a:hover {
  color: #285187;
}
a.link-text {
  color: var(--sub-color2);
  text-decoration: underline;
}
a.link-text:hover {
  color: color-mix(in srgb, var(--sub-color2) 80%, #fff);
}

*[aria-expanded=false]::after {
  transform: rotate(0deg);
}

*[aria-expanded=true]::after {
  transform: rotate(180deg);
}

*[aria-hidden=true] {
  display: none;
}

*[aria-hidden=false] {
  display: block;
}

.-sp-only {
  display: none;
}
@media screen and (max-width: 900px) {
  .-sp-only {
    display: block;
  }
}

.-ac {
  text-align: center;
}

.-inner-width {
  width: 96%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.-btnlink {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 7px;
}
.header-nav .-btnlink {
  grid-template-columns: auto;
}
.-btnlink.-single2 {
  grid-template-columns: min(30vw, 350px);
}
@media screen and (max-width: 900px) {
  .-btnlink.-single2 {
    grid-template-columns: min(80vw, 350px);
  }
}
.-btnlink.-multi2 {
  grid-template-columns: repeat(2, min(30vw, 350px));
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .-btnlink.-multi2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 5vw 3vw;
  }
  .-btnlink.-multi2 a {
    width: min(100%, 80vw);
    margin: 0 auto;
  }
}
.-btnlink li {
  display: grid;
}
.-btnlink a {
  display: grid;
  place-content: center;
  padding: 25px 20px 25px 10px;
  position: relative;
  border-radius: 7px;
}
.-btnlink a::after {
  display: block;
  content: "";
  position: absolute;
  right: 5%;
  top: calc(50% - 7px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 7px;
}
.header-nav .-btnlink a {
  padding: 10px 30px 10px 20px;
}
.header-nav .-btnlink a::after {
  top: calc(50% - 5px);
  border-width: 5px 0 5px 5px;
}
.-btnlink a:hover {
  opacity: 0.8;
}
.-btnlink a.btn-contact {
  background-color: #285187;
  color: #fff;
}
.-btnlink a.btn-contact::after {
  border-color: transparent transparent transparent #fff;
}
.-btnlink a.btn-use {
  color: #1a1a1a;
}
.houjin .-btnlink a.btn-use {
  background-color: color-mix(in srgb, #285187 20%, #fff);
}
.kojin .-btnlink a.btn-use {
  background-color: color-mix(in srgb, #83ddbc 50%, #fff);
}
.-btnlink a.btn-use::after {
  border-color: transparent transparent transparent #1a1a1a;
}

.-shadow {
  box-shadow: 5px 5px 10px 0px rgba(40, 81, 135, 0.5);
}

.-kome li {
  margin-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 500px) {
  .-spscrollx {
    overflow-x: scroll;
  }
}

@media screen and (max-width: 500px) {
  .-scroll-item {
    width: 800px;
    max-width: 800px;
  }
}

.section-title {
  background-color: var(--sub-color);
  padding: 50px 20px;
  text-align: center;
  color: #285187;
  font-size: 2.5rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 900px) {
  .section-title {
    font-size: clamp(1.563rem, 1.218rem + 1.72vw, 2.188rem);
  }
}
.section-title::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  bottom: -40px;
  left: calc(50% - 25px);
  border-style: solid;
  border-width: 40px 50px 0 50px;
  border-color: var(--sub-color) transparent transparent transparent;
}
.section-title span {
  display: inline-block;
}

.h3-style {
  color: #285187;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 900px) {
  .h3-style {
    font-size: clamp(1.063rem, 0.89rem + 0.86vw, 1.375rem);
  }
}
.h3-style b {
  display: inline-block;
  background-color: #285187;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 7px;
}
.h3-style span {
  display: inline-block;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}
@media screen and (max-width: 900px) {
  body {
    font-size: 0.9rem;
  }
}

header {
  height: 50px;
  background: #fff;
  box-shadow: 0px 5px 20px 0px rgba(40, 81, 135, 0.4);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 0 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media screen and (max-width: 900px) {
  header {
    justify-content: space-between;
    grid-template-columns: auto 50px;
  }
}

.header-logo {
  width: min(150px, 35vw);
}

.header-sp-button {
  display: none;
}
@media screen and (max-width: 900px) {
  .header-sp-button {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
  }
}
.header-sp-button > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: auto;
  background-color: var(--sub-color);
  border-radius: 9999px;
  transition-duration: 0.3s;
  transition-property: transform, opacity;
}
.header-sp-button > span:nth-child(1) {
  transform: translateY(-0.5rem);
}
.header-sp-button > span:nth-child(3) {
  transform: translateY(0.5rem);
}
.header-sp-button > span:is([aria-expanded=true] *):nth-child(1) {
  transform: rotate(45deg);
}
.header-sp-button > span:is([aria-expanded=true] *):nth-child(2) {
  opacity: 0;
}
.header-sp-button > span:is([aria-expanded=true] *):nth-child(3) {
  transform: rotate(-45deg);
}

.header-nav {
  font-size: 0.8rem;
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .header-nav {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 50px);
    height: 0;
    display: none;
    overflow: hidden;
    transition: all 0.5s;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
    font-size: 0.9rem;
    /*background-color: rgba($black, 0.7);
    visibility: visible;
          opacity: 1;*/
  }
  .header-nav.open {
    height: auto;
    display: block;
  }
}
.header-nav-pagelink {
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-end;
  gap: 10px;
}
@media screen and (max-width: 900px) {
  .header-nav-pagelink {
    grid-auto-flow: row;
    justify-content: flex-start;
    align-items: stretch;
    background-color: #fff;
    padding: 2vw 0;
  }
}
.header-nav-pagelink li:not(:first-child):before {
  display: block;
  content: "/";
  margin-right: 10px;
}
@media screen and (max-width: 900px) {
  .header-nav-pagelink li:not(:first-child):before {
    content: none;
  }
}
.header-nav-pagelink li {
  display: grid;
  grid-auto-flow: column;
}
@media screen and (max-width: 900px) {
  .header-nav-pagelink li {
    width: 100vw;
  }
}
.header-nav-pagelink a.is-current {
  color: var(--sub-color2);
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .header-nav-pagelink a {
    display: block;
    padding: 2vw;
  }
}
@media screen and (max-width: 900px) {
  .header-nav .-btnlink {
    grid-template-columns: min(300px, 45vw) min(300px, 45vw);
    background-color: #fff;
    padding-bottom: 20px;
  }
}

.mv {
  background-color: var(--sub-color);
  background-image: url(../img/mv_bg.svg);
  background-size: 100% auto;
  background-position: top left;
  background-repeat: no-repeat;
  padding: 140px 0 100px;
}
@media screen and (max-width: 900px) {
  .mv {
    background-image: url(../img/mv_bg_sp.svg);
    background-position: top -5vw left;
    padding: 13vw 0 3vw;
  }
}
.mv-titlearea {
  width: 50%;
  display: grid;
  grid-auto-flow: row;
  gap: 5px;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .mv-titlearea {
    width: auto;
  }
}
.mv-titlearea .oricon {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #285187;
  font-size: 20px;
  font-weight: bold;
}
.mv-titlearea .oricon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/no1.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 900px) {
  .mv-titlearea h1 {
    width: min(500px, 80vw);
    margin: 0 auto;
  }
}
.mv-titlearea .desc {
  font-size: 15px;
  font-weight: bold;
}
.mv-titlearea .desc span {
  display: inline-block;
}
.mv-mvarea {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 10px 30px;
  margin-top: 40px;
}
@media screen and (max-width: 700px) {
  .mv-mvarea {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    margin-top: 6vw;
    gap: 15px;
  }
}
.mv-mvarea-image {
  grid-row: 1/3;
  grid-column: 1/2;
}
@media screen and (max-width: 700px) {
  .mv-mvarea-image {
    grid-row: 2/3;
    grid-column: 1/2;
    width: 75vw;
    margin: 0 auto;
  }
}
.mv-mvarea-subtext {
  grid-row: 1/2;
  grid-column: 2/3;
  color: var(--sub-color);
  font-weight: bold;
  font-size: 15px;
  text-shadow: 3px 3px 1px #fff, -3px 3px 1px #fff, 3px -3px 1px #fff, -3px -3px 1px #fff, 3px 0px 1px #fff, 0px 3px 1px #fff, -3px 0px 1px #fff, 0px -3px 1px #fff;
  letter-spacing: 1px;
  line-height: 140%;
}
@media screen and (max-width: 700px) {
  .mv-mvarea-subtext {
    grid-row: 1/2;
    grid-column: 1/2;
    font-size: clamp(0.75rem, 0.682rem + 0.34vw, 0.938rem);
    display: grid;
    justify-content: center;
  }
}
.mv-mvarea-maintext {
  grid-row: 2/3;
  grid-column: 2/3;
  display: grid;
  place-content: center;
  border-radius: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 5px 5px 10px 0px rgba(40, 81, 135, 0.5);
  color: #285187;
  font-size: clamp(0.75rem, 0.455rem + 1.48vw, 1.563rem);
  font-weight: 700;
  line-height: 200%;
}
@media screen and (max-width: 700px) {
  .mv-mvarea-maintext {
    grid-row: 3/4;
    grid-column: 1/2;
    width: 86vw;
    margin: 0 auto;
    font-size: clamp(0.938rem, 0.593rem + 1.72vw, 1.563rem);
  }
}
.mv-mvarea-maintext span {
  display: inline-block;
}
.mv-mvarea-maintext .st {
  font-size: 80%;
}
.mv-contactarea {
  margin: 50px auto 0;
  width: 88%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 5px 5px 10px 0px rgba(40, 81, 135, 0.5);
  padding: 20px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .mv-contactarea {
    width: 86vw;
    grid-template-columns: auto;
    gap: 20px;
  }
}
.mv-contactarea .text {
  margin-left: 30px;
}
.mv-contactarea .text li {
  list-style-type: disc;
  line-height: 120%;
}
.mv-contactarea .text li:not(:first-child) {
  margin-top: 15px;
}
.mv-contactarea .-btnlink {
  grid-template-columns: min(20vw, 250px);
}
@media screen and (max-width: 900px) {
  .mv-contactarea .-btnlink {
    grid-template-columns: min(100%, 300px);
  }
}

.nayami {
  padding-bottom: 70px;
}
.nayami .section-title {
  background-image: url(../img/nayami_bg.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 90px auto;
}
.nayami-nayami {
  padding-top: 75px;
  text-align: center;
  background-image: url(../img/nayami_bg2.svg);
  background-repeat: no-repeat;
  background-position: top -65px left;
  background-size: 90px auto;
}
.nayami-nayami-img {
  max-width: min(900px, 90vw);
}
.nayami-kaiketsu {
  margin: max(-110px, -10vw) auto 0;
  padding-bottom: 50px;
  background-image: url(../img/bg_rb_bl.svg);
  background-repeat: no-repeat;
  background-position: bottom right 15px;
  background-size: 90px auto;
}
.nayami-kaiketsu .-inner-width {
  text-align: center;
}
.nayami-kaiketsu-img {
  max-width: min(900px, 90vw);
}

.yorisoi .section-title {
  background-image: url(../img/yorisoi_title_bg.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 90px auto;
}
.yorisoi .-inner-width {
  padding: 70px 0 100px;
}
.yorisoi-style {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .yorisoi-style {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 5vw 3vw;
  }
}
.yorisoi-style-image {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 5px 5px 10px 0px rgba(40, 81, 135, 0.5);
  padding: min(30px, 3vw);
  aspect-ratio: 1/1;
}
@media screen and (max-width: 900px) {
  .yorisoi-style-image {
    width: min(50vw, 100%);
    margin: 0 auto;
  }
}
.yorisoi-style p {
  line-height: 180%;
}
.yorisoi-style p + p {
  margin-top: 1.5rem;
}
.yorisoi-search {
  background-color: var(--sub-color3);
  background-repeat: no-repeat, no-repeat;
  background-position: top 30px left 30px, bottom 30px right 30px;
  background-size: 120px auto, 100px auto;
}
.houjin .yorisoi-search {
  background-image: url(../img/bg_square_wh.svg), url(../img/bg_rb_bl2.svg);
}
.kojin .yorisoi-search {
  background-image: url(../img/bg_square_wh.svg), url(../img_k/bg_rb_gr2.svg);
}
.yorisoi-search-image {
  display: block;
  max-width: min(900px, 90vw);
  margin: 0 auto 50px;
}

.shiten, .lstyle {
  background-image: url(../img/shiten_bg.svg), url(../img/main_bg.svg);
  background-size: 100% auto, min(1000px, 160vw) auto;
  background-repeat: no-repeat, repeat;
  background-position: top 100px center, top left;
}
.shiten .section-title::before, .lstyle .section-title::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 120px;
  left: -60px;
  top: -60px;
  background-image: url(../img/bg_circle_wh.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.shiten .-inner-width, .lstyle .-inner-width {
  padding: 70px 0 100px;
}
.shiten-txt, .lstyle-txt {
  background-color: rgba(255, 255, 255, 0.8);
}
.shiten-txt p, .lstyle-txt p {
  line-height: 180%;
}
.shiten-txt * + p, .lstyle-txt * + p {
  margin-top: 1.5rem;
}
.shiten-txt span, .lstyle-txt span {
  display: inline-block;
}
.shiten .-btnlink, .lstyle .-btnlink {
  margin-top: 50px;
}

.point-container {
  margin: 0 0 70px;
}
.point-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 40px;
  box-shadow: 5px 5px 10px 0px rgba(40, 81, 135, 0.5);
  margin-top: 50px;
}
@media screen and (max-width: 900px) {
  .point-item {
    margin-right: 7px;
    padding: 20px;
  }
}
.point-title {
  color: #285187;
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 5px;
  padding-right: 40px;
  border-bottom: 3px solid #285187;
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .point-title {
    font-size: clamp(1.063rem, 0.89rem + 0.86vw, 1.375rem);
  }
}
.point-title b {
  display: block;
  font-size: 0.9rem;
}
.point-title span {
  display: inline-block;
}
.point-title::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  right: 10px;
  bottom: 10px;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #285187 transparent transparent transparent;
}
.point-text p {
  line-height: 180%;
}
.point-text > * + * {
  margin-top: 1.5rem;
}
.point-text .-kome {
  margin-top: 0;
}
.point-text ul.listb li {
  padding-left: calc(1rem + 5px);
  position: relative;
}
.point-text ul.listb li::before {
  position: absolute;
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  top: 6px;
  left: 0;
  background-image: url(../img/point_li.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.point-text li:not(:first-child) {
  margin-top: 10px;
}

.lstyle-chart {
  margin-top: 40px;
}
.lstyle-shindan-container {
  margin-top: 40px;
}
.lstyle .arrow {
  width: min(200px, 10vw);
  margin: 40px auto;
}
.lstyle-table {
  margin: 30px 0 50px;
}
.lstyle table {
  border: 2px solid #285187;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
}
.lstyle col:nth-child(1) {
  width: 20%;
}
.lstyle col:nth-child(2) {
  width: 30%;
}
.lstyle th, .lstyle td {
  border: 2px solid #285187;
  padding: 10px;
}
.lstyle th[scope=col] {
  background-color: var(--sub-color3);
  color: #285187;
  text-align: center;
}
.lstyle th[scope=row] {
  color: #285187;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 700px) {
  .lstyle th[scope=row] {
    white-space: inherit;
  }
}
.lstyle th[scope=row].l1 {
  color: #84282f;
}
.lstyle th[scope=row].l2 {
  color: #288442;
}
.lstyle th[scope=row].l3 {
  color: #846328;
}
.lstyle th[scope=row].l4 {
  color: #522982;
}
.lstyle span {
  display: inline-block;
}

.faq {
  background-image: url(../img/faq_bg.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top 100px center;
  min-height: calc(100vh - 50px);
}
.faq-container {
  padding: 70px 0 100px;
}
.faq-item {
  margin-bottom: 50px;
  border: 2px solid #285187;
  background-color: #fff;
}
.faq-title {
  background-color: #285187;
  padding: 20px 60px;
  margin-bottom: 0;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 900px) {
  .faq-title {
    font-size: clamp(1.063rem, 0.89rem + 0.86vw, 1.375rem);
  }
}
.faq-title::before {
  position: absolute;
  content: "Q";
  display: block;
  top: calc(50% - 1.5rem);
  left: 20px;
  width: 2rem;
  height: auto;
  font-size: 2rem;
}
.faq-title::after {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-width: 2px 2px 0 0;
  border-color: #fff;
  border-style: solid;
  transform: rotate(135deg);
  top: calc(50% - 10px);
  right: 20px;
}
.faq-title[aria-expanded=true]::after {
  transform: rotate(315deg);
}
.faq-text {
  padding: 20px;
}
.faq-text > p:not(:first-child) {
  margin-top: 1.5rem;
}
.faq-text > p, .faq-text li {
  line-height: 180%;
}
.faq-flow {
  background-color: var(--sub-color3);
  margin-top: 50px;
  position: relative;
  padding: 40px 20px 20px;
}
@media screen and (max-width: 900px) {
  .faq-flow {
    padding-bottom: 40px;
  }
}
.faq-flow-title {
  display: inline-block;
  background-color: var(--sub-color2);
  color: #fff;
  border-radius: 20px;
  font-weight: 500;
  padding: 10px 30px;
  position: absolute;
  top: -20px;
  left: 20px;
}

.houjin .faq-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, auto);
  grid-template-rows: 50px auto auto;
  gap: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid {
    grid-template-columns: 100px auto;
    grid-template-rows: repeat(6, auto);
    gap: 15px;
  }
}
.houjin .faq-flow-grid h5 {
  color: #fff;
  padding: 3px 10px 3px 26px;
  text-align: center;
  position: relative;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid h5 {
    writing-mode: vertical-rl;
    padding: 40px 3px 10px 3px;
  }
}
.houjin .faq-flow-grid h5::before, .houjin .faq-flow-grid h5::after {
  position: absolute;
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.houjin .faq-flow-grid h5::before {
  border: solid 27px transparent;
  border-right: solid 13px transparent;
  border-left: solid 13px var(--sub-color3);
  top: -2px;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid h5::before {
    left: -2px;
    top: 0;
    border-style: solid;
    border-width: 26px 50px 0 50px;
    border-color: var(--sub-color3) transparent transparent transparent;
  }
}
.houjin .faq-flow-grid h5::after {
  border: solid 25px transparent;
  border-right: solid 13px transparent;
  border-left: solid 13px #285187;
  top: 0;
  right: -26px;
  z-index: 20;
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid h5::after {
    right: 0;
    top: inherit;
    bottom: -26px;
    border-style: solid;
    border-width: 26px 50px 0 50px;
    border-color: #285187 transparent transparent transparent;
  }
}
.houjin .faq-flow-grid h5 b {
  font-weight: bold;
}
.houjin .faq-flow-grid h5 span {
  font-size: 0.8rem;
  display: inline-block;
}
.houjin .faq-flow-grid .flow1 {
  grid-column: 1/3;
  grid-row: 1/2;
  background-color: #285187;
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid .flow1 {
    grid-column: 1/2;
    grid-row: 1/5;
  }
}
.houjin .faq-flow-grid .flow1::before {
  content: none;
}
.houjin .faq-flow-grid .flow2 {
  grid-column: 3/6;
  grid-row: 1/2;
  background-color: var(--sub-color2);
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid .flow2 {
    grid-column: 1/2;
    grid-row: 5/8;
  }
}
.houjin .faq-flow-grid .flow2::after {
  border-left: solid 13px var(--sub-color2);
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid .flow2::after {
    border-width: 26px 50px 0 50px;
    border-color: var(--sub-color2) transparent transparent transparent;
  }
}
.houjin .faq-flow-grid .flow3 {
  grid-column: 6/7;
  grid-row: 1/2;
  background-color: #285187;
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid .flow3 {
    grid-column: 1/2;
    grid-row: 8/9;
  }
}
.houjin .faq-flow-grid p {
  font-size: 0.8rem;
  color: #285187;
  font-weight: 500;
}
.houjin .faq-flow-grid p span {
  display: inline-block;
}
.houjin .faq-flow-grid .item1 {
  grid-column: 1/2;
  grid-row: 2/4;
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid .item1 {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.houjin .faq-flow-grid .item2 {
  grid-column: 2/3;
  grid-row: 2/4;
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid .item2 {
    grid-column: 2/3;
    grid-row: 3/5;
  }
}
.houjin .faq-flow-grid .item3 {
  grid-column: 3/4;
  grid-row: 2/4;
  color: var(--sub-color2);
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid .item3 {
    grid-column: 2/3;
    grid-row: 5/6;
  }
}
.houjin .faq-flow-grid .item4 {
  grid-column: 4/5;
  grid-row: 2/4;
  color: var(--sub-color2);
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid .item4 {
    grid-column: 2/3;
    grid-row: 6/7;
  }
}
.houjin .faq-flow-grid .item5 {
  grid-column: 5/6;
  grid-row: 2/4;
  color: var(--sub-color2);
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid .item5 {
    grid-column: 2/3;
    grid-row: 7/8;
  }
}
.houjin .faq-flow-grid .item6 {
  grid-column: 6/7;
  grid-row: 2/4;
}
@media screen and (max-width: 900px) {
  .houjin .faq-flow-grid .item6 {
    grid-column: 2/3;
    grid-row: 8/9;
  }
}
.houjin .faq-flow-grid .item1, .houjin .faq-flow-grid .item2 {
  display: grid;
  gap: 2px 10px;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
.houjin .faq-flow-grid .item1 p:last-child, .houjin .faq-flow-grid .item2 p:last-child {
  background-color: rgba(40, 81, 135, 0.7);
  color: #fff;
  padding: 5px;
  display: grid;
  align-items: center;
  font-weight: 300;
  max-width: 300px;
}

.kojin .faq-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 80px;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  .kojin .faq-flow-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 80px 80px;
    font-size: clamp(0.75rem, 0.612rem + 0.69vw, 1rem);
    gap: 30px 15px;
  }
}
.kojin .faq-flow-grid p {
  display: grid;
  place-content: center;
  color: #fff;
  position: relative;
  padding: 10px 10px 10px 30px;
}
.kojin .faq-flow-grid p::before, .kojin .faq-flow-grid p::after {
  position: absolute;
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.kojin .faq-flow-grid p::before {
  border: solid 42px transparent;
  border-right: solid 13px transparent;
  border-left: solid 13px var(--sub-color3);
  top: -2px;
  left: 0;
  z-index: 10;
}
.kojin .faq-flow-grid p::after {
  border: solid 40px transparent;
  border-right: solid 13px transparent;
  border-left: solid 13px #14a86c;
  top: 0;
  right: -26px;
  z-index: 20;
}
.kojin .faq-flow-grid p.flow1 {
  background-color: #b4efd4;
  color: #1c7f68;
}
.kojin .faq-flow-grid p.flow1::before {
  content: none;
}
.kojin .faq-flow-grid p.flow1::after {
  border-left-color: #b4efd4;
}
.kojin .faq-flow-grid p.flow2 {
  background-color: #7ee8b8;
  color: #1c7f68;
}
.kojin .faq-flow-grid p.flow2::after {
  border-left-color: #7ee8b8;
}
.kojin .faq-flow-grid p.flow3 {
  background-color: #17ce80;
}
.kojin .faq-flow-grid p.flow3::after {
  border-left-color: #17ce80;
}
.kojin .faq-flow-grid p.flow4 {
  background-color: #14a86c;
}
.kojin .faq-flow-grid p > span {
  line-height: 1.2;
}
.kojin .faq-flow-grid b {
  position: absolute;
  top: -15px;
  left: -5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background-color: #14a86c;
  border: 2px solid var(--sub-color3);
  font-size: 15px;
  display: grid;
  place-content: center;
  z-index: 30;
}
.kojin .faq-flow-grid .st {
  font-size: 75%;
}
.kojin .faq-flow-grid .it {
  display: inline-block;
}

footer {
  background-color: var(--sub-color);
  padding: 20px 0 10px;
}

.footer-inner {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
}
.footer-logo p + p {
  margin-top: 20px;
}
.footer-logo img {
  max-width: min(220px, 45vw);
}
.footer-nav {
  font-size: 0.8rem;
}
.footer-nav li + li {
  margin-top: 5px;
}
.footer-copy {
  text-align: center;
  font-size: 0.7rem;
  margin-top: 15px;
}/*# sourceMappingURL=ls21_lp.css.map */