@charset "UTF-8";
/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/* base
--------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #202020;
  background-color: #e3f2fd;
  /*-webkit-box-shadow: 0 0 1rem 0.2rem rgba(142, 142, 142, 0.3);
          box-shadow: 0 0 1rem 0.2rem rgba(142, 142, 142, 0.3);*/
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

main {
  background-color: #fff;
  margin: auto;
}

img,
video,
object {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

h1 {
  line-height: 0;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
a:hover {
  opacity: 0.9;
}

.body-inner {
  max-width: 100%;
  margin: auto;
  -webkit-box-shadow: 0 0 1rem 0.2rem rgba(142, 142, 142, 0.3);
          box-shadow: 0 0 1rem 0.2rem rgba(142, 142, 142, 0.3);
}
@media (min-width: 750px) {
  .body-inner {
    max-width: 80%;
  }
}

/*--------------------------------------*
 * layout
 *--------------------------------------*/
.l-header {
  position: relative;
  top: 0;
  background-color: #fff;
  z-index: 1;
}
.l-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10.6666666667vw;
}
.l-header__logo {
  display: inline-block;
  width: 26.8vw;
}
@media (min-width: 750px) {
  .l-header__content {
    height: 8rem;
  }
  .l-header__logo {
    width: 20.1rem;
  }
}

.l-footer {
  background-color: #f5f4f5;
  padding-top: 9.3333333333vw;
}
.l-footer h2 {
  width: 31.7333333333vw;
}
.l-footer__content {
  padding: 7.2vw 0 6.4vw;
  text-align: center;
}
.l-footer__content dt {
  font-size: 4.2666666667vw;
  font-weight: normal;
}
.l-footer__content dd {
  font-size: 3.2vw;
}
@media (min-width: 750px) {
  .l-footer {
    padding-top: 7rem;
  }
  .l-footer h2 {
    width: 23.8rem;
  }
  .l-footer__content {
    padding: 5.4rem 0 4.8rem;
  }
  .l-footer__content dt {
    font-size: 2.8rem;
  }
  .l-footer__content dd {
    font-size: 2rem;
  }
}

/*--------------------------------------*
 * object
 *--------------------------------------*/
/*-------------------
 * component
 -------------------*/
.c-cta {
  background: #053290;
  padding: 1.2rem 1rem 1.2rem;
}  
.c-cta__content {
  display: flex;
  justify-content: space-between;
}  
.c-cta__box {
  width: calc(50% - 3px);
  box-sizing: border-box;
  text-align: center;
}  
.c-cta__text {
  display: inline-block;
  padding: 0 1.8rem;
  color: #fff;
  font-size: 3.4vw;
  font-weight: bold;
  text-shadow: 0 2px 2px rgba(0,0,0,0.4);
  position: relative;
}  
.c-cta__text::before {
  position: absolute;
  content: "＼";
  left: 0;
  font-weight: normal;
}  
.c-cta__text::after {
  position: absolute;
  content: "／";
  right: 0;
  font-weight: normal;
}  
.c-cta__text .icon {
  display: inline-block;
  vertical-align: middle;
  width: 5.5vw;
  margin-right: 0.3rem;
}  
.c-button a {
  display: block;
  margin: 0.2rem 0 0;
}
.c-button-tel a {
  pointer-events: auto;
  color: #ddd;
}

.c-cta-fixed {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  width: 100%;
  max-width: 100%;
  margin: auto;
  z-index: 1;
}
.c-cta-fixed .c-cta {
  background: rgba(5,50,144,0.75);
  padding: 0.5rem 1rem 0.5rem;
  transition: all 0.3s ease;
}
.c-cta-fixed .c-cta.stop {
  opacity: 0;
}
.c-cta-fixed .c-cta.stop a {
  pointer-events: none;
}
@media (min-width: 750px) {
  .c-cta {
    padding: 3rem 2rem 3rem;
  }
  .c-cta__box {
    width: calc(50% - 1rem);
  }  
  .c-cta__text {
    padding: 0 3.5rem;
    font-size: 2.6rem;
    text-shadow: 0 3px 4px rgba(0,0,0,0.4);
  }
  .c-cta__text .icon {
    width: 34px;
    margin-right: 0.5rem;
  }  
  .c-button a {
    margin: 1rem 0 0;
  }
  .c-button-tel a {
    pointer-events: none;
  }
  
  .c-cta-fixed {
    max-width: 75rem;
  }
  .c-cta-fixed .c-cta {
    width: 80%;
    margin: auto;
    padding: 1.5rem 2rem 1rem;
  }
}

.c-inner {
  padding: 0 2.6666666667vw;
  max-width: 100vw;
  margin: 0 auto;
}
@media (min-width: 750px) {
  .c-inner {
    padding: 0 2rem;
    max-width: 75rem;
  }
}

.c-section__title {
  margin: 0 auto;
  position: relative;
}
.c-section__title::after {
  position: absolute;
  left: 50%;
  bottom: -3.4666666667vw;
  transform: translateX(-50%);
  content: "";
  background-color: #0873dd;
  width: 25.3333333333vw;
  height: 0.8vw;
  border-radius: 0.8vw;
  -webkit-border-radius: 0.8vw;
  -moz-border-radius: 0.8vw;
  -ms-border-radius: 0.8vw;
  -o-border-radius: 0.8vw;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
@media (min-width: 750px) {
  .c-section__title::after {
    bottom: -2.6rem;
    width: 19rem;
    height: 0.6rem;
    border-radius: 0.6rem;
    -webkit-border-radius: 0.6rem;
    -moz-border-radius: 0.6rem;
    -ms-border-radius: 0.6rem;
    -o-border-radius: 0.6rem;
  }
}

/*-------------------
 * project
 -------------------*/
.p-fv {
  position: relative;
  height: 106.667vw;
}
.p-fv__img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.p-fv__content {
  position: relative;
  display: block;
  padding: 0;
  height: 100%;
}
.p-fv__content h2 {
  position: absolute;
  left: 8vw;
  top: 11.333vw;
  width: 55.867vw;
}
.p-fv__txt {
  position: absolute;
  width: 58.933vw;
  height: 44.4vw;
  left: 6.533vw;
  top: 50.133vw;
}
.p-fv__cta {
  position: absolute;
  left: 9.7333333333vw;
  bottom: 8.6666666667vw;
}
.p-fv__cta p {
  margin: 0 auto;
  width: 38.5333333333vw;
}
.p-fv__cta a {
  display: block;
  width: 54.9333333333vw;
}
@media (min-width: 750px) {
  .p-fv {
    height: 64rem;
  }
  .p-fv__content h2 {
    left: 5rem;
    top: 6.5rem;
    /*width: 41.9rem;*/
    width: 56%;
  }
  .p-fv__txt {
    /*width: 44.2rem;*/
    /*height: 33.3rem;*/
    width: 56%;
    left: 5rem;
    top: 31rem;
  }
  .p-fv__cta {
    left: 7.3rem;
    bottom: 6.5rem;
  }
  .p-fv__cta p {
    width: 28.9rem;
  }
  .p-fv__cta a {
    width: 41.2rem;
  }
}

.p-banner__content {
  margin: 5.8666666667vw auto;
  -webkit-filter: drop-shadow(0 0.1rem 0.3rem rgba(142, 142, 142, 0.3));
          filter: drop-shadow(0 0.1rem 0.3rem rgba(142, 142, 142, 0.3));
  /*width: 94.6666666667vw;*/
  width: 95%;
}
@media (min-width: 750px) {
  .p-banner__content {
    margin: 4.4rem auto;
    /*width: 71rem;*/
    width: 95%;
  }
}

.p-cardloan .c-cta__content {
  padding: 5.333vw 0 4vw;
}
@media (min-width: 750px) {
  .p-cardloan .c-cta__content {
    padding: 4rem 0 3rem;
  }
}

.p-point {
  background: rgb(120, 156, 218);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(127, 163, 222)), to(rgb(88, 136, 219)));
  background: linear-gradient(0deg, rgb(127, 163, 222) 0%, rgb(88, 136, 219) 100%);
  padding: 6.9333333333vw 0 3.3333333333vw;
}
.p-point__title {
  position: relative;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 0.1rem 0.3rem rgba(142, 142, 142, 0.3));
          filter: drop-shadow(0 0.1rem 0.3rem rgba(142, 142, 142, 0.3));
  width: 90.5333333333vw;
}
.p-point__title span {
  position: absolute;
  right: -0.4vw;
  bottom: -2.9333333333vw;
  display: block;
  width: 26.9333333333vw;
}
.p-point__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 8vw 0 2.1333333333vw;
  gap: 2.4vw;
}
.p-point__lists li {
  background-color: #fff;
  -webkit-filter: drop-shadow(0 0.1rem 0.3rem rgba(142, 142, 142, 0.3));
          filter: drop-shadow(0 0.1rem 0.3rem rgba(142, 142, 142, 0.3));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc((100% - 2.4vw) / 2);
  height: 50.6666666667vw;
}
.p-point__lists li.full_cont {
  width: 100%;
  height: auto;
}
.p-point__lists li h3 {
  width: 100%;
}
.p-point__lists li h3 span {
  display: block;
}
.p-point__lists li h3 > img {
  margin: 2.6666666667vw auto;
  height: 4.4vw;
  width: 100%;
}
.p-point__lists li.full_cont h3 > img  {
  margin: 2.6666666667vw auto;
  height: 6.4vw;
}
.p-point__lists li.full_cont h3 > img  {
  margin: -4.667vw auto 2.6666666667vw;
  height: 17.067vw;
}
.p-point__lists li p {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 3.4666666667vw;
  line-height: 4.5333333333vw;
  text-align: center;
}
.p-point__lists li sup {
  font-size: 1.7333333333vw;
  vertical-align: 0.4vw;
}
.p-point__lists li > img {
  height: auto;
}
.p-point__lists li:nth-of-type(1) p {
  font-size: 3.2vw;
  line-height: 3.7333333333vw;
}
.p-point__lists li:nth-of-type(1) sup {
  font-size: 1.6vw;
  vertical-align: 0.2666666667vw;
}
.p-point__notes {
  color: #fff;
  font-size: 2.9333333333vw;
  line-height: 4.5333333333vw;
  padding: 0 2.6666666667vw;
}
.p-point__notes li {
  counter-increment: count-n01;
  position: relative;
  padding-left: 6.4vw;
}
.p-point__notes li::before {
  content: "※" counter(count-n01);
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 750px) {
  .p-point {
    padding: 5.2rem 0 2.5rem;
  }
  .p-point__title {
   /* width: 67.9rem;*/
    width: 95%;
  }
  .p-point__title span {
    right: -0.3rem;
    bottom: -2.2rem;
    width: 20.2rem;
  }
  .p-point__lists {
    margin: 6rem 0 1.6rem;
    gap: 1.8rem;
  }
  .p-point__lists li {
    width: calc((100% - 1.8rem) / 2);
    height: 38rem;
  }
  .p-point__lists li h3 > img {
    margin: 2rem auto;
    height: 3.3rem;
    width: 92%;
  }
  .p-point__lists li.full_cont h3 > img  {
    margin: -3.5rem auto 2rem;
    height: 12.8rem;
  }
  .p-point__lists li p {
    font-size: 2.2rem;
    line-height: 3.4rem;
  }
  .p-point__lists li sup {
    font-size: 1.3rem;
    vertical-align: 0.3rem;
  }
  .p-point__lists li:nth-of-type(1) p {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
  .p-point__lists li:nth-of-type(1) sup {
    font-size: 1.2rem;
    vertical-align: 0.2rem;
  }
  .p-point__notes {
    font-size: 2.2rem;
    line-height: 3.4rem;
    padding: 0 2rem;
  }
  .p-point__notes li {
    padding-left: 4.8rem;
  }
}

.p-flow {
  background: url(../img/flow_bg@2x.webp) center bottom no-repeat;
  background-size: 100% auto;
  padding: 4rem 0 9.4666666667vw;
  text-align: center;
}
.p-flow h2:nth-of-type(1) {
  width: 45.067vw;
}
.p-flow h2:nth-of-type(2) {
  width: 29.7333333333vw;
}
.p-flow__content {
  /*width: 94.6666666667vw;*/
  width: 95%;
}
.p-flow__content:nth-of-type(1) {
  margin: 8.8vw auto 18vw;
  -webkit-filter: drop-shadow(0 0.1rem 0.3rem rgba(142, 142, 142, 0.3));
          filter: drop-shadow(0 0.1rem 0.3rem rgba(142, 142, 142, 0.3));
}
.p-flow__content:nth-of-type(2) {
  margin: 8.8vw auto 0;
}
.p-flow__content p {
  font-size: 4vw;
  line-height: 6.6666666667vw;
}
.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 5.0666666667vw;
  gap: 1.3333333333vw;
}
.p-flow__list li {
  -webkit-filter: drop-shadow(0 0.1rem 0.3rem rgba(142, 142, 142, 0.3));
          filter: drop-shadow(0 0.1rem 0.3rem rgba(142, 142, 142, 0.3));
}
@media (min-width: 750px) {
  .p-flow {
    padding: 8rem 0 7.1rem;
  }
  .p-flow h2:nth-of-type(1) {
    width: 33.8rem;
  }
  .p-flow h2:nth-of-type(2) {
    width: 22.3rem;
  }
  .p-flow__content {
    margin: 6.6rem auto 13.5rem;
    /*width: 71rem;*/
    width: 95%;
  }
  .p-flow__content:nth-of-type(1) {
    margin: 6.6rem auto 13.5rem;
  }
  .p-flow__content:nth-of-type(2) {
    margin: 6.6rem auto 0;
  }
  .p-flow__content p {
    font-size: 3rem;
    line-height: 5rem;
  }
  .p-flow__list {
    margin-top: 3.8rem;
    gap: 1rem;
  }
}

