@charset "UTF-8";


@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap);
@-webkit-keyframes listShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes listShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

[data-aos="list-animation"] > * {
  opacity: 0;
}

[data-aos="list-animation"].aos-animate > *:nth-child(1) {
  -webkit-animation: listShow 0.5s ease 0.5s 1 forwards;
  animation: listShow 0.5s ease 0.5s 1 forwards;
}

[data-aos="list-animation"].aos-animate > *:nth-child(2) {
  -webkit-animation: listShow 0.5s ease 1s 1 forwards;
  animation: listShow 0.5s ease 1s 1 forwards;
}

[data-aos="list-animation"].aos-animate > *:nth-child(3) {
  -webkit-animation: listShow 0.5s ease 1.5s 1 forwards;
  animation: listShow 0.5s ease 1.5s 1 forwards;
}

[data-aos="list-animation"].aos-animate > *:nth-child(4) {
  -webkit-animation: listShow 0.5s ease 2s 1 forwards;
  animation: listShow 0.5s ease 2s 1 forwards;
}

[data-aos="list-animation"].aos-animate > *:nth-child(5) {
  -webkit-animation: listShow 0.5s ease 2.5s 1 forwards;
  animation: listShow 0.5s ease 2.5s 1 forwards;
}

[data-aos="list-animation"].aos-animate > *:nth-child(6) {
  -webkit-animation: listShow 0.5s ease 3s 1 forwards;
  animation: listShow 0.5s ease 3s 1 forwards;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

a:hover {
  outline: none;
}

a:active {
  outline: none;
}

a:focus {
  outline: none;
}

@media screen and (min-width: 767px) {
  /* =================================
    hover
  ================================= */
  a:not([class]) {
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: all;
  }
  a:not([class]):hover {
    opacity: .9;
  }
}

/*=================================
  button
=================================*/
a {
  border-bottom: 1px dotted #cf67a6;
  font-weight: 700;
}

a.a_img {
  border-bottom: none;
}

.c-linkWrap {
  width: calc(100% - 23px);
}

.c-linkWrap a {
  position: relative;
  left: 23px;
  display: inline;
  border-bottom: 1px dotted #cf67a6;
  font-weight: 700;
}

.c-linkWrap a::before {
  position: absolute;
  top: 4px;
  left: -23px;
  display: block;
  width: 23px;
  height: 18px;
  background: url(../img/icon_arrow_pink.png) no-repeat left top #fff;
  background-size: 14px 14px;
  content: "";
}

.c-linkWrap.right {
  text-align: right;
}

.c-linkWrap.center {
  text-align: center;
}

.c-linkWrap + .c-linkWrap {
  margin-top: 26px;
}

.c-btnWrap {
  margin: 30px 0 0;
}

.c-btnWrap > * + * {
  margin-top: 20px;
}

.c-btn--blue {
  position: relative;
  display: block;
  padding: 12px 0;
  border-radius: 5px;
  background: #1f2289;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.c-btn--blue::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  display: inline-block;
  width: 9px;
  height: 16px;
  margin: auto 0;
  background: url(../img/icon_arrow_yellow_sp.png) no-repeat center center;
  background-size: contain;
  content: "";
}

@media screen and (min-width: 767px) {
  /*=================================
    button
  =================================*/
  a:hover {
    border-bottom: none;
  }
  .c-linkWrap {
    width: calc(100% - 18px);
  }
  .c-linkWrap a {
    left: 18px;
  }
  .c-linkWrap a::before {
    top: 4px;
    left: -18px;
    width: 18px;
    height: 18px;
  }
  .c-linkWrap a:hover {
    border-bottom: none;
  }
  .c-btnWrap {
    display: flex;
    max-width: 790px;
    margin: 60px auto 0;
    align-items: center;
  }
  .c-btnWrap > * {
    width: 100%;
  }
  .c-btnWrap > * + * {
    margin: 0 0 0 30px;
  }
  .c-btn--blue {
    border-radius: 10px;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: all;
  }
  .c-btn--blue::before {
    left: 17px;
    display: inline-block;
    width: 12px;
    height: 16px;
    background: url(../img/icon_arrow_yellow_pc.png) no-repeat center center;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: all;
  }
  .c-btn--blue:hover {
    background: #161749;
    box-shadow: 0 3px 8px rgba(31, 34, 137, 0.3);
  }
}

/*=================================
  accordion
=================================*/
.js-accordion {
  position: relative;
}

.js-accordion__btn {
  position: relative;
  padding: 15px 10px;
  border-radius: 2px;
  background: #cfd0fa;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1f2289;
}

.js-accordion__btn::before {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  display: inline-block;
  width: 13px;
  height: 1px;
  margin: auto 0;
  background: #1f2289;
  content: "";
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
}

.js-accordion__btn::after {
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  display: inline-block;
  width: 1px;
  height: 13px;
  margin: auto 0;
  background: #1f2289;
  content: "";
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
}

.js-accordion__btn.open::before {
  transform: rotate(-180deg);
}

.js-accordion__btn.open::after {
  width: 0;
  transform: rotate(90deg);
}

.js-accordion__btn .textSm {
  font-size: 1rem;
}

.js-accordion__item {
  display: none;
  padding: 20px 10px 0;
}

.js-accordion__item .textSm {
  display: block;
  font-size: 1.4rem;
}

.js-accordion + .js-accordion {
  margin-top: 20px;
}

.js-accordion.newItem .js-accordion__btn {
  background: #f6bcb8;
}

.js-accordion.newItem::before {
  position: absolute;
  z-index: 1;
  top: -12px;
  left: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f1446d;
  content: "NEW!";
}

@media screen and (min-width: 767px) {
  /*=================================
    accordion
  =================================*/
  .js-accordion__btn {
    padding: 15px 45px 15px 20px;
    border-radius: 4px;
    font-size: 2rem;
    cursor: pointer;
  }
  .js-accordion__btn::before {
    right: 20px;
    width: 18px;
    height: 2px;
  }
  .js-accordion__btn::after {
    right: 28px;
    width: 2px;
    height: 18px;
  }
  .js-accordion__btn .textSm {
    display: inline-block;
    font-size: 1.4rem;
  }
  .js-accordion__item {
    padding: 24px 20px 0;
  }
  .js-accordion__item .textSm {
    font-size: 1.4rem;
  }
  .js-accordion.newItem::before {
    top: -14px;
    left: 20px;
    font-size: 1.4rem;
  }
}

/* =================================
  header
================================= */
#l-header {
  overflow: hidden;
  background: #1f2289;
}

