@charset "utf-8";
/* Index
++++++++++++++++++++++++++++++++++++++++
- Foundation
- Layout
- Object/Component
- Object/Utility

- header
- footer
- hero
- banner area
- local-nav
- sec01
- sec02
- sec03
- sec04
- sec05

++++++++++++++++++++++++++++++++++++++++ */
/* Foundation
++++++++++++++++++++++++++++++++++++++++ */
/* reset ++++++++++++++++ */
html,
body, article, section, nav, aside, header, footer, address, h1, h2, h3, h4, h5, h6,
p, pre, blockquote, ol, ul, li, dl, dt, dd, figure, figcaption, div, main,
a, em, strong, small, s, cite, q, dfn, abbr, time, code, var, samp, kbd, sub, sup, i, b, u, mark, span,
ins, del,
img, iframe, embed, object, video, audio,
table, caption, tbody, thead, tfoot, tr, td, th,
form, label, output, fieldset, legend,
details, summary,
canvas {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  text-align: inherit;
  vertical-align: baseline;
}

*::before,
*::after {
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

/* initialize ++++++++++++++++ */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #333;
  font-size: 1.4em;
  text-align: left;
  line-height: 1.5;

  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-style: normal;
  font-weight: 300;
}
body.media-pc {
  font-size: 1.8em;
  line-height: 1.5555;
}