.p-outline {
  background-color: #f5f4f5;
  padding: 9.3333333333vw 0;
}
.p-outline h2 {
  width: 21.3333333333vw;
}
.p-outline .item {
  padding: 10.133vw 2.667vw 0;
}
.p-outline .item dl .js-accordion-trigger {
  font-size: 5.867vw;
  font-weight: bold;
  text-align: center;
  background-color: #053290;
  border-radius: 2.667vw;
  line-height: 1;
  padding: 4.667vw 0;
  color: #fff;
  position: relative;
  cursor: pointer;
}
.p-outline .item dl .js-accordion-trigger .icon_arr {
  position: absolute;
  top: 50%;
  right: 6.267vw;
  width: 3.2vw;
  height: 1.867vw;
  background: url(../img/icon_arr.svg) center bottom no-repeat;
  background-size: cover;
  transform: translateY(-50%) rotate(0);
  transition: all .3s;
}
.p-outline .item dl .js-accordion-trigger.is-active .icon_arr {
  transform: translateY(-50%) rotate(180deg);
  transition: all .3s;
}
.p-outline .item .accordion__inner {
  display: none;
}

.p-outline__content {
  padding: 2.667vw;
  background-color: #fff;
  border-radius: 0 0 2.667vw 2.667vw;
}
.p-outline table {
  background-color: #fff;
  border: 0.5333333333vw solid #004a7c;
  line-height: 3.7333333333vw;
  margin-bottom: 2.9333333333vw;
  width: 100%;
}
.p-outline table tr {
  border-bottom: 0.5333333333vw solid #004a7c;
}
.p-outline table tr th {
  color: #0072b8;
  background-color: #e3f2fd;
  font-size: 3.4666666667vw;
  padding: 2.1333333333vw 0;
  text-align: center;
}
.p-outline table tr td {
  font-size: 3.2vw;
  padding: 2.1333333333vw;
}
.p-outline table dl dt {
  font-weight: normal;
}
.p-outline table dl dd {
  margin-bottom: 4.6666666667vw;
}
.p-outline table dl dd:last-child {
  margin-bottom: 0;
}
.p-outline table ul li {
  position: relative;
  margin-left: 2.6666666667vw;
}
.p-outline table ul li::before {
  position: absolute;
  content: "・";
  left: -2.6666666667vw;
  top: 0;
}
.p-outline__table1 th {
  line-height: 1;
}
.p-outline__table2 th {
  width: 27.0666666667vw;
}
.p-outline__notes {
  font-size: 3.2vw;
  line-height: 3.4666666667vw;
  padding: 0 2.6666666667vw 2.6666666667vw;
  margin-left: 3.2vw;
  text-indent: -3.2vw;
}
.p-outline__notes li {
  margin-bottom: 2.4vw;
}
.p-outline__notes li:last-child {
  margin-bottom: 0;
}

