@charset "UTF-8";
/* CSS Document */

/* btn
-------------------------------------------*/
.btn {
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
}
.btn a{
    display: block;
    text-align: center;
    margin: 0 auto;
    position: relative;
    background-color: #122A88;
    border-radius: 5px;
    color: #FFF;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
    transition-duration: 0.3s;
}
.btn a:hover{
    text-decoration: none;
    background-color: #2352c8;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4);   
}

/* _normal */
.btn._normal{
    margin: initial;
}
.btn._normal a{
    padding: 16px 0;
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 1.9;
}
/* _small */
.btn._small{
    max-width: 200px;
    margin: initial;
}
.btn._small a{
    padding: 5px 15px;
    font-size: 16px;
    font-size: 1.6rem;
}

/* btn_dld */
.btn.btn_dld a{
    background-color: #A61F0D;
    transition: 0.5s;
    position: relative;
}
.btn.btn_dld a ._inner{
    z-index: 2;
    position: relative;
}
.btn.btn_dld a:after{
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    content: "";
    transition-duration: 0.3s;
    opacity: 0;
    background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
}
.btn.btn_dld a:hover::after {
  opacity: 1;
}
.btn_dld:before {
    position: absolute;
    top: 31%;
    left: 25px;
    display: inline-block;
    content: "";
    width: 25px;
    height: 28px;
    background: url(/img/icon_download.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    z-index: 1;
}

/* icn */
.icn_ctt:before {
    position: absolute;
    top: 32%;
    left: 8%;
    display: inline-block;
    content: "";
    width: 38px;
    height: 28px;
    background: url(/img/icon_mail.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    z-index: 1;
}
.icn_dld_r:before {
    position: absolute;
    top: 14%;
    right: 3%;
    display: inline-block;
    content: "";
    width: 150px;
    height: 84px;
    background: url(/img/icn_dld_r.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    z-index: 1;
}
.icn_ctt_r:after {
    position: absolute;
    top: 7%;
    right: 3%;
    display: inline-block;
    content: "";
    width: 159px;
    height: 112px;
    background: url(/img/icn_ctt_r.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
}
.icn_outside_r:after {
    position: absolute;
    top: 29%;
    right: 5%;
    display: inline-block;
    content: "";
    width: 17px;
    height: 17px;
    background: url(/img/icon_outside_r.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
}
.icn_arrow_r:after {
    position: absolute;
    top: 38%;
    right: 10%;
    display: inline-block;
    content: "";
    width: 11px;
    height: 19px;
    background: url(/img/icon_arrow_r.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
}
.icon._cgy{
    font-size: 10px;
    font-size: 1.0rem;
    background-color: #ECECEC;
    border-radius: 15px;
    padding: 2px 10px;
    margin: 4% 4% 0;
    color: #4a72a2;
    width: 120px;
    text-align: center;
    line-height: 1.9em;
}
/* guide */
.guide._scroll{
    max-width: 250px;
    margin: 0 auto 20px;
    display: none;
}
/* header
-------------------------------------------*/
.header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}


.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}



.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: black;
  transition: all 0.4s;
}

.c-hamburger span:nth-of-type(1) {
  top: -4px;
}

.c-hamburger span:nth-of-type(2) {
  top: 1px;

  transform: translateX(-0.45deg);
}

.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}



.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}

.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}

.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}

.header__nav {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  right: -100%;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: transparent;
  opacity: 0;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 0 20px;
  height: 75px;

}
.header__inner .logo{
  width: 180px;
    padding: 10px 0;
}
.header__inner .logo img{
  display: block;
  width: 100%;
}


.header__hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 75px;
  height: 100%;
}

.header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
  background-color: #fff;
}

.g-nav__list {
  display: block;
  padding: 50px 0;
}

.g-nav__item {
  position: relative;
}
.g-nav__item._top{
    display: none;
}
.g-nav__item._ctt,
.g-nav__item._dld{
    margin: 20px 10px;
    border-radius: 5px;
}
.g-nav__item._ctt a,
.g-nav__item._dld a{
  display: block;
  padding: 9px 20px 10px 40px;
    text-align: center;
    position: relative;
    background-color: #122A88;
    border-radius: 5px;
    color: #FFF;
    transition: 0.5s;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
    border: none;
}
.g-nav__item._dld a{
    background: #A61F0D;
}
.g-nav__item._ctt a:hover,
.g-nav__item._dld a:hover{
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}
.g-nav__item._ctt a:hover{
    background-color: #2352c8;
    border-bottom: none;
}
.g-nav__item._ctt.icn_ctt:before{
    z-index: 100;
    top: 31%;
    left: 8%;
    width: 20px;
    height: 15px;
}

