/* ------------------------------
General Styles
------------------------------ */
html {}

body {
  background: #fff;
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
  color: #000000;
  margin: 0;
  padding: 0;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  display: block;
}

p {
  font-size: 14px;
  line-height: 30px;
  color: #000000;
  margin: 0;
}

/* ----------------------------
メディアクエリ
------------------------------ */
/*
SPファーストで記述

幅599ｐｘ以下　スマホサイズ

@media screen and (min-width:600px) and (max-width:1024px)
幅600px以上1024ｐｘ以下　タブレットサイズ

@media screen and (min-width:1025px)
幅1025ｐｘ以上〜　PCサイズ--

@media screen and (max-height:768px)
高さ768ｐｘ以下〜　スマホ・タブレット横向きサイズ-- */
.sp {
  display: block !important;
}

.tab {
  display: none !important;
}

.pc {
  display: none !important;
}

.sp-tab {
  display: block !important;
}

.tab-pc {
  display: none !important;
}

@media screen and (min-width:600px) {
  .sp {
    display: none !important;
  }

  .tab {
    display: block !important;
  }

  .pc {
    display: none !important;
  }

  .sp-tab {
    display: block !important;
  }

  .tab-pc {
    display: block !important;
  }
}

@media screen and (min-width:1025px) {
  .sp {
    display: none !important;
  }

  .tab {
    display: none !important;
  }

  .pc {
    display: block !important;
  }

  .sp-tab {
    display: none !important;
  }

  .tab-pc {
    display: block !important;
  }
}