a {
  color: #064eba;
  text-decoration: underline;
  outline: none;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

th, td {
  vertical-align: middle;
}

img, svg {
  max-width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: bottom;
}


/* Layout
++++++++++++++++++++++++++++++++++++++++ */
.wrapper {
  overflow: hidden;
}

body:not(.media-pc) main {
  margin-top: 32px;
}

/* PC */
.media-pc .wrapper {
  min-width: calc(768px - (100vw - 100%));/* breakpoint - scrollbar width */
}

.mode-pc .wrapper {
  min-width: 1020px;
}


/* fadein ++++++++++++++++ */
body.media-pc {
  opacity: 0;
  animation: fadeIn 0.3s ease 0.3s 1 normal forwards;
}
@keyframes fadeIn {
  0% { opacity: 0;}
  100% {opacity: 1;}
}


/* display control ++++++++++++++++ */
/* SP */
body:not(.media-pc) .l-disp-none-sp {
   display: none !important;
}

/* PC */
.media-pc .l-disp-none-pc {
  display: none !important;
}


/* Object/Component
++++++++++++++++++++++++++++++++++++++++ */

/* section ++++++++++++++++ */
.c-sec-wrap {
  min-width: 320px;
  max-width: 620px;
  margin: auto;
  padding: 30px 10px 35px;
}

.c-sec-bg-blue {
  position: relative;
  width: 100%;
}
.c-sec-bg-blue::after {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  display: block;
  width: 100vw;
  min-width: 100%;
  height: 100%;
  background-color: #064eba;
  content: "";
}

/* PC */
.media-pc .c-sec-wrap {
  max-width: 1020px;
  padding-top: 80px;
  padding-bottom: 80px;
}


/* heading ++++++++++++++++ */
.c-ttl-01 {
  color: #064eba;
  font-size: 2.2rem;
  line-height: 1.2727;
  text-align: center;
}
.c-sec-bg-blue .c-ttl-01 {
  color: #fff;
}

.c-ttl-02 {
  margin: 25px auto 15px;
  font-size: 1.9rem;
  text-align: center;
  line-height: 1.294;
}

/* PC */
.media-pc .c-ttl-01 {
  font-size: 5vw;
  line-height: 1.36;
}

.media-pc .c-ttl-02 {
  margin: 20px auto;
  font-size: 3.4rem;
}

@media (max-width: 767px) {
  .media-pc .c-ttl-01 {
    font-size: 3.84rem;
  }
}
@media (min-width: 1000px) {
  .media-pc .c-ttl-01 {
    font-size: 5rem;
  }
}
.mode-pc .c-ttl-01 {
  font-size: 5rem;
}


/* Object/Utility
++++++++++++++++++++++++++++++++++++++++ */

/* scroll offset ++++++++++++++++ */
.scrolloffset-sp::before {
  display: block;
  margin-top: -52px;
  padding-top: 52px;
  content: "";
  pointer-events: none;
}

.media-pc .scrolloffset-sp {
  content: none;
}

/* clearfix ++++++++++++++++ */
.clearfix:after {
  clear: both;
  display: block;
  content: "";
}

/* font family ++++++++++++++++ */
.u-ff-go-Regular,
.u-ff-go-medium {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-style: normal;
  font-weight: 300;
}

.u-ff-go-debold {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-style: normal;
  font-weight: 600;
}

/* font color ++++++++++++++++ */
.u-c-primary {
  color: #005bac !important;
}

.u-c-danger {
  color: #ed1f18 !important;
}

/* white space ++++++++++++++++ */
.u-whs-nw {
  white-space: nowrap !important;
}

/* margin ++++++++++++++++ */
.u-mt0 {
  margin-top: 0 !important;
}


/* header
++++++++++++++++++++++++++++++++++++++++ */
.header {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 320px;
  margin: auto;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  height: 32px;
  padding: 0 10px;
}

.header-logo {
  margin-right: auto;
  line-height: 1;
  width: 150px;
}

.header-kouza-btn {
  width: 64px;
  margin-left: auto;
  line-height: 1;
}

/* PC */
.media-pc .header {
  position: static;
  max-width: 1020px;
  height: 60px;
}

.media-pc .header-logo {
  width: 260px;
  padding-right: 20px;
}

.media-pc .header-gmogropup {
  font-size: 1.4rem;
  text-align: right;
  line-height: 1;
}

.media-pc .header-kouza-btn {
  position: fixed;
  top: 10%;
  right: 0;
  z-index: 100;
  display: block;
  width: 80px;
  vertical-align: top;
}


/* footer
++++++++++++++++++++++++++++++++++++++++ */
.footer {
  background-color: #f3f3f3;
}
.footer-inner {
  min-width: 320px;
  max-width: 1020px;
  margin: auto;
}

.footer dl {
  padding-right: 10px;
  padding-left: 10px;
}

.footer-risk {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1rem;
}
.footer-risk dt {
  margin-bottom: 1em;
  font-size: 1.2rem;
  text-align: center;
}

.footer-address {
  padding-top: 16px;
  border-top: 1px dotted #8d8d8d;
  font-size: 1rem;
}

.footer-address dt {
  width: 150px;
  margin-bottom: 8px;
}

.footer-callcenter {
  margin-top: 10px;
  padding-bottom: 16px;
  font-size: 1rem;
}
.footer-callcenter dt {
  font-weight: bold;
}

.footer-gmogropup {
  padding: 8px 10px;
  background-color: #e1e3e5;
  color: #3d3d3d;
  font-size: 1rem;
  text-align: center;
}

.copyright {
  padding: 10px;
  background-color: #064eba;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1;
}

.footer-pagetop {
  position: fixed;
  bottom: 8%;
  right: 1em;
  width: 32px;
  height: 32px;
}

/* PC */
.media-pc .footer-risk {
  padding-top: 40px;
  padding-bottom: 30px;
  font-size: 1.4rem;
}
.media-pc .footer-risk dt {
  margin-bottom: 20px;
  font-size: 1.6rem;
  text-align: left;
}

.media-pc .footer-address {
  padding-top: 30px;
  border-top: 1px dotted #8d8d8d;
  font-size: 1.2rem;
}

.media-pc .footer-address dt {
  width: 192px;
  margin-bottom: 15px;
}

.media-pc .footer-callcenter {
  margin-top: 24px;
  padding-bottom: 30px;
  font-size: 1.4rem;
}

.media-pc .footer-callcenter a[href*=tel] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

.media-pc .footer-gmogropup {
  font-size: 1.4rem;
}

.media-pc .copyright {
  padding: 19px 10px;
  font-size: 1.2rem;
}

.media-pc .footer-pagetop {
  width: 64px;
  height: 64px;
}

/*  */
.footer-security-seals {
  list-style: none;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0;
  padding: 40px 0 88px;
}
.footer-security-seals > li {
  width: 100px;
  margin: 0;
  padding: 0;
}
.footer-security-seals > li img {
  vertical-align: top;
}


/* hero
++++++++++++++++++++++++++++++++++++++++ */
.hero {
  position: relative;
  text-align: center;
  background-color: rgb(233,238,244);
}

.hero h1 {
  position: relative;
  min-width: 320px;
  max-width: 640px;
  margin: auto;
}

.hero > h1 > img {
  width: 100%;
}

/* PC */
.media-pc .hero {
  background-image: url(/corp/lp/common/images/ixop/bg-hero-pc.png),
                    linear-gradient(0deg, rgb(233,238,244) 0%, rgb(241,247,252) 100%);
  background-position: top center, top left;
  background-size: auto 100%, 1600px 100%;
  background-repeat: no-repeat, repeat-x;
}

.media-pc .hero h1 {
  max-width: 1000px;
}

/* AB test */
.ixop_a .hero {
  background-color: #efefef;
}
.media-pc.ixop_a .hero {
  background-image: url(/corp/lp/common/images/ixop/bg-hero-a-pc.png);
  background-position: top center;
  background-size: auto 100%;
  background-repeat: repeat-x;
}


/* banner area
++++++++++++++++++++++++++++++++++++++++ */

/* account ++++++++++++++++ */
.bnr-kouza {
  min-width: 320px;
  max-width: 620px;
  margin: 15px auto 0;
  padding: 0 10px;
  text-align: center;
}

.bnr-kouza-ttl {
  font-size: 1.6rem;
}
.bnr-kouza-ttl > sup {
  font-size: 1rem;
}

.bnr-kouza-btn {
  margin: 4px auto;
}
.bnr-kouza-txt {
  color: #ed1f18;
  font-size: 1rem;
  text-align: center;
}

/*PC*/
.media-pc .bnr-kouza {
  max-width: 1020px;
  margin-top: 56px;
}

.media-pc .bnr-kouza-ttl {
  font-size: 3rem;
}
.media-pc .bnr-kouza-ttl > sup {
  font-size: 1.6rem;
}
.media-pc .bnr-kouza-btn {
  margin-top: 5px;
  margin-bottom: 15px;
}
.media-pc .bnr-kouza-txt {
  font-size: 1.6rem;
}

.media-pc .bnr-kouza.bottom .bnr-kouza-txt {
  text-align: left;
}


/* account notes ++++++++++++++++ */
.notes-kouza {
  min-width: 300px;
  max-width: 620px;
  margin: 10px auto 20px;
  padding: 0 10px;
  color: inherit;
  font-size: 1rem;
  text-align: left;
}

.c-sec-bg-blue .notes-kouza {
  color: #fff;
}

/*PC*/
.media-pc .notes-kouza {
  max-width: 1000px;
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 0;
  font-size: 1.6rem;
}

/* camp ++++++++++++++++ */


/* local-nav
++++++++++++++++++++++++++++++++++++++++ */
.local-nav {
  min-width: 320px;
  max-width: 620px;
  margin: 15px auto 10px;
  padding: 0 10px;
}

.local-nav ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
  line-height: 1.285;
}