.g-nav__item.btn_dld a{
    background-color: #A61F0D;
    transition: 0.3s;
    position: relative;
}
.g-nav__item.btn_dld a ._inner{
    z-index: 2;
    position: relative;
}
.g-nav__item.btn_dld a:after{
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    content: "";
    transition-duration: 0.3s;
    opacity: 0;
    background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
}
.g-nav__item.btn_dld a:hover {
  border-bottom: none;
}
.g-nav__item.btn_dld a:hover::after {
  opacity: 1;
}
.g-nav__item.btn_dld:before {
    position: absolute;
    top: 29%;
    left: 8%;
    display: inline-block;
    content: "";
    width: 14px;
    height: 15px;
    background: url(/img/icon_download.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    z-index: 1;
}
.g-nav__link {
    color: black;
    display: block;
    padding: 29px 13px 41px;
    box-sizing: border-box;
    height: 34px;
    font-size: calc(0.4vw + 0.8rem);
}
.g-nav__link:hover {
  border-bottom: solid 5px #122a88;
  text-decoration: none;
}

/* kv */
.kv{
    background: linear-gradient(151deg, #ECECEC 0%, #ECECEC 50%, #F7C01D 50%, #F7C01D 100%);
    margin-top: 75px;
    overflow: hidden;
}
.kv__inner{
    max-width: 1246px;
    margin: 0 auto;
    position: relative;
    padding: 60px 0 120px;
}
.kv__inner ._info{
    position: relative;
    font-size: 70px;
    font-size: 7.0rem;
    font-weight: 700;
    line-height: 1.2em;
    z-index: 1;
}
.kv__inner ._info ._txTS{
    font-size: 42px;
    font-size: 4.2rem;
}
.kv__inner ._item{
    width: 400px;
    position: relative;
    z-index: 10;
    text-align: center;
}
.kv__inner ._logo{
    max-width: 413px;
}
.kv__inner ._logo img{
    width: 100%;
}
.kv__inner ._copy{
    margin: 0 auto 10px;
    font-size: 20px;
    font-size: 2.0rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1.5;
}
.kv__inner ._copy:before{
    position: absolute;
    left: -20px;
    top: 10px;
    content: "";
    width: 1px;
    height: 80%;
    background: #110e0c;
    border-radius: 3px;
    transform: rotate(-25deg);
}
.kv__inner ._copy:after{
    position: absolute;
    content: "";
    right: -20px;
    top: 10px;
    width: 1px;
    height: 80%;
    background: #110e0c;
    border-radius: 3px;
    transform: rotate(25deg);
}
.kv__inner ._item .btn._normal{
    margin: 0 auto;
    width: 300px;
}
 .kv__inner ._item .btn._normal .icn_dld_r:before{
    top: -26%;
}
.kv__inner ._mainImg{
    max-width: 850px;
    position: absolute;
    top: 2%;
    right: -15%;
}
.kv__inner ._mainImg img{
    width: 100%;
}
.floating {
  animation: floating 3s ease-in-out infinite alternate;
  background: url(/img/ico-apple.svg) no-repeat center center / 60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
}

 
@keyframes floating {
  0% {
    transform:translate(0, 0) rotate(0deg);
  }
  50% {
    transform:translate(0, -15px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(0deg);
  }
}
/* concept */
.concept{
}
.concept h2{
    text-align: center;
}
.concept h2:after{
    position: absolute;
    top: 120%;
    right: 50%;
    display: inline-block;
    content: "";
    width: 60px;
    height: 42px;
    background: url(/img/img_concept_puzzle.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    margin-right: -30px;
}
.concept p{
    text-align: center;
    line-height: 2em;
    font-size: 20px;
    font-size: 2.0rem;
    color: #666;
    letter-spacing: 3px;
}
.concept ._video{
    width: 700px;
    margin: 0 auto;
}

/* structure */
.structure{
    background-color: #ECECEC;
    padding: 90px 0 130px;
}
.structure ._inner{
    margin: 0 auto;
    max-width: 1040px;
}
.structure ._inner h2{
    text-align: center;
}
.structure ._itemList{
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 30px;
}
.structure ._itemList ._item{
    width: 32%;
}
.structure ._itemList ._item ._ttl{
    position: relative;
    font-size: calc(0.25vw + 1.4rem);   
    background-color: #FFF;
    padding: 5%;
    text-align: center;
    line-height: 1.5em;
    min-height: 80px;
    position: relative;
    font-weight: 700;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
    z-index: 10;
}
.structure ._itemList ._item ._ttl:after{
    position: absolute;
    bottom: -14px;
    left: 0px;
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    border-bottom: 16px solid #C8C8C8;
    border-top: 0;
    transform: rotate(45deg);
}
.structure ._itemList ._item ._ttl span{
    color: #4A72A2;
}
.structure ._itemList ._item ._ttl .icon._cgy{
    margin: 6% auto 0;
    font-size: 15px;
    font-size: 1.5rem;
    width: 70%;
    line-height: 1.5em;
}
.structure ._itemList ._item ._cont ._cpy{
    font-size: 60px;
    font-size: 6.0rem;
    font-weight: 700;
    text-align: center;
    margin-top: -20px;
}
.structure ._itemList ._item ._cont ._cpy span{
    font-size: 25px;
    font-size: 2.5rem;
}
.structure ._itemList ._item ._cont ._figure{
    display: flex;
}
.structure ._itemList ._item ._cont ._figureIn,
.structure ._itemList ._item ._cont ._figureOut{
    display: table;
    height: 160px;
    font-size: 15px;
    font-size: 1.5rem;
}
.structure ._itemList ._item ._cont ._figureIn{
    background: url(/img/img_arrowIn.png) no-repeat center / contain;
    top: 0;
    right: 0;
    padding: 0 8% 0 0;
    background-position: right top;
    width: 44%;
    text-align: right;
    line-height: 1.5em;
}
.structure ._itemList ._item ._cont ._figureOut{
    background: url(/img/img_arrowOut.png) no-repeat center / contain;
    top: 0;
    left: 0;
    padding: 0 0 0 8%;
    background-position: left top;
    width: 44%;
    line-height: 1.5em;
}
.structure ._itemList ._item ._cont ._txt{
    display: table-cell;
    vertical-align: middle;
}
.structure ._answer{
    position: relative;
    width: 90%;
    padding: 2% 5%;
    border-radius: 15px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
}
.structure ._answer p{
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 700;
    color: #FFF;
    line-height: 1.3em;
    margin-bottom: 20px;
}
.structure ._answer .btn{
    border: 1px solid #FFF;
    width: 34%;
    margin: inherit;
}
.structure ._answer .btn:before{
    position: absolute;
    top: 30%;
    left: 15px;
    display: inline-block;
    content: "";
    width: 15px;
    height: 17px;
    background: url(/img/icon_download.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    z-index: 1;
}
.structure ._answer a{
    padding: 5px 15px;
    font-size: 16px;
    font-size: 1.6rem;
    background-color: rgba(18,42,136,0.0);
    transition: 0.5s;
    box-shadow: none;
}
.structure ._answer a:hover{
    background-color: rgba(18,42,136,1);
}
.structure ._answer img{
    width: 60%;
    position: absolute;
    top: -30px;
    right: 5px;
}

/* result */
._result{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 60px;
}
._result li{
    background: url(/img/resultStyle_bg.png) no-repeat center / contain;
    width: 170px;
    height: 120px;
    color: #FFB000;
    font-weight: 700;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    position: relative;
    line-height: 1;
}
._result li ._ttl{
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
}
._result li ._num{
    font-size: 40px;
    font-size: 4.0rem;
    display: inline-block;
    padding: 10px 0;
    font-weight: 500;
}
._result li ._date{
    width: 100%;
    position: absolute;
    top: 94%;
    display: block;
    font-size: 10px;
    font-size: 1.0rem;
    text-align: center;
    color: #110e0c;
}

/* about */
.about{
    padding: 60px 0;
    position: relative;
    margin-bottom: 120px;
}
.about ._info{
    padding: 60px 30% 0 0;
    background-color: #ECECEC;
    border-radius: 0 30px 30px 0;
    width: 40%;
}
.about ._info ._inner{
    max-width: 450px;
}
.about ._info ._inner p{
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 1.8em;
}

.about ._figure{
    position: absolute;
    top: 120px;
    right: 0;
    width: 43%;
    border-radius: 30px 0 0 30px;
    background-color: #FFF;
    padding: 60px 10% 60px 3%;
    overflow: hidden;
}
.about ._figure img{
    width:  calc(30% - -460px);
    cursor: zoom-in;
}

/* feature */
.feature{}
.feature ._inner {
   width: 100%;
   border-radius: 30px;
   background-color: #ECECEC;
   padding: 60px 0;
}
.feature ._inner h2{
   text-align: center;
   position: relative;
}
.feature ._inner h2:after{
    position: absolute;
    top: 130%;
    right: 50%;
    display: inline-block;
    content: "";
    width: 60px;
    height: 30px;
    background: url(/img/img_feature_infinite.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    margin-right: -30px;
}
.feature ._engagement{
    width: 94%;
    margin: 0 auto;
    padding: 0 0 60px;
    border-bottom: dotted 2px #D9D9D9;
}
.feature ._promotion{
    width: 94%;
    margin: 0 auto;
    padding: 4% 0px;
}
.feature ._info{
    max-width: 1040px;
    margin: 0 auto;
}
.feature ._info h3{
    color: #4A72A2;
    text-align: center;
}
.feature ._info p{
    color: #666;
}
.feature ._itemList{
    width: 100%;
}
.feature ._itemList ._tabList,
.feature ._itemList ._tabList2 {
  display: flex;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.feature ._itemList ._tabList::-webkit-scrollbar,
.feature ._itemList ._tabList2::-webkit-scrollbar {
  display: none;
}
.feature ._itemList ._tabList li,
.feature ._itemList ._tabList2 li {
  margin-right: 5px;
  width: 33%;
  white-space: nowrap;
}
.feature ._itemList ._tabList li:last-of-type,
.feature ._itemList ._tabList2 li:last-of-type {
  margin-right: 0;
}
.feature ._itemList ._tabList li a,
.feature ._itemList ._tabList2 li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7CAED6;
  padding: 15px 10px;
  transition: 0.3s;
  border-radius: 5px 5px 0 0;
  font-weight: 700;
  color: #FFF;
}
.feature ._itemList ._tabList li a.active,
.feature ._itemList ._tabList2 li a.active {
  background-color: #fff;
  cursor: text;
  color: #000C4E;
  text-decoration: none;
}
.feature ._itemList ._tabCont > div,
.feature ._itemList ._tabCont2 > div {
  background-color: #fff;
  padding: 60px 5%;
  display: none;
}
.feature ._itemList ._tabCont > div.active,
.feature ._itemList ._tabCont2 > div.active {
  display: block;
}
.feature ._itemList ._tabCont > div > * + * ,
.feature ._itemList ._tabCont2 > div > * + * {
  margin-top: 10px;
}
.feature ._itemList ._tabCont > ._cont .fRight,
.feature ._itemList ._tabCont2 > ._cont .fRight{
    width: 50%
}
.feature ._itemList ._tabCont > ._cont .fLeft,
.feature ._itemList ._tabCont2 > ._cont .fLeft{
  width: 45%;
}
.feature ._itemList ._tabCont > ._cont .fLeft img,
.feature ._itemList ._tabCont2 > ._cont .fLeft img{
  width: 100%;
}
.feature ._itemList h4{
    position: relative;
    padding: 0 0 0 30px;
    line-height: 1.5em;
}
.feature ._itemList h4:before{
    position: absolute;
    top: 35%;
    left: 0;
    display: inline-block;
    content: "";
    width: 21px;
    height: 15px;
    background: url(/img/fte_icon.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    z-index: 1;
}
.feature .advantage{}
.feature .advantage dt{
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.feature .advantage dd p{
  font-size: 14px;
  font-size: 1.4rem;
  color: #666666;
}


/* ====================================
  ここからPC幅
==================================== */
@media screen and (min-width: 768px) {
  .hp_displaySP {
    display: none !important;
  }
  ._tabList li a:not(.active):hover,
  ._tabList2 li a:not(.active):hover {
    background-color: #fff;
    text-decoration: none;
    color: #000C4E;
  }
}

/* ====================================
  ここからスマホ幅
==================================== */
@media screen and (max-width: 767px) {
  .hp_displayPC {
    display: none !important;
  }
}




/* choose */
.choose{
    width: 100%;
    background-color: #FFF;
    border-radius: 30px;
    padding: 5% 0;
}
.choose h2{
    text-align: center;
    letter-spacing: 0px;
}
.choose h2:after{
    position: absolute;
    top: 125%;
    right: 50%;
    display: inline-block;
    content: "";
    width: 60px;
    height: 8px;
    background: url(/img/img_choose_border.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    margin-right: -30px;
}
.choose ._info{
    max-width: 800px;
    text-align: center;
    line-height: 2em;
    color: #666;
    letter-spacing: 3px;
    margin: 0 auto;
}
.choose ._itemList{
    width: 94%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    flex-wrap: wrap;
    justify-content: space-around;
}
.choose ._itemList ._item{
    background-color: #ECECEC;
    color: #000C4E;
    border-radius: 15px;
    width: 20%;
    padding: 3.2% 2%;
}
.choose ._itemList ._item dt{
    margin: 0 0 10px;
}
.choose ._itemList ._item dt h4{
    line-height: 1.5em;
}
.choose ._itemList ._item dd{
    text-align: center;
    margin: 0 auto;
    display: inline-block
}
.choose ._itemList ._item ul li{
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
}
.choose ._special{
    width: 94%;
    margin: 0 auto;
    background-color: #ECECEC;
    color: #000C4E;
    border-radius: 15px;
}
.choose ._special{
    width: 94%;
    margin: 0 auto;
}
.choose ._special ._item{
    width: 100%;
    background-color: #ECECEC;
    color: #000C4E;
    border-radius: 15px;
    padding: 1.5% 2%;
    box-sizing: border-box;
    display: table;
}

.choose ._special ._item h4{
    padding: 16px 40px 0 0;
}
.choose ._special ._item ul li{
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
}
.choose ._special ._item ._irnavi{
    background-color: #FFF;
    border-radius: 5px;
    width: 40%;
    padding: 14px 2%;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
}
.choose ._special ._item .fRight p{
    display: inline-block;
    color: #110E0C;
    padding-top: 5px;
    width: 60%;
    font-weight: 700;
}
.choose ._special ._item .fRight .btn{
    display: inline-block;
    width: 35%;
}
.choose ._special ._item .fRight .btn a{
    box-shadow: none;
}
/* dctLink */
.dctLink{
    max-width: 820px;
    margin: 0 auto;
}
.dctLink .fLeft{
    width: 50%;
}
.dctLink .fRight{
    width: 50%;
}
.dctLink h3{
    font-size: 30px;
    font-size: 3.0rem;
    text-align: center;
    line-height: 1;
}
.dctLink ._cont ._info{
    font-size: calc(0.5vw + 1.7rem);
    line-height: 1.5;
    padding-top: 25px;
}
.dctLink ._cont .btn._normal{
    max-width: 360px;
}
.dctLink .fRight a{
    box-shadow: 7px 7px 10px 0px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
    width: 100%;
}


/* linkBtn_list */
.linkBtn_list{}
.linkBtn_list ._info{
    text-align: center;
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: 700;

}
.linkBtn_list .btn{
    max-width: 508px;
    width: 50%;
}
.linkBtn_list .btn a{
    padding-left: 20%;
    text-align: left;
    height: 120px;
}
.linkBtn_list .btn.btn_dld:before{
    top: 35%;
    left: 35px;
    width: 35px;
    height: 38px;
}
.linkBtn_list .btn a.icn_ctt:before{
    top: 35%;
    left: 35px;
    width: 45px;
    height: 33px;
}
.linkBtn_list .btn p{
    font-size: 14px;
    font-size: 1.4rem;
    width: 60%;
    line-height: 1.3em;
}

/* compare */
.compare{
    width: 100%;
    background-color: #FFF;
    border-radius: 30px;
    padding: 5% 0;
}
.compare ._info{
    max-width: 900px;
    margin: 0 auto;
}
.compare ._info h2{
    text-align: center;
    position: relative;
}
.compare ._info p{
    max-width: 800px;
    text-align: center;
    line-height: 2em;
    color: #666;
    letter-spacing: 3px;
    margin: 0 auto;
    padding: 0 3%;
}
.compare ._scroll{
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.compare ._scroll .compareList{
    width: 1206px;
    margin: 0 auto;
}
.compare ._table{
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    border-bottom: dotted 2px #D9D9D9;
}
.compare ._table:last-child{
    border-bottom: none;
}
.compare ._table:nth-child(3) dt,
.compare ._table:nth-child(3) dd{
    border-radius: 5px 5px 0 0;
}
.compare ._table:last-child dt,
.compare ._table:last-child dd{
    border-radius: 0 0 5px 5px;
}
.compare ._table dt,
.compare ._table dd{
    width: 30%;
    display: table;
    background-color: #ECECEC;
    height: 80px;
    color: #595959;
}
.compare ._table dt{
    width: 20%;
}
.compare ._table dd:nth-child(2){
    background-color: #FFE7E3;
    color: #000B4E;
}
.compare ._table dt h4{
    font-size: 16px;
    font-size: 1.6rem;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.compare ._table dd p{
    font-size: 14px;
    font-size: 1.4rem;
    display: table-cell;
    vertical-align: middle;
    padding: 0 6% 0 14%;
    line-height: 1.4em;
    text-align: center;
}

.compare ._table._target{
    border-bottom: none;
}
.compare ._table._target dt,
.compare ._table._target dd{
    border-bottom: none;
    background-color: #FFF;
}
.compare ._table._target dd img{
    width: 100%;
}
.compare ._table ._circle{
    background-image : url(/img/bgIcon_circle.png);
    background-position: 10% 50%;
    background-size:  44px 44px;
    background-repeat : no-repeat;
}
.compare ._table ._dcircle{
    background-image : url(/img/bgIcon_dcircle.png);
    background-position: 10% 50%;
    background-size: 44px 44px;
    background-repeat : no-repeat;
}
.compare ._table ._triangle{
    background-image : url(/img/bgIcon_triangle.png);
    background-position: 9% 42%;
    background-size: 44px 38px;
    background-repeat : no-repeat;
}
.compare ._table ._cross{
    background-image : url(/img/bgIcon_cross.png);
    background-position: 10% 50%;
    background-size: 34px 34px;
    background-repeat : no-repeat;
}

/* material */
.material{
    width: 100%;
    background-color: #FFF;
    border-radius: 30px;
    padding: 5% 0;
}
.material ._info{
    padding: 0px 0 0 8%;
    width: 41%;
}
.material ._info  p{
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 1.8em;
}
.material ._linkList{
    width: 40%;
    padding: 140px 8% 0 0;
}
.material .btn{
    max-width: 508px;
}
.material .btn.btn_dld a{
    padding: 30px 0 0 16%;
    text-align: left;
    height: 100px;
}
.material .btn.btn_dld a.icn_dld_r:before {
    top: 8%;
}
.material .btn.btn_dld:before{
    top: 35%;
    left: 30px;
    width: 30px;
    height: 33px;
}
.material ._linkList .btn p{
    font-size: 14px;
    font-size: 1.4rem;
    width: 50%;
    padding-top: 10px;
    line-height: 1.3em;
}
/* case_top */
.case_top{
    padding: 130px 0;
    background-color: #FFF;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
}
.case_top h2{
    text-align: center;
}
.case_top .caseList{
    max-width: 1206px;
    margin: 0 auto;
}
.case_top .btn{
    width: 360px;
    margin: 0 auto;
}
.case_top .caseList ul{
    justify-content: center; 
}
.caseList ul{
    display: flex;
    flex-wrap: wrap;
    
    column-gap: 10px;
}
.caseList ul li{
    width: calc(24% - 11px);
    margin-bottom: 40px;
    background-color: #FFF;
    overflow: hidden;
    margin: 0 0 20px 0;
    border: solid 1px #DFDFDF;
}
.caseList ul li:nth-child(4n){
    margin-right: 0;
}
.caseList ul li a._caseLink{
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.caseList ul li a._caseLink:hover {
    color: #333;
    text-decoration: none;
    opacity: .8;
}
.caseList ul li a._caseLink .ctrImg{
    overflow: hidden;
}
.caseList ul li a._caseLink .ctrImg img{
    width: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.caseList ul li a._caseLink:hover .ctrImg img{
    transform: scale(1.05);
}
.caseList ul li a._caseLink span{
    display: block;
    font-size: 10px;
    padding: 2% 4%;
    color: #767676;
    font-weight: 500;
    text-align: right;
}
.caseList ul li a._caseLink h4{
    line-height: 1.5em;
    padding: 2% 4%;
    font-weight: 500;
    color: #4A72A2;
    min-height: 47px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.caseList ul li a._caseLink ._summary{
    font-size: 10px;
    font-size: 1.0rem;
    padding: 2% 4% 0;
    line-height: 1.7em;
    font-weight: 500;
}
.caseList ul li a._siteLink{
    position: relative;
    display: block;
    font-size: 10px;
    font-size: 1.0rem;
    border-top: solid 1px #DDD;
    padding: 13px 40px 13px 0;
    text-align: right;
    color: #000C4E;
}
.caseList ul li a._siteLink:after{
    right: 5%;
    filter: brightness(0) saturate(100%) invert(6%) sepia(80%) saturate(7261%) hue-rotate(236deg) brightness(61%) contrast(106%);
}

/* pycPotal */
.pycPotal{
    width: 100%;
    background-color: #ECECEC;
    border-radius: 30px;
    padding: 5% 0;
}
.pycPotal ._info{
    padding: 0px 0 0 8%;
    width: 40%;
}
.pycPotal ._info h2{
    font-size: 30px;
    font-size: 3.0rem;
}
.pycPotal ._info  p{
    line-height: 1.8em;
}
.pycPotal .fRight{
    width: 35%;
    padding: 0 8% 0 0;
}
.pycPotal .fRight img{
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
}    
.pycPotal .btn{
    max-width: 508px;
}
.pycPotal .btn.btn_dld a{
    padding-left: 20%;
    text-align: left;
    height: 120px;
}
.pycPotal .btn.btn_dld:before{
    top: 35%;
    left: 35px;
    width: 35px;
    height: 38px;
}

/* qa */
.qa{padding: 130px 0 0;}
.qa h2{
    text-align: center;
}
.accordion {
    margin:0 auto;
}
.accordion ul {
    width:100%;
    padding:0;
    margin:0;
    border-top:1px solid #110E0C;
}
.accordion li {
    background-color: #f7c01d;
    position:relative;
    border-bottom:1px solid #110E0C;
    list-style:none;
}
.accordion li h5 {
    margin:0;
    text-align:left;
    padding: 0 35px;
    font-weight: 700;
    text-align: left;
    position: relative;
}

.accordion li h5 i {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0px;
    position: absolute;
    top: -8px;
    left: 0px;
}
.accordion li:first-child {

}
.accordion > ul > li > a {
    display: block;
    text-decoration: none;
    cursor: pointer;
    padding: 2%;
    position: relative;
}
.accordion > ul > li > a:hover{
    color: ;
}
.accordion > ul > li > ul {
    display: none;
    text-align:left;
    line-height:1.8;
    border-top:1px dashed #110E0C
}
.accordion li .accordion_icon,
.accordion li .accordion_icon span {
    display: inline-block;
    transition: all .3s;
    box-sizing: border-box;
}
.accordion li .accordion_icon {
    position: absolute;
    width: 3%;
    height: 3%;
    top: 50%;
    right: 2%;
}
.accordion li .accordion_icon span {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #110E0C;
}
.accordion li .accordion_icon span:nth-of-type(1) {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.accordion li .accordion_icon span:nth-of-type(2) {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.accordion li .accordion_icon.active span:nth-of-type(1) {
    display:none;
}
.accordion li .accordion_icon.active span:nth-of-type(2) {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.accordion .acin_txt {
    padding:1% 2% 3% 60px ;
    position: relative;
    border-bottom: none;
    font-size: 18px;
    font-size: 1.8rem;
}
.accordion .acin_txt i {
    color: red;
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0px;
    position: absolute;
    top: 0px;
    left: 24px;
}
.accordion .acin_txt a {
    color:red;
}

/* footer */
footer {
    width: 100%;
    background-color: #ECECEC;
}
.footer_inner{
    width: 90%;
    margin: 0 auto;
    padding: 60px 0 80px;
}
.footer_inner ._logo{
    width: 15%;
    margin-right: 5%;
}
.footer_inner ._logo img{
    width: 100%;
}
.footer_inner .f-navList{
    width: 15%;
    margin-right: 5%;
}
.footer_inner .f-navList li{
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
}
.footer_inner .f-contact{
    width: 42%;
    min-width: 720px;
}
.footer_inner .f-contact ._btnList{
    max-width: 720px;
    
}
.footer_inner .f-contact ._btnList .fLeft{
    width: 55%;
    padding-right: 3%;
    border-right: solid 1px #929292;
}
.footer_inner .f-contact ._btnList .fRight{
    width: 39%;
}
.footer_inner .f-contact ._btnList li p{
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #595959;
    text-align: center;
    line-height: 1.6em;
}
.footer_inner .f-contact ._btnList .fLeft .btn a{
    padding-left: 14%;
    text-align: left;
}
.footer_inner .f-contact ._btnList .fLeft .btn a.icn_dld_r:before{
    top: -18%;
    width: 131px;
    height: 74px;
}

.footer_bottom{
    background-color: #110E0C;
    color: #FFF;
    padding: 3% 5%;
}
.footer_bottom .bnrList{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.footer_bottom .bnrList li{
    max-width: 260px;
}
.footer_bottom .bnrList li a,
.footer_bottom .bnrList li a img{
    width: 100%;
}
.footer_bottom .bnrList li a:hover{
    opacity: 0.7;
}

.footer_bottom ._linkList{
    display: flex;
    flex-wrap: wrap;
}
.footer_bottom ._linkList li{
    position: relative;
    margin-right: 30px;
    white-space: nowrap;
}
.footer_bottom ._linkList li a{
    color: #FFF;
    font-size: 12px;
    font-size: 1.2rem;
}
.footer_bottom ._linkList li a:after{
    position: absolute;
    top: 0;
    right: -15px;
    display: inline-block;
    content: "|";
}
.footer_bottom ._willsLogo{
    width: 80px;
}
.footer_bottom ._willsLogo img{
    width: 100%;
}
.footer_bottom ._copy{
    width: 100%;
    font-size: 10px;
    font-size: 1.0rem;
    color: #828282;
}

/* logo_list */
@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
@keyframes infinity-scroll-right {
from {
  transform: translateX(-100%);
}
  to {
  transform: translateX(0%);
}
}
.scroll-logo__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-logo__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-logo__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-logo__item {
  width: calc(100vw / 10);
}
.scroll-logo__item>img {
  width: 100%;
}

.scroll-logo__list--right{
  animation :infinity-scroll-right 80s infinite linear 0.5s both;
}

/* case_index
-------------------------------------------*/
.caseList._history{
    padding: 1% 0 3%;
}
.caseList._history ul li{
    width: calc(25% - 11px);
    margin-bottom: 40px;
}

/* case_area
-------------------------------------------*/
.case_area{
    width:900px;
    margin:0 auto;
}
.mainCaseVisual{
    position: relative;
}
.case_area ._date{
    border-bottom: 1px solid #DFDFDF;
    padding: 1% 0;
}
.mainCaseCopy .icon._cgy {
    margin: 0 0 2%;
}
.mainCaseCopy h1,
.case_contens h2{
    color: #4A72A2;
    font-weight: 500;
    line-height: 1.5em;
    border-bottom: none;
}
.case_contens h3{
    font-weight: 500;
    border-bottom: none;
    font-size: calc(0.5vw + 1.5rem);
    line-height: 1.7em;
}
.case_contens h2::after,
.case_contens h3::after{
    display: none;
}
.caseGuest{

}
.caseGuest dl dt{
    background-color: #4A72A2;
    padding: 5px 20px;
    color: #FFF;
    width: 140px;
    text-align: center;
}
.caseGuest dl dd {
    padding: 2% 5%;
    border: 1px solid #4A72A2;
}
.caseGuest dl dd .guest{
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
}
.caseGuest dl dd ul li{
}
.resultList{
    padding: 2% 5%;
    background-color: #F8F8F8;
    position: relative;
}
.resultList:before{
    position: absolute;
    top: 108px;
    left: 94px;
    content: "";
    width: 5px;
    height: 270px;
    background-color: #C1C1C1;
}

.resultList dl{
   position: relative;
   margin-bottom: 30px;
}
.resultList dl:nth-child(3){
    margin-bottom: 0;
}

.resultList .title{
    z-index: 1;
    text-align: center;
    padding-top: 35px;
    font-size: 20px;
    font-weight: 500;
    width: 100px;
    height: 65px;
    background: url("/img/case/case_listTitle_bg1.png") no-repeat 0 0;
    background-size: cover;
}
.resultList dl:nth-child(2) .title{
    background: url("/img/case/case_listTitle_bg2.png") no-repeat 0 0;
    background-size: cover;
    color: #707070;
}
.resultList dl:nth-child(3) .title{
    background: url("/img/case/case_listTitle_bg3.png") no-repeat 0 0;
    background-size: cover;
    color: #FFF;
}
.resultList .cont{
    width: 670px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7em;
}
.resultList .cont ul{
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.case_contens{}
.case_contens ._contImg{
    text-align: center;
    
}
.case_contens ._contImg img{
    width: 100%;
    max-width: 600px;
}
.case_contens dd a{
    color: #122A88;
}
.case_contens dd ._sideTxt{
    width: 55%;
}
.case_contens dd ._sideImg{
    width: 40%;
}
.case_table{
    width: 100%;
    font-size: 20px;
    text-align: center;
}
.case_table th{
    background-color: #000C4E;
    border: solid 1px #DFDFDF;
    font-weight: 400;
    color: #FFF;
    padding: 20px;
}
.case_table td{
    background-color: #FFF;
    border: solid 1px #DFDFDF;
    padding: 20px;
}
.case_table tr:nth-child(2n) td{
    background-color: #fbfbfb;
}
.case_contact{
    background-color: #ECECEC;
}
.case_contact ul{
    position: relative;
    max-width: 960px;
    margin:0 auto;
    display: flex;
}
.case_contact ul li{
    margin: 60px 3%;
    width: 38.1%;
    background-color: #FFF;
    padding: 3%;
}
.case_contact ul li .ctrImg{
    position: relative;
    height: 110px;
    margin-bottom: 20px;
}
.case_contact ul li .ctrImg img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.case_contact ul li:nth-child(1) .ctrImg img{
    height: 120px;
}
.case_contact ul li:nth-child(2) .ctrImg img{
    height: 120px;
}
.case_contact ul li p{
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}
.case_contact .btn._small{
    margin: 0 auto;
}
.case_contact .btn._small .icn_arrow_r:after{
    top: 37%;
    right: 8%;
    width: 6px;
    height: 11px;
}
.tellArea{
    padding: 30px;
    background-color: #ECECEC;
    text-align: center;
}
.tellArea ._areaTtl{
    font-size: 2.0rem;
    font-weight: 400;
    width: 100%;
}
.tellArea ._areaCont{
    font-size: 1.3rem;
    width: 100%;
}
.tellArea ._areaCont ._tell{
    font-size: 3.0rem;
    font-weight: 700;
    color: #122A88;
    position: relative;
}
.tellArea ._areaCont ._tell:before{
    position: absolute;
    top: 11px;
    left: -30px;
    display: inline-block;
    content: "";
    width: 26px;
    height: 26px;
    background: url(/img/cot_icon1.png) no-repeat;
    background-size: cover;
}

/* contact_area
-------------------------------------------*/
.contact_area{
    width:680px;
    margin:0 auto;
}
.contact_area p{

}


/* dlList_area
-------------------------------------------*/
.dlList_area ._history{
    padding: 1% 0 3%;
}
.dlList_area ._history ul{
    display: flex;
    flex-wrap: wrap;
}
.dlList_area ._history ul li{
    width: calc(32% - 11px);
    margin-bottom: 40px;
    background-color: #FFF;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
    margin-right: 3%;
}
.dlList_area ._history ul li:nth-child(3n){
    margin-right: 0;
}
.dlList_area ._history ul li a{
    width: 100%;
    font-size: 14px;
    flex-flow:column;
}
.dlList_area ._history ul li a:hover{
    color: #333;
    text-decoration: none;
    opacity: .8;
}
.dlList_area ._history ul li a .ctrImg{
    color: #fff;
    padding: 4% 6%;
    background:url(/img/download_img_info_bg.png) no-repeat;
    background-size: cover;
    background-color: #3E4FC2;
}
.dlList_area ._history ul li a .ctrImg._stl_bg0{
    background:url(/img/download_img_info_bg0.png) no-repeat;
    background-size: cover;
}
.dlList_area ._history ul li a .ctrImg._stl_bg2{
    background:url(/img/download_img_info_bg2.png) no-repeat;
    background-size: cover;
}
.dlList_area ._history ul li a .ctrImg._irnaviStl{
    background-image: url(/img/request_img_info_bg1.png);
    background-size: cover;
}
.dlList_area ._history ul li a .ctrImg._pycStl{
    background-image: url(/img/request_img_info_bg2.png);
    background-size: cover;
}
.dlList_area ._history ul li a h4{
    width: 90%;
    line-height: 1.7em;
    font-size: 22px;
    font-weight: 500;
    text-decoration: underline;
}
.dlList_area ._history ul li a p{
    font-weight: 400;
}
.dlList_area ._history ul li a .dlList_link{
    padding: 4% 5%;
    font-weight: 700;
    text-align: left;
    position: relative;
}
.dlList_area ._history ul li a .dlList_link:after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
    top: 23px;
    right: 5%;
}
.dlList_area ._history ul li a ._pycStl{
    color: #333;
}
.dlList_area ._history ul li a ._irnaviStl h4,
.dlList_area ._history ul li a ._pycStl h4{
    font-size: 2.8rem !important;
    text-decoration: none;
    line-height: 1.5em;
}
.dlList_area ._history ul li a ._irnaviStl ._subtxt,
.dlList_area ._history ul li a ._pycStl ._subtxt{
    font-size: 1.6rem !important;
}
.dlList_area ._history ul li a ._irnaviStl ._subinfo,
.dlList_area ._history ul li a ._pycStl ._subinfo{
    font-size: 1.6rem !important;
    background-color: #fff;
    border-radius: 27px;
    color: #18247a;
    padding: 0 5%;
    line-height: 2.0em;
    margin-bottom: 10px;
    width: 100%;
}
.dlList_area ._history ul li a ._pycStl ._subinfo{
    color: #d9a73d;
    border: 1px solid #DFDFDF;
}

/* dl_area
-------------------------------------------*/
.dl_area .fLeft{width: 45%;}
.dl_area .fRight{
    width: 47%;
    border: 1px solid #CCC;
    padding: 2% 3% 7%;
}
.dl_area .cont_info{
    color: #fff;
    padding: 6%;
    background: #3e4fc2;
    background-image: url(/img/download_img_info_bg.png);
    background-repeat: no-repeat;
    background-size:auto;
}
.dl_area .cont_info._stl_bg2{
    background-image: url(/img/download_img_info_bg2.png);
    
}
.dl_area .cont_info._stl_bg0{
    background-image: url(/img/download_img_info_bg0.png);
    background-size: auto;
    background-color: #3e4fc2;
}
.dl_area .cont_info h3{
    font-size: 2.8rem !important;;
    text-align: left !important;
    text-decoration: underline;
    font-weight: 500;
}
.dl_area .cont_info h3::after{
    display: none !important;
}
.dl_area .cont_mv img{
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
}
.dl_area .dl_img_list{
    display: flex;
    justify-content: space-between;
}
.dl_area .dl_img_list li{
    width: 48%;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
}
.dl_area .cont_tag{position: relative;}
.dl_area .cont_tag ul{padding-left: 15px;}
.dl_area .cont_tag ul:before {
    position: absolute;
    top: 10px;
    left: 0;
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    background: url("/img/download_tag_icon.png") no-repeat;
    background-size: cover;
}
.dl_area .cont_tag ul li{
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    color: #666;
    padding: 0 3px;
}
.dl_area .cont_tag ul li._point:after {
    position: absolute;
    top: 1px;
    right: -11px;
    content: "、";
}
.dl_area .cont_list dt{
    font-size: 2.0rem;
    font-weight: bold;
}
.dl_area .cont_list dd ul li ._note {
    font-size: 1.2rem;
}
.dl_area .cont_list_send dt{
    font-size: 3.0rem;
    font-weight: bold;
    text-align: center;
    padding: 30px;
}
.dl_area .cont_list_send dd p{
    text-align: center;
    margin: 0 auto;
}
.dl_area .cont_list_send dd span{
    text-align: center;
    margin: 0 auto;
    color: #C10C23;
    display: block;
    font-weight: 700;
}
.dl_area .fRight h4{
    font-size: calc(1.25vw + 2.0rem) !important;
}
.dl_area .fRight h4::after{
    display: none !important;
}
.dl_area #formstyle{}
.dl_area #formstyle .inputArea {
    padding: 10px 0;
    overflow: hidden;
    text-align: left;
}
.dl_area #formstyle .inputArea dt{
    font-weight: 500;
    float: left;
    width: 30%;
    padding-top: 0.4em;
}
.dl_area #formstyle .inputArea dd{
    float: left;
    width: 68%;
}
.dl_area #formstyle .inputArea dt ._optional{
    display: inline-block;
    font-size: 1.0rem;
    background-color: #C10C23;
    padding: 0.15em 0.4em;
    margin-left: 9px;
    line-height: 1;
    color: #fff;
}
.dl_area #formstyle .inputArea dd .input2{
    width: 68%;
}
.dl_area #formstyle .inputArea dd .input2:nth-child(0){
    width: 100%;
}
.dl_area .agreebox{
    background: none;
    margin: 10px 0;
    padding: 15px;
    text-align: center;
    border: none;
}
.dl_area .agreebox a{
    color: #122A88;
    text-decoration: underline;
}
.dl_area .btn_dl{
    width: 53%;
    border: solid 5px #122A88;
    background-color: #122A88;
    color: #FFF;
    padding: 15px 0;
    margin: 0 auto;
    font-size: 1.5rem;
    text-align: center;
    cursor:pointer;
    webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}
.dl_area .btn_dl span{
    position: relative;
    padding-left: 25px;
}
.dl_area .btn_dl span:before {
    position: absolute;
    top: 3px;
    left: 4px;
    display: inline-block;
    content: "";
    width: 14px;
    height: 17px;
    background: url("/img/download_btn_icon.png") no-repeat;
    background-position: 0px 0px;
    background-size: cover;
}
.dl_area .btn_dl:hover {
    border: solid 5px #3854bf;
    background-color: #3854bf;
}

/* request
------------------------- */
.dl_area .cont_info._irnaviStl{
    background-image: url(/img/request_img_info_bg1.png);
    background-size: cover;
}
.dl_area .cont_info._pycStl{
    background-image: url(/img/request_img_info_bg2.png);
    background-size: cover;
    color: #333;
}
.dl_area .cont_info._irnaviStl h3,
.dl_area .cont_info._pycStl h3{
    font-size: calc(1.25vw + 2.0rem) !important;
    text-decoration: none;
    line-height: 1.4em;
}
.dl_area .cont_info._irnaviStl ._subtxt,
.dl_area .cont_info._pycStl ._subtxt{
    font-size: calc(0.7vw + 1.5rem) !important;
}
.dl_area .cont_info._irnaviStl ._subinfo,
.dl_area .cont_info._pycStl ._subinfo{
    font-size: calc(0.7vw + 1.5rem) !important;
    background-color: #fff;
    border-radius: 50px;
    color: #18247a;
    padding: 1% 5%;
    line-height: 1.4em;
    margin-bottom: 15px;
}
.dl_area .cont_info._pycStl ._subinfo {
    color: #d9a73d;
    border: 1px solid #DFDFDF;
}
.requestComp_area{
    border: 1px solid #CCC;
    padding: 10%;
}
.requestComp_area h3{
    text-align: center;
    font-weight: bold;
}
.requestComp_area p{
    text-align: center;
}
.requestComp_area ._caution_area{
    background-color: #F8F8F8;
    margin: 30px auto;
    padding:7% 0;
}
.requestComp_area ._caution_area p{
    margin: 0 auto;
    width: 78%;
    text-align: left;
}
@media screen and (max-width: 1040px) {
    .structure ._inner ._scroll {
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .structure ._inner ._scroll ._itemList{
        width: 1040px;
    }
    .structure ._inner ._scroll ._itemList.mb90 {
        margin-bottom: 20px !important;
        justify-content: left;
        column-gap: 10px;
    }
}

@media screen and (min-width: 910px) {

  .header__hamburger {
    display: none;
  }

  .g-nav__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
  }

  .header__nav {
    position: static;
    opacity: 1;
    height: inherit;
    width: initial;
  }

  .g-nav__list {
    padding: 0;
    display: flex;
  }
}
@media screen and (max-width: 910px) {
    .header__inner{
        height: auto;
    }
    .header__inner .logo{
        width: 140px;
    }
    .g-nav__inner {
        width: 100%;
    }
    .g-nav__link{
       border-bottom: 1px solid #DDD; 
       text-indent: 2%;
       text-align: center;
       font-size: 14px;
       font-size: 1.4rem;
    }
    .g-nav__link:hover {
      border-bottom: 1px solid #DDD; 
    }
    .g-nav__item._top{
        display: block;
    }
    .g-nav__item._ctt a,
    .g-nav__item._dld a{
        padding: 28px 10px 41px;
    }
    .g-nav__item._ctt.icn_ctt:before {
        width: 29px;
        height: 21px;
    }
    .g-nav__item.btn_dld:before {
        width: 25px;
        height: 27px;
    }
    .ttlArea{
        margin-top: 60px;
        padding: 15px 0;
    }
    .ttlArea h2{
        font-size: 20px;
        font-size: 2.0rem;
    }
    .ttlArea h2,
    #pankuzu{
        padding-left: 3%;
    }
    .kv{
        margin-top: 50px;
    }
    .kv__inner{
        max-width: 90%;
        padding: 60px 0 60px;
    }
    .kv__inner ._item {
        width: 100%;
    }
    .kv__inner ._info{
        font-size: 60px;
        font-size: 6.0rem;
    }
    .kv__inner ._info ._txTS {
        font-size: 35px;
        font-size: 3.5rem;
    }
    .kv__inner ._logo{
        margin: 0;
    }
    .kv__inner ._mainImg {
        top: 10%;
        max-width: 400px;
        right: -10%;
    }
    .concept ._video {
        position: relative;
        width: 100%;
        padding-top: 56.25%; /* 16:9のアスペクト比 */
        height: 0;
    }

    .concept ._video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .structure ._inner{
        margin: 0 auto;
        width: 96%;
    }
    .structure ._answer p{
        text-align: center;
    }
    .structure ._answer p .brpc{display: none;}
    .structure ._answer .btn{
        width: 100%;
        margin-bottom: 20px;
    }
    .structure ._answer .btn a{
        padding: 16px 0;
        font-size: 20px;
        font-size: 2.0rem;
        line-height: 1.9;
    }
    .structure ._answer .btn:before{
        top: 31%;
        left: 25px;
        width: 25px;
        height: 28px;
    }
    .structure ._answer img{
        position: initial;
        margin: 0 auto;
        width: 80%;
        display: block;
    }
    .guide._scroll{
        display: block;
    }
    
    .about {
        padding: 60px 0 20px;
        margin-bottom: 0px;
    }
    .about ._info{
        float: none;
        padding: 5%;
        width: 86%;
        border-radius: 30px 30px 0 0;
        margin: 0 auto;
    }
   .about ._info ._inner{
      float: none;
      max-width: 100%;
    }
   .about ._info ._inner h2{
        text-align: center;
    }
   .about ._figure{
        position: initial;
        width: 86%;
        padding: 5%;
        border-radius: 0 0 30px 30px;
        margin: 0 auto;
    }
   .about ._figure img{
        width: 100%;
    }
   .feature ._inner{
        width: 96%;
        margin: 0 auto;
    }
   .feature ._inner h2{
        width: 90%;
        margin: 20px auto;
    }
   .feature ._itemList ._tabList li, 
   .feature ._itemList ._tabList2 li,
   .feature ._promotion ._itemList ._tabList li, 
    .feature ._promotion ._itemList ._tabList2 li {
        width: initial;
    }

   .choose{width: 96%;}
   .choose h2{
        width: 90%;
        margin: 20px auto;
    }
   .choose div > p{
        width: 90%;
        margin: 0 auto;
    }
    .choose ._itemList{
        margin: 0 auto !important;
    }
    .choose ._itemList ._item{
        width: calc(46% - 11px);
        margin-bottom: 20px;
    }
    .choose ._special ._item .fLeft {
        margin-bottom: 15px;
    }
    .choose ._special ._item .fRight {
        width: 96%;
        text-align: center;
        margin-bottom: 15px;
    }
    .choose ._special ._item .fRight p{
        margin: 0 0 10px 0;
        width: 100%;
    }
    .choose ._special ._item .fRight .btn{
        width: 94%;
        max-width: 100%;
        float: none;
        margin: 0;
    }
    .compare{
        width: 96%;
    }
    .compare ._scroll .compareList{
        padding: 0 2%;
    }
    .dctLink .fLeft,
    .dctLink .fRight{
        float: none;
        width: 94%;
        margin: 0 auto;
        text-align: center;
    }
    .dctLink ._cont .btn._normal{
        max-width: 100%;
        margin: 0 auto 20px;
    }
    .dctLink ._cont ._info{
        padding-top: 0;
    }
    .dctLink .fRight a{
        width: 80%;
    }
    .linkBtn_list .btn a{
        padding-left: 14%;
    }
    .linkBtn_list .btn.fLeft,
    .linkBtn_list .btn.fRight {
        float: none;
        max-width: 100%;
        width: 100%;
        margin: 0 0 20px;
    }
    .linkBtn_list .btn.fRight {
        margin: 0;
    }
    .linkBtn_list .btn_dld:before{
        top: 35%;
        left: 35px;
        width: 35px;
        height: 38px;
    }
    .linkBtn_list .icn_ctt:before{
        top: 35%;
        left: 35px;
        width: 43px;
        height: 32px;
    }
    .material{
        width: 96%;
        margin: 0 auto;
    }
    .material .fLeft,
    .material .fRight{
        float: none;
    }
    .material ._info{
        padding: 0;
    width: 90%;
    margin: 0 auto 30px;
    }
    .material ._linkList{
        width: 90%;
        padding: 20px 0 0;
        margin: 0 auto;
    }
    .material .btn{
        width: 100%;
        max-width: 100%;
    }
    .material .btn.btn_dld a{
        padding-left: 14%;
    }
    .case_top .caseList{
        max-width: 90%;    
    }
    .caseList ul li{
       width: calc(50% - 11px);
    }
    .caseList ul li:nth-child(2n){
       margin-right: 0;
    }
    .case_top .btn{
        width: 90%;
    }
    .footer_inner .f-contact{
        width: 100%;
        margin-bottom: 60px;
        min-width: 100%;
    }
    .footer_inner .f-contact ._btnList{
        max-width: none;
    }

    /*case*/
    .caseList._history{
        padding: 3%;
    }
    .caseList._history ul li{
        width: calc(50% - 11px);
    }
    .case_area{
        width: 90%;
        margin: 0 auto;
    }

    /*pycPotal*/
    .pycPotal{
        width: 96%;
        margin: 0 auto;
    }
    .pycPotal .fLeft,
    .pycPotal .fRight{
        float: none;
    }
    .pycPotal ._info{
        padding: 0;
        width: 90%;
        margin: 0 auto 30px;
    }
    .pycPotal ._info p{
        margin-bottom: 60px!important;
    }
    .pycPotal .fRight{
        width: 70%;
        padding: 20px 0 0;
        margin: 0 auto;
    }
    .pycPotal .btn{
        width: 100%;
        max-width: 100%;
    }
    .pycPotal .btn.btn_dld a{
        padding-left: 14%;
    }

    .resultList:before {
        top: 9%;
        left: 11.5%;
        width: 5px;
        height: 70%;
    }

    .resultList .title{
        margin-top: 10px;
        padding-top: 4%;
        font-size: 18px;
        width: 13.6%;
        background-size: contain;
    }
    .resultList dl:nth-child(2) .title,
    .resultList dl:nth-child(3) .title{
        background-size: contain;
    }

    .resultList .cont{
        width: 80%;
        font-size: 14px;
        font-size: 1.4rem;
    }
    .resultList .cont ul{
       height: auto;
       display:block;
       margin-top: 10px;
    }

    /*contact*/
    .contact_area{
        width: 94%;
        margin: 0 auto;    
    }
    /*dlList*/
    .dlList_area{
        width: 94%;
        margin: 0 auto;  
    }
    .dlList_area ._history ul li {
        width: calc(50% - 14px);
        margin-bottom: 40px;
    }
    .dlList_area ._history ul li:nth-child(3n) {
        margin-right: 3%;
    }
    .dlList_area ._history ul li:nth-child(2n) {
        margin-right: 0;
    }

    .dl_area{
        width: 90%;
        margin: 0 auto;
    }

    .dl_area .fLeft,
    .dl_area .fRight{
        float: none;
        width: 100%;
        margin: 0 auto;
    }
    .dl_area .fRight{
        width: 94%;
    }
    .dl_area .fLeft .cont_list{
        margin-bottom: 60px!important;
    }

    .satori__custom_form_9259f7f825b8104d_css select {
        width: 100%;
    }
    .footer_inner ._logo{
        width: 35%;
    }
    .footer_inner .f-navList{
        width: 50%;
        margin: 0 0 50px 10%;
    }
    .footer_inner .f-contact ._btnList .fLeft{
        width: 100%;
        float: none;
        border-right: none;
        border-bottom: solid 1px #929292;
        margin: 0 auto 30px;
        padding: 0 0 30px 0;
    }
    .footer_inner .f-contact ._btnList .fRight{
        width: 100%;
        float: none;
        margin: 0 auto 30px;
    }
    .footer_inner .f-contact ._btnList li p{
        margin-bottom: 15px;
    }
    .footer_inner .f-contact ._btnList .fLeft .btn a,
    .footer_inner .f-contact ._btnList .fRight .btn a{
        padding-left: 0;
        text-align: center;
    }
    .footer_inner .f-contact ._btnList .fLeft .btn a.icn_dld_r:before{
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .btn._normal a{
        font-size: 16px;
        font-size: 1.6rem !important;
    }
    .btn._small a{
        font-size: 14px;
        font-size: 1.4rem;
        padding: 10px 15px;
    }
    .btn_dld:before {
        top: 37%;
        left: 15px;
        width: 20px;
        height: 23px;
    }
    .icn_dld_r:before{
        width: 100px;
        height: 54px;
    }
    .icn_ctt_r:after{
        width: 80px;
        height: 53px;
    }
    .icn_ctt:before{
        top: 35%;
        left: 6%;
        width: 27px;
        height: 20px;
    }
    .brpc{display: none;}
    .brsp{display: block;}

    .kv{
        margin-top: 50px;
    }
    .kv__inner{
        padding: 30px 0;
    }
    .kv__inner ._info{
        font-size: 36px;
        font-size: 3.6rem;
    }
    .kv__inner ._info ._txTS {
        font-size: 20px;
        font-size: 2.0rem;
    }
    .kv__inner ._item {
        width: 100%;
        margin: 0 auto;
    }
    .kv__inner ._item .btn._normal{
        width: 100%;
    }
    .kv__inner ._item .btn._normal .icn_dld_r:before{
        top: 4%;
    }
    .kv__inner ._logo {
        max-width: 200px;
    }
    .kv__inner ._mainImg {
        max-width: 60%;
        top: 20%;
        right: -15%;
    }
    .kv__inner ._copy{
        font-size: 14px;
        font-size: 1.4rem;
    }
    .kv__inner ._copy br{
        display: none;

    }
    .kv__inner ._copy:before,
    .kv__inner ._copy:after{
        top: 3px;
    }
    .scroll-logo__item{
        width: calc(200vw / 10);
    }
    .about ._info ._inner p.mb90{
        margin-bottom:30px !important;
    }
    .concept p,
    .about ._info ._inner p,
    .material ._info p{
        font-size: 18px;
        font-size: 1.8rem;
        text-align: left;
    }
    .structure {
        padding: 30px 0 60px;
    }
    .structure ._itemList ._item ._ttl{
        font-size: 18px;
        font-size: 1.8rem;
    }
    .structure ._answer p{
        font-size: 24px;
        font-size: 2.4rem;
    }
    .structure ._answer .btn a{
        font-size: 16px;
        font-size: 1.6rem;
    }
    .structure ._answer .btn:before{
        top: 37%;
        left: 15px;
        width: 20px;
        height: 23px;
    }
    .concept h2.mb130{
        margin-bottom: 100px !important;
    }
    ._result{
        column-gap: 3%;
    }
    ._result li{
        font-size: 14px;
        font-size: 1.4rem;
        height: 100px;
    }
    ._result li ._ttl{
        font-size: 10px;
        font-size: 1.0rem;
    }
    ._result li ._num{
        font-size: 25px;
        font-size: 2.5rem;
    }
    ._result li ._date{
        top: 82%;
    }
    .feature.mb60,
    .dctLink.mb60,
    .dctLink h3.mb60{
        margin-bottom:30px !important;
    }
    .feature ._engagement{
        padding: 0 0 30px;
    }
    .feature ._promotion{
        padding: 40px 0px 20px;
    }
    .feature ._inner{
        padding: 5% 0;
    }
    .feature ._info p{
        padding: 0 4%;
    }
    .feature ._itemList ._tabCont > div, 
    .feature ._itemList ._tabCont2 > div{
        padding: 30px 5%;
    }
    .feature ._itemList ._tabCont > ._cont .fRight,
    .feature ._itemList ._tabCont2 > ._cont .fRight{
        width: 100%;
        float: none;
    }
    .feature ._itemList ._tabCont > ._cont .fLeft,
     .feature ._itemList ._tabCont2 > ._cont .fLeft {
        width: 100%;
        float: none;
    }
    .dctLink h3{
        font-size: 20px;
        font-size: 2.0rem;
    }
    .dctLink ._cont ._info{
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 500;
    }
    .material ._linkList  .btn.btn_dld a{
        height: 90px;
        padding-left: 15%;
    }
    .linkBtn_list.mb90{
        margin-bottom: 30px !important;
    }
    .linkBtn_list .btn.fLeft a,
    .linkBtn_list .btn.fRight a{
        height: 90px;
        padding-left: 15%
    }
    .linkBtn_list .btn p,
    .material ._linkList .btn p{
        font-size: 10px;
        font-size: 1.0rem;
        padding-top: 0;
        width: 60%;
    }
    .material .btn.btn_dld a.icn_dld_r:before {
        top: 19%;
    }
    .linkBtn_list .btn.btn_dld:before{
        top: 35%;
        left: 5%;
        width: 25px;
        height: 28px;
    }
    .linkBtn_list .btn a.icn_ctt:before{
        top: 35%;
        left: 5%;
        width: 31px;
        height: 23px;
    }
    .choose.mb90 {
        margin-bottom: 30px !important;
    }
    .choose ._info{
        text-align: left;
    }
    .choose ._itemList ._item dt h4{
        margin: 0 0 20px;
    }
    .choose ._itemList ._item{
        width: 100%;
        padding: 3.2% 3%;
    }
    .choose ._special ._item{
        padding: 2% 3%;
    }
    .choose ._special ._item h4{
        padding: 0;
    }
    .compare{padding: 5% 0 10%;}
    .compare ._info p{
        width: 90%;
        text-align: left;
    }
    .compare ._scroll .compareList {
        width: 900px;
    }
    .compare ._table dt h4 {
        font-size: 12px;
        font-size: 1.2rem;
    }
    .compare ._table dd p{
        font-size: 12px;
        font-size: 1.2rem;
    }

    .caseList ul li,
    .caseList._history ul li {
        width: 100%;
        margin: 0 auto 20px;
    }
    .caseList ul li:nth-child(2n) {
        margin-right: auto;
    }
    .caseList ul li a._caseLink h4{
        min-height: auto;
    }
    .case_contact ul{
        justify-content: center;
        flex-wrap: wrap;
        max-width: 100%;
    }
    .case_contact ul li{
        width: 100%;
        margin: 20px 5%;
        padding: 10% 3%;
    }
    .case_contact .btn._small{
        max-width: 94%;
    }
    .case_contens dd ._sideTxt,
    .case_contens dd ._sideImg {
        width: 100%;
    }
    .case_top {
        padding: 30px 0 60px;
    }
    .mainCaseCopy h1{
        font-size: 24px;
        font-size: 2.4rem;
    }
    .resultList .title{
        padding-top: 5%;
        font-size:  calc(1.00vw + 0.7rem);
        width: 16.6%;
    }
    .dlList_area ._history ul li {
        width: 100%;
        margin: 0 auto 20px;
    }
    .dlList_area ._history ul li:nth-child(3n) {
        margin-right: auto;
    }

    .material{padding: 5% 0 10%;}
    .material .btn.btn_dld:before{
        left: 5%;
        width: 25px;
        height: 28px;
    }

    /*pycPotal*/
    .pycPotal ._info h2{
        font-size: 24px;
        font-size: 2.4rem;
    }
    .pycPotal ._info p {
        margin-bottom: 30px !important;
    }
    .pycPotal .btn a{
        font-size: 14px !important;
        font-size: 1.4rem !important;
    }
    .pycPotal .fRight {
        margin: 0 auto 30px;
    }

    .qa{
        padding: 60px 0 0;
    }
    .footer_bottom ._willsLogo{
        float: none;
        margin: 0 0 20px;
    }
    .footer_bottom .bnrList li{
        max-width: 100%;
    }
    .footer_bottom ._linkList {
        line-height: 1.9;
    }
    .footer_inner .f-contact {
        min-width: auto;
        margin-bottom: 0;
    }
    .footer_inner .f-contact ._btnList .fLeft,
    .footer_inner .f-contact ._btnList .fRight{
        width: 100%;
        padding-left: 0;
    }
}