@charset "utf-8";
/* modal
============================================================== */

.modal {
	color: #1c1c1c;
	-webkit-text-size-adjust: 100%;
	font-family: "din-2014", 'Noto Sans JP', "Yu Gothic", Meiryo, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
}

.modal .indent {
	text-indent: -1em;
	padding-left: 1em;
}
.modal .note {
	font-size: 12px;
	line-height: 1.6em;
}

.modal span.en {
	font-size: 125%;
	position: relative;
	top: 1px;
}

.modal .bgBlue {
	background: #eef3f5;
}

.modal .txtBlue {
	color: #005bac;
}

.modal .mt15 {
	margin-top: 15px !important;
}

.modal .txtB {
	font-weight: bold !important;
}

.modal .btn {
	display: block;
	max-width: 650px;
	width: 90%;
	margin: 0 auto;
	padding: 20px 20px 19px;
	border-radius: 100px;
	box-shadow: 0 5px 0 0 #a80d15;
	background-color: #dc1c26;
	font-size: 40px;
	font-weight: 500;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: center;
	transition: .3s all;
	position: relative;
	overflow: hidden;
}

.modal .btn:hover {
	box-shadow: 0 0 0 0 #a80d15;
	transform: translate3d(0, 5px, 0);
}
.modal .btn > span {
	display: block;
	font-size: 18px;
	margin-bottom: 8px;
	position: relative;
}