.local-nav li {
  display: flex;
  width: 50%;
  border-right: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
}

.local-nav li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 32px 10px 12px;
  background-color: #fff;
  background-image: linear-gradient(0deg, rgb(247,247,247) 0%, rgb(255,255,255) 100%);
  text-decoration: none;
}

.local-nav li a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 19px;
  height: 19px;
  margin-top: -10px;
  background: no-repeat center center;
  background-size: 100% auto;
  background-image: url(/corp/lp/common/images/ixop/icon-arrow-down.svg);
  content: "";
}

.local-nav sup {
  font-size: 1rem;
}

/*PC*/
.media-pc .local-nav {
  max-width: 1020px;
  margin: 45px auto 16px;
}

.media-pc .local-nav ul {
  flex-wrap: nowrap;
  margin: 0;
  font-size: 2.2vw;
  line-height: 1.363;
}

.media-pc .local-nav li {
  width: 25%;
}

.media-pc .local-nav li a {
  padding: 1.363em 0.4em 1.363em 3.5em;
}

.media-pc .local-nav li a::after {
  left: 1.4%;
  right: auto;
  width: 3.3em;
  height: 3.3em;
  max-width: 72px;
  max-height: 72px;
  margin-top: -1.5em;
  content: "";
}
.media-pc .local-nav li:nth-child(1) a::after {
  background-image: url(/corp/lp/common/images/ixop/icon-localnav-01.png);
}
.media-pc .local-nav li:nth-child(2) a::after {
  background-image: url(/corp/lp/common/images/ixop/icon-localnav-02.png);
}
.media-pc .local-nav li:nth-child(3) a::after {
  background-image: url(/corp/lp/common/images/ixop/icon-localnav-03.png);
}
.media-pc .local-nav li:nth-child(4) a::after {
  background-image: url(/corp/lp/common/images/ixop/icon-localnav-04.png);
}