#l-header .header__inner {
  padding: 0 2.5% 15px;
}

#l-header .header__logo {
  width: 56px;
  margin-left: 2.5%;
  padding-top: 15px;
}

#l-header .header__mvTtl {
  max-width: 321px;
  margin: 49px auto 0;
}

#l-header .header__text {
  margin-top: 40px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  letter-spacing: .1em;
}

#l-header .header__deco {
  vertical-align: bottom;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* =================================
    header
  ================================= */
  #l-header .header__mvTtl {
    margin-top: 8vw !important;
  }
  #l-header .header__text {
    margin-top: 2vw !important;
    padding-left: 20px;
    font-size: 1.4rem !important;
  }
}

@media screen and (min-width: 767px) {
  /* =================================
    header
  ================================= */
  #l-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #l-header .header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2% 30px;
  }
  #l-header .header__logo {
    position: absolute;
    top: 3.4vw;
    left: 50px;
    width: 10%;
    max-width: 104px;
    margin-left: 0;
    padding-top: 0;
  }
  #l-header .header__mvTtl {
    width: initial;
    width: 100%;
    max-width: 100%;
    /* margin: 3.4vw auto 0; */
    margin: 0 auto;
  }
  #l-header .header__text {
    position: relative;
    margin-top: 3vw;
    font-size: 1.2vw;
    line-height: 1.77777;
  }
  #l-header .header__text::before {
    position: absolute;
    top: -15%;
    left: 50%;
    display: inline-block;
    width: 16%;
    max-width: 153px;
    height: 197px;
    background: url(../img/img_pig.png) no-repeat center top;
    background-size: contain;
    content: "";
    transform: translate(-50%, 0);
  }
  /* #l-header .header__text::before {
    position: absolute;
    top: -15%;
    left: -2%;
    display: inline-block;
    width: 21%;
    max-width: 153px;
    height: 197px;
    background: url(../img/img_pig.png) no-repeat center top;
    background-size: contain;
    content: "";
  } */
  #l-header .header__deco {
    width: 100%;
    max-width: 635px;
  }
}