/* modal base ========== */
.modal-inner {
  position: relative; 
}
.modalArea, .modalArea02 {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100001;
  overflow: hidden;
  padding: 10vh 3% 5vh; 
}
.modalBg {
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5; 
}
.closeModalArea {
  max-width: 800px;
  width: 94%;
  margin: 0 auto;
  position: absolute;
  top: calc(10vh - 50px);
  right: 50%;
  transform: translateX(50%);
  z-index: 100;
  height: 44px;
}
.closeModal {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.closeModal .line01{
  display: block;
  width: 32px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  transform: rotate(45deg);
  position: absolute;
  top: 20px;
  right: 4px;
}
.closeModal .line02{
  display: block;
  width: 32px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  transform: rotate(-45deg);
  position: absolute;
  top: 20px;
  right: 4px;
}
.is-open {
  display: block;
}
.modalWrapper {
  position: relative;
  width: 100%;
  max-width: 815px;
  height: 100%;
  padding: 0;
  background-color: #fff;
  border-radius: 16px;
  border: none;
  overflow: hidden;
  margin: 0 auto;
  z-index: 100002; 
}
.modalScroll {
  width: 100%;
  height: 100%;
  padding-top: 64px;
  position: relative;
  background-color: #fff;
  overflow-y: scroll;
  overflow-x: hidden; 
}
.modalScroll.quoScroll {
  padding-top: 2vw;
}
.modalContents {
  padding: 0 5%; 
}

@media screen and (max-width: 800px) {
  .modalScroll {
    padding-top: 8vw;
  }
}

@media screen and (max-width: 640px) {
  .closeModalArea {
    top: calc(10vh - 40px);
    height: 30px;
  }
  .closeModal {
    width: 30px;
    height: 30px;
  }
  .closeModal .line01 {
    width: 24px;
    height: 3px;
    top: 14px;
    right: 2px;
  }
  .closeModal .line02 {
    width: 24px;
    height: 3px;
    top: 14px;
    right: 2px;
  }
  .modalWrapper {
    border-radius: 8px;
  }
  .modalScroll {
    padding-top: 10.6666vw;
  }
  .modalContents {
    padding: 0 4.256%;
  }
}

/* modal common ========== */
.modalContents section {
  padding: 40px 0;
}
.modalContents .en {
  font-weight: 600;
}
.modalTtl{
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 40px;
}
.modalTtl::after{
  content: "";
  width: 120px;
  height: 4px;
  background: #005bac;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.ttlBtm {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6em;
  text-align: center;
  margin-bottom: 64px;
}
.modalBtn {
  margin-top: 40px;
}

@media screen and (max-width: 800px) {
  .modalContents section {
    padding: 5vw 0;
  }
  .modalTtl {
    font-size: 4.8vw;
    padding-bottom: 3vw;
    margin-bottom: 5vw;
  }
  .modalTtl::after {
    width: 15vw;
  }
  .ttlBtm {
    font-size: 3vw;
    margin-bottom: 8vw;
  }
  .modalBtn {
    margin-top: 5vw;
  }
}

@media screen and (max-width: 640px) {
  .modalContents section {
    padding: 8vw 0;
  }
  .modalContents section.quoPadding {
    padding: 2vw 0;
  }
  .modalTtl {
    font-size: 7.46666vw;
    padding-bottom: 4.2666vw;
    margin-bottom: 6.4vw;
  }
  .modalTtl::after {
    width: 21.33334vw
  }
  .ttlBtm {
    font-size: 4.2666vw;
    margin-bottom: 10.6666vw;
  }
  .modalBtn {
    margin-top: 6.4vw;
  }
}


/* modal top =========== */
section.modalTop {
  padding-top: 0;
  text-align: center;
}
.topTtl {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2em;
  position: relative;
  margin-bottom: 8px;
  text-align: center;
  display: inline-block;
}
.topTtl::before {
  content: "/";
  color: #005bac;
  font-size: 38px;
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  transform: scaleX(-1);
}
.topTtl::after {
  content: "/";
  color: #005bac;
  font-size: 38px;
  display: inline-block;
  position: relative;
  top: 0;
  right: 0;
}
.topTtl .en {
  font-size: 115%;
}
.modalTop .note {
  margin-top: 16px;
  text-align: left;
}

@media screen and (max-width: 1000px) {
  .topTtl, .topTtl::before, .topTtl::after {
    font-size: 3.7962vw;
  }
}

@media screen and (max-width: 800px) {
  .topTtl, .topTtl::before, .topTtl::after {
    font-size: 4.5vw;
  }
  .modalTop .note {
    margin-top: 2vw;
  }
}

@media screen and (max-width: 640px) {
  .topTtl {
    font-size: 6.4vw;
    margin: 0 auto 3.2vw;
    padding: 0 7vw;
  }
  .topTtl::after {
    content: "";
    display: block;
    width: 5.33334vw;
    height: 100%;
    background: url(/lp/common_fx/images/modal/parts_modalttl_01.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
  }
  .topTtl::before {
    content: "";
    display: block;
    width: 5.33334vw;
    height: 100%;
    background: url(/lp/common_fx/images/modal/parts_modalttl_01.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
  }
  .modalTop .note {
    margin-top: 2.1333vw;
  }
}


/* modal flow ========== */
.flowStep li {
  width: 100%;
  margin-bottom: 40px;
  position: relative;
  padding: 40px 5.556%;
}
.flowStep li::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url(/lp/common_fx/images/icon_arrow_black.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: -14px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.flowStep li:last-child {
  margin-bottom: 0;
}
.flowStep .stepNum {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.flowStep .stepBlock {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.flowStep .stepImg {
  max-width: 160px;
  width: 25%;
}
.flowStep .stepTxt {
  width: 70%;
}
.flowStep .stepTxt > p {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6em;
}
.flowStep .note {
  margin-top: 8px;
}

/* step02 stage */
.flowStep .stepStage {
  width: 100%;
  background: #fff;
  margin-top: 40px;
}
.stepStage thead {
  width: 100%;
  background: #4c4c4c;
  color: #fff;
}
.stepStage th {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 6.25%;
  text-align: center;
}
.stepStage th:first-child {
  width: 53.2%;
  border-right: 1px solid #fff;
}
.stepStage th:last-child {
  width: 46.8%;
}
.stepStage th .txtS {
  font-size: 12px;
  padding-left: 0.5em;
  font-weight: 500;
}
.stepStage tbody tr {
  border-bottom: 1px solid #4c4c4c;
  font-size: 24px;
}
.stepStage tbody tr .en {
  font-size: 40px;
  font-weight: 500;
}
.stepStage td {
  padding: 12px 8%;
  font-weight: 500;
  line-height: 1;
  text-align: right;
}
.stepStage td:first-child {
  border-right: 1px solid #4c4c4c;
}
.stepStage td:last-child {
  font-weight: 700;
}
.stepStage td:last-child .en {
  font-weight: 700;
}
/*
.stepStage .stage01 {
  font-size: 16px;
}
.stepStage .stage01 .en {
  font-size: 24px;
  padding-right: 2px;
  font-weight: 500;
}
.stepStage .stage02 {
  font-size: 20px;
}
.stepStage .stage02 .en {
  font-size: 30px;
  font-weight: 500;
}
.stepStage .stage03 {
  font-size: 24px;
}
.stepStage .stage03 .en {
  font-size: 40px;
  font-weight: 500;
}
.stepStage .stage04 {
  font-size: 28px;
}
.stepStage .stage04 td {
  font-weight: 700;
}
.stepStage .stage04 .en {
  font-size: 50px;
  font-weight: 700;
}*/
.stepStage tbody tr:last-child {
  border: none;
}

/* step03 */
.flowStep .step03 .stepImg {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
.flowStep li.step03::after{
  content: none;
}

@media screen and (max-width: 1000px) {
  /*.stepStage .stage01 {
    font-size: 1.6vw;
  }
  .stepStage .stage01 .en {
    font-size: 2.4vw;
  }
  .stepStage .stage02 {
    font-size: 2vw;
  }
  .stepStage .stage02 .en {
    font-size: 3vw;
  }
  .stepStage tbody tr {
    font-size: 2.4vw;
  }
  .stepStage tbody tr .en {
    font-size: 4vw;
  }*/
  .stepStage td {
    padding: 12px 7vw;
  }
  /*.stepStage td:last-child {
    padding: 12px 7.6vw;
  }
  .stepStage .stage04 {
    font-size: 2.8vw;
  }
  .stepStage .stage04 .en {
    font-size: 5vw;
  }*/
}

@media screen and (max-width: 800px) {
  .flowStep li {
    margin-bottom: 5vw;
    padding: 5vw;
  }
  .flowStep li::after {
    width: 3.5vw;
    height: 3.5vw;
    bottom: -1.75vw;
  }
  .flowStep .stepNum {
    font-size: 5vw;
    top: -2.5vw;
  }
  .flowStep .stepTxt > p {
    font-size: 3vw;
  }

  /* step02 stage */
  .flowStep .stepStage {
    margin-top: 5vw;
  }
  .stepStage th {
    font-size: 2.5vw;
    padding: 2.5vw 4vw;
  }
  .stepStage td {
    padding: 1.5vw 7vw;
  }
  /*.stepStage td:last-child {
    padding: 1.5vw 7.8vw;
  }
  .stepStage .stage01 {
    font-size: 2vw;
  }
  .stepStage .stage01 .en {
    font-size: 3vw;
  }
  .stepStage .stage02 {
    font-size: 2.5vw;
  }
  .stepStage .stage02 .en {
    font-size: 3.75vw;
  }*/
  .stepStage tbody tr {
    font-size: 3vw;
  }
  .stepStage tbody tr .en {
    font-size: 5vw;
  }
  /* .stepStage .stage04 {
    font-size: 3.4vw;
  }
  .stepStage .stage04 .en {
    font-size: 6vw;
  }*/
}

@media screen and (max-width: 640px) {
  .flowStep li {
    margin-bottom: 10.6666vw;
    padding: 6.4vw 4.2666vw;
  }
  .flowStep li::after {
    width: 7.5vw;
    height: 7.5vw;
    bottom: -3.75vw;
  }
  .flowStep .stepNum {
    font-size: 8.5333vw;
    top: -4.2666vw;
  }
  .flowStep .stepBlock {
    flex-wrap: wrap;
  }
  .flowStep .stepImg {
    max-width: 400px;
    width: 45%;
    text-align: center;
    margin: 0 auto 2.1333vw;
  }
  .flowStep .stepTxt {
    width: 100%;
  }
  .flowStep .stepTxt > p {
    font-size: 4.2666vw;
    text-align: center;
  }
  .flowStep .note {
    margin-top: 2.1333vw;
  }

  /* step02 stage */
  .flowStep .stepStage {
    margin-top: 4.2666vw;
  }
  .stepStage th {
    text-align: center;
    font-size: 3.73333vw;
    padding: 3.2vw 2.1333vw 2.5vw;
    line-height: 1.2em;
  }
  .stepStage th .txtS {
    font-size: 2.93333vw;
    padding-left: 0;
    display: block;
    font-weight: 400;
  }
  .stepStage td {
    padding: 2.6666vw 2.5vw;
  }
  /*.stepStage td:last-child {
    padding: 2.6666vw 6.4vw;
  }
  .stepStage .stage01 {
    font-size: 2.93333vw;
  }
  .stepStage .stage01 .en {
    font-size: 4.2666vw;
  }
  .stepStage .stage02 {
    font-size: 3.2vw;
  }
  .stepStage .stage02 .en {
    font-size: 4.8vw;
  }*/
  .stepStage tbody tr {
    font-size: 4.26666vw;
  }
  .stepStage tbody tr .en {
    font-size: 5.86666vw;
  }
  /*.stepStage .stage04 {
    font-size: 3.73333vw;
  }
  .stepStage .stage04 .en {
    font-size: 6.93333vw;
  }*/
  .flowStep li.step03 {
    padding-top: 2.1333vw;
  }
}

/* modal schedule ========== */
#modalSchedule .scheduleTxt {
  font-size: 16px;
  line-height: 1.6em;
  margin-top: 16px;
}

@media screen and (max-width: 800px) {
  #modalSchedule .scheduleTxt {
    font-size: 2vw;
    margin-top: 2vw;
  }
}

@media screen and (max-width: 640px) {
  #modalSchedule .scheduleTxt {
    font-size: 3.73333vw;
    margin-top: 4.2666vw;
  }
}

/* modal detail ========== */
#modalDetail{
  padding-bottom: 0;
}
.detailList > dl > dt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.detailList > dl > dd {
  font-size: 14px;
  line-height: 1.6em;
  padding-bottom: 16px;
  border-bottom: 1px solid #b5b7b8;
  margin-bottom: 16px;
}
.detailList > dl > dd .txtS {
  font-size: 12px;
}
.detailList > dl:last-child > dd {
  border-bottom: none;
}

@media screen and (max-width: 800px) {
  .detailList > dl > dt {
    font-size: 2vw;
    margin-bottom: 1vw;
  }
  .detailList > dl > dd {
    font-size: 1.75vw;
    padding-bottom: 2vw;
    margin-bottom: 2vw;
  }
  .detailList > dl > dd .txtS {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 640px) {
  .detailList > dl > dt {
    font-size: 4vw;
    margin-bottom: 2.1333vw;
  }
  .detailList > dl > dd {
    font-size: 3.46666vw;
    padding-bottom: 4.2666vw;
    margin-bottom: 4.2666vw;
  }
  .detailList > dl > dd .txtS {
    font-size: 3.2vw;
  }
}


/* modal footer ========== */
.modalWrapper .inlineFooter {
  background: #000;
}
.modalWrapper .inlineFooter .inlineFooterWrap {
  padding: 40px 5%;
  line-height: 1.6em;
}

@media screen and (max-width: 1000px) {
  .modalWrapper .inlineFooter {
    padding: 0;
  }
}

@media screen and (max-width: 800px) {
  .modalWrapper .koukokukisai .txtWrap {
    font-size: 1.75vw;
    line-height: 1.6em;
  }
}

@media screen and (max-width: 640px) {
  .modalWrapper .inlineFooter .inlineFooterWrap {
    padding: 10.6666vw 4.256%;
  }
  .modalWrapper .inlineFooter .inlineFooterWrap p {
    font-size: 12px;
  }
}



/* modal02
============================================================== */
/* modal top ========== */
.modalArea02 .topTtl,
.modalArea02 .topTtl::before,
.modalArea02 .topTtl::after {
  font-size: 30px;
}
.modalTop .cpList {
  margin-top: 8px;
  padding: 24px 3.334%;
  width: 100%;
}
.modalTop .cpList li {
  text-align: center;
}
.modalTop .cpTtl {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  position: relative;
  margin: 0 auto 16px;
  padding: 0 8px;
}
.modalTop .cpTtl::before,
.modalTop .cpTtl::after {
  content: "";
  display: inline-block;
  width: 48px;
  height: 2px;
  background: #005bac;
  position: relative;
  bottom: 5px;
}
.modalTop .cpTtl::before{
  right: 8px;
}
.modalTop .cpTtl::after{
  left: 8px;
}
.modalTop .cpSubttl {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  margin: 0 auto 8px;
}
.modalTop .cpList .cp01{
  margin-bottom: 40px;
}

@media screen and (max-width: 1000px) {
  .modalArea02 .topTtl, .modalArea02 .topTtl::before, .modalArea02 .topTtl::after {
    font-size: 28px;
  }
}

@media screen and (max-width: 800px) {
  .modalArea02 .topTtl, .modalArea02 .topTtl::before, .modalArea02 .topTtl::after {
    font-size: 3.5vw;
  }
  .topTtl {
    margin-bottom: 1vw;
  }
  .modalTop .cpList {
    margin-top: 1vw;
    padding: 3vw;
  }
  .modalTop .cpList .cp01 {
    margin-bottom: 5vw;
  }
  .modalTop .cpTtl {
    font-size: 2vw;
    margin: 0 auto 2vw;
  }
  .modalTop .cpTtl::before, .modalTop .cpTtl::after {
    width: 6vw;
  }
  .modalTop .cpSubttl {
    font-size: 2.25vw;
    margin: 0 auto 1vw;
  }
}

@media screen and (max-width: 640px) {
  .modalArea02 .topTtl, .modalArea02 .topTtl::before, .modalArea02 .topTtl::after {
    font-size: 6.4vw;
  }
  .topTtl {
    margin-bottom: 3.2vw;
  }
  .modalTop .cpList {
    margin-top: 0;
    padding: 6.4vw 3.2vw;
  }
  .modalTop .cpList .cp01 {
    margin-bottom: 10.6666vw;
  }
  .modalTop .cpTtl {
    font-size: 4.2666vw;
    margin: 0 auto 3.2vw;
  }
  .modalTop .cpTtl::before, .modalTop .cpTtl::after {
    width: 12.8vw;
  }
  .modalTop .cpSubttl {
    font-size: 4.8vw;
    margin: 0 auto 2.1333vw;
  }
  .modalTop .cpSubttl .disib {
    font-size: 80%;
    margin-top: 2px;
  }
}


/* modal cp info ========== */
.modalArea02 .cpInfo {
  padding: 37px 5% 24px;
  width: calc(100% + 11.112%);
  margin: 0 -5.556%;
  position: relative;
}
.modalArea02 .cpInfo.bgBlue {
  padding: 24px 5% 24px;
}
.modalArea02 .cpInfo::before {
  content: "";
  display: block;
  width: 60px;
  height: 42px;
  background: url(/lp/common_fx/images/img_ttl_arrow.svg) no-repeat top center;
  background-size: 100% auto;
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
}
.cpInfo .infoMark {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: url(/lp/common_fx/images/modal/quocard/parts_quocard_01.svg) no-repeat top right;
  background-size: auto 100%;
  padding: 0 64px 0 5%;
  position: absolute;
  top: -10px;
  left: 0;
}
.cpInfo .infoTtl {
  width: 70%;
  font-size: 32px;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.cpInfo .infoTtl .txtBlue{
  font-size: 24px;
}
.cpInfo .infoTtl .txtS{
  font-size: 16px;
  line-height: 1;
  display: block;
  margin-top: 4px;
  letter-spacing: 0;
}
.cpInfo .infoImg{
  width: 240px;
  height: 240px;
  position: absolute;
  bottom: 0;
  right: 5%;
  overflow: hidden;
}

/* cp01 */
#cp01Info .infoImg img {
  width: 85%;
  position: relative;
  top: -4px;
}

/* cp02 */
#cp02Info .infoImg {
  width: 250px;
  height: 165px;
}

@media screen and (max-width: 800px) {
  .modalArea02 .cpInfo {
    padding: 4.625vw 5% 3vw;
  }
  .modalArea02 .cpInfo::before {
    width: 7.5vw;
    height: 5.25vw;
  }
  .cpInfo .infoMark {
    height: 5vw;
    line-height: 5vw;
    font-size: 2.5vw;
    padding: 0 8vw 0 5%;
    top: -1.25vw;
  }
  .cpInfo .infoTtl {
    font-size: 4vw;
  }
  .cpInfo .infoTtl .txtBlue {
    font-size: 3vw;
  }
  .cpInfo .infoTtl .txtS {
    font-size: 2vw;
  }
  .cpInfo .infoImg {
    width: 30vw;
    height: 30vw
  }

  /* cp02 */
  #cp02Info .infoImg {
    width: 31vw;
    height: 20vw;
  }
}

@media screen and (max-width: 640px) {
  .modalArea02 .cpInfo {
    padding: 9.6vw 4.256% 5.3333vw;
  }
  .modalArea02 .cpInfo::before {
    width: 8vw;
    height: 6vw;
    bottom: -3.5vw;
  }
  .cpInfo .infoMark {
    height: 9.6vw;
    line-height: 9.6vw;
    font-size: 4.2666vw;
    padding: 0 10.6666vw 0 4.256%;
    top: -4.8vw;
  }
  .cpInfo .infoTtl {
    width: 100%;
    font-size: 5.33333vw;
  }
  .cpInfo .infoTtl .txtBlue {
    font-size: 4.8vw;
    margin-bottom: 2px;
  }
  .cpInfo .infoTtl .txtS {
    font-size: 3.73333vw;
    margin-top: 1.0666vw;
  }
  .cpInfo .infoImg {
    width: 30vw;
    height: 38vw;
    right: -2vw;
    top: 1.5vw;
  }

  /* cp01 */
  #cp01Info .infoImg img {
    top: 0;
  }

  /* cp02 */
  #cp02Info .infoImg {
    width: 27vw;
    height: 25vw;
    right: 1vw;
  }
}