.media-pc .local-nav sup {
  font-size: 0.727em;
}

@media (max-width: 767px) {
  .media-pc .local-nav ul {
    font-size: 1.68rem;
  }
}
@media (min-width: 1000px) {
  .media-pc .local-nav ul {
    font-size: 2.2rem;
  }
}
.mode-pc .local-nav ul {
  font-size: 2.2rem;
}


/* about
++++++++++++++++++++++++++++++++++++++++ */
.sec01 {
  min-width: 320px;
  max-width: 620px;
  margin: 20px auto;
  padding: 0 10px;
}

.sec01-ttl a {
  position: relative;
  display: block;
  padding: 9px 30px;
  border-radius: 5px;
  background-color: #4ca6f4;
  color: #fff;
  font-size: 2rem;
  line-height: 1.24;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.sec01-ttl a:hover {
  opacity: 0.8;
}
.sec01-ttl a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background-size: 100% auto;
}
.sec01-ttl a::after {
  right: 10px;
  width: 20px;
  height: 20px;
  background-image: url(/corp/lp/common/images/ixop/icon-open-white.svg);
  content: "";
}
.sec01-ttl.is-active a {
  border-radius: 5px 5px 0 0;
}
.sec01-ttl.is-active a::after {
  background-image: url(/corp/lp/common/images/ixop/icon-close-white.svg);
}

.sec01-body {
  padding: 15px 10px 20px;
  border-radius: 0 0 5px 5px;
  border: 1px solid #4ca6f4;
  border-top: none;
}

.sec01 .img {
  margin: 15px auto;
  text-align: center;
}

.sec01 .text-02 .note {
  font-size: 1rem;
}

/* PC */
.media-pc .sec01 {
  max-width: 1020px;
  margin: 40px auto 55px;
}

.media-pc .sec01-ttl a {
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: 14px;
  font-size: 3.8rem;
  font-size: 3.8vw;
  line-height: 7.2rem;
}
.media-pc .sec01-ttl.is-active a {
  border-radius: 14px 14px 0 0;
}
.media-pc .sec01-ttl a::after {
  right: 38px;
  width: 46px;
  height: 46px;
}
.media-pc .sec01-ttl a::before {
  display: inline-block;
  width: 72px;
  height: 72px;
  margin-right: 26px;
  background-image: url(/corp/lp/common/images/ixop/icon-sec01-ttl.png);
  vertical-align: top;
  content: "";
}

.media-pc .sec01-body {
  padding: 36px 38px 50px;
  border-radius: 0 0 14px 14px;
  border-width: 2px;
}

.media-pc .sec01 .img {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .media-pc .sec01-ttl a {
    font-size: 2.918rem;
  }
}
@media (min-width: 1000px) {
  .media-pc .sec01-ttl a {
    font-size: 3.8rem;
  }
}
.mode-pc .sec01-ttl a {
  font-size: 3.8rem;
}


/* yosoku ----*/
.yosoku {}

.yosoku dl {
  overflow: hidden;
  margin-top: 15px;
  border-radius: 5px;
  text-align: center;
}

.yosoku dt {
  background-color: #ef7171;
  color: #fff;
  line-height: 2.14;
}
.yosoku .icon {
  position: relative;
  transform: translateY(-1px);
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 4px;
  vertical-align: middle;
  content: "";
}

.yosoku dd {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 0 6px;
  font-size: 1.2rem;
  white-space: nowrap;
}

.yosoku .amount {
  transform: translateY(-1px);
  display: inline-block;
  padding: 4px;
  border-radius: 5px;
  border: 1px solid;
  background-color: #fff;
  line-height: 1;
}

.yosoku .formulate-cell {
  position: relative;
  display: inline-block;
  padding-bottom: 1.5em;
  vertical-align: top;
}
.yosoku .note {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 1rem;
}