/*=================================
  footer
=================================*/
#l-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #ccc;
  background: #1f2289;
}

#l-footer .pageTop {
  position: absolute;
  top: 100px;
  right: -3%;
  width: 40px;
}

#l-footer .pageTop.show {
  position: fixed;
  top: auto;
  top: initial;
  right: 3%;
  bottom: 50px;
  opacity: 0;
  -webkit-animation: show .5s forwards;
          animation: show .5s forwards;
}

#l-footer .pageTop.static {
  right: 3%;
  opacity: 1;
}

#l-footer .footer__cont__logo--tobupo {
  padding: 40px 0;
  background: #fff;
  text-align: center;
}

#l-footer .footer__cont__logo--tobupo .logo {
  max-width: 157px;
  margin: 0 auto;
}

#l-footer .footer__cont__logo--tobu {
  padding: 36px 3% 48px;
}

#l-footer .footer__cont__logo--tobu .logoList {
  display: flex;
  justify-content: center;
  align-items: center;
}

#l-footer .footer__cont__logo--tobu .logoList__item a {
  display: inline-block;
}

#l-footer .footer__cont__logo--tobu .logoList__item.tobu {
  width: 78px;
}

#l-footer .footer__cont__logo--tobu .logoList__item.group {
  width: 101px;
  margin-left: 40px;
}

#l-footer .copy {
  padding: 10px 0;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 767px) {
  /*=================================
    footer
  =================================*/
  #l-footer .pageTop {
    top: 180px;
    right: -2.1%;
    width: 80px;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: all;
  }
  #l-footer .pageTop.show {
    right: 2.1%;
  }
  #l-footer .pageTop.static {
    right: 2.1%;
  }
  #l-footer .pageTop:hover {
    transform: rotate(360deg) scale(0.9);
  }
  #l-footer .footer__cont__logo--tobupo {
    padding: 80px 0 60px;
  }
  #l-footer .footer__cont__logo--tobupo .logo {
    max-width: 314px;
  }
  #l-footer .footer__cont__logo--tobu {
    padding: 60px 3% 60px;
  }
  #l-footer .footer__cont__logo--tobu .logoList__item.tobu {
    width: 104px;
  }
  #l-footer .footer__cont__logo--tobu .logoList__item.group {
    width: 134px;
    margin-left: 56px;
  }
  #l-footer .footer__cont__logo--tobu .logoList__item a:hover {
    opacity: .5;
  }
  #l-footer .copy {
    padding: 20px 0;
    font-size: 1.2rem;
  }
}

/* =================================
  main
================================= */
#l-main {
  overflow: hidden;
  padding-bottom: 58px;
  /* もっと使いやすく */
  /* サービスも拡大！ */
  /* 登録しよう */
  /* 東武カード */
  /* faq */
}

#l-main .secWrap__inner {
  padding: 0 4%;
}

#l-main .pastAndfuture {
  margin-top: 58px;
}

#l-main .pastAndfuture__ttl {
  max-width: 270px;
  margin: 0 auto 40px;
  text-align: center;
}

#l-main .pastAndfuture__ttl img {
  margin-left: -7px;
}

#l-main .pastAndfuture__ttlSub {
  margin: 0 auto 30px;
}

#l-main .pastAndfuture__ttlSub.save {
  max-width: 100px;
}

#l-main .pastAndfuture__ttlSub.use {
  max-width: 88px;
}

#l-main .pastAndfuture__ttlSub.expiration {
  max-width: 100px;
}

#l-main .pastAndfuture__ttlSub.point {
  max-width: 180px;
}

#l-main .pastAndfuture__ttlSub img {
  width: 100%;
}

#l-main .pastAndfuture__label {
  width: calc(100% - 16px);
  margin: 0 auto;
  padding: 4px 0;
  border-radius: 50px;
  background: #1f2289;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

#l-main .pastAndfuture__list__item {
  padding: 35px 2.5%;
  border: 4px solid #1f2289;
  border-radius: 10px;
}

#l-main .pastAndfuture__list__item + .pastAndfuture__list__item {
  margin-top: 20px;
}

