@charset "UTF-8";
/* CSS Document */
h2{
    font-size: 40px;
    font-size: calc(1.25vw + 2.0rem);
    color: #122A88;
}

/* 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);   
}
.btn._digital a{
    background-color: #08bac8;
    color: #FFF;
    box-shadow: 6px 6px #E1E5EF;
    padding: 20px 0;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    transition-duration: 0.3s;
}
.btn._digital a:hover{
    box-shadow: unset;
    transform: translateY(4px);
}

/* _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;
}

.bg_style_b{
    background-color: #F1F2F6;
    padding: 60px 0;
}

/* 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{
    overflow: hidden;
}
.kv__inner{
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    padding: 90px 3% 60px;
}
.kv__inner ._info{
    position: relative;
    font-size: 44px;
    font-size: clamp(4.0rem, 2.8vw, 4.2rem);
    font-weight: 700;
    line-height: 1.2em;
    z-index: 1;
}
.kv__inner ._info ._copymini{
    font-size: 25px;
    font-size: 2.5rem;
    position: relative;
    padding-left: 30px;
}
.kv__inner ._info ._copymini:after{
    position: absolute;
    bottom: 5px;
    left: 0;
    display: inline-block;
    content: "";
    width: 25px;
    height: 30px;
    background: url(../img/dyc/kv_icon_gift.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    z-index: 1;
}
.kv__inner ._info ._txTS{
    font-size: 80%;
}
.kv__inner ._item{
    width: 640px;
    position: relative;
    z-index: 10;
}
.kv__inner ._item ._txt{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    display: block;
}

.kv__inner ._item ._logo{
    max-width: 413px;
}
.kv__inner ._item ._logo img{
    width: 100%;
}
.kv__inner ._item ._list{
    width: 100%;
}
.kv__inner ._item ._list li{
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: 600;
    position: relative;
    padding-left: 30px;
    text-align: left;
}
.kv__inner ._item ._list li:after{
    position: absolute;
    top: 15px;
    left: 0;
    display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/dyc/icon_textcheck.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    z-index: 1;
}
.kv__inner ._btnList{
    width: 640px;
    position: relative;
    z-index: 10;
    text-align: center;
}
.kv__inner ._btnList .btn{
    width: 45%;
}
.kv__inner ._item ._list li ._highlight{
    color: #F23077;
}


.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: 687px;
    position: absolute;
    top: 13%;
    right: -12%;
}
.kv__inner ._mainImg img{
    width: 100%;
}
.kv__inner ._mainImg ._comments{
    max-width: 687px;
    position: absolute;
    bottom: 5%;
    right: 30%;
    font-size: 10px;
    font-size: 1rem;
    color: #6B6B6B;
}
.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;
}

/* worries */
.worries{
    padding-bottom: 300px;
    
}
.worries h2{
    text-align: center;
}
.worries p{
    text-align: center;
    line-height: 2em;
    font-size: 30px;
    font-size: 3.0rem;
    color: #08BAC8;
    letter-spacing: 3px;
    font-weight: 600;
}
.worries ._list{
    display: flex;
    justify-content: space-between;
}
.worries ._list ._item{
    width: 290px;
    height: 155px;
    padding: 2.5% 20px;
}
.worries ._list ._item:nth-child(1){
    position: relative;
    background: url(../img/dyc/dyc_worries_frm1.png) no-repeat top left / contain;
}
.worries ._list ._item:nth-child(2){
    position: relative;
    background: url(../img/dyc/dyc_worries_frm2.png) no-repeat top left / contain;
}
.worries ._list ._item:nth-child(3){
    position: relative;
    background: url(../img/dyc/dyc_worries_frm3.png) no-repeat top left / contain;
}
.worries ._list ._item:nth-child(1) img{
    position: absolute;
    width: 143px;
    height: 266px;
    top: 210px;
    right: -40px;
}
.worries ._list ._item:nth-child(2) img{
    position: absolute;
    width: 132px;
    height: 260px;
    top: 212px;
    right: 30%;
}
.worries ._list ._item:nth-child(3) img{
    position: absolute;
    width: 208px;
    height: 303px;
    top: 162px;
    left: -70px;
}
.worries ._list ._item dt{
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.5em;
}
.worries ._list ._item dd{
    font-size: 14px;
    font-size: 1.4rem;
    color: #6B6B6B;
    line-height: 1.5em;
}