.yosoku .correct {
  background-color: #ffe9f0;
}
.yosoku .correct dt {
  background-color: #f27fa3;
}
.yosoku .correct .icon {
  border: 3px solid #fff;
  border-radius: 50%;
}
.yosoku .correct .amount {
  border-color: #f69cb9;
}

.yosoku .wrong {
  background-color: #def4fe;
}
.yosoku .wrong dt {
  background-color: #46b3eb;
}
.yosoku .wrong .icon::before,
.yosoku .wrong .icon::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: center center;
  display: block;
  width: 3px;
  height: 16px;
  margin-left: -1px;
  background-color: currentColor;
  content: "";
}
.yosoku .wrong .icon::before {
  transform: rotate(45deg);
}
.yosoku .wrong .icon::after {
  transform: rotate(-45deg);
}
.yosoku .wrong .amount {
  border-color: #87cef2;
}

/* PC */
.media-pc .yosoku {
  margin-top: 30px;
  display: flex;
}

.media-pc .yosoku dl {
  flex-grow: 1;
  width: 50%;
  margin-top: 0;
  border-radius: 10px;
}

.media-pc .yosoku dt {
  font-size: 2vw;
  line-height: 2.3em;
}
.media-pc .yosoku .icon {
  width: 29px;
  height: 29px;
}

.media-pc .yosoku dd {
  padding: 13px 0 12px;
  font-size: 1.6vw;
  line-height: 2.25em;
}

.media-pc .yosoku .amount {
  padding: 9px;
  border-radius: 10px;
  border-width: 2px;
}

.media-pc .yosoku .formulate-cell {
  padding-bottom: 2em;
}
.media-pc .yosoku .note {
  font-size: inherit;
}

.media-pc .yosoku .correct {
  margin-right: 30px;
}
.media-pc .correct .icon {
  border-width: 6px;
}

.media-pc .wrong .icon::before,
.media-pc .wrong .icon::after {
  width: 5px;
  height: 26px;
}

@media(max-width: 767px) {
  .media-pc .yosoku dt {
    font-size: 1.535rem;
  }
  .media-pc .yosoku dd {
    font-size: 1.23rem;
  }
}
@media (min-width: 1000px) {
  .media-pc .yosoku dt {
    font-size: 2rem;
  }
  .media-pc .yosoku dd {
    font-size: 1.6rem;
  }
}
.mode-pc .yosoku dt {
  font-size: 2rem;
}
.mode-pc .yosoku dd {
  font-size: 1.6rem;
}


/* sec02
++++++++++++++++++++++++++++++++++++++++ */
.sec02 {
  padding-bottom: 15px;
}

.sec02-ttl sup {
  font-size: 1rem;
}
.sec02-ttl .lead {
  display: block;
  margin-bottom: 4px;
  font-size: 1.5rem;
}

.sec02-flow {
  margin-top: 15px;
}

.sec02 .notes-kouza {
  padding: 0;
}

/* PC */
.media-pc .sec02 {
  padding-bottom: 40px;
}

.media-pc .sec02-ttl sup {
  font-size: 2.4rem;
}
.media-pc .sec02-ttl .lead {
  font-size: 3.4rem;
}

.media-pc .sec02-flow {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding: 0;
}

.media-pc .sec02-flow > .step {
  width: 23%;
  max-width: 230px;
}

.media-pc .sec02-flow > .screening {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5%;
  max-width: 50px;
}
.media-pc .sec02-flow > .screening img {
  width: auto;
  max-width: none;
  height: 100%;
}


/* sec03
++++++++++++++++++++++++++++++++++++++++ */
.sec03 {}

.sec03-flow {
  padding: 0 10px;
}

.sec03-flow > li {
  position: relative;
  margin-top: 24px;
  border-radius: 5px;
  background-color: #f3f3f3;
}
.sec03-flow > .point {
  padding: 25px 15px 15px;
}

.sec03-flow .num {
  width: 68px;
  margin: auto;
  padding-top: 2px;
  border: solid #064eba;
  border-width: 2px 0;
  text-align: center;
}

.sec03-flow .ttl {
  margin: 8px auto 10px;
  color: #064eba;
  font-size: 1.9rem;
  text-align: center;
}

.sec03-flow .lead {
  position: relative;
  margin: 15px auto 5px;
  padding-left: 24px;
  font-size: 1.4rem;
}
.sec03-flow .lead-num {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6rem;
}