#l-main .pastAndfuture__list__item .past {
  position: relative;
  margin-bottom: 30px;
}

#l-main .pastAndfuture__list__item .past__cont {
  padding: 50px 0 45px;
  background: #cfd0fa;
}

#l-main .pastAndfuture__list__item .past__cont__text {
  text-align: center;
}

#l-main .pastAndfuture__list__item .past__cont__text .textSm {
  display: block;
  font-size: 1rem;
}

#l-main .pastAndfuture__list__item .past__cont__text + .past__cont__text {
  margin-top: 20px;
}

#l-main .pastAndfuture__list__item .past .pastAndfuture__label {
  position: relative;
  top: 20px;
}

#l-main .pastAndfuture__list__item .past::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  display: inline-block;
  border-width: 16px 15px 0 15px;
  border-style: solid;
  border-color: #1f2289 transparent transparent transparent;
  content: "";
  transform: translateX(-50%);
}

#l-main .pastAndfuture__list__item .future .pastAndfuture__label {
  margin-bottom: 20px;
}

#l-main .pastAndfuture__list__item .future .futureList__item__cont {
  position: relative;
}

#l-main .pastAndfuture__list__item .future .futureList__item__cont__ttl {
  padding: 15px 20px 15px 10px;
  border-radius: 2px;
  background: #cfd0fa;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1f2289;
}

#l-main .pastAndfuture__list__item .future .futureList__item__cont__text {
  padding: 20px 10px 0;
}

#l-main .pastAndfuture__list__item .future .futureList__item__cont__text .textSm {
  display: block;
  font-size: 1.4rem;
}

#l-main .pastAndfuture__list__item .future .futureList__item__cont.newItem .futureList__item__cont__ttl {
  background: #f6bcb8;
}

#l-main .pastAndfuture__list__item .future .futureList__item__cont.newItem::before {
  position: absolute;
  z-index: 1;
  top: -12px;
  left: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f1446d;
  content: "NEW!";
}

#l-main .pastAndfuture__list__item .future .futureList__item__cont + .futureList__item__cont {
  margin-top: 20px;
}

#l-main .service {
  margin-top: 95px;
}

#l-main .service__ttl {
  max-width: 260px;
  margin: 0 auto 40px;
  text-align: center;
}

#l-main .service__ttl img {
  margin-left: -7px;
}

#l-main .service__ttlSub {
  margin: 0 auto 25px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.416666;
  color: #1f2289;
  text-align: center;
}

#l-main .service__list__item {
  position: relative;
  padding: 40px 4.5%;
  border-radius: 10px;
  background: #fce7e6;
}

#l-main .service__list__item .c-linkWrap {
  margin-top: 35px;
}

#l-main .service__list__item .c-linkWrap a::before {
  background-color: #fce7e6;
}

#l-main .service__list__item + .pastAndfuture__list__item {
  margin-top: 40px;
}

#l-main .service__list__item::before {
  position: absolute;
  right: 0;
  left: 0;
  display: inline-block;
  margin: 0 auto;
  content: "";
}

#l-main .service__list__item.appli {
  margin-top: 198px;
}

#l-main .service__list__item.appli::before {
  top: -158px;
  width: 86px;
  height: 172px;
  background: url(../img/img_tobupoAppli.png?20230928) no-repeat center center;
  background-size: contain;
}

#l-main .service__list__item.pasmo {
  margin-top: 196px;
}

#l-main .service__list__item.pasmo::before {
  top: -156px;
  width: 176px;
  height: 170px;
  background: url(../img/img_pasmoPig.png) no-repeat center center;
  background-size: contain;
}

#l-main .service__list__item.graph {
  margin-top: 194px;
}

#l-main .service__list__item.graph::before {
  top: -154px;
  width: 300px;
  height: 166px;
  background: url(../img/img_graphPig.png?2021) no-repeat center center;
  background-size: contain;
}

#l-main .registration {
  margin-top: 58px;
}

#l-main .registration__ttl {
  max-width: 277px;
  margin: 0 auto 40px;
  text-align: center;
}

#l-main .registration__ttl img {
  margin-left: -7px;
}

#l-main .registration__cont {
  position: relative;
}

#l-main .registration__cont__item .thumb {
  display: block;
  margin: 0 auto 25px;
}