/* ------------------------------
Transition elsements
------------------------------ */
a, .btn {
  -webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

/* ------------------------------
Typography
------------------------------ */
a {
  display: inline-block;
  text-decoration: none;
  webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

h1 {
  font-size: 42px;
  font-weight: bold;
  color: white;
  margin: 0 auto;
}

h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  margin: 0 auto;
}

h3 {
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  margin: 0 auto;
}

h4 {
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  margin: 0 auto;
}

@media screen and (min-width:600px) {
  h1 {
    font-size: 60px;
    margin-top: 15px;
  }

  h2 {
    font-size: 28px;
    line-height: 42px;
  }

  h3 {
    font-size: 24px;
    line-height: 36px;
  }

  h4 {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ------------------------------
ボタン
------------------------------ */
/* -- 問い合わせ -- */
.request-btn {
  width: calc(100% - 40px);
  max-width: 380px;
  margin: 15px auto 0;
}

.request-btn a {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  box-sizing: border-box;
  color: white;
  background: linear-gradient(90deg, #EF8822, #F8A858);
  width: 100%;
  padding: 15px 0;
  text-align: center;
  position: relative;
  transition: all 1s linear;
}

.request-btn a:hover {
  background: linear-gradient(90deg, #F8A858, #EF8822);
}

.request-btn a span {
  font-weight: normal;
  margin: 0 5px;
}

.request-btn a::after {
  content: url(../images/arrow_w.svg);
  position: absolute;
  top: 12px;
  right: 3%;
  transition: all 0.3s linear;
}

.request-btn a:hover::after {
  right: 0.5%;
}

/* -- 導入事例 -- */
.info-btn {
  width: calc(100% - 80px);
  max-width: 380px;
  margin: 0 auto;
}

.info-btn a {
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  box-sizing: border-box;
  color: #2B4B88;
  width: 100%;
  padding: 15px 20px 15px 0;
  text-align: center;
  border: 1px solid #2B4B88;
  position: relative;
  transition: all 0.3s linear;
}

.info-btn a::after {
  content: url(../images/arrow_b.svg);
  position: absolute;
  top: 12px;
  right: 3%;
  transition: all 0.3s linear;
}

.info-btn a:hover::after {
  right: 0.5%;
}

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

  /* -- 問い合わせ -- */
  .request-btn {
    margin: 0 auto;
  }

  .request-btn a {
    font-size: 18px;
    line-height: 26px;
    padding: 20px 0;
  }

  .request-btn a::after {
    top: 15px;
  }

  /* -- 導入事例 -- */
  .info-btn {
    max-width: 380px;
  }

  .info-btn a {
    font-size: 18px;
    line-height: 26px;
    padding: 20px 20px 20px 0;
  }

  .info-btn a::after {
    top: 15px;
  }
}

/* ------------------------------
ページ内ジャンプ
------------------------------ */
.anchor {
  padding-top: 50px;
  margin-top: -50px;
}

@media screen and (min-width:600px) {
  .anchor {
    padding-top: 75px;
    margin-top: -75px;
  }
}

@media screen and (min-width:1025px) {
  .anchor {
    padding-top: 95px;
    margin-top: -95px;
  }
}

/* ------------------------------
Header
------------------------------ */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: white;
  z-index: 100;
}

.header_inner {
  position: relative;
  padding: 10px;
}

.header-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 201;
}

.header-logo img {
  width: auto;
  height: 30px;
}

.inquiry-btn {
  background: linear-gradient(45deg, #2741A2, #458ECC);
  border-radius: 50px;
  z-index: 201;
  position: absolute;
  top: 10px;
  right: 60px;
}

.inquiry-btn a {
  color: white;
  font-size: 12px;
  position: relative;
  padding: 6px 20px 6px 40px;
}

.inquiry-btn a span::before {
  content: url(../images/icon-mail.svg);
  position: absolute;
  top: 9px;
  left: 20px;
}

@media screen and (min-width:600px) {
  .header {
    height: 75px;
  }

  .header_inner {
    padding: 20px 30px;
  }

  .header-logo {
    top: 20px;
    left: 30px;
  }

  .header-logo img {
    height: 35px;
  }

  .inquiry-btn {
    position: absolute;
    top: 20px;
    right: 100px;
  }

  .inquiry-btn a {
    font-size: 14px;
    padding: 8px 22px 8px 54px;
  }

  .inquiry-btn a span::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 18px;
    background-image: url(../images/icon-mail.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
  }
}

@media screen and (min-width:1025px) {
  .header {
    height: 95px;
    background: rgba(255, 255, 255, 0.9);
  }

  .header_inner {
    display: flex;
    justify-content: space-between;
    padding: 0;
  }

  .header-logo {
    position: unset;
    order: 1;
    padding: 25px;
  }

  .header-logo img {
    height: 45px;
  }

  .inquiry-btn {
    position: unset;
    order: 3;
    border-radius: 0;
  }

  .inquiry-btn:hover {
    background: linear-gradient(90deg, #2741A2, #458ECC);
  }

  .inquiry-btn {
    height: 95px;
  }

  .inquiry-btn a {
    padding: 55px 30px 20px 30px;
  }

  .inquiry-btn a span::before {
    width: 40px;
    height: 30px;
    top: 20px;
    left: 35%;
  }

  .header_inner .menu {
    order: 2;
  }
}

/* ------------------------------
ハンバーガーメニュー
------------------------------ */
/* --ボタン変化-- */
.openbtn {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 101;
  margin: 0;
  float: right;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  right: 8px;
  height: 3px;
  border-radius: 2px;
  background: #4B4B4B;
  width: 24px;
}

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

.openbtn span:nth-of-type(2) {
  top: 13px;
}

.openbtn span:nth-of-type(3) {
  top: 22px;
}

.openbtn.active span:nth-of-type(1) {
  top: 6px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 24px;
}

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

.openbtn.active span:nth-of-type(3) {
  top: 18px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 24px;
}

/* --メニュー内容-- */
.menu {
  position: fixed;
  top: 50px;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform: translateX(100vw);
  transition: transform .3s linear;
  background-color: white;
  overflow-y: auto;
}

.menu.is-active {
  transform: translateX(0);
}

.menu-item {
  width: 100%;
  padding: 0 10px;
  text-align: left;
  box-sizing: border-box;
  border-bottom: solid 1px #D6D6D6;
  position: relative;
  display: table;
}

.menu div:first-child {
  border-top: solid 1px #D6D6D6;
}

.menu-item a {
  color: black;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
  padding: 20px 0;
}

.menu-item a span {
  position: absolute;
  right: 10px;
}

.menu-item a span::after {
  display: inline-block;
  width: 10px;
  height: 15px;
  margin: 0;
  background-image: url(../images/arrow_open.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}

.menu-item-kiyaku {
  padding: 0;
}

.menu-item-kiyaku p {
  color: black;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  padding: 10px;
}

.menu-item-kiyaku ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #eff9ff;
}

.menu-item-kiyaku ul li a {
  border-top: dotted 1px #D6D6D6;
  padding: 20px 10px;
  width: 100%;
  display: inline-block;
}

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

  /* --ボタン変化-- */
  .openbtn span {
    right: 0px;
    width: 40px;
  }

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

  .openbtn span:nth-of-type(2) {
    top: 17px;
  }

  .openbtn span:nth-of-type(3) {
    top: 30px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 10px;
    width: 40px;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 22px;
    width: 40px;
  }

  /* --メニュー内容-- */
  .menu {
    top: 75px;
  }

  .menu-item {
    padding: 0 20px;
  }

  .menu-item-kiyaku {
    padding: 0;
  }

  .menu-item a span {
    right: 20px;
  }

  .menu-item-kiyaku p {
    padding: 10px 20px;
  }

  .menu-item-kiyaku ul li a {
    padding: 20px;
  }
}

/* --PC版はハンバーガーメニューがなくなる-- */
@media screen and (min-width:1025px) {
  .openbtn {
    display: none;
  }

  .menu {
    transform: none;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    background-color: transparent;
    display: flex;
    padding-right: 145px;
  }

  .menu-item {
    width: auto;
    padding: 0 30px 0 0;
    border-bottom: none;
    display: inline;
  }

  .menu div:first-child {
    border-top: none;
  }

  .menu-item a {
    display: block;
    padding: 35px 0 0;
  }

  .menu-item a:hover {
    color: #2B4B88;
    border-bottom: 1px solid #2B4B88;
  }

  .menu-item a span {
    position: unset;
  }

  .menu-item a span::after {
    display: none;
  }

  .menu-item-kiyaku ul {
    display: none;
  }

  .menu-item-kiyaku p {
    display: block;
    padding: 35px 0 0;
  }

  .menu-item-kiyaku {
    padding-bottom: 105px;
  }

  .menu-item-kiyaku:hover p {
    color: #2B4B88;
    cursor: pointer;
    webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  .menu-item-kiyaku:hover ul {
    display: block;
    webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }

  .menu-item-kiyaku {
    position: relative;
    z-index: 3;
  }

  .menu-item-kiyaku ul {
    z-index: 3;
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: 215px;
    border-radius: 5px;
  }

  .menu-item-kiyaku ul::before {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(242, 237, 233, 0);
    border-right: 9px solid transparent;
    border-bottom: 14px solid #eff9ff;
    border-left: 9px solid transparent;
    top: -14px;
    left: 85%;
  }

  .menu-item-kiyaku ul li a {
    font-size: 14px;
    letter-spacing: -0.02em;
    z-index: 3;
    padding: 10px 10px 8px;
    box-sizing: border-box;
    border-top: none;
  }

  .menu-item-kiyaku ul li:nth-child(2) a {
    border-top: dotted 1px #D6D6D6;
  }

  .menu-item-kiyaku:hover ul li a:hover {
    border-bottom: none;
  }
}

/* ------------------------------
hello
------------------------------ */
.hello-area {
  margin-top: 50px;
  width: 100%;
  height: auto;
  position: relative;
}

.hello-area:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 68.75vw;
  background-image: url(../images/mainimage.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.hello-area-wrapper .txtbox {
  padding: 75vw 20px 30px;
  background: linear-gradient(90deg, #2741A2, #458ECC);
}

.hello-area-wrapper .request-btn a {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, .25);
}

.gray-back {
  text-align: center;
  margin: 0 0 20px;
}

.gray-back .lead-txt {
  font-size: 20px;
  color: white;
  display: inline;
  border-bottom: 1px solid white;
}

.whitebg-txt {
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: white;
}

.hello-area .copy {
  position: absolute;
  top: 43.75vw;
  left: 10px;
  width: 50%;
}

@media screen and (min-width:600px) {
  .hello-area {
    margin-top: 75px;
  }

  .hello-area:before {
    height: 58.333vw;
  }

  .hello-area-wrapper .txtbox {
    padding: 58.333vw 0 50px;
  }

  .gray-back {
    margin: 40px 0 30px;
  }

  .gray-back .lead-txt {
    font-size: 30px;
  }

  .whitebg-txt {
    font-size: 14px;
    line-height: 28px;
    margin: 0 20px 30px;
  }

  .hello-area .copy {
    top: 41.667vw;
    width: 43%;
  }
}

@media screen and (min-width:1025px) {
  .hello-area {
    margin-top: 95px;
    background: linear-gradient(90deg, #458ECC 0%, #2741A2 0%, #458ECC 70%, #2741A2 70%, white 25%, white 100%);
    width: 100%;
    height: 572px;
  }

  .hello-area::before {
    right: 0;
    width: 60%;
    height: 520px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  }

  .hello-area-wrapper {
    position: relative;
  }

  .hello-area-wrapper .whitebox {
    width: 40%;
    height: 80px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
  }

  .hello-area-wrapper .txtbox {
    width: 370px;
    position: absolute;
    top: 130px;
    right: 65%;
    padding: 0;
    background: transparent;
  }

  .gray-back {
    margin: 0 0 15px;
  }

  .whitebg-txt {
    text-align: left;
    line-height: 35px;
    padding: 0;
    margin: 0;
  }

  .whitebg-txt span {
    background: linear-gradient(transparent 0, #2B4B88 0);
    padding: 5px 25px;
  }

  .hello-area-wrapper .request-btn {
    margin: 30px 0 0;
  }

  .hello-area .copy {
    width: 40%;
    top: 350px;
    right: 0;
    left: auto;
  }
}

/* ------------------------------
  ロゴスライダー
------------------------------ */
.companylogo-list {
  width: 100%;
  height: 100px;
  pointer-events: none;
  text-align: center;
}

.companylogo-list .logoslide {
  width: 100%;
  height: 100px;
  position: relative;
  background: url(../images/logoslide.png) repeat-x 0;
  background-size: auto 100%;
  animation: bg-slider 46s linear infinite;
}

@keyframes bg-slider {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -3060px 0;
  }
}

@media screen and (min-width:600px) {
  .companylogo-list {
    height: 180px;
  }

  .companylogo-list .logoslide {
    height: 180px;
  }
}

/* ------------------------------
導入事例
------------------------------ */
.case-study {
  width: 100%;
  background-image: url(../images/bg_case.png);
  background-repeat: no-repeat;
  background-size: auto 230px;
  background-position: top center;
}

.case-study-txtbox {
  text-align: center;
}

.case-study-txtbox .lead-txt {
  padding: 5px 25px;
  margin: 30px 0 0;
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #2741A2, #458ECC);
}

.case-study-txtbox .lead-txt p {
  color: white;
}

.case-study-txtbox .lead-txt span {
  font-weight: bold;
  margin: 0 5px;
}

.case-study-txtbox .lead-txt p::before {
  position: absolute;
  top: 50%;
  left: 10px;
  display: inline-block;
  content: '';
  width: 13px;
  height: 1px;
  background-color: white;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.case-study-txtbox .lead-txt p::after {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  content: '';
  width: 13px;
  height: 1px;
  background-color: white;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.case-study-txtbox h2 {
  margin: 30px 0 45px;
}

/* -- カード -- */
.case-study .slider {
  margin: -30px auto 0;
  width: calc(100% - 30px);
  max-width: 300px;
}

.case-study .slider .contentbox {
  background-color: white;
  padding: 30px 30px 15px;
  border-radius: 5px;
}

.case-study .slick-list {
  box-shadow: 0px 3px 6px rgb(0 0 0 / 25%);
}

.case-study-slide .company-logo {
  margin: 0 auto;
  text-align: center;
}

.case-study-slide .company-logo img {
  width: auto;
  max-height: 40px;
  margin: 0 auto;
}

.case-study-slide .text-wrapper {
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid #F4F4F4;
  /* --border-bottom: 1px solid #F4F4F4;-- */
}

.company-lead-txt {
  line-height: 24px;
  font-weight: bold;
  height: 100px;
  border-bottom: 1px solid #F4F4F4;
}

.company-name {
  font-size: 12px;
  line-height: 18px;
  margin: 15px 0 0;
}

.company-info {
  line-height: 24px;
}

/* --  font-size: 10px;
  color: #717171;
}-- */
/* -- slickみため -- */
.slick-dots {
  bottom: -45px !important;
}

.slick-dots li button:before {
  font-size: 30px !important;
  line-height: 30px !important;
}

.slide-arrow {
  position: absolute;
  bottom: -60px;
  margin-top: 0;
}

.prev-arrow {
  display: block;
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: white;
  border: none;
  cursor: pointer;
}

.prev-arrow::after {
  content: url(../images/icon-prev.svg);
}

.next-arrow {
  display: block;
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: white;
  border: none;
  cursor: pointer;
}

.next-arrow::after {
  content: url(../images/icon-next.svg);
}

@media screen and (min-width:600px) {
  .case-study {
    background-size: auto 350px;
  }

  .case-study-txtbox .lead-txt {
    padding: 10px 50px;
    margin: 0;
  }

  .case-study-txtbox .lead-txt p {
    font-size: 24px;
  }

  .case-study-txtbox .lead-txt p::before {
    width: 30px;
    height: 2px;
  }

  .case-study-txtbox .lead-txt p::after {
    width: 30px;
    height: 2px;
  }

  .case-study-txtbox h2 {
    margin: 50px 0 55px;
  }

  /* -- カード -- */

  .case-study-slide .text-wrapper {
    padding: 30px 0 0;
    margin: 30px 0 0;
  }
}

@media screen and (min-width:1025px) {
  .case-study {
    background-size: 100% 415px;
  }

  .case-study .slider {
    display: flex;
    justify-content: space-between;
    width: 750px;
    max-width: none;
    margin-bottom: 50px;
  }

  /* -- カード -- */
  .case-study .slider .contentbox {
    padding: 50px 20px 15px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 25%);
  }

  .case-study .slider .contentbox:hover {
    box-shadow: 5px 5px 20px rgb(0 0 0 / 30%);
    transition: 0.3s;
  }

  .case-study-slide .text-wrapper {
    width: 195px;
  }
}

/* ------------------------------
送金方法のラインナップ
------------------------------ */
.lineup {
  margin: 0 20px 50px;
}

.lineup .request-btn {
  margin-top: 30px;
}

.lineup-wrapper h2 {
  position: relative;
  text-align: center;
  margin: 50px auto;
}

.lineup-wrapper h2::after {
  position: relative;
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  display: inline-block;
  width: 60px;
  height: 4px;
  background-color: #2B4B88;
  transform: translateX(-50%);
}

.lineup-wrapper .lineup-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 480px;
}

.lineup-wrapper .lineup-box p {
  text-align: center;
  font-weight: bold;
  line-height: 24px;
  margin: 0 10px 20px 0;
}

.lineup-wrapper .lineup-box p:nth-child(2n) {
  margin: 0 0 20px 10px;
}

.lineup-wrapper .lineup-box .box {
  width: calc(50% - 10px);
  height: auto;
  position: relative;
}

.lineup-box p::before {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  padding-bottom: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
}

.lineup-box .lineup1::before {
  content: '';
  background-image: url(../images/icon-bank.svg);
}

.lineup-box .lineup2::before {
  background-image: url(../images/icon-CVS.svg);
}

.lineup-box .lineup3::before {
  background-image: url(../images/icon-ATM.svg);
}

.lineup-box .lineup4::before {
  background-image: url(../images/icon-giftcard.svg);
}

.lineup-box .lineup5::before {
  background-image: url(../images/icon-shiharai.svg);
}

@media screen and (min-width:600px) {
  .lineup {
    margin: 0 20px 100px;
  }

  .lineup .request-btn {
    margin-top: 55px;
  }

  .lineup-wrapper .lineup-box {
    max-width: 540px;
  }

  .lineup-wrapper h2 {
    margin: 50px auto 70px;
  }

  .lineup-wrapper .lineup-box p {
    margin: 0 20px 40px 0;
  }

  .lineup-wrapper .lineup-box p:nth-child(2n) {
    margin: 0 20px 40px 0;
  }

  .lineup-wrapper .lineup-box p:nth-child(3n) {
    margin: 0 0 40px 0px;
  }

  .lineup-wrapper .lineup-box .box {
    width: calc(34.5% - 20px);
  }

  .lineup-box p::before {
    width: 150px;
    height: 150px;
  }
}

@media screen and (min-width:1025px) {
  .lineup-wrapper h2 {
    margin: 0 0 70px;
  }

  .lineup-wrapper .lineup-box {
    max-width: 1000px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .lineup-wrapper .lineup-box .box {
    width: 100%;
  }

  .lineup-wrapper .lineup-box p {
    margin: 0;
  }

  .lineup-box p::before {
    padding-bottom: 25px;
  }
}

/* ------------------------------
送金課題
------------------------------ */
.problem {
  margin: 0 0 50px 0;
}

.problem .problem-txtbox {
  background-color: #FAFAFA;
  padding: 30px 0 50px;
  margin: 50px auto;
}

.problem .problem-txtbox h2 {
  text-align: center;
  position: relative;
}

.problem .problem-txtbox h2::after {
  position: relative;
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  display: inline-block;
  width: 60px;
  height: 4px;
  background-color: #2B4B88;
  transform: translateX(-50%);
}

.problem-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.problem-content {
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 30px;
  padding-bottom: 30px;
  text-align: center;
  border-bottom: 1px solid #f4f4f4;
}

.problem-container div:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.problem-content img {
  max-width: 280px;
  height: auto;
  margin: 30px 0;
}

.problem-content p {
  text-align: left;
}

@media screen and (min-width:600px) {
  .problem-content {
    max-width: 540px;
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .problem-content img {
    max-width: 300px;
    margin: 50px 0;
  }
}

@media screen and (min-width:1025px) {
  .problem {
    background: linear-gradient(0deg, #FFFFFF 0%, #FFFFFF 40%, #FAFAFA 40%, #FAFAFA 100%);
    margin: 0 0 80px 0;
  }

  .problem-container {
    width: 1000px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
  }

  .problem-content {
    max-width: none;
    margin: 0px;
    padding: 0px;
    border-bottom: none;
  }

  .problem-content img {
    max-width: 275px;
  }

  .problem-content p {
    width: 300px;
    margin: 0 auto;
  }
}

/* ------------------------------
サービスの特長
------------------------------ */
.solution .solution-txtbox {
  text-align: center;
}

.solution .request-btn {
  width: calc(100% - 80px);
  margin: 50px auto;
}

.solution .solution-txtbox h2 {
  position: relative;
  display: inline-block;
  margin: 80px 0 20px;
  text-align: center;
  color: #2B4B88;
}

.solution .solution-txtbox h2:before {
  content: '';
  position: absolute;
  left: 50%;
  top: -90px;
  display: inline-block;
  width: 4px;
  height: 80px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: linear-gradient(0deg, #467AEE, #67BADB, #E6F3FF, #FFFFFF);
}

.solution .wrapper1 {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 20%, #F2F7FA 20%, #F2F7FA 100%);
  padding: 0 0 25px 0;
}

.solution .wrapper2 {
  background: #F2F7FA;
  padding: 25px 0;
}

.solution .wrapper3 {
  background: linear-gradient(0deg, #FFFFFF 0%, #FFFFFF 10%, #F2F7FA 10%, #F2F7FA 100%);
  padding: 25px 0 0 0;
}

/* コンテンツ */
.solution-content {
  width: calc(100% - 40px);
  max-width: 480px;
  height: auto;
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 5px 5px 15px rgb(0 0 0 / 20%);
}

.solution-content .solution-img {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.solution-content .solution-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.solution-content .solution-box {
  background: white;
  padding: 15px 15px 30px;
  margin: 0;
}

.solution-content .solution-box p {
  margin: 20px 0 0 0;
}

.solution-content .solution-box p a {
  color: #2B4B88;
  text-decoration: underline;
}

.solution-content .solution-box p span {
  font-size: 10px;
}

.solution-content .solution-box h3 {
  text-align: center;
  position: relative;
  margin-top: 40px;
}

.solution-content .solution-box h3::before {
  display: block;
  width: 34px;
  height: 20px;
  margin: 0;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  position: absolute;
  top: -30px;
  left: 45%;
}

.content1 .solution-box h3::before {
  background-image: url(../images/01.svg);
}

.content2 .solution-box h3::before {
  background-image: url(../images/02.svg);
}

.content3 .solution-box h3::before {
  background-image: url(../images/03.svg);
}

@media screen and (min-width:600px) {
  .solution-bg {
    background: linear-gradient(0deg, #FFFFFF 0%, #FFFFFF 10%, #F2F7FA 10%, #F2F7FA 100%);
  }

  .solution .request-btn {
    margin: 85px auto 100px;
  }

  .solution .solution-txtbox h2 {
    margin: 100px 0 50px;
  }

  .solution .solution-txtbox h2:before {
    top: -150px;
    height: 130px;
  }

  .solution-wrapper {
    height: 470px;
    position: relative;
    padding: 0 !important;
  }

  .solution-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    width: 85%;
    height: 470px;
  }

  .solution .wrapper1 {
    margin-top: 50px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, #F2F7FA 50%, #F2F7FA 100%);
  }

  .solution .wrapper2 {
    margin-top: 60px;
  }

  .solution .wrapper3 {
    margin-top: 130px;
    background: linear-gradient(0deg, #FFFFFF 0%, #FFFFFF 50%, #F2F7FA 50%, #F2F7FA 100%);
  }

  .solution .wrapper1::before {
    padding: 0;
    right: 0;
    background-image: url(../images/solution_pict_1.png);
  }

  .solution .wrapper2::before {
    padding: 35px 0;
    left: 0;
    background-image: url(../images/solution_pict_2.png);
  }

  .solution .wrapper3::before {
    padding: 35px 0 0 0;
    right: 0;
    background-image: url(../images/solution_pict_3.png);
  }

  /* コンテンツ */
  .solution-content {
    width: 540px;
    margin: 0;
  }

  .solution-content .solution-box {
    padding: 40px 30px;
  }

  .content2 {
    float: right;
  }

  .solution-content .solution-box p {
    margin: 30px 0 0 0;
  }

  .solution-content .solution-box h3 {
    text-align: left;
    margin: 0 0 0 60px;
  }

  .solution-content .solution-box h3::before {
    width: 50px;
    height: 30px;
    top: auto;
    left: -60px;
  }
}

@media screen and (min-width:1025px) {
  .solution-wrapper::before {
    width: 64%;
  }

  .solution .wrapper1 {
    margin-bottom: 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 75%, #F2F7FA 75%, #F2F7FA 100%);
  }

  .solution .wrapper3 {
    background: linear-gradient(0deg, #FFFFFF 0%, #FFFFFF 25%, #F2F7FA 25%, #F2F7FA 100%);
  }

  .solution .wrapper2 {
    margin-bottom: 170px;
  }

  .solution-content {
    width: 1040px;
    max-width: none;
    box-shadow: none;
    margin: 0 auto;
  }

  .solution-content .solution-box {
    width: 540px;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 20%);
  }

  .content2 {
    float: none;
  }

  .content1 .solution-box {
    position: absolute;
    left: 0;
  }

  .content2 .solution-box {
    position: absolute;
    right: 0;
  }

  .content3 .solution-box {
    position: absolute;
    left: 0;
  }

  .solution-content .solution-box h3 {
    margin: 0 0 0 70px;
  }

  .solution-content .solution-box h3::before {
    width: 60px;
    height: 35px;
    left: -70px;
  }

  .solution-content .illust {
    position: absolute;
    width: auto;
    height: 150px;
  }

  .content1 .illust {
    top: 280px;
    left: 60px;
  }

  .content2 .illust {
    top: 330px;
    right: 100px;
  }

  .content3 .illust {
    top: 310px;
    left: 200px;
  }
}

/* ------------------------------
ご利用までの流れ
------------------------------ */
.flowtouse {
  background-color: #FAFAFA;
  margin: 50px 0;
  padding-bottom: 10px;
}

.flowtouse h2 {
  text-align: center;
  background: linear-gradient(0deg, #FFFFFF 0%, #FFFFFF 50%, #FAFAFA 50%, #FAFAFA 100%);
}

.flowtouse .request-btn {
  width: calc(100% - 80px);
  margin: 30px auto;
}

.flowtouse-wrapper {
  background-color: white;
  padding: 30px 20px 10px;
}

.step-box {
  display: flex;
  flex-direction: column;
  margin: 0 0 30px 0;
}

.step-box .step {
  width: 100%;
  height: auto;
  text-align: center;
  background-color: #2B4B88;
  position: relative;
}

.step-box .step::after {
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left-width: 6px;
  border-right-width: 6px;
  margin-left: -6px;
  border-top-color: #2B4B88;
  top: 100%;
  left: 50%;
}

.step-box .step p {
  font-family: din-2014, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  color: white;
  padding: 7px 30px;
}

.step-text-box {
  margin-top: 20px;
}

.step-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.ex span {
  color: #2B4B88;
  margin-right: 5px;
}

@media screen and (min-width:600px) {
  .flowtouse {
    padding-bottom: 50px;
  }

  .flowtouse .request-btn {
    margin: 50px auto 0;
  }

  .flowtouse-wrapper {
    padding: 30px;
  }

  .flowtouse-box {
    display: block;
    background-image: url(../images/gradation_bar.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 135px 0;
  }

  .step-box {
    flex-direction: initial;
    justify-content: space-between;
  }

  .step-box .step {
    width: 100px;
    height: 40px;
  }

  .step-box .step::after {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 13px solid #2B4B88;
    border-right: 13px solid transparent;
    margin-left: 0px;
    top: 14px;
    left: 100%;
  }

  .step-box .step p {
    padding: 10px 30px;
  }

  .step-text-box {
    width: calc(100% - 220px);
    margin-top: 0;
    position: relative;
  }

  .step-text-box ::before {
    display: block;
    width: 70px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    background-image: url(../images/dot.svg);
    position: absolute;
    top: 10px;
    left: -79px;
  }

  .step-title {
    font-size: 18px;
    text-align: left;
    margin-bottom: 10px;
  }

  .ex span {
    margin: 0 5px 0 10px;
  }
}

@media screen and (min-width:1025px) {
  .flowtouse {
    padding-bottom: 60px;
  }

  .flowtouse h2 {
    width: 1040px;
    margin: 0 auto;
  }

  .flowtouse-wrapper {
    width: 1040px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 50px 35px 50px 40px;
  }

  .flowtouse-box {
    background-position: 160px 0;
  }

  .step-box .step {
    width: 140px;
  }

  .step-text-box {
    width: calc(100% - 245px);
  }

  .flowtouse .request-btn {
    margin: 60px auto 0;
  }
}

/* ------------------------------
Q&A
------------------------------ */
.qa_wrapper {
  padding: 0 0 50px 0;
}

.qa_wrapper .qa-txtbox {
  text-align: center;
  margin: 0 0 50px 0;
}

.qa_wrapper .qa-txtbox h2 {
  text-align: center;
  position: relative;
}

.qa_wrapper .qa-txtbox h2::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  display: inline-block;
  width: 60px;
  height: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #2B4B88;
}

.qa-list dl {
  position: relative;
  margin: 0;
  margin: 0 10px;
  padding: 20px 40px 20px 10px;
  cursor: pointer;
  border-bottom: 1px solid #D6D6D6;
}

.qa-list dl:first-child {
  border-top: 1px solid #D6D6D6;
}

.qa-list dl::before {
  position: absolute;
  top: 22px;
  right: 10px;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  border-top: 3px solid #656565;
  border-right: 3px solid #656565;
}

.qa-list .open::before {
  top: 28px;
  transform: rotate(-45deg);
  border-top: 3px solid #656565;
  border-right: 3px solid #656565;
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 0 0 0 25px;
  font-size: 14px;
  line-height: 30px;
}

.qa-list dl dt::before {
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  position: absolute;
  left: 0;
  display: block;
  content: 'Q';
  color: #70AAEF;
}

.qa-list dl dd::before {
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  position: absolute;
  left: 0;
  display: block;
  content: 'A';
  color: #FC866A;
}

.qa-list dl dd {
  position: relative;
  display: none;
  height: auto;
  margin: 20px 0 0;
  padding: 0 0 0 25px;
  font-size: 14px;
  line-height: 30px;
  width: 100%;
}

@media screen and (min-width:600px) {
  .qa_wrapper {
    padding: 0 0 100px 0;
  }

  .qa_wrapper .qa-txtbox {
    margin: 0 0 70px 0;
  }
}

@media screen and (min-width:1025px) {
  .qa_wrapper .qa-txtbox {
    margin: 40px 0 70px 0;
  }

  .qa-list {
    width: 1040px;
    margin: 0 auto;
  }

  .qa-list dl {
    margin: 0;
  }
}

/* ------------------------------
footer
------------------------------ */
footer {
  position: absolute;
  width: 100%;
}

.footer-wrapper {
  background-color: #2B4B88;
  padding: 30px 0;
}

.footer-wrapper .copy {
  text-align: center;
  color: white;
}

.footer-wrapper .request-btn {
  margin-top: 30px;
  width: calc(100% - 80px);
}

.footer-nav-wrapper {
  background-color: #000000;
}

.footer-nav {
  margin: 0;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footer-nav li {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.footer-nav li:last-child {
  margin-bottom: 0;
}

.footer-nav li a {
  color: white;
}

.footer-nav .footer-nav-inner ul {
  margin: 0;
  padding: 0;
}

.footer-nav .footer-nav-inner ul li {
  display: block;
}

@media screen and (min-width:600px) {
  .footer-wrapper {
    padding: 50px 0;
  }

  .footer-wrapper .request-btn {
    margin-top: 40px;
  }
}

@media screen and (min-width:1025px) {
  .footer-nav {
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: 0 auto;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer-nav li {
    font-size: 14px;
    font-weight: bold;
  }

  .footer-nav .footer-nav-inner p {
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    margin: 0 0 10px;
  }

  .footer-nav .footer-nav-inner ul li {
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    line-height: 1;
    letter-spacing: -0.02em;
  }
}

/* ----------------------------
個別ページ
------------------------------ */
/* タイトル */
.info-ttl {
  margin-top: 50px;
  padding: 20px;
}

.info-ttl h2 {
  color: #2B4B88;
  margin-bottom: 20px;
}

.info-ttl p {
  line-height: 24px;
}

/* 画像 */
.info-img {
  margin: 0 20px;
}

.info-img img {
  width: 100%;
}

.info-img p {
  font-size: 10px;
  line-height: 15px;
  padding: 10px 0 0;
}

/* 企業情報 */
.company-info-wrapper {
  margin: 20px 20px 30px;
  padding: 30px 20px;
  border: 2px solid #F4F4F4;
}

.company-info-wrapper .company-logo {
  text-align: center;
  padding: 0 0 30px 0;
  border-bottom: 1px solid #F4F4F4;
}

.company-info-wrapper .company-logo img {
  height: 50px;
  width: auto;
}

.company-info-wrapper .company-type {
  padding: 20px 0;
  border-bottom: 1px solid #F4F4F4;
}

.company-info-wrapper .staff {
  padding: 20px 0;
  margin: 0 0 20px;
  border-bottom: 1px solid #F4F4F4;
}

.company-info-wrapper p span {
  margin-right: 5px;
}

/* 本文 */
.info-txt {
  margin: 0 20px;
}

.info-txt .gray-back {
  padding: 20px;
  margin: 20px 0;
  background-color: #FAFAFA;
  font-weight: bold;
  text-align: left;
}

.info-txt .end {
  margin: 30px 0 0;
}

.info-txt .txt-ttl {
  margin: 20px 0;
  position: relative;
  padding-left: 15px;
  font-weight: bold;
}

.info-txt .txt-ttl::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 20px;
  background: linear-gradient(0deg, #2741A2, #458ECC);
  position: absolute;
  top: 5px;
  left: 0;
}

.info-txt .note {
  font-size: 10px;
  line-height: 15px;
  margin-top: 10px;
}

.info-txt img {
  margin: 20px 0;
  width: 100%;
}

.side-pictbox {
  display: flex;
  flex-direction: column;
}

.info-page .info-btn {
  width: calc(100% - 40px);
  margin: 60px auto;
}

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

  /* タイトル */
  .info-ttl {
    margin-top: 75px;
    padding: 40px 20px 20px;
  }

  /* 企業情報 */
  .company-info-wrapper {
    margin: 50px 20px;
  }

  .company-info-wrapper .company-logo img {
    height: 60px;
  }

  /* 本文 */
  .info-txt {
    margin: 0 20px;
  }

  .info-txt .gray-back {
    margin: 40px 0;
  }

  .info-txt .end {
    margin: 40px 0 0;
  }

  .info-txt .txt-ttl {
    margin: 40px 0;
  }

  .info-txt img {
    margin: 30px 0;
  }

  .side-pictbox {
    display: flex;
    flex-direction: row;
  }

  .side-pictbox img {
    max-width: 50%;
    height: 100%;
    margin: 0 30px;
  }
}

@media screen and (min-width:1025px) {
  .company-info-page {
    width: 1000px;
    margin: 0 auto;
  }

  /* タイトル */
  .info-ttl {
    margin: 140px auto 50px;
    padding: 0px;
    width: 1000px;
  }

  .info-ttl h2 {
    margin-bottom: 10px;
  }

  /* 画像 */
  .info-img {
    margin: 0;
  }

  /* 企業情報 */
  .company-info-wrapper {
    margin: 0;
    padding: 40px 20px;
  }

  .company-info-wrapper .company-logo {
    padding: 0 0 40px 0;
  }

  .company-info-wrapper .company-logo img {
    height: 60px;
  }

  /* 本文 */
  .info-txt {
    margin: 50px 0 100px;
  }

  .info-txt .gray-back {
    margin: 0;
  }

  .info-txt .end {
    margin: 50px 0 0;
  }

  .info-txt .txt-ttl {
    margin: 50px 0 30px;
  }

  .info-page .info-btn {
    margin: 50px auto 100px;
  }
}

/* ------------------------------
個別ページ一覧
------------------------------ */
.content-list-ttl {
  margin: 50px auto;
  padding: 30px 20px;
  text-align: center;
  background-image: url(../images/bg_case.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: top center;
}

.content-list-ttl h2 {
  margin: 0 0 20px 0;
}

.content-list-ttl p {
  line-height: 24px;
}

.content-list {
  margin: 0 auto 20px;
}

.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-wrapper .contentbox {
  max-width: 240px;
  background-color: white;
  padding: 30px 30px 15px;
  margin: 0 0 50px;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 25%);
}

.content-wrapper .contentbox:hover {
  box-shadow: 5px 5px 20px rgb(0 0 0 / 30%);
  transition: 0.3s;
}

@media screen and (min-width:600px) {
  .content-list-ttl {
    margin: 75px auto;
    padding: 40px 0;
    background-size: 100% auto;
  }

  .content-list {
    margin-bottom: 50px;
  }

  .content-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .content-wrapper .contentbox {
    max-width: 300px;
    background-color: white;
    padding: 30px 30px 15px;
    margin: 0 0 50px;
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 25%);
  }
}

@media screen and (min-width:1025px) {
  .content-list-ttl {
    margin: 115px auto 100px;
    background-size: 100% auto;
    background-position: center center;
  }

  .content-wrapper {
    max-width: 1000px;
    padding: 0 20px;
  }

  .content-wrapper .contentbox .text-wrapper {
    width: auto;
    margin: 30px auto 0;
  }
}

/* ------------------------------
電子決済等代行業にかかる利用者に対する説明等
------------------------------ */
.net-regulation-page {
  margin-top: 50px;
}

.net-regulation-page .net-regulation {
  width: calc(100% - 20px);
  max-width: 560px;
  margin: 0 auto 60px;
}

.net-regulation-page .headline {
  padding: 20px 0;
  margin: 0 0 30px 0;
  background: linear-gradient(45deg, #2B4B88, #213966);
  background: ;
}

.net-regulation-page .headline h1 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 auto;
  text-align: center;
  width: calc(100% - 20px);
}

.net-regulation h2 {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 30px;
}

/* --guidelines-- */
.net-regulation .guidelines {
  margin: 0 0 20px;
}

.net-regulation .guidelines h3 {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 5px;
}

.net-regulation .guidelines a {
  color: #FDA40F;
  text-decoration: underline;
  font-size: 14px;
  line-height: 1.5;
}

.net-regulation .guidelines .url-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  padding: 20px 0 0 0;
  margin: 10px 0 0 0;
}

.net-regulation .guidelines .url-wrapper::before {
  content: '参照URL：';
  font-size: 14px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}

/* --guidelines　数字リスト-- */
.net-regulation .guidelines ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.net-regulation .guidelines .circle-number li {
  padding: 0 0 0 15px;
  position: relative;
}

.net-regulation .guidelines .roman-number li {
  padding: 0 0 0 20px;
  position: relative;
  margin: 0 0 20px 0;
}

.net-regulation .guidelines .roman-number li:last-child{;
  margin: 0;
}

.net-regulation .guidelines .circle-number {
  counter-reset: my-counter;
}

.net-regulation .guidelines .roman-number {
  counter-reset: hoge;
}

.net-regulation .guidelines .circle-number li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  display: block;
  font-size: 80%;
  line-height: 1.1;
  text-align: center;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  border: 1px solid #000000;
  position: absolute;
  top: 7px;
  left: 0;
}

.net-regulation .guidelines .roman-number li::before {
  content: counter(hoge, upper-roman)"．";
  counter-increment: hoge;
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 80%;
  font-weight: bold;
  font-family: sans-serif;
}
/* --guidelines　表-- */

.net-regulation .guidelines table,
.net-regulation .guidelines table tr {
  border: 1px solid #D6D6D6;
  border-collapse: collapse;
  width: 100%;
  max-width: 485px;
  box-sizing: border-box;
  font-size: 14px;
}

.net-regulation .guidelines table {
  margin: 0 0 30px;
}

.net-regulation .guidelines .table-ttl {
  margin: 10px 0 0;
}

.net-regulation .guidelines table tr th {
  padding: 15px;
  font-weight: 400;
  text-align: center;
  background-color: #F4F4F4;
}

.net-regulation .guidelines table tr td {
  padding: 15px;
}

/* --guidelines　契約事項-- */
.contracts-list {
  width: 100%;
  margin: 15px 0 10px;
}

.contracts-list dl {
  position: relative;
  margin: 0 0 10px;
  cursor: pointer;
  border: 1px solid #D6D6D6;
}

.contracts-list dl:last-child {
  margin: 0;
}

.contracts-list dl::before {
  position: absolute;
  top: 20px;
  right: 15px;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  border-top: 5px solid #656565;
  border-right: 5px solid #656565;
}

.contracts-list .open::before {
  top: 26px;
  transform: rotate(-45deg);
  border-top: 5px solid #656565;
  border-right: 5px solid #656565;
}

.contracts-list dl dt {
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  padding: 20px 10px;
}

.contracts-list dl dd {
  margin: 0;
  padding: 20px 10px;
  background-color: #F4F4F4;
  border-top: 1px solid #D6D6D6;
}

.contracts-list dl dd .paragraph {
  margin: 0 0 20px;
}

.contracts-list dl dd .paragraph:last-child {
  margin: 0;
}

.contracts-list dl dd .paragraph h5 {
  margin: 0 0 10px;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
}

.contracts-list dl dd .paragraph ul {
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 14px;
  line-height: 2;
}

.contracts-list dl dd .paragraph ul+p {
  margin: 20px 0 0;
}

.contracts-list dl dd .paragraph ul li {
  margin: 0 0 15px;
  list-style: lower-roman;
}

.contracts-list dl dd .paragraph ul li:last-child {
  margin: 0;
}

@media screen and (min-width:600px) {
  .net-regulation-page {
    margin-top: 75px;
  }

  .net-regulation-page .net-regulation {
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: 0 auto 100px;
  }

  .net-regulation-page .headline {
    padding: 40px 0;
    margin: 0 0 50px 0;
  }

  .net-regulation-page .headline h1 {
    font-size: 28px;
  }

  .net-regulation h2 {
    font-size: 24px;
  }

  /* --guidelines-- */
  .net-regulation .guidelines h3 {
    margin: 0 0 10px;
  }

  .net-regulation .guidelines .url-wrapper {
    padding: 0 0 0 70px;
  }

  .net-regulation .guidelines .url-wrapper::before {
    top: 4px;
  }

  .net-regulation .guidelines-wrapper {
    margin: 0 0 0 15px;
  }

  /* --guidelines　契約事項-- */
  .contracts-list {
    margin: 20px 0 10px;
  }

  .contracts-list dl::before {
    right: 23px;
  }

  .contracts-list dl dt {
    padding: 20px;
  }

  .contracts-list dl dd {
    padding: 20px;
  }

  .contracts-list dl dd .paragraph {
    margin: 0 0 30px;
  }


  .contracts-list dl dd .paragraph h5 {
    margin: 0 0 20px;
  }

  .contracts-list dl dd .paragraph ul li {
    margin: 0 0 20px;
  }
}

@media screen and (min-width:1025px) {
  .net-regulation-page {
    margin-top: 95px;
  }
  .error-txt {
    text-align: center;
    justify-content: center;
  }
}