@charset "UTF-8";
/* ==========================================================================
  Foundation
  ========================================================================== */
/* Base
  ----------------------------------------------------------------- */
html {
  font-size: 2.4vw;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ Pro W3", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  background-color: #fff;
  color: #404040;
  font-size: 1.6rem;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #f3f3f3;
  border-left: 1px solid #dddddd;
}

::-webkit-scrollbar:hover {
  background-color: #f3f3f3;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background-color: #2ba4a0;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #2ba4a0;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  line-height: 1.7;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style-type: none;
  padding: 0;
}

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

picture {
  display: block;
}

.fixed {
  position: fixed;
  width: 100%;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.is_pc {
  display: none;
}

.is_sp {
  display: block;
}

@media screen and (min-width: 520px) {
  html {
    font-size: 10px;
  }
  .is_pc {
    display: block;
  }
  .is_sp {
    display: none;
  }
}

/* ==========================================================================
  Layout
  ========================================================================== */
/* Container
  ----------------------------------------------------------------- */
.l-container {
  width: 980px;
  margin: 0 auto;
}

@media screen and (max-width: 520px) {
  .l-container {
    width: 100%;
    margin: 0;
  }
}

/* Header
  ----------------------------------------------------------------- */
.l-header {
  padding: 1rem;
  border-bottom: 2px solid #b2b2b2;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 100;
  /*メニューボタン*/
}

.l-header .l-header__inner {
  position: relative;
}

.l-header .l-header__inner .l-header__logo {
  width: 18rem;
  display: block;
}

.l-header .l-nav a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  color: #448aff;
}

.l-header .l-nav li {
  display: inline-block;
  margin: 0 10px;
}

.l-header .l-nav__wrap.open {
  display: block;
}

.l-header .l-nav__wrap.close {
  display: none;
}

.l-header .l-nav__button {
  display: block;
  cursor: pointer;
  padding: 20px;
}

.l-header .l-nav__button:hover {
  opacity: 1;
}

.l-header .l-nav__button,
.l-header .l-nav__button span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header .l-nav__button {
  z-index: 110;
  position: absolute;
  width: 50px;
  height: 45px;
  right: 2%;
  top: -10%;
}

.l-header .l-nav__button.active {
  z-index: 220;
  background: none;
  width: 34px;
  height: 34px;
  right: 2%;
  top: 10%;
  padding: 0;
}

.l-header .l-nav__button.active span {
  width: 90%;
}

.l-header .l-nav__button span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  height: 2px;
  background-color: #000;
}

.l-header .l-nav__button span:nth-of-type(1) {
  top: 26%;
}

.l-header .l-nav__button span:nth-of-type(2) {
  top: 48%;
}

.l-header .l-nav__button span:nth-of-type(3) {
  bottom: 26%;
}

.l-header .l-nav__button span:nth-of-type(4) {
  font-size: 0.8rem;
  color: #000;
  bottom: 20%;
  white-space: nowrap;
  letter-spacing: -1px;
  left: -17%;
  background: none;
}

.l-header .l-nav__button.active span:nth-of-type(1) {
  -webkit-transform: translateY(16px) rotate(-45deg);
  transform: translateY(16px) rotate(-45deg);
  background-color: #fff;
  top: 1%;
}

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

.l-header .l-nav__button.active span:nth-of-type(3) {
  -webkit-transform: translateY(-16px) rotate(45deg);
  transform: translateY(-16px) rotate(45deg);
  background-color: #fff;
  bottom: -5%;
}

.l-header .l-nav__button.active span:nth-of-type(4) {
  display: none;
}

.l-header .l-nav__wrap {
  position: fixed;
  right: 0;
  top: 0;
  display: none;
  z-index: 210;
  width: 100%;
  height: 54vh;
  -webkit-box-shadow: 0 3px 3px #00000060;
  box-shadow: 0 3px 3px #00000060;
}
.l-nav__wrapInner {
  background-color: #3984d1;
}
.l-header .l-nav__list {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 10rem;
}

.l-header .l-nav__listItem {
  width: 48%;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #fff;
}

.l-header .l-nav__listItem a {
  color: #fff;
  display: block;
  text-decoration: none;
  border-left: 2px solid #fff;
  padding-left: 3rem;
}

@media screen and (max-width: 520px) {
  .l-header.l-container {
    padding: 0.5rem 0;
  }
  .l-header {
    /*メニューボタン*/
  }
  .l-header .l-header__logo {
    width: 15.7rem;
  }
  .l-header .l-nav a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    color: #448aff;
  }
  .l-header .l-nav li {
    display: inline-block;
    margin: 0 10px;
  }
  .l-header .l-nav__wrap.open {
    display: block;
  }
  .l-header .l-nav__wrap.close {
    display: none;
  }
  .l-header .l-nav__button {
    display: block;
    cursor: pointer;
    padding: 20px;
  }
  .l-header .l-nav__button:hover {
    opacity: 1;
  }
  .l-header .l-nav__button,
  .l-header .l-nav__button span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .l-header .l-nav__button {
    z-index: 110;
    position: absolute;
    width: 50px;
    height: 45px;
    right: 2%;
    top: -20%;
  }
  .l-header .l-nav__button.active {
    z-index: 220;
    background: none;
    width: 34px;
    height: 34px;
    right: 5%;
    top: 10%;
    padding: 0;
  }
  .l-header .l-nav__button.active span {
    width: 90%;
  }
  .l-header .l-nav__button span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 2px;
    background-color: #000;
  }
  .l-header .l-nav__button span:nth-of-type(1) {
    top: 26%;
  }
  .l-header .l-nav__button span:nth-of-type(2) {
    top: 48%;
  }
  .l-header .l-nav__button span:nth-of-type(3) {
    bottom: 26%;
  }
  .l-header .l-nav__button span:nth-of-type(4) {
    font-size: 0.8rem;
    color: #000;
    bottom: 20%;
    white-space: nowrap;
    letter-spacing: -1px;
    left: -17%;
    background: none;
  }
  .l-header .l-nav__button.active span:nth-of-type(1) {
    -webkit-transform: translateY(16px) rotate(-45deg);
    transform: translateY(16px) rotate(-45deg);
    background-color: #fff;
    top: 1%;
  }
  .l-header .l-nav__button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header .l-nav__button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-16px) rotate(45deg);
    transform: translateY(-16px) rotate(45deg);
    background-color: #fff;
    bottom: -5%;
  }
  .l-header .l-nav__button.active span:nth-of-type(4) {
    display: none;
  }
  .l-header .l-nav__wrap {
    position: fixed;
    right: 0;
    top: 0;
    display: none;
    z-index: 210;
    width: 100%;
    height: 100vh;
    -webkit-box-shadow: 0 3px 3px #00000060;
    box-shadow: 0 3px 3px #00000060;
  }
  .l-header .l-nav__list {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 10rem;
  }
  .l-header .l-nav__listItem {
    width: 100%;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #fff;
  }
  .l-header .l-nav__listItem a {
    color: #fff;
    display: block;
    font-size: 1.4rem;
    text-decoration: none;
    border-left: 2px solid #fff;
    padding-left: 3rem;
  }
}

/* Main
  ----------------------------------------------------------------- */
.l-maincontent {
  padding-top: 6rem;
}