#l-main .registration__cont__item.card .thumb {
  max-width: 80%;
}

#l-main .registration__cont__item.appli .thumb {
  max-width: 45%;
}

#l-main .registration__cont__item.pasmo .thumb {
  max-width: 65%;
}

#l-main .registration__cont__item + .registration__cont__item {
  margin-top: 42px;
}

#l-main .registration__cont__list__item {
  position: relative;
  padding-top: 5px;
  padding-left: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #1f2289;
}

#l-main .registration__cont__list__item::before {
  position: absolute;
  top: 0px;
  left: 0;
  display: inline-block;
  width: 29px;
  height: 25px;
  background: url(../img/icon_check.png) no-repeat center center;
  background-size: contain;
  content: "";
}

#l-main .registration__cont__list__item + .registration__cont__list__item {
  margin-top: 18px;
}

#l-main .registration__cont__list + .registration__cont__list {
  margin-top: 35px;
}

#l-main .registration__cont::before {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 70vw;
  margin: 20px auto 40px;
  background: url(../img/img_circleImg.png?20230928) no-repeat center center;
  background-size: contain;
  content: "";
}

#l-main .registration__cont::after {
  position: absolute;
  top: 5%;
  right: 0;
  left: 0;
  display: inline-block;
  width: 38vw;
  height: 38vw;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 30px #cfd0fa;
  content: "";
}

#l-main .tobuCard {
  margin-top: 65px;
  padding: 25px 0 60px;
  background: #ececfd;
}

#l-main .tobuCard__ttl {
  position: relative;
  max-width: 277px;
  margin: 0 auto 34px;
  padding-top: 44px;
  text-align: center;
}

#l-main .tobuCard__ttl::before {
  position: absolute;
  top: 0;
  right: -35px;
  display: block;
  width: 98px;
  height: 86px;
  background: url(../img/img_pig_02.png?20230922) no-repeat center center;
  background-size: contain;
  content: "";
}

#l-main .tobuCard__cont__text::after {
  display: block;
  width: 96px;
  height: 94px;
  margin-top: 30px;
  background: url(../img/img_pig_03.png?20230922) no-repeat center center;
  background-size: contain;
  content: "";
}

#l-main .faq {
  margin-top: 60px;
}

#l-main .faq__ttl {
  max-width: 146px;
  margin: 0 auto 40px;
  text-align: center;
}

#l-main .faq__list > .c-linkWrap {
  margin-top: 30px;
}

#l-main .faq__list > .c-linkWrap + .c-linkWrap {
  margin-top: 20px;
}

#l-main .faq__list__item__ttl {
  padding-left: 3rem;
  text-indent: -2rem;
}

#l-main .faq__list__item__text .c-linkWrap {
  margin-top: 20px;
}