.p-outline table.inner-table {
  border-width: 0.267vw;
  line-height: 3.733vw;
  margin-top: 2.933vw;
  margin-bottom: 2vw;
  border-left: none;
}
.p-outline table.inner-table tr {
  border-bottom-width: 0.267vw;
}
.p-outline table.inner-table tr th {
  font-size: 2.4vw;
  font-weight: 400;
  padding: 1.333vw 0;
}
.p-outline table.inner-table tr td {
  font-size: 2.4vw;
  padding: 1.333vw;
  text-align: center;
}
.p-outline table.inner-table tr th,
.p-outline table.inner-table tr td {
  border-left: 0.267vw solid #004a7c;
  white-space: nowrap;
}

.p-outline .mt30 {
  margin-top: 2.667vw;
}

@media (min-width: 750px) {
  .p-outline {
    padding: 7rem 0;
  }
  .p-outline h2 {
    width: 16rem;
  }
  .p-outline .item {
    padding: 7.6rem 2rem 0;
  }
  .p-outline .item dl .js-accordion-trigger {
    font-size: 4.4rem;
    font-weight: bold;
    text-align: center;
    background-color: #053290;
    border-radius: 2rem;
    line-height: 1;
    padding: 3.5rem 0;
    color: #fff;
    position: relative;
  }
  .p-outline .item dl .js-accordion-trigger .icon_arr {
    position: absolute;
    top: 50%;
    right: 4.7rem;
    width: 2.4rem;
    height: 1.4rem;
    background: url(../img/icon_arr.svg) center bottom no-repeat;
    background-size: cover;
    transform: translateY(-50%) rotate(0);
    transition: all .3s;
  }
  .p-outline .item dl .js-accordion-trigger.is-active .icon_arr {
    transform: translateY(-50%) rotate(180deg);
    transition: all .3s;
  }
  .p-outline .item .accordion__inner {
    display: none;
  }

  .p-outline__content {
    padding: 2rem;
    background-color: #fff;
    border-radius: 0 0 2rem 2rem;
  }
  .p-outline table {
    border-width: 0.2rem;
    line-height: 2.8rem;
    margin-bottom: 2.2rem;
  }
  .p-outline table tr {
    border-bottom-width: 0.2rem;
  }
  .p-outline table tr th {
    font-size: 2.4rem;
    padding: 1.6rem 0;
  }
  .p-outline table tr td {
    font-size: 2.2rem;
    padding: 1.6rem;
  }
  .p-outline table dl dd {
    margin-bottom: 3.5rem;
  }
  .p-outline table ul li {
    position: relative;
    margin-left: 2rem;
  }
  .p-outline table ul li::before {
    left: -2rem;
  }
  .p-outline__table2 th {
    width: 20.3rem;
  }
  .p-outline__notes {
    font-size: 2rem;
    line-height: 2.6rem;
    padding: 0 2rem 2rem;
    margin-left: 2rem;
    text-indent: -2rem;
  }
  .p-outline__notes li {
    margin-bottom: 1.8rem;
  }

  .p-outline table.inner-table {
    border-width: 0.2rem;
    line-height: 2.8rem;
    margin-top: 2.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
  .p-outline table.inner-table tr {
    border-bottom-width: 0.2rem;
  }
  .p-outline table.inner-table tr th {
    font-size: 1.8rem;
    font-weight: 500;
    padding: 1rem 0;
  }
  .p-outline table.inner-table tr td {
    font-size: 1.8rem;
    padding: 1rem;
    text-align: center;
  }
  .p-outline table.inner-table tr th,
  .p-outline table.inner-table tr td {
    border-left: 0.2rem solid #004a7c;
    white-space: nowrap;
  }
  .p-outline .mt30 {
    margin-top: 3rem;
  }
}



.p-faq {
  background-color: #f5f4f5;
  padding-top: 9.3333333333vw;
  padding-bottom: 10.667vw;
}
.p-faq h2 {
  width: 33.6vw;
}

.p-faq__content {
  /*width: 94.667vw;*/
  width: 95%;
  margin: 8vw auto 0;
  padding: 2.667vw 6.667vw 1.333vw;
  background-color: #fff;
  border-radius: 2.667vw;
  text-align: left;
}
.p-faq .item {
  border-bottom: 0.267vw solid #e0e1e0;
}
.p-faq .item:last-child {
  border-bottom: none;
}

.p-faq .item + .item {
}

.p-faq .item dl .js-accordion-trigger {
  font-size: 3.467vw;
  color: #063190;
  position: relative;
  padding: 3.333vw 10.667vw 3.333vw;
  cursor: pointer;
}
.p-faq .item dl .js-accordion-trigger::before {
  content: '';
  position: absolute;
  top: 6vw;
  left: 1.333vw;
  width: 4.267vw;
  height: 5.067vw;
  background: url(../img/icon_q.svg) center bottom no-repeat;
  background-size: cover;
  transform: translateY(-50%) rotate(0);
}
.p-faq .item dl .js-accordion-trigger .icon_acc {
  position: absolute;
  top: 3.333vw;
  right: 1.333vw;
  width: 6.267vw;
  height: 6.267vw;
  background-color: #063190;
  border-radius: 1.333vw;
}

.p-faq .item dl .js-accordion-trigger .icon_acc::before,
.p-faq .item dl .js-accordion-trigger .icon_acc::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.733vw;
    width: 2.667vw;
    height: 0.4vw;
    background-color: #fff;
    transition: all 0.3s ease 0s;
}
.p-faq .item dl .js-accordion-trigger .icon_acc::before {
  transform: translateY(-50%);
}
.p-faq .item dl .js-accordion-trigger .icon_acc::after {
  transform: translateY(-50%) rotate(-90deg);
}
.p-faq .item dl .js-accordion-trigger.is-active .icon_acc::after {
  transform: translateY(-50%) rotate(0deg);
}
.p-faq .item ul li {
  position: relative;
  margin-left: 2.667vw;
}
.p-faq .item ul li::before {
  position: absolute;
  content: "・";
  left: -2.667vw;
  top: 0;
}

