@charset "utf-8";

/*===================================================================
	General setting
===================================================================*/
* {
  box-sizing: border-box;
}
body {
  min-width: 980px;
  font-size: 16px;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
}
.sec-area .inner {
  width: 980px;
  margin: 0 auto;
  padding: 75px 0;
}
.sec-ttl {
  font-size: 36px;
  font-weight: bold;
}
/* header */
.headerInner {
  margin: 0 auto;
}
.sectionNifty {
  padding: 10px 0;
}
.sectionNiftyTitle {
  width: 980px;
  color: #fff;
  margin: 0 auto;
}
.niftyLogo {
  display: block;
}
/* footer */
.footer {
  background-color: #000;
}
.footerInner {
  width: 980px;
  margin: 0 auto;
  padding: 10px 0;
  color: #fff;
}
.footerInnerLink {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.footerInnerLink a {
  color: #fff;
  font-size: 1.08em;
}
.footerInnerLink_R {
  display: flex;
}
.footerInnerLink_R_list {
  margin-right: 40px;
}
/* mv-area */
.mv-area {
  height: 550px;
  background: url(../img/mv_bg.png) no-repeat center;
}
.mv-area .inner {
  padding-top: 32px;
}
.window-head {
  height: 41px;
  background: #0883c9;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.window-content {
  height: 444px;
  padding-top: 30px;
  background: #fff;
  border: 4px solid #0883c9;
  box-sizing: border-box;
}
.mv {
  text-align: center;
}
.mv-note {
  margin: 34px 70px;
	padding-left: 1em;
  font-size: 18px;
	text-indent: -1em;
}
/* intro-area */
.intro-area {
}
.intro-area .sec-ttl {
  padding-top: 20px;
  color: #0883c9;
}
.intro-area .inner {
  padding: 70px 0 75px;
  display: flex;
  justify-content: center;
}
.intro-area .sec-ttl::first-letter {
  font-size: 48px;
}
.intro-area .txt-01 {
  margin-top: 15px;
  line-height: 1.6;
}
.intro-area .img-01 {
  margin-left: 50px;
}

/* flow-area */
.flow-area {
  background: #e1feff;
}
.flow-area .inner {
  padding: 45px 0 80px;
}
.flow-area .sec-ttl {
  text-align: center;
  color: #0883c9;
}
.flow-area .sec-ttl::first-letter {
  font-size: 48px;
}
.step-list li {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  background: #fff;
  border: 2px solid #0883c9;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.step-num {
  position: absolute;
  top: 0;
  left: 28px;
  width: 300px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    120deg,
    rgba(8, 131, 201, 1) 0%,
    rgba(30, 187, 238, 1) 50%,
    rgba(76, 200, 91, 1) 100%
  );
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.step-txt {
  padding-top: 60px;
  width: 287px;
  line-height: 1.6;
}
.step-img {
  width: 605px;
  margin-left: 30px;
  padding: 20px 0;
  text-align: center;
}
.icon-3dot {
  margin: 0 7px 0 5px;
  transform: translateY(9px);
}
/* startpage-area */
.startpage-area {
  background: #fff9da;
}
.startpage-area .sec-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
}
.startpage-area .sec-ttl .icon {
  margin-right: 15px;
  width: 88px;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffdb00;
  border-radius: 999px;
  font-size: 21px;
  line-height: 1.2;
}
.startpage-box {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.startpage-txt {
  width: 381px;
  padding-top: 35px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}
a.btn-orange {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  min-height: 60px;
  margin: 55px auto 0;
  background: #ee6d09;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.2;
}
@media all and (-ms-high-contrast:none){
	/*IE*/
	a.btn-orange {
		padding-top: 17px;
	}
}
a.btn-orange:hover {
  opacity: 0.8;
}
a.btn-orange::before {
  position: absolute;
  content: "";
  display: flex;
  top: calc(50% - 12px);
  right: 12px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 999px;
}
a.btn-orange::after {
  position: absolute;
  content: "";
  display: flex;
	top: calc(50% - 5px);
  right: 19px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #ee6c09;
}