/* about */
.about{
    padding: 60px 0;
    position: relative;
    margin-bottom: 60px;
    background: url(../img/dyc/img_bg_about.png) no-repeat top center / cover;
}
.about .about__inner{
    max-width: 1040px;
    margin: 0 auto;
}
.about h2{
    text-align: center;
    color: #FFF;
}
.about ._copy{
    text-align: center;
    font-size: 45px;
    font-size: clamp(3.5rem, 5.0vw, 4.5rem);
    line-height: 70px;
    color: #FFF021;
    font-weight: 600;
    line-height: 1.4em;
}
.about ._info{
    position: relative;
}
.about ._info ul{
    width: 45%; 
}
.about ._info ul li{
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: 600;
    position: relative;
    padding: 10px 0 0 130px;
    line-height: 1.5em;
    margin-bottom: 40px;
    color: #fff;
}
.about ._info ul li img{
    width: 110px;
    position: absolute;
    left: 0;
    top: 0;
}
.about ._figure{
    width: 55%;
    position: absolute;
    top: 0;
    right: 0;
}
.about ._figure img{
    width: 100%;
}

/* about */
.service{

}
.service ._inner{
    padding-top: 60px;
}
.service h2{
    text-align: center;
    color: #08BAC8;
    position: relative;
}
.service h2 span{
    position: relative;
    padding-left: 100px;
    font-size: clamp(3.6rem, 2.8vw, 4.0rem);
}
.service h2 span:before{
    position: absolute;
    top: -20px;
    left: 0;
    display: inline-block;
    content: "01";
    width: 90px;
    height: 80px;
    background-color: #08BAC8;
    font-size: 40px;
    font-size: 4.0rem;
    color: #fff;
    text-align: center;
    z-index: 1;
    border-radius: 45px;
    padding-top: 10px;
}
.service._pricing h2 span:before{
    content: "02";
}
.service._manage h2 span:before{
    content: "03";
}