.p-faq .item dl .accordion__inner {
  display: none;
  font-size: 2.933vw;
  padding: 0 10.667vw 3.333vw;
}
.p-faq .item dl .accordion__inner.dd_full {
  display: none;
  font-size: 2.933vw;
  padding: 0 1.333vw 3.333vw;
}
.p-faq .mt25 {
  margin-top: 3.333vw;
}
.p-faq table.inner-table {
  border-width: 0.267vw;
  line-height: 3.733vw;
  margin-top: 2.933vw;
  margin-bottom: 2vw;
  letter-spacing: -0.03em;
  border-top: 0.267vw solid #004a7c;
  border-left: 0.267vw solid #004a7c;
  width: 100%;
}
.p-faq table.inner-table tr {
  border-bottom-width: 0.267vw;
}
.p-faq table.inner-table tr th {
  font-size: 2.933vw;
  font-weight: 600;
  padding: 1.333vw;
  color: #0072b8;
  background-color: #e3f2fd;
  text-align: center;
}
.p-faq table.inner-table tr td {
  font-size: 2.933vw;
  padding: 1.333vw;
  text-align: center;
}
.p-faq table.inner-table tr th,
.p-faq table.inner-table tr td {
  border-bottom: 0.267vw solid #004a7c;
  border-right: 0.267vw solid #004a7c;
  vertical-align: middle;
}
.p-faq table.inner-table tr td span {
  font-size: 1.867vw;
  display: block;
}
@media (min-width: 750px) {
  .p-faq {
    background-color: #f5f4f5;
    padding-top: 7rem;
    padding-bottom: 8rem;
  }
  .p-faq h2 {
    width: 25.2rem;
  }

  .p-faq__content {
   /* width: 71rem;*/
    width: 95%;
    margin: 6rem auto 0;
    padding: 2rem 5rem 1rem;
    background-color: #fff;
    border-radius: 2rem;
    text-align: left;
  }
  .p-faq .item {
    border-bottom: .2rem solid #e0e1e0;
  }
  .p-faq .item:last-child {
    border-bottom: none;
  }
  
  .p-faq .item + .item {
  }
  
  .p-faq .item dl .js-accordion-trigger {
    font-size: 2.6rem;
    color: #063190;
    position: relative;
    padding: 2.5rem 8rem 2.5rem;
    cursor: pointer;
  }
  .p-faq .item dl .js-accordion-trigger::before {
    content: '';
    position: absolute;
    top: 4.5rem;
    left: 1rem;
    width: 3.2rem;
    height: 3.8rem;
    background: url(../img/icon_q.svg) center bottom no-repeat;
    background-size: cover;
    transform: translateY(-50%) rotate(0);
  }
  .p-faq .item dl .js-accordion-trigger .icon_acc {
    position: absolute;
    top: 2.5rem;
    right: 1rem;
    width: 4.7rem;
    height: 4.7rem;
    background-color: #063190;
    border-radius: 1rem;
  }
  
  .p-faq .item dl .js-accordion-trigger .icon_acc::before,
  .p-faq .item dl .js-accordion-trigger .icon_acc::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 1.3rem;
      width: 2rem;
      height: .3rem;
      background-color: #fff;
      transition: all 0.3s ease 0s;
  }
  .p-faq .item dl .js-accordion-trigger .icon_acc::before {
    transform: translateY(-50%);
  }
  .p-faq .item dl .js-accordion-trigger .icon_acc::after {
      transform: translateY(-50%) rotate(-90deg);
  }
  .p-faq .item dl .js-accordion-trigger.is-active .icon_acc::after {
    transform: translateY(-50%) rotate(0deg);
  }
  .p-faq .item ul li {
    position: relative;
    margin-left: 2rem;
  }
  .p-faq .item ul li::before {
    position: absolute;
    content: "・";
    left: -2rem;
    top: 0;
  }

  .p-faq .item dl .accordion__inner {
    display: none;
    font-size: 2.2rem;
    padding: 0 8rem 2.5rem;
  }
  .p-faq .item dl .accordion__inner.dd_full {
    display: none;
    font-size: 2.2rem;
    padding: 0 1rem 2.5rem;
  }
  .p-faq .mt25 {
    margin-top: 2.5rem;
  }
  .p-faq table.inner-table {
    border-width: 0.2rem;
    line-height: 2.8rem;
    margin-top: 2.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    border-top: 0.2rem solid #004a7c;
    border-left: 0.2rem solid #004a7c;
    width: 100%;
  }
  .p-faq table.inner-table tr {
    border-bottom-width: 0.2rem;
  }
  .p-faq table.inner-table tr th {
    font-size: 2.2rem;
    font-weight: 600;
    padding: 1rem;
    color: #0072b8;
    background-color: #e3f2fd;
    text-align: center;
  }
  .p-faq table.inner-table tr td {
    font-size: 2.2rem;
    padding: 1rem;
    text-align: center;
  }
  .p-faq table.inner-table tr th,
  .p-faq table.inner-table tr td {
    border-bottom: 0.2rem solid #004a7c;
    border-right: 0.2rem solid #004a7c;
    vertical-align: middle;
  }
  .p-faq table.inner-table tr td span {
    font-size: 1.4rem;
    display: block;
  }
  
}


.p-campaign {
  background: #FDFFEB;
  padding: 1.5rem 1rem 1.5rem;
}
.p-campaign a {
  display: block;
  box-shadow: 3px 3px 8px 0 rgba(0,0,0,0.2);
}
@media (min-width: 750px) {
  .p-campaign{
    padding: 3rem 2rem 3rem;
  }
  .p-campaign a {
    display: block;
    box-shadow: 4px 4px 8px 0 rgba(0,0,0,0.2);
  }  
}


/*-------------------
 * object
 -------------------*/
.u-inline-block {
  display: inline-block;
}/*# sourceMappingURL=style.css.map */