/* modal cp method ========== */
.modalArea02 .cpMethod {
  margin-top: 64px;
}
.methodStep {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: center;
}
.methodStep li {
  width: 28.056%;
  position: relative;
}
.methodStep li:before {
  content: "";
  display: block;
  width: 26px;
  height: 16px;
  background: url(/lp/common_fx/images/icon_arrow_blue.svg) no-repeat center center;
  background-size: contain;
  transform: rotate(90deg);
  position: absolute;
  top: 47%;
  right: -22%;
}
.methodStep li:last-child::before {
  content: none;
}
.methodStep .methodNum {
  display: inline-block;
  width: 82px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  background: #005bac;
  padding: 6px 10px;
  border-radius: 4px;
  margin: 0 auto 12px;
}
.methodStep .methodImg {
  padding: 15px;
  background: #f2f2f2;
  border-radius: 8px;
  margin-bottom: 12px;
}
.methodStep .methodTxt {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2em;
}

/* cp02 */
#cp02Method .methodStep .methodImg {
  background: #FFFBE2;
}

@media screen and (max-width: 800px) {
  .modalArea02 .cpMethod {
    margin-top: 8vw;
  }
  .methodStep .methodNum {
    width: 11vw;
    font-size: 1.75vw;
    margin: 0 auto 1.5vw;
  }
  .methodStep .methodImg {
    padding: 2vw;
    margin-bottom: 1.5vw;
  }
  .methodStep .methodTxt {
    font-size: 1.75vw;
  }
  .methodStep li:before {
    width: 3.25vw;
    height: 3.25vw;
  }
}