@media screen and (min-width: 767px) {
  /* =================================
    main
  ================================= */
  #l-main {
    padding-bottom: 90px;
    /* もっと使いやすく */
    /* サービスも拡大！ */
    /* 登録しよう */
    /* 東武カード */
    /* faq */
  }
  #l-main .secWrap__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
  }
  #l-main .pastAndfuture {
    margin-top: 60px;
  }
  #l-main .pastAndfuture__ttl {
    width: initial;
    max-width: 100%;
    margin: 0 auto 60px;
  }
  #l-main .pastAndfuture__ttl img {
    margin-left: -24px;
  }
  #l-main .pastAndfuture__ttlSub {
    display: flex;
    width: calc(100% - (500px + 355px));
    min-width: 124px;
    margin: 30px 3% 30px;
    order: 2;
    justify-content: center;
    align-items: center;
  }
  #l-main .pastAndfuture__ttlSub.save {
    width: initial;
    max-width: 100%;
  }
  #l-main .pastAndfuture__ttlSub.use {
    width: initial;
    max-width: 100%;
  }
  #l-main .pastAndfuture__ttlSub.expiration {
    width: initial;
    max-width: 100%;
  }
  #l-main .pastAndfuture__ttlSub.point {
    width: initial;
    max-width: 100%;
  }
  #l-main .pastAndfuture__label {
    width: 80%;
    padding: 5px 0;
    font-size: 2rem;
  }
  #l-main .pastAndfuture__list__item {
    display: flex;
    padding: 0;
    border-radius: 20px;
    justify-content: space-between;
  }
  #l-main .pastAndfuture__list__item + .pastAndfuture__list__item {
    margin-top: 64px;
  }
  #l-main .pastAndfuture__list__item .past {
    position: relative;
    display: flex;
    width: 355px;
    margin-bottom: 0;
    padding: 65px 1% 70px;
    border-radius: 16px 0 0 16px;
    background: #cfd0fa;
    order: 1;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  #l-main .pastAndfuture__list__item .past__cont {
    padding: 0;
    background: transparent;
  }
  #l-main .pastAndfuture__list__item .past__cont__text {
    font-size: 2rem;
  }
  #l-main .pastAndfuture__list__item .past__cont__text .textSm {
    font-size: 1.4rem;
  }
  #l-main .pastAndfuture__list__item .past__cont__text + .past__cont__text {
    margin-top: 15px;
  }
  #l-main .pastAndfuture__list__item .past .pastAndfuture__label {
    position: absolute;
    z-index: 1;
    top: -20px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  #l-main .pastAndfuture__list__item .past::after {
    top: 50%;
    right: -11px;
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    border-width: 15px 0 15px 16px;
    border-color: transparent transparent transparent #1f2289;
    transform: translate(0, -50%);
  }
  #l-main .pastAndfuture__list__item .future {
    position: relative;
    width: 500px;
    padding: 56px 37px 37px 0;
    order: 3;
  }
  #l-main .pastAndfuture__list__item .future .pastAndfuture__label {
    position: absolute;
    z-index: 1;
    top: -20px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  #l-main .pastAndfuture__list__item .future .futureList__item__cont__ttl {
    padding: 15px 45px 15px 20px;
    border-radius: 4px;
    font-size: 1.8rem;
  }
  #l-main .pastAndfuture__list__item .future .futureList__item__cont__text {
    padding: 20px 20px 0;
  }
  #l-main .pastAndfuture__list__item .future .futureList__item__cont__text .textSm {
    font-size: 1.4rem;
  }
  #l-main .pastAndfuture__list__item .future .futureList__item__cont.newItem::before {
    top: -14px;
    left: 20px;
    font-size: 1.4rem;
  }
  #l-main .service {
    margin-top: 90px;
  }
  #l-main .service__ttl {
    width: initial;
    max-width: 100%;
    margin: 0 auto 58px;
  }
  #l-main .service__ttl img {
    margin-left: -24px;
  }
  #l-main .service__ttlSub {
    display: flex;
    margin: 0 auto 20px;
    font-size: 2rem;
    line-height: 1.5;
    align-items: center;
    justify-content: center;
  }
  #l-main .service__list {
    display: flex;
  }
  #l-main .service__list__item {
    position: relative;
    width: calc((100% - 10%) / 3);
    margin-top: 20px;
    margin-left: 5%;
    padding: 40px 2.5%;
    border-radius: 20px;
  }
  #l-main .service__list__item .c-linkWrap {
    margin-top: 20px;
  }
  #l-main .service__list__item + .pastAndfuture__list__item {
    margin-top: 20px;
  }
  #l-main .service__list__item.appli {
    margin-top: 212px;
  }
  #l-main .service__list__item.appli::before {
    top: -210px;
    width: 100%;
    max-width: 115px;
    height: 232px;
    background: url(../img/img_tobupoAppli.png?20230928) no-repeat center bottom;
    background-size: contain;
  }
  #l-main .service__list__item.pasmo {
    margin-top: 212px;
  }
  #l-main .service__list__item.pasmo::before {
    top: -210px;
    width: 100%;
    max-width: 230px;
    height: 225px;
    background: url(../img/img_pasmoPig.png) no-repeat center bottom;
    background-size: contain;
  }
  #l-main .service__list__item.graph {
    margin-top: 212px;
  }
  #l-main .service__list__item.graph::before {
    top: -158px;
    width: 90%;
    max-width: 301px;
    height: 168px;
    background: url(../img/img_graphPig.png) no-repeat center bottom;
    background-size: contain;
  }
  #l-main .service__list__item:nth-child(3n + 1) {
    margin-left: 0;
  }
  #l-main .registration {
    margin-top: 90px;
  }
  #l-main .registration__ttl {
    width: initial;
    max-width: 100%;
    margin: 0 auto 50px;
  }
  #l-main .registration__ttl img {
    margin-left: 0;
  }
  #l-main .registration__summary {
    text-align: center;
  }
  #l-main .registration__summary .c-linkWrap {
    margin-top: 30px;
  }
  #l-main .registration__cont {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 54px;
    flex-wrap: wrap;
  }
  #l-main .registration__cont__item .thumb {
    margin: 0 auto;
  }
  #l-main .registration__cont__item.card {
    display: flex;
    width: 100%;
    padding-left: 16%;
    align-items: flex-start;
    justify-content: space-between;
  }
  #l-main .registration__cont__item.card .thumb {
    width: 43%;
    max-width: 412px;
    margin-right: 8%;
  }
  #l-main .registration__cont__item.appli {
    display: flex;
    width: 58%;
    align-items: flex-start;
    justify-content: left;
  }
  #l-main .registration__cont__item.appli .thumb {
    width: 20%;
    max-width: 130px;
  }
  #l-main .registration__cont__item.appli .registration__cont__list {
    width: 58%;
  }
  #l-main .registration__cont__item.pasmo {
    width: 42%;
  }
  #l-main .registration__cont__item.pasmo .thumb {
    width: 39%;
    max-width: 215px;
    margin-bottom: 40px;
  }
  #l-main .registration__cont__item + .registration__cont__item {
    margin-top: 7.5%;
  }
  #l-main .registration__cont__list__item {
    padding-top: 4px;
    padding-left: 52px;
    font-size: 1.6rem;
    line-height: 2;
  }
  #l-main .registration__cont__list__item::before {
    width: 38px;
    height: 33px;
  }
  #l-main .registration__cont__list__item + .registration__cont__list__item {
    margin-top: 20px;
  }
  #l-main .registration__cont__list + .registration__cont__list {
    width: 100%;
    margin-top: 0;
  }
  #l-main .registration__cont::before {
    position: absolute;
    top: 30px;
    left: 0;
    width: 15%;
    max-width: 171px;
    height: 197px;
    margin: 0;
    background: url(../img/img_pig_04.png) no-repeat center center;
    background-size: contain;
  }
  #l-main .registration__cont::after {
    z-index: -1;
    top: 22%;
    right: 48%;
    left: auto;
    left: initial;
    width: 22vw;
    max-width: 347px;
    height: 22vw;
    max-height: 347px;
    box-shadow: 0 0 0 60px #cfd0fa;
  }
  #l-main .tobuCard {
    margin-top: 85px;
    padding: 90px 0 90px;
  }
  #l-main .tobuCard__ttl {
    width: initial;
    max-width: 100%;
    margin: 0 auto 55px;
    padding-top: 0;
  }
  #l-main .tobuCard__ttl::before {
    content: none;
  }
  #l-main .tobuCard__cont {
    max-width: 1105px;
    margin: 0 auto;
  }
  #l-main .tobuCard__cont__text {
    position: relative;
    padding: 0 200px;
    text-align: center;
    letter-spacing: .1em;
  }
  #l-main .tobuCard__cont__text::before {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 197px;
    height: 173px;
    background: url(../img/img_pig_02.png?20230511) no-repeat center center;
    background-size: contain;
    content: "";
  }
  #l-main .tobuCard__cont__text::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 179px;
    height: 174px;
  }
  #l-main .faq {
    margin-top: 90px;
  }
  #l-main .faq__ttl {
    width: initial;
    max-width: 100%;
    margin: 0 auto 60px;
  }
  #l-main .faq__list {
    max-width: 877px;
    margin: 0 auto;
  }
  #l-main .faq__list > .c-linkWrap {
    margin-top: 60px;
    text-align: right;
  }
  #l-main .faq__list > .c-linkWrap + .c-linkWrap {
    margin-top: 10px;
  }
  #l-main .faq__list__item__ttl {
    padding-left: 5rem;
    text-indent: -2rem;
  }
  #l-main .faq__list__item__text .c-linkWrap {
    margin-top: 20px;
  }
}