.service ._info{
    text-align: center;
    color: #6B6B6B;
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 auto;
    text-align: center;
    width: 900px;
}
.service h3{
    text-align: center;
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: 400;
    color: #0A3180;
    border-bottom: 1px dashed #0A3180;
    display: inline-block;
    margin: 0 auto;
}
.service._products ._list{
    display: flex;
    justify-content: space-between;
}
.service._products ._list dl{
    width: 49%;
}
.service._products ._list ._logo dt,
.service._products ._list ._items dt{
    text-align: center;
    font-size: 30px;
    font-size: clamp(2.0rem, 3.0vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 10px;
}
.service._products ._list ._logo dd ul{ 
    display: flex;
    flex-wrap: wrap;
    gap: 10px 2%;
    width: 100%;
}
.service._products ._list ._logo dd ul li { 
    width: 23%;
}
.service._products ._list ._logo dd ul li img{ 
    width: 100%;
}
.service._products ._list ._items dd img{ 
    width: 100%;
    display: block;
}
.service._products ._list ._items dd ._highlight{ 
    color: #0A3180;
    font-size: 16px;
    font-size: 1.6rem;
    display: block;
    text-align: center;
    font-weight: 500;
}
.service._products ._list ._items dd{
    position: relative;
}
.service._products ._list ._items dd ._comments{
    position: absolute;
    top: 100%;
    right: 0;
    font-size: 10px;
    font-size: 1rem;
    color: #6B6B6B;
}
.service ._willscoin{ 
    width: 90%;
    margin: 0 auto;
    background: #F1F2F6;
    padding: 3%;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    border-radius: 10px;
}
.service ._willscoin ._info{ 
    width: 490px;
    color: #001700;
    text-align: left;
    margin-left: 30px;
}
.service ._willscoin ._info dt{ 
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: 500;
    text-align: left;
}
.service ._willscoin ._info dd{ 
    font-size: 20px;
    font-size: 2.0rem;
}
.service ._willscoin ._coinImg{ 
    width: 230px;
}
.service ._willscoin ._coinImg img{ 
    width: 100%;
}
.service ._copy{ 
    text-align: center;
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: 600;
    line-height: 1.4em;
}
.service ._copy span{ 
    position: relative; 
}
.service ._copy span:before{ 
    display: inline-block;
    content: "";
    width: 30px;
    height: 30px;
    background: url(../img/dyc/icon_textcheck.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
    position: absolute; 
    top: 8px;
    left: -35px;
}
.service ._appeal{
    text-align: center;
    font-size: 20px;
    font-size: 2.0rem;
}
.service._pricing ._planImg{
    width: 100%;
}
.service._pricing ._planImg img{
    width: 100%;
}
.service._pricing ._planImg ._planImg_sp{
    display: none;
}


.service._manage ._admin{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5%;
}
.service._manage ._admin ul{
    width: 45%;
}
.service._manage ._admin ul li{
    font-size: 20px;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
    line-height: 1.5em;
    margin-bottom: 20px;
}
.service._manage ._admin ul li:before{
    position: absolute;
    top: 10px;
    left: -30px;
    content: "";
    width: 41px;
    height: 41px;
}
.service._manage ._admin ul li:nth-child(1):before{
    background: url(../img/dyc/dyc_service_icon1.png) no-repeat;
    background-position: 0px 0px;
    background-size: contain;
}
.service._manage ._admin ul li:nth-child(2):before{
    background: url(../img/dyc/dyc_service_icon2.png) no-repeat;
    background-position: 0px 0px;
    background-size: contain;
}
.service._manage ._admin ul li:nth-child(3):before{
    background: url(../img/dyc/dyc_service_icon3.png) no-repeat;
    background-position: 0px 0px;
    background-size: contain;
}
.service._manage ._admin ._adminImg{
    width: 50%;
}
.service._manage ._admin ._adminImg img{
    width: 100%;
}
.service._manage .btn._digital{
    width: 70%;
}
.service._manage .btn._digital a{
    padding: 26px 0;
    font-size: 20px;
    font-size: 2rem;
}

/* compare */
.compare{

}
.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: 1040px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 10px;
}
.compare ._scroll .compareList:before{
    position: absolute;
    top: 0;
    left: 20%;
    display: inline-block;
    content: "";
    width: 300px;
    height: 400px;
    background: #E9EFFF;
    box-shadow: 6px 6px #B9D2DC;
    border-radius: 10px;
}
.compare ._table{
    position: inherit;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    border-bottom: solid 1px #CECECE;
    z-index: 10;
}
.compare ._table:last-child{
    border-bottom: none;
}
.compare ._table dt,
.compare ._table dd{
    width: 30%;
    display: table;
    height: 80px;
}
.compare ._table dt{
    width: 25%;
}
.compare ._table dd:nth-child(2){
    color: #000B4E;
    font-weight: 600;
}
.compare ._table dt h4{
    font-size: 20px;
    font-size: 2.0rem;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    padding-left: 50px;
}
.compare ._table dt h4:before{
    position: absolute;
    bottom: 27%;
    left: 0%;
    display: inline-block;
    content: "";
}

.compare .compareList ._table:nth-child(2) h4:before{
    width: 36px;
    height: 45px;
    background: url(../img/dyc/dyc_compare_icon2.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;
}
.compare .compareList ._table:nth-child(3) h4:before{
    width: 40px;
    height: 37px;
    background: url(../img/dyc/dyc_compare_icon3.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;

}
.compare .compareList ._table:nth-child(4) h4:before{
    width: 34px;
    height: 40px;
    background: url(../img/dyc/dyc_compare_icon4.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;

}
.compare .compareList ._table:nth-child(5) h4:before{
    width: 41px;
    height: 37px;
    background: url(../img/dyc/dyc_compare_icon5.png) no-repeat;
    background-position: 0px 0px;
    background-size: cover;

}
.compare ._table dd p{
    display: table-cell;
    vertical-align: middle;
    line-height: 1.4em;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
}
.compare .ivr{
    padding: 3%;
    background-color: #FFf;
    text-align: center;
    border-radius: 10px;
    box-shadow: 6px 6px #B9D2DC;
}
.compare .ivr h3{
    display: inline-block;
    color: #093080;
    position: relative;
    font-size: 30px;
    font-size: clamp(2.4rem, 2.4vw, 3.0rem);
    z-index: 0;
}
.compare .ivr h3:after{
    position: absolute;
    top: 50%;
    left: -1%;
    display: inline-block;
    content: "";
    background-color: #E1E5EF;
    width: 100%;
    height: 25px;
    z-index: -1;
}
.compare .ivr p{
    line-height: 1.5em;
    font-size: 16px;
    font-size: 1.6rem;
}
.compare .ivr .ivrImg{
    width: 80%;
    margin: 0 auto;
}
.compare .ivr .ivrImg ._ivrImg_pc{
    display: block;
}
.compare .ivr .ivrImg ._ivrImg_sp{
    display: none;
}


/* qa */
.qa{padding: 130px 0 0;}
.qa h2{
    text-align: center;
}
.qa ul{
    display: flex;
    column-gap: 20px;
}
.qa ul li{
    border-radius: 10px;
    box-shadow: 6px 6px #E1E5EF;
    padding: 3%;
}
.qa ul li h5{
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.5em;
    margin-bottom: 20px;
}
.qa ul li h5 span{
    font-size: 30px;
    font-size: 3.0rem;
    display: block;
    color: #093080;
    margin-bottom: 20px;
}
.qa ul li p{
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6em;
    color: #6B6B6B;
}

/*contact*/
.contact{}
.contact h2{
    text-align: center;
    font-size: clamp(2.7rem, 3vw, 4rem);
}
.contact p{
    font-size: 30px;
    font-size: 3.0rem;
    text-align: center;
}
.contact .btn._digital{
    width: 70%;
}
.contact .btn._digital a{
    padding: 26px 0;
    font-size: 20px;
    font-size: 2rem;
}
.note{
    padding: 2%;
    font-size: 12px;
    font-size: 1.2rem;
    color: #6B6B6B;
}

/* 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: 12%;
}
.footer_inner .f-navList li{
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
}
.footer_inner .f-contact{
    width: 58%;
    min-width: 620px;
}
.footer_inner .f-contact ._btnList{
    max-width: 690px;
    
}
.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;
}

@media screen and (max-width: 1300px) {
    .footer_inner .f-contact ._btnList .fLeft .btn a.icn_dld_r:before{
        top: 15%;
        width: 89px;
        height: 54px;
    }
}
/* ====================================
  ここからスマホ幅
==================================== */

@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{
    }
    .kv__inner{
        max-width: 90%;
        padding: 60px 0 60px;
    }
    .kv__inner ._item{
        width: 80%;
    }
    .kv__inner ._item ._logo{
        max-width: 70%;
    }
    .kv__inner ._mainImg {
        max-width: 50%;
        top: 25%;
    }
    .kv__inner ._item ._list li{
        font-size: 20px;
        font-size: 2.0rem;
        margin-bottom: 10px;
    }
    .kv__inner ._item ._list{
        margin-bottom: 30px;
    }
    .kv__inner ._btnList{
        width: 100%;
    }
    .kv__inner ._btnList .btn{
        width: 100%;
    }
    .worries{
        padding-bottom: 0;
    }
    .worries ._list{
        display: block;
    }
    .worries ._list ._item {
        background: none;
        border: solid 3px #122a88;
        border-radius: 10px;
        margin-bottom: 30px;
        width: 94%;
        height: auto;
        display: flex;
        flex-direction: row-reverse;
    }
    .worries ._list ._item ._txt {
        padding: 0 3%;
    }
    .worries ._list ._item:nth-child(1),
    .worries ._list ._item:nth-child(2),
    .worries ._list ._item:nth-child(3){
        background: none;
    }
    .worries ._list ._item:nth-child(1) img,
    .worries ._list ._item:nth-child(2) img,
    .worries ._list ._item:nth-child(3) img {
        position: initial;
        width: 72px;
        height: 113px;
        margin-top: -40px;
    }
    .about ._info ul li{
        font-size: 25px;
        font-size: 2.5rem;
        padding: 10px 0 0 110px;
        margin-bottom: 20px;
    }
    .about ._info ul li img{
        width: 90px;
    }
    .service h2 span:before{
        width: 90px;
        height: 70px;
        padding-top: 20px;
    }
    .service ._info{
        width: 100%;
    }
    .service h3{
        font-size: 25px;
        font-size: 2.5rem;
    }
    .service._products ._list ._items dd ._highlight{
        text-align: left;
    }
    .service ._willscoin ._info dt{
        font-size: 25px;
        font-size: 2.5rem;
    }
    .service ._willscoin ._info dd{
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.5em;
    }
    .service ._copy{
        font-size: 25px;
        font-size: 2.5rem;
    }
    .service._manage ._admin ul li{
        font-size: 16px;
        font-size: 1.6rem;
    }
    .service._manage .btn._digital{
        width: 100%;
    }
    .guide._scroll{
        display: block;
    }

    .compare{
        width: 96%;
        margin-bottom: 30px !important;
    }
    .compare ._scroll .compareList{
        padding: 0 2%;
    }
    .contact p{
        font-size: 20px;
        font-size: 2.0rem;
    }
    .contact .btn._digital{
        width: 100%;
    }
    
    .footer_inner .f-contact{
        width: 100%;
        margin-bottom: 60px;
        min-width: 100%;
    }
    .footer_inner .f-contact ._btnList{
        max-width: none;
    }
    .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;}

    h2 {
        font-size: calc(1.25vw + 2.0rem);
    }
    .bg_style_b{
        padding: 30px 0; 
    }

    .kv{
        
    }
    .kv__inner {
        padding: 60px 0 30px;
    }
    .kv__inner ._info{
        font-size: 30px;
        font-size: 3.0rem;
    }
    .kv__inner ._info ._copymini {
        font-size: 16px;
        font-size: 1.6rem;
        padding-left: 20px;
    }
    .kv__inner ._info ._copymini:after{
        width: 16px;
        height: 19px;
        bottom: 3px;
    }
    .kv__inner ._item {
        width: 100%;
        margin: 0 auto;
    }
    .kv__inner ._item ._logo {
        max-width: 78%;
        margin-bottom: 30px !important;
    }
    .kv__inner ._item ._txt{
        font-size: 12px;
        font-size: 1.2rem;
    }
    .kv__inner ._item ._list{
        margin-bottom: 30px !important;
    }
    .kv__inner ._item ._list li {
        margin-bottom: 0;
        font-size: 16px;
        font-size: 1.6rem;
        padding-left: 25px;
    }
    .kv__inner ._item ._list li:after{
        top: 7px;
    }
    .kv__inner ._mainImg {
        top: 12%;
        right: -11%;
        max-width: 55%;
    }
    .kv__inner ._mainImg ._comments{
        bottom: -1%;
        right: 17%;
        font-size: 8px;
        font-size: 0.8rem;
    }
    .worries p{
        line-height: 1.5em;
        font-size: 2.5px;
        font-size: 2.5rem;
    }
    .worries ._list{
        display: block;
    }
    .worries ._list ._item {
        padding: 10px;
    }
    .worries ._list ._item ._txt {
        padding: 0 1% 0 5%;
    }
    .about{
        margin-bottom: 0;
    }
    .about h2 {
        font-size: calc(2.6vw + 1.0rem);
    }
    .about .about__inner{
        max-width: 90%;
        margin: 0 auto;
    }
    .about ._copy{
        font-size: clamp(2.2rem, 5.5vw, 2.7rem);
    }
    .about ._copy .txtExp_sp{
        line-height: 1.5em;
        font-size: 135%;
    }
    .about ._info ul{
        width: 100%;
        float: none;
        margin: 50px 0;
    }
    .about ._figure {
        width: 100%;
        position: initial;
    }
    .bg_style_b.stl_pricing {
        padding: 0 0 30px;
    }
    .service h2{
        margin: 0;
        text-align: center;
    }
    .service h2 span {
        position: relative;
        padding-left: 0;
        font-size: calc(3.4vw + 1.0rem);
        display: block;
        text-align: center;
        letter-spacing: 0;
    }
    .service h2 span:before{
        width: 47px;
        height: 41px;
        font-size: 20px;
        font-size: 2.0rem;
        padding-top: 6px;
        position: absolute;
        left: 44%;
        top: -50px;
    }
    .service ._info{
        text-align: left;
        margin-bottom: 40px !important;
    }
    .service h3 {
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 600;
    }
    .service._products ._list{
        display: block;
    }
    .service._products ._list dl{
        width: 100%;
        margin-bottom: 30px;
    }
    .service._products ._list ._items dd img{
        margin-bottom: 10px;
    }

    .service ._willscoin {
        display: block;
        padding: 5%;
    }
    .service ._willscoin ._info{
        width: 100%;
        margin: 0 0 20px;
    }
    .service ._willscoin ._info dt {
        font-size: 20px;
        font-size: 2.0rem;
    }
    .service ._willscoin ._info dd {
        font-size: 14px;
        font-size: 1.4rem;
    }
    .service ._willscoin ._coinImg{
        width: 80%;
        margin: 0 auto;
    }
    .service ._copy {
        font-size: 16px;
        font-size: 1.6rem;
        margin: 30px 0 !important;
    }
    .service ._copy span:before {
        width: 20px;
        height: 20px;
        top: 2px;
        left: -25px;
    }
    .service ._inner{
        padding-top: 70px;
    }
    .service._pricing ._planImg ._planImg_pc{
        display: none;
    }
    .service._pricing ._planImg ._planImg_sp{
        display: block;
    }

    .service._manage ._admin{
        display: block;
    }
    .service._manage ._admin ul,
    .service._manage ._admin ._adminImg{
        width: 90%;
    }
    .service._manage ._admin ul{
        padding-left: 10%;
    }
    .service._manage ._admin ul li{
        padding-left: 10px;
    }
    .service._manage ._admin ul li:before{
        top: 4px;
        left: -30px;
        width: 31px;
        height: 31px;
    }
    .service._manage .btn._digital{
        margin-bottom: 60px !important;
    }
    .service._manage .btn._digital a{
        padding: 20px 0;
        font-size: 16px;
        font-size: 1.6rem;
    }
    .compare .ivr{
        padding: 5% 3%;
    }
    .compare .ivr h3{
        line-height: 1.4em;
        text-align: center;
        font-size: 20px;
        font-size: 2.0rem;
        margin-bottom: 30px !important;
    }
    .compare .ivr h3:after{
        top: 74%;
        height: 20px;       
    }
    .compare .ivr p {
        line-height: 1.5em;
    }
    .compare .ivr .ivrImg ._ivrImg_pc{
        display: none;
    }
    .compare .ivr .ivrImg ._ivrImg_sp{
        display: block;
    }
    .qa{
        padding: 30px 0 0;
        margin-bottom: 30px !important;
    }
    .qa ul{
        display: block;
    }
    .qa ul li{
        margin-bottom: 30px;
    }
    .contact p{
        font-size: 16px;
        font-size: 1.6rem;
    }
    .contact .btn._digital {
        margin-bottom: 60px !important;
    }
    .contact .btn._digital a {
        padding: 20px 0;
        font-size: 16px;
        font-size: 1.6rem;
    }
    .note {
        margin-bottom: 60px !important;
    }
 



    .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;
    }
}