@media screen and (max-width: 640px) {
  .modalArea02 .cpMethod {
    margin-top: 10.6666vw;
  }
  .methodStep {
    display: block;
  }
  .methodStep li {
    width: 100%;
    background: #f2f2f2;
    margin-bottom: 8.5333vw;
    padding: 3.2vw 5.3333vw;
  }
  .methodStep li:before {
    width: 7.5vw;
    height: 9.5vw;
    top: 34vw;
    right: 39vw;
    transform: rotate(180deg);
  }
  .methodStep li:after {
    display: block;
    content: "";
    clear: both; 
  }
  .methodStep li:last-child {
    margin-bottom: 0;
  }
  .methodStep .methodNum {
    width: 22vw;
    font-size: 3.46666vw;
    margin: 4vw auto 1.5vw;
    position: relative;
    left: -5vw;
    padding: 1.5vw 10px;
  }
  .methodStep .methodImg {
    margin-bottom: 0;
    float: left;
    padding: 0;
    width: 43%;
  }
  .methodStep .methodTxt {
    font-size: 4vw;
    text-align: left;
    width: 100%;
    padding-left: 50%;
    line-height: 1.4em;
  }

  /* cp01 */
  #cp01Method li:last-child img {
    transform: scale(1.2, 1.2);
  }

  /* cp02 */
  #cp02Method .methodStep li {
    background: #FFFBE2;
  }
  #cp02Method .methodStep .methodNum {
    margin: 2vw auto 1.5vw;
  }
  #cp02Method .methodStep li:before {
    top: 28vw;
  }
}