.l-mainWrap {
  background: url(../images/lp_procedure_seller/desktop/main_bg.webp) 0 0
    no-repeat;
  background-size: cover;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.l-mainWrap .l-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-mainWrap .l-main .l-main__img {
  width: 60%;
}

/* submit animation */
.change-scale {
  -webkit-animation: change-scale 1.5s linear infinite alternate;
  animation: change-scale 1.5s linear infinite alternate;
}

@keyframes change-scale {
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .l-maincontent {
    padding-top: 5rem;
  }
  .l-mainWrap {
    background: url(../images/lp_procedure_seller/desktop/main_bg.webp) 0 0
      no-repeat;
    background-size: cover;
    padding: 2rem 0;
    margin-bottom: 0rem;
  }
  .l-mainWrap .l-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-mainWrap .l-main .l-main__img {
    width: 100%;
  }
}

/* Footer
  ----------------------------------------------------------------- */
.l-footer {
  background: #e6f2ff;
  padding: 3rem 0 0;
}

.l-copyright {
  text-align: center;
  background: #333333;
  padding: 1rem 1rem 14rem;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.fixbnr {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
  display: none;
}

.fixbnr .fixbnr__innerTxt {
  text-align: center;
  padding: 0.4em;
  background: #e4e4e4;
  margin-bottom: 0;
}

.fixbnr .fixbnr__innerBox {
  padding: 0.8em;
  background-color: rgba(0, 0, 0, 0.8);
}

.fixbnr .fixbnr__innerBox .fixbnr__inner {
  width: 980px;
  margin: 0 auto 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fixbnr .fixbnr__innerBox .fixbnr__inner .fixbnr__innerBtn {
  padding: 0 10px;
  flex: 0 0 50%;
  position: relative;
}

.fixbnr .fixbnr__innerBox .fixbnr__inner .fixbnr__innerTel {
  position: absolute;
  top: 0;
  left: 18rem;
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .l-footer {
    background: #e6f2ff;
    padding: 3rem 0 0;
  }
  .l-copyright {
    text-align: center;
    background: #333333;
    padding: 1rem 1rem 14rem;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
  }
  .fixbnr {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    display: none;
  }
  .fixbnr .fixbnr__innerTxt {
    text-align: center;
    padding: 0.4em;
    background: #e4e4e4;
    margin-bottom: 0;
  }
  .fixbnr .fixbnr__innerBox {
    padding: 0.8em;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .fixbnr .fixbnr__innerBox .fixbnr__inner {
    width: 95%;
    margin: 0 auto 0rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .fixbnr .fixbnr__innerBox .fixbnr__inner .fixbnr__innerBtn {
    flex: 45%;
    position: relative;
  }
  .fixbnr .fixbnr__innerBox .fixbnr__inner .fixbnr__innerBtn img {
    max-height: 60px;
  }
  .fixbnr
    .fixbnr__innerBox
    .fixbnr__inner
    .fixbnr__innerBtn
    + .fixbnr__innerBtn {
    flex: 0 0 55%;
    position: relative;
  }
  .fixbnr .fixbnr__innerBox .fixbnr__inner .fixbnr__innerTel {
    display: none;
  }
}

/* ==========================================================================
  Object
  ========================================================================== */
/* Component
  ----------------------------------------------------------------- */
/* Project
  ----------------------------------------------------------------- */
/* CMN FORM
  ----------------------------------------------------------------- */
form .err_msg {
  font-size: 12px;
  color: #fe0000;
  line-height: 1;
  margin-bottom: 5px;
}
.p-form {
  width: 40%;
  background: #fff;
}

.p-form .p-form__ttl {
  background: #fb5252;
  text-align: center;
  color: #fff;
}

.p-form .p-form_inner {
  width: 90%;
  margin: 0 auto;
}

.p-form .p-form_inner .p-form__txt {
  text-align: center;
  margin-bottom: 0.8rem;
}

.p-form .p-form_inner .p-form__subttl {
  margin-bottom: 0.8rem;
}

.p-form .p-form_inner .p-form__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.8rem;
}

.p-form .p-form_inner .p-form__box .p-form__hissu {
  background: #fb5252;
  padding: 0.5rem 0;
  color: #fff;
  line-height: 1em;
  border-radius: 10px;
  font-size: 1.2rem;
  width: 11%;
  text-align: center;
  margin-bottom: 0;
}

.p-form .p-form_inner .p-form__box .p-form__nini {
  background: #00366e;
  padding: 0.5rem 0;
  color: #fff;
  line-height: 1em;
  border-radius: 10px;
  font-size: 1.2rem;
  width: 11%;
  text-align: center;
  margin-bottom: 0;
}

.p-form .p-form_inner .p-form__box .p-form__content {
  width: 20%;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.p-form .p-form_inner .p-form__box .p-form__input {
  width: 64%;
  font-size: 1.4rem;
}

.p-form .p-form_inner .p-form__box .p-form__inputSelect {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #3984d1;
  padding: 0.4rem;
}

.p-form__must {
  background-color: #fff1c8 !important;
}

.p-form .p-form_inner .p-form__box .p-form__inputTxt {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #3984d1;
  padding: 0.4rem;
}

.p-form .p-form_inner .p-form__send {
  text-align: center;
  margin-top: 0.8rem;
}

.submit {
  width: 90%;
  max-width: 300px;
}

.p-form .p-form_inner .p-form__text--error {
  font-size: 1.4rem;
  color: red;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-form {
    width: 90%;
    background: none;
    margin: 0 auto;
  }
  .p-form .p-form__ttl {
    background: #fb5252;
    text-align: center;
    color: #fff;
    display: none;
  }
  .p-form .p-form_inner {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding-bottom: 2rem;
    border: 1px solid #999999;
    border-top: none;
  }
  .p-form .p-form_inner .p-form__txt {
    text-align: center;
    margin-bottom: 0rem;
    width: 103%;
    background: #e6f2ff;
    padding: 0 2rem 1rem 0;
    margin: 0px -2%;
  }
  .p-form .p-form_inner .p-form__subttl {
    margin-bottom: 0rem;
  }
  .p-form .p-form_inner .p-form__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0rem;
    padding: 0 2rem 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-form .p-form_inner .p-form__box .p-form__hissu {
    background: #fb5252;
    padding: 0.5rem 0;
    color: #fff;
    line-height: 1em;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 11%;
    text-align: center;
    margin-bottom: 0.8rem;
    margin-right: 1rem;
  }
  .p-form .p-form_inner .p-form__box .p-form__nini {
    background: #00366e;
    padding: 0.5rem 0;
    color: #fff;
    line-height: 1em;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 11%;
    text-align: center;
    margin-bottom: 0.8rem;
    margin-right: 1rem;
  }
  .p-form .p-form_inner .p-form__box .p-form__content {
    width: 80%;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  .p-form .p-form_inner .p-form__box .p-form__input {
    width: 100%;
    font-size: 1.6rem;
  }
  .p-form .p-form_inner .p-form__box .p-form__inputSelect {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #3984d1;
    padding: 0.4rem;
  }
  .p-form .p-form_inner .p-form__box .p-form__inputTxt {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #3984d1;
    padding: 0.4rem;
  }
  .p-form .p-form_inner .p-form__send {
    text-align: center;
    margin-top: 0.8rem;
  }
  .p-form .p-form_inner .p-form__text--error {
    font-size: 1.4rem;
    color: red;
    text-align: center;
    width: 103%;
    margin: 0 -1%;
    padding-bottom: 2rem;
    background: #e6f2ff;
  }
}

/* ABOUT
  ----------------------------------------------------------------- */
.p-about__wrap {
  background: #e6f2ff;
  padding: 3rem 0;
}

.p-about__wrap .p-about__inner {
  width: 710px;
  margin: 0 auto;
}

.p-about__wrap .p-about__inner .p-about__ttl {
  margin-bottom: 3rem;
  padding: 0 5rem;
}

.p-about__wrap .p-about__inner .p-about__listbox {
  position: relative;
}

.p-about__wrap .p-about__inner .p-about__listbox .p-about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-about__wrap .p-about__inner .p-about__listbox .p-about__list .p-about__item {
  width: 32.5%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  text-align: center;
  font-size: 2.2rem;
  padding: 2rem 0;
  line-height: 1.4em;
}

.p-about__wrap .p-about__inner .p-about__listbox .p-about__img01 {
  position: absolute;
  width: 12%;
  left: -5rem;
  bottom: -20px;
}

.p-about__wrap .p-about__inner .p-about__listbox .p-about__img02 {
  position: absolute;
  width: 19%;
  right: -8rem;
  bottom: 1rem;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-about__wrap {
    background: #e6f2ff;
    padding: 3rem 0;
    margin-bottom: 2rem;
    position: relative;
  }
  .p-about__wrap:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7rem 50vw 0 50vw;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    top: 14rem;
  }
  .p-about__wrap:before {
    content: "";
    background: #fff;
    width: 100%;
    height: 14rem;
    top: 0;
    position: absolute;
  }
  .p-about__wrap .p-about__inner {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .p-about__wrap .p-about__inner .p-about__ttl {
    margin-bottom: 3rem;
    padding: 0 0rem;
    margin-top: 6rem;
  }
  .p-about__wrap .p-about__inner .p-about__listbox {
    position: relative;
    border: 1px solid #3984d1;
    padding: 1rem 2rem;
    border-radius: 6px;
    background: #fff;
  }
  .p-about__wrap .p-about__inner .p-about__listbox .p-about__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .p-about__wrap
    .p-about__inner
    .p-about__listbox
    .p-about__list
    .p-about__item {
    width: 100%;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0;
    text-align: center;
    font-size: 1.8rem;
    padding: 0 0 1rem;
    margin-bottom: 1rem;
    line-height: 1.4em;
    border-bottom: 1px solid #3984d1;
    color: #3984d1;
  }
  .p-about__wrap .p-about__inner .p-about__listbox .p-about__list:last-child {
    padding: 0;
    border-bottom: none;
    margin-bottom: 0rem;
  }
  .p-about__wrap .p-about__inner .p-about__listbox .p-about__list br {
    display: none;
  }
  .p-about__wrap .p-about__inner .p-about__listbox .p-about__img01 {
    position: absolute;
    width: 19%;
    left: -3rem;
    bottom: 13px;
  }
  .p-about__wrap .p-about__inner .p-about__listbox .p-about__img02 {
    position: absolute;
    width: 26%;
    right: -2rem;
    bottom: -4rem;
  }
}

/* CORONA
  ----------------------------------------------------------------- */
.p-corona {
  text-align: center;
  margin-bottom: 2rem;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-corona {
    text-align: center;
    margin-bottom: 2rem;
  }
}

/* RETURN
  ----------------------------------------------------------------- */
.p-return__wrap {
  background: #e6faf8;
  padding: 3rem 0;
}

.p-return__wrap .p-return__inner {
  width: 885px;
  margin: 0 auto;
}

.p-return__wrap .p-return__inner .p-return__ttl {
  text-align: center;
}

.p-return__wrap .p-return__inner .p-return__ttl .p-return__ttlSub {
  background: #2ba4a0;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  display: block;
  width: 36%;
  margin: 0 auto 1rem;
  border-radius: 6px;
  letter-spacing: 2px;
  padding: 0.3rem 0;
}

.p-return__wrap .p-return__inner .p-return__ttl .p-return__ttlMain {
  display: block;
  text-align: center;
  font-size: 3.6rem;
  color: #2ba4a0;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.p-return__wrap .p-return__inner .p-return__box {
  background: url(../images/lp_procedure_seller/desktop/return_line.webp) 0 0
    no-repeat;
  background-size: 100% 100%;
  padding: 1rem;
}

.p-return__wrap .p-return__inner .p-return__box .p-return__boxInner {
  background: #fff;
  padding: 2rem 3rem 2rem;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL {
  width: 52%;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLTxt {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  letter-spacing: 2px;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLPrice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 3rem;
  margin-top: -5.0rem;
  margin-bottom: -0.5rem;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLPrice
  .p-return__maxText {
    writing-mode: vertical-rl;
    font-size: 125%;
    justify-self: flex-start;
  }

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLPrice
  .p-return__priceText {
    font-family: helvetica;
    font-size: 300%;
    font-weight: bolder;
    transform: scale(1.02, 1.1);
    margin-left: -0.5rem;
  }

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLPrice
  .p-return__yenText {
    padding-top: 50px;
    justify-self: flex-end;
  }

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLImg {
  width: 97%;
  margin-right: 1rem;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLTxt02 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-top: -3.5rem;
  text-align: center;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLTxt02
  span {
  color: #2ba4a0;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceR {
  width: 46%;
  border: 2px solid #2ba4a0;
  border-radius: 4px;
  padding: 10px;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceR
  .p-return__priceRTxt {
  border-bottom: 2px dashed #2ba4a0;
  color: #2ba4a0;
  font-size: 1.8rem;
  padding: 0 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceR
  .p-return__priceRTxt:last-child {
  border-bottom: none;
  padding-bottom: 0rem;
  margin-bottom: 0rem;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__priceNote {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__priceBtm {
  background: #2ba4a0;
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.6rem 1rem;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__priceBtm
  .p-return__priceBtmL {
  padding: 1rem;
  background: #ffffff40;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-right: 2rem;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__priceBtm
  .p-return__priceBtmR {
  font-size: 3.6rem;
  color: #fff;
  letter-spacing: 2px;
}

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__priceBtm
  .p-return__priceBtmR
  span {
  font-size: 2rem;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-return__wrap {
    background: #e6faf8;
    padding: 3rem 0;
    margin-bottom: 2rem;
  }
  .p-return__wrap .p-return__inner {
    width: 90%;
    margin: 0 auto;
  }
  .p-return__wrap .p-return__inner .p-return__ttl {
    text-align: center;
  }
  .p-return__wrap .p-return__inner .p-return__ttl .p-return__ttlSub {
    background: #2ba4a0;
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    display: block;
    width: 64%;
    margin: 0 auto 1rem;
    border-radius: 6px;
    letter-spacing: 2px;
    padding: 0.2rem 0;
  }
  .p-return__wrap .p-return__inner .p-return__ttl .p-return__ttlMain {
    display: block;
    text-align: center;
    font-size: 2.4rem;
    color: #2ba4a0;
    letter-spacing: 2px;
    margin-bottom: 2rem;
  }
  .p-return__wrap .p-return__inner .p-return__box {
    background: url(../images/lp_procedure_seller/mobile/return_line.webp) 0 0
      no-repeat;
    background-size: 100% 100%;
    padding: 1rem;
  }
  .p-return__wrap .p-return__inner .p-return__box .p-return__boxInner {
    background: #fff;
    padding: 2rem 2rem 2rem;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceL {
    width: 100%;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceL
    .p-return__priceLTxt {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    letter-spacing: 2px;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceL
    .p-return__priceLPrice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 2rem;
    margin-top: -3.5rem;
    margin-bottom: -0.5rem;
    white-space: nowrap;
  }

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLPrice
  .p-return__priceText {
    font-family: helvetica;
    font-size: 300%;
    font-weight: bolder;
    margin-left: -0.5rem;
  }

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLPrice
  .p-return__yenText {
    padding-top: 30px;
  }

  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceL
    .p-return__priceLImg {
    width: 97%;
    margin-right: 0rem;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceL
    .p-return__priceLTxt02 {
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-align: center;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceL
    .p-return__priceLTxt02
    span {
    color: #2ba4a0;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceR {
    width: 100%;
    border: 2px solid #2ba4a0;
    border-radius: 4px;
    padding: 10px;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceR
    .p-return__priceRTxt {
    border-bottom: 2px dashed #2ba4a0;
    color: #2ba4a0;
    font-size: 1.4rem;
    padding: 0 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceR
    .p-return__priceRTxt:last-child {
    border-bottom: none;
    padding-bottom: 0rem;
    margin-bottom: 0rem;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__priceNote {
    font-size: 1rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    letter-spacing: -0.5px;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__priceBtm {
    background: #2ba4a0;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.4rem 1rem 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__priceBtm
    .p-return__priceBtmL {
    padding: 0;
    background: none;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-right: 0;
    text-align: center;
    width: 100%;
    line-height: 1em;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__priceBtm
    .p-return__priceBtmR {
    font-size: 2.6rem;
    color: #fff;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__priceBtm
    .p-return__priceBtmR
    span {
    font-size: 1.6rem;
  }
}

/* RESULT
  ----------------------------------------------------------------- */
.p-result__wrap {
  padding: 3rem 0;
  margin-bottom: 4rem;
}

.p-result__wrap .p-result__ttl {
  text-align: center;
}

.p-result__wrap .p-result__ttl .p-result__ttlSub {
  background: #3984d1;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  display: block;
  width: 17%;
  margin: 0 auto 1rem;
  border-radius: 6px;
  letter-spacing: 2px;
  padding: 0.3rem 0;
}

.p-result__wrap .p-result__ttl .p-result__ttlMain {
  display: block;
  text-align: center;
  font-size: 3.6rem;
  color: #3984d1;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.p-result__wrap .p-result__inner {
  width: 980px;
  margin: 0 auto;
  border: 2px solid #3984d1;
  border-radius: 10px;
  padding: 2rem;
}

.p-result__wrap .p-result__inner .p-result__txt {
  text-align: center;
  margin-bottom: 2rem;
}

.p-result__wrap .p-result__inner .p-result__ttl {
  position: relative;
  width: 76%;
  margin: 0 auto 2rem;
}

.p-result__wrap .p-result__inner .p-result__ttl .p-result__ttlTxt {
  position: absolute;
  width: 46%;
  bottom: -1rem;
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.4em;
  display: block;
}

.p-result__wrap .p-result__inner .p-result__box {
  border: 1px solid #cccccc;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}

.p-result__wrap .p-result__inner .p-result__list .slick-dots {
  bottom: -14%;
  width: 54%;
}

.p-result__wrap .p-result__inner .p-result__list .p-result__item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-result__wrap
  .p-result__inner
  .p-result__list
  .p-result__item
  .p-result__img {
  width: 54%;
}

.p-result__wrap
  .p-result__inner
  .p-result__list
  .p-result__item
  .p-result__content {
  width: 42%;
}

.p-result__wrap
  .p-result__inner
  .p-result__list
  .p-result__item
  .p-result__content
  .p-result__contentList
  .p-result__contentItem {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.3rem;
}

.p-result__wrap
  .p-result__inner
  .p-result__list
  .p-result__item
  .p-result__content
  .p-result__contentList
  .p-result__contentItem
  .p-result__contentL {
  width: 28%;
  position: relative;
  margin-bottom: 0;
}

.p-result__wrap
  .p-result__inner
  .p-result__list
  .p-result__item
  .p-result__content
  .p-result__contentList
  .p-result__contentItem
  .p-result__contentL:after {
  content: ":";
  margin-left: 1rem;
  position: absolute;
  right: 0;
}

.p-result__wrap
  .p-result__inner
  .p-result__list
  .p-result__item
  .p-result__content
  .p-result__contentList
  .p-result__contentItem
  .p-result__contentR {
  width: 65%;
  margin-bottom: 0;
}

.p-result__wrap .p-result__inner .p-result__per {
  margin-top: 3rem;
  background: #e6f2ff;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #e6f2ff;
}

.p-result__wrap .p-result__inner .p-result__perL {
  width: 48%;
}

.p-result__wrap .p-result__inner .p-result__perTtl {
  font-size: 2rem;
  color: #3984d1;
}

.p-result__wrap .p-result__inner .p-result__perTxt {
  font-size: 1.6rem;
}

.p-result__wrap .p-result__inner .p-result__perR {
  width: 48%;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-result__wrap {
    padding: 3rem 0;
    margin-bottom: 0rem;
  }
  .p-result__wrap .p-result__ttl {
    text-align: center;
  }
  .p-result__wrap .p-result__ttl .p-result__ttlSub {
    background: #3984d1;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    display: block;
    width: 50%;
    margin: 0 auto 1rem;
    border-radius: 6px;
    letter-spacing: 2px;
    padding: 0.3rem 0;
  }
  .p-result__wrap .p-result__ttl .p-result__ttlMain {
    display: block;
    text-align: center;
    font-size: 2.4rem;
    color: #3984d1;
    letter-spacing: 2px;
    margin-bottom: 2rem;
  }
  .p-result__wrap .p-result__inner {
    width: 90%;
    margin: 0 auto;
    border: 2px solid #3984d1;
    border-radius: 10px;
    padding: 2rem;
  }
  .p-result__wrap .p-result__inner .p-result__txt {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
  .p-result__wrap .p-result__inner .p-result__ttl {
    position: relative;
    width: 100%;
    margin: 0 auto 2rem;
  }
  .p-result__wrap .p-result__inner .p-result__ttl .p-result__ttlTxt {
    position: relative;
    width: 100%;
    bottom: 0rem;
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.4em;
    display: block;
    margin-top: 1rem;
  }
  .p-result__wrap .p-result__inner .p-result__box {
    border: 1px solid #cccccc;
    padding: 2rem 2rem;
    margin-bottom: 3rem;
  }
  .p-result__wrap .p-result__inner .p-result__box .p-result__list {
    margin-bottom: 0px !important;
  }
  .p-result__wrap .p-result__inner .p-result__box .p-result__list .slick-dots {
    bottom: -11%;
    width: 100%;
  }
  .p-result__wrap .p-result__inner .p-result__box .p-result__list .slick-next {
    left: 91%;
    top: 18%;
  }
  .p-result__wrap .p-result__inner .p-result__box .p-result__list .slick-prev {
    left: -5%;
    top: 18%;
  }
  .p-result__wrap
    .p-result__inner
    .p-result__box
    .p-result__list
    .p-result__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-result__wrap
    .p-result__inner
    .p-result__box
    .p-result__list
    .p-result__item
    .p-result__img {
    width: 100%;
  }
  .p-result__wrap
    .p-result__inner
    .p-result__box
    .p-result__list
    .p-result__item
    .p-result__content {
    width: 100%;
  }
  .p-result__wrap
    .p-result__inner
    .p-result__box
    .p-result__list
    .p-result__item
    .p-result__content
    .p-result__contentList
    .p-result__contentItem {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.3rem;
  }
  .p-result__wrap
    .p-result__inner
    .p-result__box
    .p-result__list
    .p-result__item
    .p-result__content
    .p-result__contentList
    .p-result__contentL {
    width: 31%;
    position: relative;
    margin-bottom: 0;
  }
  .p-result__wrap
    .p-result__inner
    .p-result__box
    .p-result__list
    .p-result__item
    .p-result__content
    .p-result__contentList
    .p-result__contentL:after {
    content: ":";
    margin-left: 1rem;
    position: absolute;
    right: 0;
  }
  .p-result__wrap
    .p-result__inner
    .p-result__box
    .p-result__list
    .p-result__item
    .p-result__content
    .p-result__contentList
    .p-result__contentR {
    width: 65%;
    margin-bottom: 0;
  }
  .p-result__wrap .p-result__inner .p-result__per {
    margin-top: 3rem;
    background: #e6f2ff;
    padding: 2rem 2rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #e6f2ff;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-top: 5rem;
    position: relative;
  }
  .p-result__wrap .p-result__inner .p-result__per .p-result__perL {
    width: 100%;
  }
  .p-result__wrap .p-result__inner .p-result__per .p-result__perTtl {
    font-size: 2rem;
    color: #3984d1;
    position: absolute;
    top: 1rem;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .p-result__wrap .p-result__inner .p-result__per .p-result__perTxt {
    font-size: 1.6rem;
  }
  .p-result__wrap .p-result__inner .p-result__per .p-result__perR {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* REASON
  ----------------------------------------------------------------- */
.p-reason__wrap {
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.p-reason__wrap .p-reason__inner {
  width: 980px;
  margin: 0 auto;
}

.p-reason__wrap .p-reason__inner .p-reason__ttl {
  width: 60%;
  margin: 0 auto 2rem;
  position: relative;
}

.p-reason__wrap .p-reason__inner .p-reason__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: -8rem;
  margin-bottom: 4rem;
}

.p-reason__wrap .p-reason__inner .p-reason__box .p-reason__boxL {
  width: 50%;
}

.p-reason__wrap .p-reason__inner .p-reason__box .p-reason__boxR {
  width: 44%;
  padding-right: 6rem;
}

.p-reason__wrap .p-reason__inner .p-reason__box .p-reason__boxR iframe {
  width: 100%;
  height: 190px;
}

.p-reason__wrap .p-reason__inner .p-reason__list {
  width: 92%;
  margin: 0 auto 2rem;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-reason__wrap {
    padding: 3rem 0;
    margin-bottom: 2rem;
  }
  .p-reason__wrap .p-reason__inner {
    width: 100%;
    margin: 0 auto;
  }
  .p-reason__wrap .p-reason__inner .p-reason__ttl {
    width: 100%;
    margin: 0 0 1rem;
    padding-left: 4rem;
    position: relative;
  }
  .p-reason__wrap .p-reason__inner .p-reason__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 2rem;
    margin-bottom: 4rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-reason__wrap .p-reason__inner .p-reason__box .p-reason__boxL {
    width: 50%;
    display: none;
  }
  .p-reason__wrap .p-reason__inner .p-reason__box .p-reason__boxR {
    width: 90%;
    padding-right: 0em;
    margin: 0 auto;
  }
  .p-reason__wrap .p-reason__inner .p-reason__list {
    width: 90%;
    margin: 0 auto 2rem;
  }
}

/* SELF
  ----------------------------------------------------------------- */
.p-self__wrap {
  padding: 3rem 0;
  margin-bottom: 2rem;
  background: #f2f2f2;
}

.p-self__wrap .p-self__inner {
  width: 980px;
  margin: 0 auto;
}

.p-self__wrap .p-self__inner .p-self__ttl {
  background: #2ba4a0;
  text-align: center;
  color: #fff;
  font-size: 2.6rem;
  padding: 0.5rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.p-self__wrap .p-self__inner .p-self__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-self__wrap .p-self__inner .p-self__list .p-self__item {
  width: 32%;
  background: #fff;
  padding: 1.8rem;
}

.p-self__wrap .p-self__inner .p-self__list .p-self__itemTtl {
  text-align: center;
  font-size: 2.2rem;
  color: #2ba4a0;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #ccc;
  line-height: 1.4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 3.6em;
}

.p-self__wrap .p-self__inner .p-self__list .p-self__itemTxt {
  font-size: 1.4rem;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-self__wrap {
    padding: 3rem 0 1rem;
    margin-bottom: 2rem;
    background: #f2f2f2;
  }
  .p-self__wrap .p-self__inner {
    width: 90%;
    margin: 0 auto;
  }
  .p-self__wrap .p-self__inner .p-self__ttl {
    background: #2ba4a0;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    padding: 0.5rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
  }
  .p-self__wrap .p-self__inner .p-self__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-self__wrap .p-self__inner .p-self__list .p-self__item {
    width: 100%;
    background: none;
    padding: 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .p-self__wrap .p-self__inner .p-self__list .p-self__item .p-self__itemTtl {
    text-align: left;
    font-size: 1.6rem;
    color: #2ba4a0;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    line-height: 1.4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-height: 0;
  }
  .p-self__wrap .p-self__inner .p-self__list .p-self__item .p-self__itemTtl br {
    display: none;
  }
  .p-self__wrap .p-self__inner .p-self__list .p-self__item .p-self__itemTxt {
    font-size: 1.4rem;
  }
}

/* STEP
  ----------------------------------------------------------------- */
.p-step__wrap {
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.p-step__wrap .p-step__inner {
  width: 980px;
  margin: 0 auto;
}

.p-step__wrap .p-step__inner .p-step__ttl {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 4rem;
}

.p-step__wrap .p-step__inner .p-step__ttl .p-step__ttlImg {
  display: block;
  width: 40%;
  margin: 0 auto 2rem;
  position: relative;
  left: 4rem;
}

.p-step__wrap .p-step__inner .p-step__ttl span {
  color: #fb5252;
}

.p-step__wrap .p-step__inner .p-step__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-step__wrap .p-step__inner .p-step__list .p-step__item {
  width: 49%;
  background: #fff;
  padding: 1rem 1.8rem;
  margin-bottom: 2rem;
  border: 2px solid #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-height: 17rem;
}

.p-step__wrap .p-step__inner .p-step__list .p-step__item .p-step__itemL {
  width: 66%;
}

.p-step__wrap .p-step__inner .p-step__list .p-step__item .p-step__itemR {
  width: 30%;
}

.p-step__wrap .p-step__inner .p-step__list .p-step__item .p-step__itemTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2rem;
  color: #3984d1;
}

.p-step__wrap .p-step__inner .p-step__list .p-step__item .p-step__itemTtl span {
  margin-right: 2rem;
  width: 20%;
}

.p-step__wrap .p-step__inner .p-step__list .p-step__item .p-step__itemTxt {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-step__wrap {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }
  .p-step__wrap .p-step__inner {
    width: 90%;
    margin: 0 auto;
  }
  .p-step__wrap .p-step__inner .p-step__ttl {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    letter-spacing: 0px;
  }
  .p-step__wrap .p-step__inner .p-step__ttl .p-step__ttlImg {
    display: block;
    width: 80%;
    margin: 0 auto 1rem;
    position: relative;
    left: 4rem;
  }
  .p-step__wrap .p-step__inner .p-step__ttl span {
    color: #fb5252;
  }
  .p-step__wrap .p-step__inner .p-step__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-step__wrap .p-step__inner .p-step__list .p-step__item {
    width: 100%;
    background: #fff;
    padding: 5rem 1.8rem 1rem;
    margin-bottom: 2rem;
    border: 2px solid #e5e5e5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-height: unset;
    position: relative;
  }
  .p-step__wrap .p-step__inner .p-step__list .p-step__item .p-step__itemL {
    width: 50%;
  }
  .p-step__wrap .p-step__inner .p-step__list .p-step__item .p-step__itemR {
    width: 46%;
  }
  .p-step__wrap .p-step__inner .p-step__list .p-step__item .p-step__itemTtl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.8rem;
    color: #3984d1;
    position: absolute;
    width: 100%;
    top: 1rem;
    left: 2rem;
  }
  .p-step__wrap
    .p-step__inner
    .p-step__list
    .p-step__item
    .p-step__itemTtl
    span {
    margin-right: 2rem;
    width: 18%;
  }
  .p-step__wrap .p-step__inner .p-step__list .p-step__item .p-step__itemTxt {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .p-spForm__wrap {
    background: #e6f2ff;
    padding: 3rem 0;
    margin-bottom: 2rem;
    position: relative;
  }
}

/* QA
  ----------------------------------------------------------------- */
.p-qa__wrap {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 5px solid #e5e5e5;
}

.p-qa__wrap .p-qa__inner {
  width: 880px;
  margin: 0 auto;
}

.p-qa__wrap .p-qa__inner .p-qa__ttl {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 4rem;
  position: relative;
}

.p-qa__wrap .p-qa__inner .p-qa__ttl:after {
  content: "";
  width: 10%;
  height: 4px;
  margin: 0 auto;
  background: #3984d1;
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
}

.p-qa__wrap .p-qa__inner .p-qa__list {
  border: 1px solid #404040;
}

.p-qa__wrap .p-qa__inner .p-qa__list .p-qa__item {
  border-bottom: 1px solid #404040;
  padding: 2rem;
}

.p-qa__wrap .p-qa__inner .p-qa__list .p-qa__item:last-child {
  border-bottom: none;
}

.p-qa__wrap .p-qa__inner .p-qa__list .p-qa__itemTtl {
  padding-left: 6rem;
  background: url(../images/lp_procedure_seller/desktop/q_ico.webp) 1rem 0.4rem
    no-repeat;
  position: relative;
}

.p-qa__wrap .p-qa__inner .p-qa__list .p-qa__itemTtl:after {
  content: "";
  background: url(../images/lp_procedure_seller/desktop/q_open.webp) 0 0
    no-repeat;
  background-size: cover;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

.p-qa__wrap .p-qa__inner .p-qa__list .p-qa__itemTtl.on:after {
  background: url(../images/lp_procedure_seller/desktop/q_close.webp) 0 0
    no-repeat;
  background-size: cover;
}

.p-qa__wrap .p-qa__inner .p-qa__list .p-qa__itemTxt {
  padding-left: 6rem;
  background: url(../images/lp_procedure_seller/desktop/a_ico.webp) 1rem 2.4rem
    no-repeat;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px dashed #404040;
  display: none;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-qa__wrap {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 5px solid #e5e5e5;
  }
  .p-qa__wrap .p-qa__inner {
    width: 90%;
    margin: 0 auto;
  }
  .p-qa__wrap .p-qa__inner .p-qa__ttl {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 4rem;
    position: relative;
  }
  .p-qa__wrap .p-qa__inner .p-qa__ttl:after {
    content: "";
    width: 10%;
    height: 4px;
    margin: 0 auto;
    background: #3984d1;
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
  }
  .p-qa__wrap .p-qa__inner .p-qa__list {
    border: 1px solid #404040;
  }
  .p-qa__wrap .p-qa__inner .p-qa__list .p-qa__item {
    border-bottom: 1px solid #404040;
    padding: 1rem 2rem;
  }
  .p-qa__wrap .p-qa__inner .p-qa__list .p-qa__item:last-child {
    border-bottom: none;
  }
  .p-qa__wrap .p-qa__inner .p-qa__list .p-qa__itemTtl {
    padding-left: 6rem;
    padding-right: 6rem;
    background: url(../images/lp_procedure_seller/desktop/q_ico.webp) 1rem center
      no-repeat;
    position: relative;
  }
  .p-qa__wrap .p-qa__inner .p-qa__list .p-qa__itemTtl:after {
    content: "";
    background: url(../images/lp_procedure_seller/desktop/q_open.webp) 0 0
      no-repeat;
    background-size: cover;
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .p-qa__wrap .p-qa__inner .p-qa__list .p-qa__itemTtl.on:after {
    background: url(../images/lp_procedure_seller/desktop/q_close.webp) 0 0
      no-repeat;
    background-size: cover;
  }
  .p-qa__wrap .p-qa__inner .p-qa__list .p-qa__itemTxt {
    padding-left: 6rem;
    background: url(../images/lp_procedure_seller/desktop/a_ico.webp) 1rem 2.4rem
      no-repeat;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px dashed #404040;
    display: none;
  }
}

/* STAFF
  ----------------------------------------------------------------- */
.p-staff__wrap {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
}

.p-staff__wrap .p-staff__inner {
  width: 880px;
  margin: 0 auto;
}

.p-staff__wrap .p-staff__inner .p-staff__ttl {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 4rem;
  position: relative;
}

.p-staff__wrap .p-staff__inner .p-staff__ttl:after {
  content: "";
  width: 10%;
  height: 4px;
  margin: 0 auto;
  background: #3984d1;
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
}

.p-staff__wrap .p-staff__inner .p-staff__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.p-staff__wrap .p-staff__inner .p-staff__box {
  border: 1px solid #b59b49;
  padding: 2rem;
  background: #fffcf2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-staff__wrap .p-staff__inner .p-staff__list {
  padding: 2rem;
  background: #fff;
  width: 52%;
}

.p-staff__wrap .p-staff__inner .p-staff__item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-staff__wrap .p-staff__inner .p-staff__itemL {
  width: 45%;
}

.p-staff__wrap .p-staff__inner .p-staff__itemL span {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  text-align: center;
}

.p-staff__wrap .p-staff__inner .p-staff__itemR {
  width: 50%;
}

.p-staff__wrap .p-staff__inner .p-staff__itemTtl {
  color: #725524;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.p-staff__wrap .p-staff__inner .p-staff__itemTxt {
  font-size: 1.4rem;
}

.p-staff__wrap .p-staff__inner .p-staff__itemBtn {
  display: block;
  width: 80%;
  background: #134171;
  text-align: center;
  margin: 1vw auto 0;
  color: #fff;
  text-decoration: none;
  padding: 0.4vw;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 0 #90909080;
  box-shadow: 0 3px 0 #90909080;
}

.p-staff__wrap .p-staff__inner .p-staff__nav {
  width: 44%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-staff__wrap .p-staff__inner .p-staff__navItem {
  margin: 0 0.6rem;
}

.p-staff__wrap .p-staff__inner .p-staff__navItem span {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  text-align: center;
}

.p-staff__wrap .p-staff__inner .p-staff__nav .slick-next {
  left: 93%;
}

.p-staff__wrap .p-staff__inner .p-staff__nav .slick-prev {
  left: -5%;
}

.p-staff__itemModalInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 3vw;
}

.p-staff__itemModalL {
  width: 20%;
}

.p-staff__itemModalR {
  width: 77%;
}

.p-staff__itemModalTtl {
  color: #725524;
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: left;
}

.p-staff__itemModalTxt {
  font-size: 1.4rem;
  text-align: left;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-staff__wrap {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
  }
  .p-staff__wrap .p-staff__inner {
    width: 90%;
    margin: 0 auto;
  }
  .p-staff__wrap .p-staff__inner .p-staff__ttl {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 4rem;
    position: relative;
  }
  .p-staff__wrap .p-staff__inner .p-staff__ttl:after {
    content: "";
    width: 10%;
    height: 4px;
    margin: 0 auto;
    background: #3984d1;
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
  }
  .p-staff__wrap .p-staff__inner .p-staff__intro {
    text-align: center;
    margin-bottom: 2rem;
  }
  .p-staff__wrap .p-staff__inner .p-staff__box {
    border: 1px solid #b59b49;
    padding: 2rem 0 1rem;
    background: #fffcf2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-staff__wrap .p-staff__inner .p-staff__list {
    padding: 1rem;
    background: #fff;
    width: 90%;
    margin: 0 auto 1rem;
  }
  .p-staff__wrap .p-staff__inner .p-staff__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .p-staff__wrap .p-staff__inner .p-staff__itemL {
    width: 40%;
  }
  .p-staff__wrap .p-staff__inner .p-staff__itemR {
    width: 56%;
  }
  .p-staff__wrap .p-staff__inner .p-staff__itemTtl {
    color: #725524;
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  .p-staff__wrap .p-staff__inner .p-staff__itemTxt {
    font-size: 1.4rem;
  }
  .p-staff__wrap .p-staff__inner .p-staff__itemBtn {
    display: block;
    width: 80%;
    background: #134171;
    text-align: center;
    margin: 1vw auto 0;
    color: #fff;
    text-decoration: none;
    padding: 0.4vw;
    border-radius: 8px;
    -webkit-box-shadow: 0 3px 0 #90909080;
    box-shadow: 0 3px 0 #90909080;
  }
  .p-staff__wrap .p-staff__inner .p-staff__nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-staff__wrap .p-staff__inner .p-staff__navItem {
    margin: 0 0.4rem;
  }
  .p-staff__wrap .p-staff__inner .p-staff__nav .slick-next {
    left: 93%;
  }
  .p-staff__wrap .p-staff__inner .p-staff__nav .slick-prev {
    left: -5%;
  }
  .p-staff__itemModalInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 3vw;
  }
  .p-staff__itemModalL {
    width: 100%;
    padding: 0 24vw;
    margin-bottom: 4vw;
  }
  .p-staff__itemModalR {
    width: 100%;
  }
  .p-staff__itemModalTtl {
    color: #725524;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: left;
  }
  .p-staff__itemModalTxt {
    font-size: 1.4rem;
    text-align: left;
  }
}

/* MEDIA
  ----------------------------------------------------------------- */
.p-media__wrap {
  padding: 5rem;
  background: #e5e5e5;
}

.p-media__wrap .p-media__inner {
  width: 880px;
  margin: 0 auto;
}

.p-media__wrap .p-media__inner .p-media__ttl {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 4rem;
  position: relative;
}

.p-media__wrap .p-media__inner .p-media__ttl:after {
  content: "";
  width: 10%;
  height: 4px;
  margin: 0 auto;
  background: #3984d1;
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
}

.p-media__wrap .p-media__inner .p-media__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-media__wrap .p-media__inner .p-media__box .p-media__boxL {
  width: 48%;
}

.p-media__wrap .p-media__inner .p-media__box .p-media__boxR {
  width: 48%;
}

.p-media__wrap .p-media__inner .p-media__box .p-media__boxR .p-media__name {
  display: inline-block;
  padding: 0.2rem 1rem;
  font-size: 1.4rem;
  color: #fff;
  background: #3984d1;
  border-radius: 6px;
}

.p-media__wrap .p-media__inner .p-media__box .p-media__boxR .p-media__content {
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-media__wrap {
    margin-bottom: 5rem;
    padding: 3rem 0;
    background: #e5e5e5;
  }
  .p-media__wrap .p-media__inner {
    width: 90%;
    margin: 0 auto;
  }
  .p-media__wrap .p-media__inner .p-media__ttl {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 4rem;
    position: relative;
  }
  .p-media__wrap .p-media__inner .p-media__ttl:after {
    content: "";
    width: 10%;
    height: 4px;
    margin: 0 auto;
    background: #3984d1;
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
  }
  .p-media__wrap .p-media__inner .p-media__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background: #fff;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-media__wrap .p-media__inner .p-media__box .p-media__boxL {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-media__wrap .p-media__inner .p-media__box .p-media__boxR {
    width: 90%;
    margin: 0 auto;
  }
  .p-media__wrap .p-media__inner .p-media__box .p-media__boxR .p-media__name {
    display: inline-block;
    padding: 0.2rem 1rem;
    font-size: 1.4rem;
    color: #fff;
    background: #3984d1;
    border-radius: 6px;
  }
  .p-media__wrap
    .p-media__inner
    .p-media__box
    .p-media__boxR
    .p-media__content {
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
  }
}

/* FOOTER FORM
  ----------------------------------------------------------------- */
.p-ftform {
  width: 980px;
  margin: 0 auto 3rem;
}

.p-ftform .p-ftform__txt {
  text-align: center;
  width: 44%;
  margin: 0 auto 3rem;
}

.p-ftform .p-ftform__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-ftform .p-ftform__inner .p-ftform__flex {
  width: 48%;
  background: #fff;
}

.p-ftform .p-ftform__inner .p-ftform__subttl {
  margin-bottom: 0.8rem;
}

.p-ftform .p-ftform__inner .p-ftform__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.3rem 2rem;
}

.p-ftform .p-ftform__inner .p-ftform__hissu {
  background: #fb5252;
  padding: 0.5rem 0;
  color: #fff;
  line-height: 1em;
  border-radius: 10px;
  font-size: 1.2rem;
  width: 11%;
  text-align: center;
  margin-bottom: 0;
}

.p-ftform .p-ftform__inner .p-ftform__nini {
  background: #00366e;
  padding: 0.5rem 0;
  color: #fff;
  line-height: 1em;
  border-radius: 10px;
  font-size: 1.2rem;
  width: 11%;
  text-align: center;
  margin-bottom: 0;
}

.p-ftform .p-ftform__inner .p-ftform__content {
  width: 20%;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.p-ftform .p-ftform__inner .p-ftform__input {
  width: 64%;
  font-size: 1.4rem;
}

.p-ftform .p-ftform__inner .p-ftform__input .p-form__inputTxt {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #3984d1;
  padding: 0.4rem;
}

.p-ftform .p-ftform__inner .p-ftform__inputSelect {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #3984d1;
  padding: 0.4rem;
}

.p-ftform .p-ftform__inner .p-ftform__send {
  text-align: center;
  margin-top: 2.8rem;
  width: 100%;
}

.p-ftform .p-form__text--error {
  font-size: 1.4rem;
  color: red;
  text-align: center;
  width: 100%;
}

.company_box {
  width: 100%;
  background: #fff;
  padding: 2rem 0;
}

.company_box .p-company__ttl {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 4rem;
  position: relative;
}

.company_box .p-company__ttl:after {
  content: "";
  width: 10%;
  height: 4px;
  margin: 0 auto;
  background: #3984d1;
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
}

.company_box .company_box_detail {
  width: 980px;
  margin: 0 auto 3rem;
  border-collapse: collapse;
  border: solid 1px #ccc;
}

.company_box .company_box_detail th {
  text-align: left;
  font-weight: 200;
  color: #3985d0;
  padding: 1.4rem;
}

.company_box .company_box_detail td {
  border-left: solid 1px #ccc;
  display: inline-block;
  width: 80%;
  padding: 1.4rem;
  margin-bottom: initial;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .p-ftform {
    width: 90%;
    margin: 0 auto 3rem;
  }
  .p-ftform .p-ftform__txt {
    text-align: center;
    width: 100%;
    margin: 0 auto 1rem;
  }
  .p-ftform .p-ftform__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding-bottom: 2rem;
    border: 1px solid #999999;
    border-top: none;
  }
  .p-ftform .p-ftform__inner .p-ftform__flex {
    width: 100%;
    background: #fff;
  }
  .p-ftform .p-ftform__inner .p-ftform__subttl {
    margin-bottom: 0.8rem;
  }
  .p-ftform .p-ftform__inner .p-ftform__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.3rem 2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-ftform .p-ftform__inner .p-ftform__hissu {
    background: #fb5252;
    padding: 0.5rem 0;
    color: #fff;
    line-height: 1em;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 11%;
    text-align: center;
    margin-bottom: 1rem;
    margin-right: 1rem;
  }
  .p-ftform .p-ftform__inner .p-ftform__nini {
    background: #00366e;
    padding: 0.5rem 0;
    color: #fff;
    line-height: 1em;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 11%;
    text-align: center;
    margin-bottom: 1rem;
    margin-right: 1rem;
  }
  .p-ftform .p-ftform__inner .p-ftform__content {
    width: 80%;
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .p-ftform .p-ftform__inner .p-ftform__input {
    width: 100%;
    font-size: 1.6rem;
  }
  .p-ftform .p-ftform__inner .p-ftform__input .p-form__inputTxt {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #3984d1;
    padding: 0.4rem;
  }
  .p-ftform .p-ftform__inner .p-ftform__inputSelect {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #3984d1;
    padding: 0.4rem;
  }
  .p-ftform .p-ftform__inner .p-ftform__send {
    text-align: center;
    margin-top: 0.8rem;
  }
  .p-ftform .p-form__text--error {
    font-size: 1.4rem;
    color: red;
    text-align: center;
    width: 103%;
    margin: 0 -1%;
    padding-bottom: 2rem;
    background: #e6f2ff;
  }
  .company_box {
    width: 100%;
    background: #fff;
    padding: 2rem 0;
  }
  .company_box .p-company__ttl {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 4rem;
    position: relative;
  }
  .company_box .p-company__ttl:after {
    content: "";
    width: 10%;
    height: 4px;
    margin: 0 auto;
    background: #3984d1;
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
  }
  .company_box .company_box_detail {
    width: 90%;
    margin: 0 auto 3rem;
    border-collapse: collapse;
    border: unset;
  }
  .company_box .company_box_detail th {
    text-align: left;
    font-weight: 200;
    color: #3985d0;
    padding: 0;
    display: block;
    margin-bottom: 0.6rem;
  }
  .company_box .company_box_detail td {
    border-left: unset;
    display: inline-block;
    width: 80%;
    padding: 0;
    margin-bottom: initial;
    margin-bottom: 2rem;
  }
}

/* THANKS
  ----------------------------------------------------------------- */
.p-thanks .p-thanks__title {
  margin: 2rem 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #3984d1;
}

.p-thanks .p-thanks__text {
  margin-bottom: 2rem;
  padding: 0 3rem;
  font-size: 1.5rem;
}

.p-thanks .p-thanks__note {
  margin-bottom: 2rem;
  padding: 0 3rem;
  font-size: 1.2rem;
  color: #999999;
}

@media screen and (min-width: 520px) {
  .p-thanks .p-thanks__title {
    margin: 3rem 0;
    font-size: 3.2rem;
  }
}

/* Utility
  ----------------------------------------------------------------- */
.u-result__contentFirst {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
}

.u-result__price {
  color: #fb5252;
  font-size: 4rem;
}

.u-result__price span {
  font-size: 2rem;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .u-result__contentFirst {
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
  }
  .u-result__price {
    color: #fb5252;
    font-size: 4rem;
  }
  .u-result__price span {
    font-size: 2rem;
  }
}

/* procedure
  ----------------------------------------------------------------- */
.u-procedure__mainWrap {
  background: url(../images/lp_procedure_seller/desktop/main_procedure_bg.webp)
    center bottom no-repeat;
  background-size: cover;
  padding: 2rem 0;
  margin-bottom: 2rem;
  min-height: 540px;
}

@media screen and (min-width: 1520px) {
  .u-procedure__mainWrap {
    min-height: 550px;
  }
}

.u-main__procedure__img {
  width: 64%;
  position: relative;
  right: -10rem;
  margin-left: -9rem;
}

.u-procedure__form {
  position: relative;
  z-index: 1;
}

.u-procedure__selfTtl {
  background: #3a84d1;
}

.u-procedure__selfitemTtl {
  color: #3a84d1;
}

.u-self__modal {
  margin-top: 2rem;
}

.remodal_inner {
  padding: 2rem 0;
}

.remodal_inner h4 {
  font-size: 3rem;
  text-align: center;
  border-bottom: 2px solid #efefef;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.u-self__modalTxt {
  background: #fff;
  border: 1px solid #707070;
  padding: 1rem;
  text-align: center;
  border-radius: 4px;
  margin-top: 1rem;
  font-size: 1.4rem;
  background: url(../images/lp_procedure_seller/desktop/q_open.webp) 95% 50%
    no-repeat;
}

.u-self__modalTxt a {
  color: inherit;
  display: block;
  text-decoration: none;
}

.u-self__modalItemTxt {
  margin-bottom: 1rem;
}

.u-self__modalItemImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 70%;
  margin: 0 auto 2rem;
}

.u-self__modalItemTtl {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.u-self__modalItemTtl:after {
  content: "";
  position: absolute;
  width: 10%;
  height: 3px;
  background: #3b84d1;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.u-self__modalItemImg li {
  width: 30%;
  margin: 0 1rem;
  margin-bottom: 1rem;
}

.u-self__modalItemImg li img {
  height: 10vw;
  width: auto;
}

.u-self__modalItemImg li p {
  margin: 0.4rem 0;
  font-size: 1.4rem;
}

.u-self__modalItemImg li .note {
  font-size: 1rem;
}

.u-procedure__resultWrap {
  background: #f2f2f2;
}

.u-procedure__resultTtlSub {
  width: 40% !important;
}

@media screen and (max-width: 520px) {
  /*=========== SP LAYPUT ===============*/
  .u-procedure__mainWrap {
    background: none;
    background-size: cover;
    padding: 0;
    margin-bottom: 0;
    min-height: unset;
  }
  .u-main__procedure__img {
    width: 100%;
    position: relative;
    right: 0rem;
    margin-left: 0rem;
  }
  .u-procedure__form {
    position: relative;
    z-index: 1;
  }
  .u-procedure__selfTtl {
    background: #3a84d1;
  }
  .u-procedure__selfitemTtl {
    color: #3a84d1;
  }
  .u-self__modal {
    width: 90%;
    margin: 0 auto 1rem;
  }
  .u-self__modalTxt {
    background: #fff;
    border: 0;
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    margin-top: 1rem;
    font-size: 1.4rem;
    background: #fff url(../images/lp_procedure_seller/desktop/q_open.webp) 95%
      50% no-repeat;
    -webkit-box-shadow: 0 2px 0px #00000010;
    box-shadow: 0 2px 0px #00000010;
  }
  .u-self__modalItem {
    display: none;
    background: #fff;
    margin-top: 0.4rem;
    padding: 1rem;
    font-size: 1.4rem;
  }
  .u-self__modalItemTxt {
    margin-bottom: 1rem;
  }
  .u-self__modalItemImg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto 2rem;
  }
  .u-self__modalItemTtl {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
  }
  .u-self__modalItemTtl:after {
    content: "";
    position: absolute;
    width: 10%;
    height: 3px;
    background: #3b84d1;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .u-self__modalItemImg li {
    width: 48%;
    margin: 0;
    margin-bottom: 1rem;
    text-align: center;
  }
  .u-self__modalItemImg li img {
    height: 20vw;
    width: auto;
  }
  .u-self__modalItemImg li p {
    margin: 0.4rem 0;
    font-size: 1.4rem;
  }
  .u-self__modalItemImg li .note {
    font-size: 1rem;
  }
  .u-procedure__resultWrap {
    background: #f2f2f2;
  }
  .u-procedure__resultTtlSub {
    width: 68% !important;
  }
}

/* Tablet
  ----------------------------------------------------------------- */
@media screen and (max-width: 979px) and (min-width: 521px) {
  /* ============== TABLET LAYOUT ============== */
  .l-container {
    width: 90%;
    margin: 0 auto;
  }
  .p-about__wrap .p-about__inner {
    width: 70%;
    margin: 0 auto;
  }
  .p-return__wrap .p-return__inner {
    width: 95%;
    margin: 0 auto;
  }
  .p-result__wrap .p-result__inner {
    width: 90%;
    margin: 0 auto;
    border: 2px solid #3984d1;
    border-radius: 10px;
    padding: 2rem;
  }
  .p-reason__wrap .p-reason__inner {
    width: 90%;
    margin: 0 auto;
  }
  .p-self__wrap .p-self__inner {
    width: 90%;
    margin: 0 auto;
  }
  .p-step__wrap .p-step__inner {
    width: 90%;
    margin: 0 auto;
  }
  .p-qa__wrap .p-qa__inner {
    width: 85%;
    margin: 0 auto;
  }
  .p-staff__wrap .p-staff__inner {
    width: 85%;
    margin: 0 auto;
  }
  .p-media__wrap .p-media__inner {
    width: 100%;
    margin: 0 auto;
  }
  .p-ftform {
    width: 90%;
    margin: 0 auto 3rem;
  }
  .company_box .company_box_detail {
    width: 90%;
    margin: 0 auto 3rem;
    border-collapse: collapse;
    border: solid 1px #ccc;
  }
  .fixbnr .fixbnr__innerBox .fixbnr__inner {
    width: 90%;
    margin: 0 auto 0rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-form__send input {
    width: 100%;
  }
  .p-form .p-form_inner .p-form__box .p-form__hissu {
    background: #fb5252;
    padding: 0.5rem 0;
    color: #fff;
    line-height: 1em;
    border-radius: 6px;
    font-size: 1rem;
    width: 13%;
    text-align: center;
    margin-bottom: 0;
  }
  .p-form .p-form_inner .p-form__box .p-form__nini {
    background: #00366e;
    padding: 0.5rem 0;
    color: #fff;
    line-height: 1em;
    border-radius: 6px;
    font-size: 1rem;
    width: 13%;
    text-align: center;
    margin-bottom: 0;
  }
  .p-form .p-form_inner .p-form__box .p-form__input {
    width: 55%;
    font-size: 1.4rem;
  }
  .p-form .p-form_inner .p-form__box .p-form__content {
    width: 22%;
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .p-return__wrap .p-return__inner .p-return__ttl .p-return__ttlSub {
    background: #2ba4a0;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    display: block;
    width: 46%;
    margin: 0 auto 1rem;
    border-radius: 6px;
    letter-spacing: 2px;
    padding: 0.3rem 0;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceL
    .p-return__priceLPrice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 2rem;
    margin-top: -3.5rem;
    margin-bottom: -0.5rem;
  }

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLPrice
  .p-return__priceText {
    font-family: helvetica;
    font-size: 300%;
    font-weight: bolder;
    margin-left: -0.5rem;
  }

.p-return__wrap
  .p-return__inner
  .p-return__box
  .p-return__boxInner
  .p-return__price
  .p-return__priceL
  .p-return__priceLPrice
  .p-return__yenText {
    padding-top: 30px;
  }

  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceL
    .p-return__priceLTxt02 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__priceBtm {
    background: #2ba4a0;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.6rem 1rem;
  }
  .p-return__wrap
    .p-return__inner
    .p-return__box
    .p-return__boxInner
    .p-return__price
    .p-return__priceR
    .p-return__priceRTxt {
    border-bottom: 2px dashed #2ba4a0;
    color: #2ba4a0;
    font-size: 1.4rem;
    padding: 0 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
  }
  .p-result__wrap .p-result__ttl .p-result__ttlSub {
    background: #3984d1;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    display: block;
    width: 27%;
    margin: 0 auto 1rem;
    border-radius: 6px;
    letter-spacing: 2px;
    padding: 0.3rem 0;
  }
  .p-result__wrap .p-result__inner .p-result__list .p-result__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
  }
  .p-result__wrap
    .p-result__inner
    .p-result__list
    .p-result__item
    .p-result__img {
    width: 46%;
  }
  .p-result__wrap
    .p-result__inner
    .p-result__list
    .p-result__item
    .p-result__content {
    width: 50%;
  }
  .p-result__wrap .p-result__inner .p-result__list .slick-dots {
    bottom: -14%;
    width: 46%;
  }
  .slick-prev {
    left: -19px !important;
  }
  .slick-next {
    left: 41% !important;
  }
  .p-reason__wrap .p-reason__inner .p-reason__box .p-reason__boxR iframe {
    width: 100%;
    height: 130px;
  }
  .p-self__wrap .p-self__inner .p-self__list .p-self__itemTtl {
    text-align: center;
    font-size: 1.6rem;
    color: #2ba4a0;
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid #ccc;
    line-height: 1.4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 3.6em;
  }
  .p-step__wrap .p-step__inner .p-step__list .p-step__item {
    width: 100%;
    background: #fff;
    padding: 1rem 1.8rem;
    margin-bottom: 2rem;
    border: 2px solid #e5e5e5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-height: 17rem;
  }
  .p-staff__wrap .p-staff__inner .p-staff__box {
    border: 1px solid #b59b49;
    padding: 2rem;
    background: #fffcf2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-staff__wrap .p-staff__inner .p-staff__list {
    padding: 2rem;
    background: #fff;
    width: 100%;
  }
  .p-staff__wrap .p-staff__inner .p-staff__nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-staff__wrap .p-staff__inner .p-staff__nav .slick-next {
    left: 96% !important;
  }
  .p-ftform .p-ftform__inner .p-ftform__hissu {
    background: #fb5252;
    padding: 0.5rem 0;
    color: #fff;
    line-height: 1em;
    border-radius: 6px;
    font-size: 1rem;
    width: 11%;
    text-align: center;
    margin-bottom: 0;
  }
  .p-ftform .p-ftform__inner .p-ftform__nini {
    background: #00366e;
    padding: 0.5rem 0;
    color: #fff;
    line-height: 1em;
    border-radius: 6px;
    font-size: 1rem;
    width: 11%;
    text-align: center;
    margin-bottom: 0;
  }
  .fixbnr .fixbnr__innerBox .fixbnr__inner .fixbnr__innerTel {
    position: absolute;
    top: -5px;
    left: 37%;
    font-size: 3.5vw;
    font-weight: bold;
    color: #fff;
  }
  .u-procedure__mainWrap {
    background: #eff4f8
      url(../images/lp_procedure_seller/desktop/main_procedure_bg.webp) 41% 70%
      no-repeat;
    background-size: 120% 80%;
    padding: 2rem 0;
    margin-bottom: 2rem;
    min-height: unset;
  }
  .u-main__procedure__img {
    width: 68% !important;
    position: relative;
    right: -10rem;
    margin-left: -12rem;
  }
}