.mod__appdl-banar-wrapper {
  width: 1200px;
  margin: 120px auto 0;
}

.mod__appdl-banar {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 402px;
  margin: auto;
  margin-top: 90px;
  padding: 70px 80px 60px;
  border: 4px solid #000;
  border-radius: 10px;
  background: #fff;
}

.mod__appdl-box-label {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 850px;
  padding: 20px 40px;
  border: 4px solid #111;
  border-radius: 100px;
  background: #f6bcb8;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  letter-spacing: -1px;
  transform: translateX(-50%);
}

.mod__appdl-ttl {
  font-size: 40px;
  font-weight: bold;
}

.mod__appdl-text {
  margin-top: 25px;
  font-size: 22px;
  font-weight: bold;
  line-height: 40px;
}

.mod__appdl-link-list {
  display: flex;
}

.mod__appdl-link-list li {
  margin-right: 20px;
}

.mod__appdl-link-list li:last-child {
  margin-right: 0;
}

.mod__appdl-link-box {
  margin-top: 30px;
}

.mod__appdl-link-list li:nth-of-type(1) img {
  width: 163px;
  height: 60px;
}

.mod__appdl-link-list li:nth-of-type(2) img {
  width: 200px;
  height: 60px;
}

.mod__logo-img-box {
  position: absolute;
  right: 25px;
  bottom: 16px;
  width: 300px;
  height: 300px;
}