.sec03-flow .txt {
  margin: 10px auto;
}

.sec03-flow .img {
  margin: 10px auto;
  text-align: center;
}

.sec03-flow .illust {
  width: 40%;
  margin: auto;
}

/* PC */
.media-pc .sec03-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}
.media-pc .sec03-flow > li {
  padding: 60px 40px 40px;
  border-radius: 14px;
}

.media-pc .sec03-flow .num {
  width: 116px;
}

.media-pc .sec03-flow .ttl {
  margin: 22px auto 20px;
  font-size: 3.4rem;
  line-height: 1.294;
}

.media-pc .sec03-flow > li:nth-child(1) {
  width: 100%;
}
.media-pc .sec03-flow > li:not(:first-child) {
  width: calc((100% - 50px)/2);
  margin-top: 60px;
}

.media-pc .sec03-steps {
  display: flex;
  margin-top: 40px;
  margin-bottom: 40px;
}

.media-pc .sec03-steps > li {
  position: relative;
  width: 280px;
  padding: 30px 20px 18px 26px;
  border-radius: 14px;
  border: 3px solid #2a5ebe;
}
.media-pc .sec03-steps > li:not(:first-child) {
  margin-left: 40px;
}
.media-pc .sec03-steps > li:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -46px;
  transform: translateY(-50%);
  display: block;
  width: 66px;
  height: 120px;
  background: url(/corp/lp/common/images/ixop/bg-sec03-arrow-pc.png);
  content: "";
  pointer-events: none;
}

.media-pc .sec03-flow .lead {
  position: static;
  margin-top: 0;
  padding-left: 0;
  font-size: 2.2rem;
  text-align: center;
}
.media-pc .sec03-flow .lead-num {
  top: -22px;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-left: -21px;
  border: 3px solid currentColor;
  background-color: #fff;
  color: #2a5ebe;
  font-size: 2.4rem;
  line-height: 3.8rem;
}

.media-pc .sec03 .img-box {
  padding: 48px;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}

.media-pc .sec03-steps > li:last-child .lead + p {
  padding-left: 10px;
}


/* sec04
++++++++++++++++++++++++++++++++++++++++ */
.sec04 {
  color: #fff;
}

.sec04 .lead {
  margin: 15px auto;
  font-size: 1.2rem;
  text-align: center;
}

.sec04 .img {
  width: 77.3%;
  margin: auto;
  text-align: center;
}

.sec04-list {
  position: relative;
  width: 87.6%;
  margin: 22px auto 0;
  padding: 15px;
  border-radius: 5px;
  border: 2px solid #fff;
}
.sec04-list::before {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 17px;
  height: 14px;
  background: url(/corp/lp/common/images/ixop/bg-sec04-arrow-sp.png);
  background-size: 100% auto;
  content: "";
}
.sec04-list > li {
  position: relative;
  margin: 4px 0;
  padding-left: 12px;
}
.sec04-list > li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  content: "";
}

/* PC */
.media-pc .sec04 h2 {
  margin-bottom: 78px;
}

.media-pc .tool-item {
  overflow: hidden;
  max-width: 880px;
  margin: 50px auto 0;
}

.media-pc .sec04 .img {
  width: 41.5%;
  max-width: 364px;
}

.media-pc .sec04 .lead,
.media-pc .sec04 .txt,
.media-pc .sec04-list {
  width: 53%;
  max-width: 466px;
}

.media-pc .sec04 .lead {
  position: relative;
  margin-top: 8px;
  margin-bottom: 5px;
  padding-left: 74px;
  font-size: 3.4rem;
  text-align: left;
}

.media-pc .sec04 .lead::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 60px;
  height: 60px;
  content: "";
}

.media-pc .sec04 .txt {
  font-size: 2.2rem;
  text-align: center;
}

.media-pc .sec04-list {
  margin-top: 40px;
  padding: 16px 30px;
  border-radius: 10px;
  font-size: 2.2rem;
}
.media-pc .sec04-list::before {
  top: -22px;
  width: 30px;
  height: 22px;
  background: url(/corp/lp/common/images/ixop/bg-sec04-arrow-pc.png);
}
.media-pc .sec04-list > li {
  margin: 6px 0;
  padding-left: 22px;
}
.media-pc .sec04-list > li::before {
  top: 14px;
  width: 8px;
  height: 8px;
}