/* modal cp detail ========== */
.modalArea02 .cpDetail {
  margin-top: 80px;
}
.modalArea02 .modalBtn + .note {
  margin-top: 12px;
  text-align: center;
}

/* cp02 */
.handlingTtl {
  margin-top: 15px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #4c4c4c;
  padding-left: 1em;
}
.handlingList {
  width: 100%;
  margin-top: 8px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 1em;
}
.handlingList dl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border: 1px solid #4c4c4c;
}
.handlingList dt {
  width: 110px;
  background: #4c4c4c;
  color: #fff;
  font-size: 13px;
  line-height: 1.5em;
  padding: 8px 16px;
}
.handlingList dd {
  font-size: 13px;
  line-height: 1.5em;
  padding: 8px 16px;
}
.handlingList .block {
  width: 110px;
}
.handlingList dl.list01 {
  margin-right: 8px;
}
.handlingList dl.list02 dd {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.handlingList dl.list02 .block:first-child {
  margin-right: 16px;
}

@media screen and (max-width: 800px) {
  .modalArea02 .cpDetail {
    margin-top: 10vw;
  }
  .handlingTtl {
    margin-top: 2vw;
    font-size: 1.625vw;
  }
  .handlingList {
    margin-top: 1vw;
  }
  .handlingList dl.list01 {
    margin-right: 1vw;
  }
  .handlingList dt {
    width: 14vw;
    font-size: 1.625vw;
    padding: 1vw 2vw;
  }
  .handlingList dd {
    font-size: 1.625vw;
    padding: 1vw 2vw;
  }
  .handlingList .block {
    width: 14vw;
  }
  .handlingList dl.list02 .block:first-child {
    margin-right: 2vw;
  }
  
}

@media screen and (max-width: 640px) {
  .modalArea02 .modalBtn + .note {
    text-align: left;
  }
  .modalArea02 .modalBtn + .note > p {
    text-indent: -1em;
    padding-left: 1em;
  }
  .modalArea02 .cpDetail {
    margin-top: 17.0666vw;
  }

  .handlingTtl {
    margin-top: 4.2666vw;
    font-size: 3.46666vw;
    padding-left: 0;
  }
  .handlingList {
    margin-top: 2.1333vw;
    padding-left: 0;
    justify-content: space-between;
  }
  .handlingList dl {
    width: 49%;
    display: block;
  }
  .handlingList dl.list01 {
    margin-right: 0;
  }
  .handlingList dt {
    width: 100%;
    font-size: 3.46666vw;
    padding: 2.1333vw 3.46666vw;
  }
  .handlingList dd {
    font-size: 3.46666vw;
    padding: 2.1333vw 3.46666vw;
    width: 100%;
  }
  .handlingList dl.list02 dd {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .handlingList .block {
    width: 100%;
  }
  .handlingList dl.list02 .block:first-child {
    margin-right: 0;
  }
}


/* modal cp interval ========== */
.interval {
  margin-top: 40px;
}
.interval .topTtl {
  display: block;
  margin-bottom: 16px;
}
.interval .topTtl::before,
.interval .topTtl::after {
  content: "";
  width: 42px;
  height: 67px;
  background: url(/lp/common_fx/images/modal/quocard/parts_modalttl_02_pc.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 2px;
}
.interval .ttlBtm {
  font-size: 18px;
  margin-bottom: 24px;
}

@media screen and (max-width: 800px) {
  .interval {
    margin-top: 5vw;
  }
  .interval .topTtl {
    margin-bottom: 2vw;
  }
  .interval .topTtl::before, .interval .topTtl::after {
    width: 5.25vw;
    height: 8.375vw;
  }
  .interval .topTtl::before{
    left: 3vw;
  }
  .interval .topTtl::after{
    right: 3vw;
  }
  .interval .ttlBtm {
    font-size: 2.25vw;
    margin-bottom: 3vw;
  }
}

@media screen and (max-width: 640px) {
  .interval {
    margin-top: 8vw;
  }
  .interval .topTtl {
    margin-bottom: 4.2666vw;
    padding: 0;
  }
  .interval .topTtl::before, .interval .topTtl::after {
    width: 6.935vw;
    height: 10.135vw;
    background: url(/lp/common_fx/images/modal/quocard/parts_modalttl_02_sp.svg) no-repeat center center;
    background-size: contain;
    top: -3vw;
  }
  .interval .topTtl::before {
    left: 0;
  }
  .interval .topTtl::after {
    right: 0;
  }
  .interval .ttlBtm {
    font-size: 4vw;
    margin-bottom: 8vw;
  }
}

/* tieup
============================================================== */
#tieupDetail{
  padding: 0 0 8px;
}
.tieupTtl {
  margin-bottom: 40px;
}
.tieupAddition {
  padding: 40px 0;
  position: relative;
  margin-bottom: 40px;
}
.tieupAddition span {
  display: block;
  background: #005bac;
  color: #fff;
  font-size: 28px;
  line-height: 43px;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
  width: 120px;
  height: 40px;
  position: relative;
  z-index: 2;
  border-radius: 2px;
}
.tieupAddition:before {
  content: "";
  display: block;
  width: 120px;
  height: 40px;
  background: #005bac;
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: rotate(90deg);
  z-index: 1;
  border-radius: 2px;
}
.tieupModal .modalTop .topTtl{
  display: none;
}

@media screen and (max-width: 800px) {
  #tieupDetail {
    padding: 0 0 1vw;
  }
  .tieupTtl {
    margin-bottom: 5vw;
  }
  .tieupAddition {
    padding: 5vw 0;
    margin-bottom: 5vw;
  }
  .tieupAddition span {
    font-size: 3.5vw;
    line-height: 5.3vw;
    width: 15vw;
    height: 5vw;
  }
  .tieupAddition:before {
    width: 15vw;
    height: 5vw;
    top: 5vw;
  }
}

@media screen and (max-width: 640px) {
  #tieupDetail {
    padding: 0;
  }
  .tieupTtl {
    margin-bottom: 6.4vw;
  }
  .tieupAddition {
    padding: 7.46666vw 0;
    margin-bottom: 8.5333vw;
  }
  .tieupAddition span {
    font-size: 5.33333vw;
    line-height: 8.54vw;
    width: 24vw;
    height: 8.5333vw;
  }
  .tieupAddition:before {
    width: 24vw;
    height: 8.5333vw;
    top: 7.2vw;
  }
}


/* footer
============================================================== */
/* koukokukisai */
.koukokukisai{
  margin: 80px auto;
}
.koukokukisai .txtWrap {
  font-size: 14px;
  line-height: 1.4em;
}
.koukokukisai .txtWrap p.ttl {
  margin-bottom: 16px;
}