.mod__sp-screen-img-box {
  position: absolute;
  bottom: 0px;
  left: 42%;
  display: block;
  overflow: hidden;
  width: 332px;
  height: 340px;
}

.mod__sp-screen-img-box img {
  width: 100%;
}

.mod__ttl-logo-box {
  margin-top: 20px;
}

.mod__ttl-box {
  order: 1;
}

.mod__logo-img-box {
  position: absolute;
  right: 25px;
  bottom: 16px;
  width: 300px;
  height: 300px;
}

.mod__square-logo {
  position: absolute;
  display: block;
  width: 175px;
  height: 185px;
  margin-top: 20px;
}

.mod__chara-face {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 110px;
  height: 136px;
}

@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
  .mod__appdl-banar-wrapper {
    width: 100%;
    margin: 40px auto;
    padding: 15px;
  }
  .mod__appdl-banar {
    display: flex;
    width: 100%;
    height: auto;
    margin: 40px auto 0;
    padding: 50px 15px 18px;
    border: 2px solid #000;
    flex-wrap: wrap;
    justify-content: center;
  }
  .mod__appdl-box-label {
    top: -38px;
    width: 94%;
    padding: 10px 10px;
    border: 2px solid #111;
    font-size: 16px;
    letter-spacing: -1px;
  }
  .mod__appdl-ttl {
    font-size: 22px;
  }
  .mod__appdl-text {
    margin-top: 12px;
    font-size: 12px;
    line-height: 20px;
  }
  .mod__appdl-link-list {
    align-items: center;
  }
  .mod__appdl-link-list li {
    margin-right: 12px;
  }
  .mod__appdl-link-box {
    margin-top: 0;
    order: 3;
  }
  .mod__appdl-link-list li:nth-of-type(1) img {
    height: auto;
  }
  .mod__appdl-link-list li:nth-of-type(2) img {
    height: auto;
  }
  .mod__appdl-link-list li a {
    display: flex;
  }
  .mod__logo-img-box {
    position: relative;
    right: auto;
    bottom: auto;
    display: flex;
    width: 50%;
    height: auto;
  }
  .mod__sp-screen-img-box {
    position: relative;
    bottom: auto;
    left: auto;
    width: 40%;
    height: auto;
    flex-basis: 40%;
    order: 1;
  }
  .mod__ttl-logo-box {
    display: flex;
    width: 59%;
    margin-top: 10px;
    order: 1;
    flex-wrap: wrap;
    flex-basis: 59%;
  }
  .mod__logo-img-box {
    position: relative;
    right: auto;
    bottom: auto;
    display: flex;
    width: 50%;
    height: auto;
  }
  .mod__square-logo {
    position: relative;
    width: 87px;
    height: 92px;
    margin-top: 0;
  }
  .mod__chara-face {
    position: relative;
    right: auto;
    bottom: auto;
    width: 55px;
    height: 66px;
    margin-top: 25px;
    margin-left: 20px;
  }
}
/*# sourceMappingURL=maps/style.css.map */