.media-pc .tool-appli .lead::before {
  background: url(/corp/lp/common/images/ixop/icon-sec04-appli-pc.png);
}
.media-pc .tool-desktop .lead::before {
  background: url(/corp/lp/common/images/ixop/icon-sec04-desktop-pc.png);
}

.media-pc .tool-appli .lead,
.media-pc .tool-appli .txt,
.media-pc .tool-appli .sec04-list {
  float: right;
}
.media-pc .tool-appli .img {
  float: left;
}

.media-pc .tool-desktop .lead,
.media-pc .tool-desktop .txt,
.media-pc .tool-desktop .sec04-list {
  float: left;
}
.media-pc .tool-desktop .img {
  float: right;
}


/* sec05
++++++++++++++++++++++++++++++++++++++++ */
.sec05 {
  padding-bottom: 15px;
}

/* PC */
.media-pc .sec05 {
  padding-bottom: 20px;
}

/* banking ----*/
.banking {
  padding: 0 10px;
}
.banking-list {
  margin: 15px auto;
}

.banking-list ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: -1px;
  border: solid #bfbfbf;
  border-width: 1px 0 0 1px;
}

.banking-list li {
  overflow: hidden;
  width: 50%;
  border: solid #bfbfbf;
  border-width: 0 1px 1px 0;
  text-align: center;
}

.banking-more-btn > a {
  display: block;
  margin-top: -1px;
  padding: 6px;
  border: 1px solid #bfbfbf;
  background-color: #f3f3f3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.banking-more-btn:hover {
  opacity: 0.7;
}

.banking-more-btn a::after {
  transform: translateY(-2px);
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  background-image: url(/corp/lp/common/images/ixop/icon-open-blue.svg);
  background-size: 100%;
  vertical-align: middle;
  content: '';
}

.banking-more-btn a.is-active::after {
  background-image: url(/corp/lp/common/images/ixop/icon-close-blue.svg);
}

/* PC */
.media-pc .banking {
  margin-top: 40px;
  padding: 0;
}

.media-pc .banking .txt {
  margin-bottom: 40px;
  text-align: center;
}

.media-pc .banking-list li {
  width: 20%;
  padding: 8px 0 7px;
}
.media-pc .banking-list img {
  width: 93.8%;
  max-width: 233px;
}

/* support ----*/
.support {}

.support dl {
  overflow: hidden;
  margin: 0 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dbdbdb;
}

.support dl:not(:nth-of-type(1)) {
  padding-top: 20px;
}
.support dl::before {
  float: left;
  display: block;
  width: 29.28%;
  padding-top: 29.28%;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #ebf6ff;
  background-size: contain;
  content: "";
}

.support dt {
  font-size: 1.7rem;
}
.support dd {
  overflow: hidden;
}

.support-free::before {
  background-image: url(/corp/lp/common/images/ixop/icon-support-free.png);
}
.support-hour::before {
  background-image: url(/corp/lp/common/images/ixop/icon-support-hour.png);
}
.support-secure::before {
  background-image: url(/corp/lp/common/images/ixop/icon-support-secure.png);
}

/* PC */
.media-pc .support {
  margin-top: 70px;
}

.media-pc .support-row {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.media-pc .support dl {
  overflow: hidden;
  width: 30.6%;
  max-width: 306px;
  margin: 0;
  padding: 46px 30px 30px;
  border-radius: 10px;
  border-bottom: none;
  background-color: #f3f3f3;
}
.media-pc .support dl::before {
  float: none;
  display: block;
  width: 66.67%;
  max-width: 164px;
  max-height: 164px;
  padding-top: 66.67%;
  margin: auto;
  background-color: #fff;
  content: "";
}

.media-pc .support dt {
  margin: 25px auto 13px;
  font-size: 2.2rem;
  text-align: center;
}

/* costs ----*/
.costs {}

.costs .txt {
  margin: 10px auto;
}

.costs .img {
  width: 85.33%;
  min-width: 300px;
  margin: auto;
  text-align: center;
}

/* PC */
.media-pc .costs {
  margin-top: 70px;
}

.media-pc .costs .txt {
  margin-bottom: 20px;
  text-align: center;
}

.media-pc .costs .img {
  width: auto;
}
