@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@500;600;700&family=Montserrat:wght@400;700&family=M+PLUS+Rounded+1c:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@500&display=swap');

/* -------------------------------
  base
------------------------------- */
body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #474747;
  text-align: justify;
}
body.open {
  height: 100%;
  overflow: hidden;
}

picture,
img {
  width: 100%;
  vertical-align: middle;
}

@media screen and (min-width: 1001px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 1000px) {
  body {
    font-size: calc(100vw / 36);
  }
}

@media screen and (max-width: 1000px) {
  a:hover {
    opacity: 1;
  }

	.onlyPC {
    display: none !important;
  }
	.onlySP {
    display: block !important;
  }
  span.onlySP,
  br.onlySP {
    display: inline-block !important;
  }
}


/* -------------------------------
  common
------------------------------- */
/* font family */
.fontRounded {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400; /* 500,700 */
  font-style: normal;
  transform: rotateZ(.05deg);
}
.fontMincho {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 500; /* 600,700 */
  font-style: normal;
}
.fontMontserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700; /* 400,700 */
  font-style: normal;
}
.fontZenKaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* Animation */
.isFadein {
  opacity: 0;
  transform: translateY(10rem);
  transition: opacity .8s, transform .8s, -webkit-transform .8s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.isFadein.isShow {
  opacity: 1 !important;
  transform: translate(0, 0);
}

/* swiper */
.swiper.swiper-horizontal {
  visibility: hidden;
}
.swiper.swiper-initialized {
  visibility: visible;
}


/* -------------------------------
  contents
------------------------------- */
.contents {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.inner {
  position: relative;
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  .inner {
    width: 90%;
    max-width: none;
  }
}



/* -------------------------------
  header
------------------------------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  z-index: 10;
}
.header.isFixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  animation: header .3s linear;
  z-index: 99999;
}
@keyframes header {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.header > .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1005px;
  padding: 13px 3px 13px 0;
}
.header-logo {
  position: relative;
  width: 177px;
  z-index: 9999;
}
.header-tel {
  width: 396px;
}

@media screen and (max-width: 1000px) {
  .header {
    position: relative;
    background-color: #fff;
  }
  .header > .inner {
    width: 100%;
    max-width: none;
    height: 4em;
    padding: 0 1.4em;
  }
  .open .header > .inner:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4em;
    background: #FFF;
    z-index: 9999;
  }
  .header-logo {
    width: 13.7em;
  }
  .header-tel {
    width: 2.6em;
    max-width: none;
    margin-right: 4.6em;
  }
}



/* -------------------------------
  header - sp menu
------------------------------- */
@media screen and (max-width: 1000px) {
  .header-menuBtn {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.6em;
    width: 2.6em;
    height: 1.85em;
    margin: auto;
    cursor: pointer;
    z-index: 10000;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
  }
  .header-menuBtn span {
    background: #555;
    border: none;
    height: .15em;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    cursor: pointer;
  }
  .header-menuBtn .middle {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header-menuBtn .bottom {
    top: auto;
    bottom: 0;
  }
  .header-menuBtn.active .top {
    -webkit-transform: translateY(.8em) translateX(0) rotate(45deg);
    transform: translateY(.8em) translateX(0) rotate(45deg);
  }
  .header-menuBtn.active .middle {
    opacity: 0;
  }
  .header-menuBtn.active .bottom {
    -webkit-transform: translateY(-.9em) translateX(0) rotate(-45deg);
    transform: translateY(-.9em) translateX(0) rotate(-45deg);
  }

  .header-overlay {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    padding-top: 4em;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow-x: hidden;
    z-index: 9999;
  }
  .header-overlay.open_ap {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }
  .header-overlay nav {
    position: relative;
    font-weight: 400;
    text-align: left;
  }
  .header-overlay ul {
    list-style: none;
    padding: 0;
    display: block;
    width: 100%;
    position: relative;
  }
  .header-overlay ul li {
    position: relative;
  }
  .header-overlay ul li:first-child {
    top: 0;
  }
  .header-overlay ul li:after {
    bottom: 0;
  }
  .header-overlay ul li a:not(.contact-tel) {
    position: relative;
    display: block;
    padding: .98em 0;
    text-decoration: none;
    border-top: .0715em solid #ccc;
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .05em;
    text-align: center;
  }

  .header-overlay-nav {
    overflow-y: auto;
  }
}



/* -------------------------------
  mv
------------------------------- */
.mv {
  position: relative;
  min-height: 565px;
  margin-bottom: 43px;
  background: url('/sell/promotion/assets/img/purchase/s/mv_pc.jpg') center top / auto 100% no-repeat #fff;
}
.mv-main {
  margin: 112px 0 0 22px;
}
.mv-main-ttl {
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .01em;
  text-align: left;
}
.mv-main-ttl-apartment {
  letter-spacing: -.09em;
}
.mv-main-ttl-bd {
  display: inline-block;
  background: linear-gradient(transparent 65%, #FFFF00 0%);
  color: #ff6741;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.mv-main-ttl-last {
  font-size: 3.6rem;
  letter-spacing: -.06em;
}
.mv-main-ttl-last span {
  margin-left: -.1em;
  letter-spacing: -.15em;
}
.mv-main-txt {
  margin: 19px 0 0 3px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
}
.mv-main-txt span {
  margin: 0 -.5em 0 -.45em;
  font-size: 1.28em;
  letter-spacing: .08em;
}
.mv-main-result {
  display: flex;
  align-items: stretch;
  gap: 0 18px;
  margin: 18px 0 0 15px;
}
.mv-main-result p {
  position: relative;
  color: #967237;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  letter-spacing: .02em;
}
.mv-main-result p span {
  font-size: 1.32em;
}
.mv-main-result p::before,
.mv-main-result p::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 43px;
  background: url('/sell/promotion/assets/img/purchase/s/mv_star.svg') top left / contain no-repeat;
}
.mv-main-result p::after {
  left: auto;
  right: 0;
  transform: scale(-1, 1);
}
.mv-main-result p:first-child {
  width: 172px;
}
.mv-main-result p:last-child {
  width: 206px;
}
.mv-attention {
  margin: 8px 0 0 8px;
  color: #967237;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
}

.mv .jpx {
  min-height: 54px;
  margin: 15px 0 0 25px;
  padding: .35em 0 0 70px;
  background: url('/sell/promotion/assets/img/purchase/jpx.svg') center left / 54px auto no-repeat;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.5;
}

@media screen and (max-width: 1000px) {
  .mv {
    min-height: 49em;
    margin-bottom: 0;
    background: url('/sell/promotion/assets/img/purchase/s/mv_sp.jpg') center bottom / cover no-repeat #fff;
  }
  .mv .inner {
    position: static;
  }
  .mv-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2.5em 0 0 0;
  }
  .mv-main-ttl {
    font-size: 2.3em;
    line-height: 1.5;
    letter-spacing: .025em;
  }
  .mv-main-ttl-apartment {
    letter-spacing: -.05em;
  }
  .mv-main-ttl-last {
    display: inline-block;
    padding-left: .06em;
    font-size: .91em;
    transform: translateY(-.1em);
  }
  .mv-main-txt {
    margin: .6em 0 0 0;
    font-size: 1.6em;
    text-align: center;
  }
  .mv-main-txt span {
    font-size: 1.25em;
  }
  .mv-main-result {
    gap: 0 1.2em;
    margin: 1em 0 0 .6em;
  }
  .mv-main-result p {
    font-size: 1.2em;
  }
  .mv-main-result p span {
    font-size: 1.34em;
  }
  .mv-main-result p::before,
  .mv-main-result p::after {
    top: .3em;
    width: .84em;
    height: 2.25em;
  }
  .mv-main-result p:first-child {
    width: 9em;
  }
  .mv-main-result p:last-child {
    width: 10.84em;
    letter-spacing: 0;
  }
  .mv-attention {
    margin: .8em .6em 0 0;
    font-size: 1em;
    -webkit-text-stroke: .1em #fff;
    paint-order: stroke;
  }

  .mv .jpx {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 6em;
    margin: 0;
    padding: .8em 3.8em 0 9em;
    background-color: rgba(255, 255, 255, .67);
    background-position: left 4em center;
    background-size: 4em auto;
    font-size: 1em;
    line-height: 1.4;
    z-index: 1;
  }
}


/* -------------------------------
  contact
------------------------------- */
.contact {
  padding: 40px 0 53px;
  background : linear-gradient(120deg, rgba(201, 188, 156, 0.4) 0%, rgba(213, 198, 169, 0.34) 28.96%, rgba(243, 225, 202, 0.24) 82.08%, rgba(255, 235, 215, 0.2) 99.9%);
}
.contact .inner {
  max-width: 514px;
}
.contact-ttl {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .04em;
}
.contact-btn {
  display: flex;
  align-items: center;
  width: 100%;
  height: 84px;
  margin-top: 18px;
  padding: 0 0 .2em 63px;
  background: url('/sell/promotion/assets/img/purchase/s/cta_btn_arrow.svg') center right 40px / 40px auto no-repeat #FF6741;
  border-radius: 42px;
  color: #fff;
  font-size: 2.9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  box-shadow: 1px 3px 4px rgba(0, 0, 0, .3);
}
.contact-tel {
  display: block;
  width: 358px;
  margin: 28px auto 0;
}

@media screen and (max-width: 1000px) {
  .contact {
    padding: 2em 0 2.6em;
    background : linear-gradient(120deg, rgba(201, 188, 156, 0.5) 0%, rgba(213, 198, 169, 0.41) 28.96%, rgba(243, 225, 202, 0.25) 82.08%, rgba(255, 235, 215, 0.2) 99.9%);
  }
  .contact .inner {
    max-width: 81.12%;
  }
  .contact-ttl {
    font-size: 1.6em;
    line-height: 1.6;
  }
  .contact-ttl span {
    color: #ff6741;
  }
  .contact-btn {
    height: 3.5em;
    margin-top: .8em;
    padding: 0 0 .3em 2em;
    background-position: top 1.2em right 1.6em;
    background-size: 1.375em auto;
    border-radius: 1.75em;
    font-size: 1.6em;
    letter-spacing: .16em;
    box-shadow: .0625em .1875em .25em rgba(0, 0, 0, .3);
  }
  .contact-tel {
    width: 25.1em;
    margin-top: 1.5em;;
  }
}



/* -------------------------------
  contents - proposal
------------------------------- */
.proposal {
  padding: 90px 0 0;
}
.proposal .inner {
  max-width: 1135px;
}
.proposal-ttl {
  position: absolute;
  top: -45px;
  left: 45.5%;
  writing-mode: vertical-rl;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: left;
  line-height: 1.8;
  z-index: 1;
}
.proposal-ttl span {
  margin-top: 6px;
}
.proposal-detail {
  position: relative;
  height: 408px;
  margin: 45px 0 0 10px;
  z-index: 0;
}
.proposal-detail::before {
  content: '';
  position: absolute;
  bottom: 36px;
  left: 145px;
  display: block;
  width: 153px;
  height: 170px;
  background: url('/sell/promotion/assets/img/purchase/s/proposal_man.svg') center center / contain no-repeat;
  z-index: 0;
}
.proposal-detail::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 208px;
  display: block;
  width: 116px;
  height: 177px;
  background: url('/sell/promotion/assets/img/purchase/s/proposal_woman.svg') center center / contain no-repeat;
  z-index: 0;
}
.proposal-detail-box {
  position: absolute;
  z-index: 1;
}
.proposal-detail-box::before {
  content: '';
  position: absolute;
  display: block;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.proposal-detail-box::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 222px;
  height: 222px;
  background-color: #FFF1EE;
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
}
.proposal-detail-box p {
  position: relative;
  z-index: 2;
}
.proposal-detail-box p:first-child {
  color: #FF6741;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .03em;
}
.proposal-detail-box p:last-child {
  margin-top: 10px;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -.015em;
}
.proposal-detail-box:nth-child(even) p:first-child {
  color: #009DDC;
}
.proposal-detail-box.detail01 {
  top: 0;
  left: 7px;
  width: 222px;
  padding: 30px 0 0 30px;
}
.proposal-detail-box.detail01::before {
  bottom: -82px;
  left: 8px;
  width: 105px;
  height: 60px;
  background-image: url('/sell/promotion/assets/img/purchase/s/proposal_img01.svg');
}
.proposal-detail-box.detail02 {
  top: 78px;
  left: 255px;
  width: 211px;
  padding: 25px 5px 0 20px;
}
.proposal-detail-box.detail02::before {
  top: -77px;
  right: 17px;
  width: 112px;
  height: 90px;
  background-image: url('/sell/promotion/assets/img/purchase/s/proposal_img02.svg');
}
.proposal-detail-box.detail02::after {
  width: 211px;
  height: 211px;
  background-color: #E7F5FA;
}
.proposal-detail-box.detail02 p:last-child {
  margin-top: 8px;
  letter-spacing: 0;
}
.proposal-detail-box.detail03 {
  top: 12px;
  right: 240px;
  width: 234px;
  padding: 33px 5px 0 10px;
}
.proposal-detail-box.detail03::before {
  bottom: -125px;
  left: 15px;
  width: 120px;
  height: 127px;
  background-image: url('/sell/promotion/assets/img/purchase/s/proposal_img03_pc.svg');
}
.proposal-detail-box.detail03::after {
  width: 226px;
  height: 226px;
}
.proposal-detail-box.detail03 p:last-child {
  margin-top: 5px;
}
.proposal-detail-box.detail04 {
  top: 70px;
  right: 0;
  width: 230px;
  padding: 42px 0 0 30px;
}
.proposal-detail-box.detail04::before {
  top: -58px;
  right: 15px;
  width: 131px;
  height: 78px;
  background-image: url('/sell/promotion/assets/img/purchase/s/proposal_img04.svg');
}
.proposal-detail-box.detail04::after {
  width: 230px;
  height: 230px;
  background-color: #E7F5FA;
}
.proposal-detail-box.detail04 p:last-child {
  margin-top: 5px;
}

.proposal-support {
  max-width: 1012px;
  margin: 83px auto 0;
  padding: 60px 0 74px;
  background-color: #F8F6F2;
  border-radius: 52px;
  box-shadow: 0px 5px 6px rgba(0, 0, 0, .08);
}
.proposal-support-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.75;
}
.proposal-support-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  width: auto;
  margin: 25px 55px 0 75px;
}
.proposal-support-list-item {
  position: relative;
  width: 46%;
}
.proposal-support-list-item:nth-child(n+3)::after {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #fff, #fff 5px, transparent 0, transparent 6px) center left / 11px 5px repeat-x;
}
.proposal-support-list-item:nth-child(6)::after {
  left: 0;
}
.proposal-support-list-item:last-child {
  letter-spacing: .05em;
}
.proposal-support-list-item p {
  position: relative;
  display: flex;
  align-items: center;
  height: 135px;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .07em;
}
.proposal-support-list-item:nth-child(odd) p {
  padding-left: 103px;
}
.proposal-support-list-item:nth-child(even) p {
  padding-left: 110px;
}
.proposal-support-list-item.support01 p {
  background: url('/sell/promotion/assets/img/purchase/s/support_img01.svg') center left 4px / 78px auto no-repeat;
}
.proposal-support-list-item.support02 p {
  background: url('/sell/promotion/assets/img/purchase/s/support_img02.svg') center left 2px / 87px auto no-repeat;
}
.proposal-support-list-item.support03 p {
  background: url('/sell/promotion/assets/img/purchase/s/support_img03.svg') top 25px left 10px / 74px auto no-repeat;
}
.proposal-support-list-item.support04 p {
  background: url('/sell/promotion/assets/img/purchase/s/support_img04.svg') center left / 76px auto no-repeat;
}
.proposal-support-list-item.support05 p {
  background: url('/sell/promotion/assets/img/purchase/s/support_img05.svg') center left 15px / 71px auto no-repeat;
}
.proposal-support-list-item.support06 p {
  padding-left: 115px;
  background: url('/sell/promotion/assets/img/purchase/s/support_img06.svg') center left / 90px auto no-repeat;
  letter-spacing: .05em;
  transform: translateX(-5px);
}

.proposal-btm {
  position: relative;
  width: 833px;
  margin: 135px auto 0;
  padding: 32px 50px 31px 285px;
  background-color: #FF8D70;
  border-radius: 24px;
}
.proposal-btm::before {
  content: '';
  position: absolute;
  top: -102px;
  left: 0;
  right: 0;
  display: block;
  width: 106px;
  height: 74px;
  margin: 0 auto;
  background: url('/sell/promotion/assets/img/purchase/s/support_arrow.svg') center center / contain no-repeat;
}
.proposal-btm::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 33px;
  display: block;
  width: 228px;
  height: 166px;
  background: url('/sell/promotion/assets/img/purchase/s/support_img07.svg') center center / contain no-repeat;
  z-index: 0;
}
.proposal-btm p {
  position: relative;
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.8;
  letter-spacing: .06em;
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  .proposal {
    padding: 3.2em 0 0;
  }
  .proposal .inner {
    width: 100%;
    max-width: 100%;
  }
  .proposal-ttl {
    position: relative;
    top: auto;
    left: auto;
    writing-mode: inherit;
    font-size: 2em;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.6;
  }
  .proposal-ttl span {
    margin-top: 0;
  }
  .proposal-detail {
    height: auto;
    margin: 2em 0 0 0;
  }
  .proposal-detail::before {
    top: 22.3em;
    bottom: auto;
    left: 1.2em;
    width: 13.8em;
    height: 15.3em;
  }
  .proposal-detail::after {
    bottom: -1.8em;
    left: 2.5em;
    right: auto;
    width: 10.4em;
    height: 15.9em;
  }
  .proposal-detail-box {
    position: relative;
  }
  .proposal-detail-box::after {
    width: 20em;
    height: 20em;
    filter: blur(.8em);
  }
  .proposal-detail-box p:first-child {
    font-size: 2.1em;
    line-height: 1.35;
  }
  .proposal-detail-box p:last-child {
    margin-top: .7em;
    font-size: 1.5em;
  }
  .proposal-detail-box.detail01 {
    top: auto;
    left: 2em;
    width: 19.4em;
    padding: 3em 0 0 2.8em;
  }
  .proposal-detail-box.detail01::before {
    top: 3.7em;
    bottom: auto;
    left: auto;
    right: -7.3em;
    width: 8.1em;
    height: 4.5em;
  }
  .proposal-detail-box.detail02 {
    top: 0;
    right: 0;
    left: auto;
    width: 19em;
    margin: 2.8em 3.7em 0 auto;
    padding: 2.7em 0 0 2em;
  }
  .proposal-detail-box.detail02::before {
    top: -5.5em;
    right: -1.8em;
    width: 10.1em;
    height: 8em;
  }
  .proposal-detail-box.detail02::after {
    width: 19em;
    height: 19em;
  }
  .proposal-detail-box.detail02 p:last-child {
    margin-top: .3em;
  }
  .proposal-detail-box.detail03 {
    top: 0;
    right: auto;
    left: 2.5em;
    width: 21.4em;
    margin: 5.8em 0 0 0;
    padding: 3.5em 0 0 1.2em;
  }
  .proposal-detail-box.detail03::before {
    top: -2.5em;
    bottom: auto;
    left: auto;
    right: -9.8em;
    width: 16.5em;
    height: 11.3em;
    background-image: url('/sell/promotion/assets/img/purchase/s/proposal_img03_sp.svg');
  }
  .proposal-detail-box.detail03::after {
    width: 20.4em;
    height: 20.4em;
  }
  .proposal-detail-box.detail03 p:last-child {
    margin-top: .6em;
    letter-spacing: -.04em;
    line-height: 1.65;
  }
  .proposal-detail-box.detail04 {
    top: auto;
    right: 0;
    width: 20.4em;
    margin: 4em 3.4em 0 auto;
    padding: 3.6em 1.5em 0 2.4em;
  }
  .proposal-detail-box.detail04::before {
    top: -4.2em;
    right: -4.5em;
    width: 11.8em;
    height: 7em;
  }
  .proposal-detail-box.detail04::after {
    width: 20.4em;
    height: 20.4em;
  }
  .proposal-detail-box.detail04 p:last-child {
    margin-top: .4em;
  }

  .proposal-support {
    max-width: 100%;
    margin-top: 7.2em;
    padding: 4em 0 3.2em;
    border-radius: 0;
    box-shadow: none;
  }
  .proposal-support-ttl {
    position: relative;
    width: 13.95em;
    margin: 0 auto;
    font-size: 1.9em;
    line-height: 1.6;
    transform: translateX(-.3em);
  }
  .proposal-support-ttl span {
    color: #ff6741;
  }
  .proposal-support-ttl::before,
  .proposal-support-ttl::after {
    content: '';
    position: absolute;
    top: .8em;
    left: .5em;
    width: .26em;
    height: 4.2em;
    background-color: #fff;
    transform: rotate(-18deg);
  }
  .proposal-support-ttl::after {
    left: auto;
    right: .5em;
    transform: rotate(18deg);
  }
  .proposal-support-list {
    flex-wrap: nowrap;
    align-items: stretch;
    margin: 4em 0 0 0;
    padding-bottom: 2.5em;
  }
  .proposal-support-list-item {
    display: block;
    width: 23.2em;
    height: 21em;
    padding: 0 2em;
  }
  .proposal-support-list-item:nth-child(n+3)::after {
    content: none;
  }
  .proposal-support-list-item p {
    width: 13.7em;
    height: 100%;
    padding: 5.6em 1.4em 0 1.6em;
    border-radius: 2.14em;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: .1em;
    box-shadow: .21em .14em .5em rgba(0, 0, 0, .1);
  }
  .proposal-support-list-item:nth-child(odd) p,
  .proposal-support-list-item:nth-child(even) p {
    padding-left: 2em;
  }
  .proposal-support-list-item p span {
    position: absolute;
    top: -.2em;
    left: .1em;
    color: #FF8567;
    font-size: 3.35em;
    font-weight: 300;
    line-height: 1;
    z-index: 1;
  }
  .proposal-support-list-item.support01 p {
    padding-left: 2em;
    padding-right: 2em;
    background-position: top 2em center;
    background-size: 5.57em auto;
    background-color: #fff;
  }
  .proposal-support-list-item.support02 p {
    background-position: top 2em left 4.5em;
    background-size: 6.21em auto;
    background-color: #fff;
  }
  .proposal-support-list-item.support03 p {
    padding-top: 6.5em;
    background-position: top 1.4em center;
    background-size: 5.28em auto;
    background-color: #fff;
    line-height: 1.4;
    letter-spacing: .07em;
  }
  .proposal-support-list-item.support04 p {
    padding-top: 5.4em;
    background-position: top 1em center;
    background-size: 5.14em auto;
    background-color: #fff;
    letter-spacing: .07em;
    line-height: 1.5;
  }
  .proposal-support-list-item.support05 p {
    background-position: top 2em center;
    background-size: 5.07em auto;
    background-color: #fff;
    line-height: 1.6;
    letter-spacing: .05em;
  }
  .proposal-support-list-item.support06 p {
    padding-left: 1.8em;
    padding-right: 1em;
    background-position: top 1.7em center;
    background-size: 6.43em auto;
    background-color: #fff;
    line-height: 1.6;
    transform: translateX(0);
  }

  .proposal-support .swiper-scrollbar {
    left: 9.7em;
    width: 15.2em;
    height: .3em;
    background-color: rgba(0, 0, 0, .1);
    opacity: 0;
    transition: opacity .2s ease-in;
  }
  .proposal-support .swiper-scrollbar.show {
    opacity: 1;
  }
  .proposal-support .swiper-scrollbar-drag {
    height: .3em;
    background-color: rgba(0, 0, 0, .3);
  }

  .proposal-btm {
    width: 88%;
    margin-top: 7.8em;
    padding: 2.5em 2em 19.4em 2.5em;
    border-radius: 1.2em;
  }
  .proposal-btm::before {
    top: -5.8em;
    width: 6.5em;
    height: 4.5em;
  }
  .proposal-btm::after {
    top: auto;
    bottom: 1.6em;
    left: 1em;
    right: 0;
    width: 20.8em;
    height: 15.2em;
    margin: 0 auto;
  }
  .proposal-btm p {
    font-size: 2.1em;
    letter-spacing: .12em;
    line-height: 1.5;
  }
}


/* -------------------------------
  contents - point
------------------------------- */
.point {
  padding: 115px 0 140px;
  background: url('/sell/promotion/assets/img/purchase/s/point_bg_pc.svg') top 25% center / 1920px auto no-repeat;
}
.point .inner {
  max-width: 1008px;
}
.point-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 75px;
}
.point-list:nth-child(odd) {
  flex-direction: row-reverse;
}
.point-list-item {
  flex: 1;
}
.point-list-item-no {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}
.point-list-item-ttl {
  margin-top: 13px;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5;
}
.point-list-item-ttl-bd {
  background: linear-gradient(transparent 65%, #FFFAD4 0%);
  font-size: 4rem;
}
.point-list-item-txt {
  margin-top: 12px;
  font-size: 1.7rem;
  line-height: 1.95;
  letter-spacing: .12em;
}
.point-list-img {
  width: 374px;
}
.point-list-img img {
  filter: drop-shadow(2px 5px 6px rgba(0, 0, 0, .15));
}
.point01 .point-list-item-ttl {
  margin-top: 0;
  font-size: 2.9rem;
}
.point01 .point-list-item-ttl-bd {
  margin-left: 10px;
  font-size: 3.8rem;
}
.point02 {
  gap: 0 50px;
  margin-top: 57px;
}
.point02 .point-list-item {
  padding: 5px 0 0 10px;
}
.point03 {
  gap: 0 70px;
  margin-top: 75px;
}
.point03 .point-list-item {
  padding-top: 12px;
}
.point03 .point-list-item-ttl-bd {
  letter-spacing: .03em;
}
.point03 .point-list-item-txt {
  letter-spacing: .1em;
}
.point04 {
  gap: 0 40px;
  margin-top: 75px;
}
.point04 .point-list-item {
  padding-left: 15px;
}
.point04 .point-list-item-txt {
  letter-spacing: .1em;
}
.point05 {
  margin-top: 123px;
}
.point05 .point-list-item {
  padding-top: 5px;
}
.point05 .point-list-item-ttl {
  margin-top: 10px;
  line-height: 1.4;
}

@media screen and (min-width: 1921px) {
  .point {
    background-size: 100% auto;
  }
}

@media screen and (max-width: 1000px) {
  .point {
    padding: 7em 0 4.3em;
    background: url('/sell/promotion/assets/img/purchase/s/point_bg_sp.svg') top 6em center / 100% auto no-repeat;
  }
  .point .inner {
    width: 100%;
    max-width: 100%;
    padding-left: 4.9em;
  }
  .point-list,
  .point-list:nth-child(odd) {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2.8em 0;
  }
  .point-list-item {
    padding-left: .3em;
  }
  .point-list-item-no {
    font-size: 1em;
  }
  .point-list-item-ttl {
    margin-top: .8em;
    font-size: 1em;
    line-height: 1.33;
  }
  .point-list-item-ttl-bd {
    font-size: 2.7em;
    letter-spacing: .1em;
  }
  .point-list-item-txt {
    width: 17.27em;
    margin-top: .85em;
    font-size: 1.5em;
    line-height: 1.7;
    letter-spacing: .09em;
  }
  .point-list-img {
    width: 26.2em;
  }
  .point-list-img img {
    border-radius: .7em;
    filter: drop-shadow(.2em .5em .6em rgba(0, 0, 0, .15));
  }
  .point01 .point-list-item-ttl {
    margin-top: .8em;
    font-size: 1em;
  }
  .point01 .point-list-item-ttl-bd {
    margin-left: 0;
    font-size: 2.7em;
  }
  .point01 .point-list-item-ttl-s01 {
    font-size: 2em;
    letter-spacing: .1em;
  }
  .point02 {
    gap: 2.8em 0;
    margin-top: 4em;
  }
  .point02 .point-list-item {
    padding: 0 0 0 .3em;
  }
  .point02 .point-list-item-ttl {
    margin-top: .4em;
    letter-spacing: .13em;
    line-height: 1.5;
  }
  .point02 .point-list-item-ttl-s01 {
    font-size: 2.3em;
  }
  .point02 .point-list-item-ttl-s02 {
    font-size: 1.8em;
  }
  .point02 .point-list-item-txt {
    letter-spacing: .12em;
    line-height: 1.72;
  }
  .point03.point-list {
    gap: 3em 0;
    margin-top: 4.7em;
  }
  .point03 .point-list-item {
    padding-top: 0;
  }
  .point03 .point-list-item-ttl-bd {
    font-size: 2.5em;
    letter-spacing: .05em;
  }
  .point03 .point-list-item-ttl-s01 {
    font-size: 1.9em;
  }
  .point03 .point-list-item-ttl-s02 {
    font-size: 2em;
    line-height: 1.7;
    letter-spacing: .06em;
  }
  .point03 .point-list-item-txt {
    margin-top: .7em;
  }
  .point04 {
    gap: 3.2em 0;
    margin-top: 4.5em;
  }
  .point04 .point-list-item {
    padding-left: .3em;
  }
  .point04 .point-list-item-ttl {
    margin-top: .9em;
    letter-spacing: .23em;
  }
  .point04 .point-list-item-ttl-s01 {
    font-size: 2.1em;
  }
  .point04 .point-list-item-ttl-bd {
    font-size: 2.4em;
    letter-spacing: .055em;
    line-height: 1.4;
  }
  .point04 .point-list-item-txt {
    margin-top: 1.2em;
    line-height: 1.74;
    letter-spacing: .11em;
  }
  .point05.point-list {
    gap: 3.6em 0;
    margin-top: 5.3em;
  }
  .point05 .point-list-item {
    padding-top: 0;
  }
  .point05 .point-list-item-ttl {
    margin-top: .8em;
  }
  .point05 .point-list-item-ttl-s01 {
    font-size: 2.4em;
  }
  .point05 .point-list-item-ttl-s02 {
    font-size: 2.3em;
    line-height: 1.5;
    letter-spacing: .1em;
  }
  .point05 .point-list-item-ttl-bd {
    font-size: 2.5em;
    letter-spacing: .05em;
  }
  .point05 .point-list-item-txt {
    margin-top: .6em;
    line-height: 1.74;
  }
}

/* -------------------------------
  contents - direct
------------------------------- */
.direct {
  padding: 81px 0 66px;
  background: url('/sell/promotion/assets/img/purchase/s/recommend_bg_pc.jpg') center center / auto 100% no-repeat;
}
.direct-ttl {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.direct-txt {
  max-width: 492px;
  margin: 25px auto 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: .03em;
}
.direct-tbl {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 946px;
  margin: 82px auto 0;
  font-weight: 700;
  line-height: 1.2;
  transform: translateX(-18px);
}
.direct-tbl-icon {
  content: '';
  position: absolute;
  top: -70px;
  left: 483px;
  display: block;
  width: 96px;
  height: 96px;
  background: url('/sell/promotion/assets/img/purchase/s/recommend_icon.svg') center center / contain no-repeat;
  transform: scale(0);
  transition-delay: .5s;
  z-index: 1;
}
.direct-tbl-icon.isFadein.isShow {
  transform: scale(1);
}
.direct-tbl-head {
  flex-shrink: 0;
  width: 160px;
  color: #896954;
  font-size: 1.5rem;
}
.direct-tbl-head li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 75px;
  height: 56px;
  padding: 0 13px 2px 0;
  background: url('/sell/promotion/assets/img/purchase/s/recommend_head_bg.svg') top left / contain no-repeat;
}
.direct-tbl-head li:not(:first-child) {
  margin-top: 7px;
}
.direct-tbl-starmica {
  position: relative;
  flex-shrink: 0;
  width: 382px;
  border: 6px solid #FFF57A;
  border-radius: 10px 10px 10px 10px;
  color: #FF6741;
  font-size: 1.4rem;
}
.direct-tbl-agency {
  flex-shrink: 0;
  width: 376px;
  margin-top: 6px;
  border-radius: 10px 10px 0 0;
  color: #139BD1;
  font-size: 1.4rem;
}
.direct-tbl-starmica li,
.direct-tbl-agency li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 64px;
  padding-bottom: 2px;
  text-align: center;
  letter-spacing: .06em;
  line-height: 1.6;
}
.direct-tbl-starmica li {
  background-color: #FFF7F5;
}
.direct-tbl-starmica li:not(:first-child):not(:last-child)::after,
.direct-tbl-agency li:not(:first-child):not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5px;
  right: 5px;
  height: 2px;
  background: linear-gradient(to right, #FFCEC2, #FFCEC2 3px, transparent 0, transparent 3px) center left / 6px 3px repeat-x;
}
.direct-tbl-agency li:not(:first-child):not(:last-child)::after {
  background: linear-gradient(to right, #C6E7F4, #C6E7F4 3px, transparent 0, transparent 3px) center left / 6px 3px repeat-x;
}
.direct-tbl-starmica li:first-child {
  height: 56px;
  margin-bottom: 7px;
  background-color: #FF987E;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 1.28em;
}
.direct-tbl-starmica li:first-child span {
  margin-left: 10px;
  font-size: .82em;
}
.direct-tbl-agency li {
  background-color: #F3FAFD;
}
.direct-tbl-agency li:first-child {
  height: 56px;
  margin-bottom: 7px;
  padding-left: 25px;
  background-color: #76C5E4;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 1.28em;
}
.direct-tbl-agency li:last-child {
  flex-direction: column;
}
.direct-tbl-agency li:last-child span {
  font-size: .85em;
}

@media screen and (max-width: 1000px) {
  .direct {
    padding: 3.5em 0 4.15em;
    background: url('/sell/promotion/assets/img/purchase/s/recommend_bg_sp.jpg') top center / cover no-repeat #fff;
  }
  .direct .inner {
    width: 100%;
  }
  .direct-ttl {
    font-size: 2.1em;
    letter-spacing: .03em;
  }
  .direct-ttl-s01 {
    padding-left: .5em;
    font-size: .95em;
    letter-spacing: -.05em;
  }
  .direct-ttl-s01 span {
    color: #ff6741;
  }
  .direct-txt {
    width: 79%;
    max-width: none;
    margin-top: 1.2em;
    padding-left: .5em;
    font-size: 1.4em;
    letter-spacing: 0;
  }
  .direct-tbl {
    width: auto;
    margin: 5.2em 0 0;
    padding-bottom: 3.2em;
    transform: translateX(0);
  }
  .direct-tbl::after {
    content: '';
    flex-shrink: 0;
    display: block;
    width: 2.8em;
    height: .1em;
  }
  .direct-tbl-icon {
    top: -5.3em;
    left: 36.3em;
    width: 6.6em;
    height: 6.7em;
  }
  .direct-tbl-head {
    width: 9.3em;
    margin-left: 2.4em;
    margin-right: .5em;
    font-size: 1.2em;
  }
  .direct-tbl-head li {
    margin-top: 4.5em;
    height: 3.5em;
    padding: 0 1em .2em 0;
  }
  .direct-tbl-head li:not(:first-child) {
    margin-top: .5em;
  }
  .direct-tbl-starmica {
    width: 24.5em;
    margin-right: 1.25em;
    border-width: .5em;
    border-radius: 1.66em 1.66em .83em .83em;
    font-size: 1.2em;
  }
  .direct-tbl-agency {
    width: 22.34em;
    margin-top: .5em;
    border-radius: .83em .83em 0 0;
    font-size: 1.2em;
  }
  .direct-tbl-starmica li,
  .direct-tbl-agency li {
    height: 4em;
    padding-bottom: .16em;
    line-height: 1.4;
  }
  .direct-tbl-starmica li:not(:first-child):not(:last-child)::after,
  .direct-tbl-agency li:not(:first-child):not(:last-child)::after {
    left: .75em;
    right: .75em;
    height: .16em;
    background: linear-gradient(to right, #FFCEC2, #FFCEC2 .25em, transparent 0, transparent .25em) center left / .5em .25em repeat-x;
  }
  .direct-tbl-agency li:not(:first-child):not(:last-child)::after {
    background: linear-gradient(to right, #C6E7F4, #C6E7F4 .25em, transparent 0, transparent .25em) center left / .5em .25em repeat-x;
  }
  .direct-tbl-starmica li:first-child {
    height: 2.85em;
    margin-bottom: .28em;
    border-radius: .71em .71em 0 0;
    font-size: 1.16em;
  }
  .direct-tbl-starmica li:first-child span {
    margin-left: 0;
  }
  .direct-tbl-agency li:nth-child(3) {
    letter-spacing: 0;
  }
  .direct-tbl-agency li:first-child {
    height: 2.85em;
    margin-bottom: .28em;
    padding-left: 2em;
    border-radius: .71em .71em 0 0;
    font-size: 1.16em;
  }
  .direct-tbl-agency li:last-child span {
    font-size: .66em;
  }
  .direct .swiper-scrollbar {
    left: 0;
    right: 0;
    width: 29em;
    height: .4em;
    margin: 0 auto;
    background-color: #FFEFE5;
    border-radius: 0;
  }
  .direct .swiper-scrollbar-drag {
    background-color: #FFD1B5;
    border-radius: 0;
  }
}


/* -------------------------------
  contents - customer
------------------------------- */
.customer {
  padding: 93px 0 85px;
  background-color: #FBFAF7;
}
.customer .inner {
  width: 100%;
  max-width: none;
}
.customer-ttl {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 10px;
  font-weight: 700;
  text-align: left;
}
.customer-ttl h2 {
  font-size: 4rem;
  letter-spacing: .15em;
}
.customer-ttl p:nth-child(2) {
  margin-left: 30px;
  padding: 0 3px;
  font-size: 2.4rem;
  border-top: 1px solid #474747;
  border-bottom: 1px solid #474747;
  letter-spacing: .35em;
  line-height: 1.9;
}
.customer-ttl p:nth-child(3) {
  margin-left: 57px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: .08em;
}

.customer .swiper {
  padding: 0 calc((100% - 1062px) / 2);
}
.customer-box {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: auto;
  height: 562px;
  margin-top: 35px;
  padding-bottom: 22px;
}
.customer-box .swiper-slide {
  width: 528px;
  height: 562px;
  padding: 0 36px;
}
.customer-box-item {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 17px;
  background-color: #FFF3F0;
  border-radius: 15px;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, .1);
}
.customer-box-item.customer02,
.customer-box-item.customer04 {
  background-color: #EBF4F9;
}
.customer-box-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 112px;
  background-color: #FF9F87;
  border-radius: 15px 15px 0 0;
  z-index: 0;
}
.customer-box-item.customer02::before,
.customer-box-item.customer04::before {
  background-color: #57A3CC;
}
.customer-box-item-no {
  position: relative;
  width: 122px;
  margin: 0 auto;
  padding: 5px 0;
  border: 1px solid #fff;
  border-radius: 16px;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  z-index: 1;
}
.customer-box-item-ttl {
  position: relative;
  margin-top: 7px;
  padding-left: .08em;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .08em;
  z-index: 1;
}
.customer-box-item-img {
  width: 345px;
  min-height: 148px;
  margin: 53px auto 0;
  transform: translateX(-7px);
}
.customer-box-item-txt {
  padding: 25px 55px 46px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: .085em;
}
.customer-attention {
  max-width: 970px;
  margin: 10px auto 0;
  font-size: 1rem;
  font-weight: 700;
}
.customer .swiper-scrollbar {
  left: 0;
  right: 0;
  width: 45.6em;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, .1);
  opacity: 0;
  transition: opacity .2s ease-in;
}
.customer .swiper-scrollbar.show {
  opacity: 1;
}
.customer .swiper-scrollbar-drag {
  background-color: rgba(0, 0, 0, .3);
}

@media screen and (max-width: 1000px) {
  .customer {
    padding: 3.2em 0 3.6em;
  }
  .customer-ttl {
    flex-wrap: wrap;
    max-width: 100%;
    padding-left: 3.5em;
  }
  .customer-ttl h2 {
    font-size: 2.6em;
    letter-spacing: .1em;
  }
  .customer-ttl p:nth-child(2) {
    margin-top: .1em;
    margin-left: 1.4em;
    padding: 0 0 .1em .1em;
    border-top: .07em solid #FF6741;
    border-bottom: .07em solid #FF6741;
    color: #FF6741;
    font-size: 1.4em;
    line-height: 1.8;
  }
  .customer-ttl p:nth-child(3) {
    width: 100%;
    margin-top: .4em;
    margin-left: 0;
    font-size: 1.5em;
    letter-spacing: .07em;
  }

  .customer .swiper {
    padding: 0 2em 0 1em;
  }
  .customer-box {
    height: 51em;
    margin-top: 2.8em;
    padding-bottom: 2em;
  }
  .customer-box .swiper-slide {
    width: 33.2em;
    height: 51em;
    padding: 0 1em 0;
  }
  .customer-box-item {
    padding-top: 1.2em;
    border-radius: 1.5em;
    box-shadow: .1em .1em .7em rgba(0, 0, 0, .1);
  }
  .customer-box-item::before {
    height: 7.8em;
    border-radius: 1.5em 1.5em 0 0;
  }
  .customer-box-item-no {
    width: 5.67em;
    padding: .2em 0;
    border-width: .07em;
    border-radius: .74em;
    font-size: 1.5em;
  }
  .customer-box-item-ttl {
    margin-top: .2em;
    padding-left: .08em;
    font-size: 1.8em;
  }
  .customer-box-item-img {
    width: 26.6em;
    min-height: auto;
    margin-top: 3.3em;
    transform: translateX(-.2em);
  }
  .customer-box-item-txt {
    padding: 1em 1.5em 2em 1.5em;
    font-size: 1.5em;
    line-height: 1.87;
    letter-spacing: .082em;
  }
  .customer02 .customer-box-item-img,
  .customer04 .customer-box-item-img {
    width: 27.2em;
    transform: translateX(.1em);
  }
  .customer03 .customer-box-item-img {
    width: 27em;
  }
  .customer04 .customer-box-item-txt {
    padding-top: 1.3em;
  }
  .customer-attention {
    max-width: 30em;
    margin-top: 1.5em;
    padding-right: .5em;
    font-size: 1em;
    letter-spacing: .03em;
    line-height: 1.6;
  }
  .customer .swiper-scrollbar {
    width: 31.2em;
    height: .3em;
  }
  .customer .swiper-scrollbar-drag {
    height: .3em;
  }
}


/* -------------------------------
  contents - aboutUs
------------------------------- */
.aboutUs {
  background-color: #FBFAF8;
}
.aboutUs > .inner {
  max-width: 800px;
  padding: 8.5rem 0 10.8rem;
}
.aboutUs-ttl {
  padding-left: .2em;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.aboutUs-ceoImg {
  margin-top: 6.3rem;
}
.aboutUs-ceoCmt {
  margin-top: 5.5rem;
}
.aboutUs-ceoCmt-ttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.5;
}
.aboutUs-ceoCmt-ttl span {
  display: block;
  font-size: 2.3rem;
  letter-spacing: .2em;
}
.aboutUs-ceoCmt-txt {
  margin-top: 2.05em;
  font-size: 1.5rem;
  line-height: 2.07;
  letter-spacing: .105em;
  text-align: justify;
}

.aboutUs-num {
  padding: 7.5rem 0 10rem;
  background-color: #fff;
}
.aboutUs-num .inner {
  max-width: 78.8rem;
}
.aboutUs-num-ttl {
  padding-left: .25em;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .25em;
}
.aboutUs-num-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2.5rem 2.8rem;
  margin-top: 4.7rem;
}
.aboutUs-num-list .aboutUs-num-list-item {
  width: 38rem;
  height: 26.4rem;
  border: .6rem solid #F1F1F1;
  border-radius: 2.9rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.aboutUs-num-list .aboutUs-num-list-item.item1 {
  padding-top: 5.7rem;
  background-image: url('/sell/promotion/assets/img/purchase/s/aboutUs_num_01.svg');
}
.aboutUs-num-list .aboutUs-num-list-item.item1 p:first-child {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-align: center;
}
.aboutUs-num-list .aboutUs-num-list-item.item1 p:nth-child(2) {
  margin-top: .8rem;
  margin-left: 5.8rem;
  color: #FF6741;
  line-height: 1;
  font-size: 6.75rem;
  font-weight: 700;
  letter-spacing: -.07em;
}
.aboutUs-num-list .aboutUs-num-list-item.item1 p:nth-child(2) span {
  padding-left: 1rem;
  font-size: 4.05rem;
}

.aboutUs-num-list .aboutUs-num-list-item.item2 {
  padding-top: 5.6rem;
  background-image: url('/sell/promotion/assets/img/purchase/s/aboutUs_num_02.svg');
}
.aboutUs-num-list .aboutUs-num-list-item.item2 p:first-child {
  padding-left: .15em;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-align: center;
}
.aboutUs-num-list .aboutUs-num-list-item.item2 p:nth-child(2) {
  margin-top: 1rem;
  margin-left: 5.8rem;
  color: #139BD1;
  line-height: 1;
  font-size: 6.75rem;
  font-weight: 700;
  letter-spacing: -.04em;
}
.aboutUs-num-list .aboutUs-num-list-item.item2 p:nth-child(2) span {
  font-size: 4.05rem;
}

.aboutUs-num-list .aboutUs-num-list-item.item3 {
  padding-top: 3.8rem;
  background-image: url('/sell/promotion/assets/img/purchase/s/aboutUs_num_03_pc.svg');
}
.aboutUs-num-list .aboutUs-num-list-item.item3 p:first-child {
  padding-left: .45em;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.47;
  letter-spacing: .065em;
  text-align: center;
}
.aboutUs-num-list .aboutUs-num-list-item.item3 p:nth-child(2) {
  margin-top: 1.2rem;
  margin-right: 3rem;
  padding-left: .05em;
  color: #139BD1;
  line-height: 1;
  font-size: 7.7rem;
  font-weight: 700;
  text-align: center;
}
.aboutUs-num-list .aboutUs-num-list-item.item3 p:nth-child(2) span {
  padding-left: 1rem;
  font-size: 4rem;
  vertical-align: middle;
}
.aboutUs-num-list .aboutUs-num-list-item.item3 p:last-child {
  margin-top: 1.2rem;
  padding-left: 7rem;
  font-size: 1rem;
  letter-spacing: .12em;
}

.aboutUs-num-list .aboutUs-num-list-item.item4 {
  padding-top: 3.8rem;
  background-image: url('/sell/promotion/assets/img/purchase/s/aboutUs_num_04_pc.svg');
}
.aboutUs-num-list .aboutUs-num-list-item.item4 p:first-child {
  padding-left: .5rem;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.47;
  letter-spacing: .09em;
  text-align: center;
}
.aboutUs-num-list .aboutUs-num-list-item.item4 p:nth-child(2) {
  margin-top: 1.2rem;
  color: #FF6741;
  line-height: 1;
  font-size: 7.7rem;
  font-weight: 700;
  text-align: center;
}
.aboutUs-num-list .aboutUs-num-list-item.item4 p:nth-child(2) span {
  padding-left: .5rem;
  font-size: 4rem;
  vertical-align: middle;
}
.aboutUs-num-list .aboutUs-num-list-item.item4 p:last-child {
  margin-top: 1.8rem;
  padding-left: .5rem;
  font-size: 1rem;
  letter-spacing: .1em;
  text-align: center;
}

.aboutUs-strengths {
  padding-top: 8rem;
  padding-bottom: 13.5rem;
  background-color: #F6F6F6;
}
.aboutUs-strengths .inner {
  max-width: 78rem;
  padding-left: 3rem;
}
.aboutUs-strengths-ttl {
  padding-right: 2.4rem;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .24em;
}
.aboutUs-strengths-list {
  margin-top: 5.5rem;
}
.aboutUs-strengths-list-ttl {
  width: 100%;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .11em;
}
.aboutUs-strengths-list-ttl span {
  margin-right: .35em;
  letter-spacing: .1em;
}
.aboutUs-strengths-list-txt {
  margin-top: 1.3rem;
  font-size: 1.5rem;
  line-height: 2;
  text-align: justify;
  letter-spacing: .102em;
}
.aboutUs-strengths-list-txt span:not([class]) {
  background: linear-gradient(transparent 65%, #FFF87A 0%);
  line-height: 1;
  font-weight: 700;
  color: #FF6741;
}

.aboutUs-strengths-list > li:nth-child(1) .aboutUs-strengths-list-ttl {
  letter-spacing: .075em;
}
.aboutUs-strengths-list > li:nth-child(1) .aboutUs-strengths-list-txt {
  padding-right: 2.8rem;
}
.aboutUs-strengths-list > li:nth-child(1) .aboutUs-strengths-list-img {
  margin-top: 5rem;
}
.aboutUs-strengths-list > li:nth-child(1) .aboutUs-strengths-list-img img {
  filter: drop-shadow(0 .2rem .5rem rgba(0, 0, 0, .1));
}
.aboutUs-strengths-list-porter {
  position: relative;
  margin-top: 6.3rem;
  margin-right: 3.4rem;
  padding: 2.3rem 3rem 2.6rem;
  background-color: #fff;
  border: .2rem solid #E9E3D6;
  border-radius: .7rem;
  box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .1);
}
.aboutUs-strengths-list-porter::before {
  content: '';
  position: absolute;
  top: -2.6rem;
  left: 2rem;
  display: block;
  width: 16.3rem;
  height: 18.4rem;
  background: url('/sell/promotion/assets/img/purchase/aboutUs_porter_icon.svg') top left / cover no-repeat;
}
.aboutUs-strengths-list-porter > p {
  padding-left: 18.6rem;
  padding-right: .4rem;
  font-size: 1.3rem;
  line-height: 1.83;
  letter-spacing: .08em;
  text-align: justify;
}
.aboutUs-strengths-list-porter > p span {
  color: #FF6741;
  font-weight: 700;
}
.aboutUs-strengths-list-porter-about {
  margin-top: 2rem;
  padding: 1.9rem 24rem 2rem 3.1rem;
  background: url('/sell/promotion/assets/img/purchase/aboutUs_porter_logo.svg') center right 2rem / 20rem auto no-repeat #F9F7F3;
  border-radius: .7rem;
  font-size: 1.2rem;
  letter-spacing: .077em;
  line-height: 1.9;
  text-align: justify;
}

.aboutUs-strengths-list > li:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 7.3rem;
  padding-left: 0.5rem;
  padding-right: 0.8rem;
}
.aboutUs-strengths-list > li:nth-child(2) .aboutUs-strengths-list-ttl {
  letter-spacing: .095em;
}
.aboutUs-strengths-list-point {
  width: 26.8rem;
  margin-top: 3.8rem;
  margin-left: 0.5rem;
}
.aboutUs-strengths-list-point li {
  display: flex;
  align-items: center;
  height: 6.6rem;
  padding-left: 5.8rem;
  background: url('/sell/promotion/assets/img/purchase/s/aboutUs_check_odd.svg') center left 1.2em / auto 1em no-repeat #FFEDE8;
  border-radius: 1.1rem;
  color: #FF7E5D;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.aboutUs-strengths-list-point li:nth-child(even) {
  background: url('/sell/promotion/assets/img/purchase/s/aboutUs_check_even.svg') center left 1.2em / auto 1em no-repeat #E0F2F9;
  color: #36AAD8;
  line-height: 1.4;
  letter-spacing: .03em;
}
.aboutUs-strengths-list-point li:not(:first-child) {
  margin-top: 1.5rem;
}
.aboutUs-strengths-list > li:nth-child(2) .aboutUs-strengths-list-img {
  width: 43.8rem;
  margin-top: 3.8rem;
}
.aboutUs-strengths-list > li:nth-child(2) .aboutUs-strengths-list-img img {
  filter: drop-shadow(.1rem .2rem .6rem rgba(0, 0, 0, .1));
}

.aboutUs-strengths-list > li:nth-child(3) {
  position: relative;
  margin-top: 7.5rem;
  padding-left: .5rem;
}
.aboutUs-strengths-list > li:nth-child(3)::after {
  content: '';
  position: absolute;
  bottom: 2.6rem;
  right: 4.2rem;
  display: block;
  width: 20rem;
  height: 10.4rem;
  background: url('/sell/promotion/assets/img/purchase/s/aboutUs_strengths_03_02.svg') bottom left / cover no-repeat;
  z-index: 1;
}
.aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-icon {
  position: absolute;
  top: -.9rem;
  right: .6rem;
  display: block;
  width: 9.8rem;
  height: 10.9rem;
  z-index: 0;
}
.aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-icon::before {
  content: '';
  position: absolute;
  top: 0;
  right: .6rem;
  display: block;
  width: 7.5rem;
  height: 8.1rem;
  background: url('/sell/promotion/assets/img/purchase/s/aboutUs_strengths_03_01.svg?260203') top left / contain no-repeat;
  z-index: 2;
}
.aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 9.8rem;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: .1rem .1rem .7rem rgba(0, 0, 0, .03);
  z-index: 1;
}
.aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-txt {
  margin-right: 28rem;
  letter-spacing: .158rem;
}
.aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-txt .caution {
  font-size: 0.5em;
  vertical-align: top;
}
.aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-notes {
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: .1em;
}
.aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-notes span:last-child {
  margin-left: 2.5rem;
}

.aboutUs-strengths-list > li:nth-child(4) {
  margin-top: 7.8rem;
  padding-left: .5rem;
  background: url('/sell/promotion/assets/img/purchase/s/aboutUs_strengths_04.svg') top 2.5rem right .5rem / 24.5rem auto no-repeat;
}
.aboutUs-strengths-list > li:nth-child(4) .aboutUs-strengths-list-txt {
  margin-right: 30rem;
  padding-bottom: 1.5rem;
  letter-spacing: .11em;
}

.aboutUs-strengths-list > li:nth-child(5) {
  margin-top: 7rem;
  padding-left: .5rem;
}
.aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-ttl {
  letter-spacing: .085em;
}
.aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-txt {
  margin-right: 4.8rem;
  letter-spacing: .085em;
}
.aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-img {
  position: relative;
  width: 69.8rem;
  margin-top: 6.6rem;
}
.aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-img::after {
  content: '';
  position: absolute;
  top: -7.8rem;
  right: -1.6rem;
  display: block;
  width: 16.8rem;
  height: 16.3rem;
  background: url('/sell/promotion/assets/img/purchase/s/aboutUs_strengths_05_02_pc.svg?260212') center center / contain no-repeat;
  z-index: 1;
}
.aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-img img {
  filter: drop-shadow(0 .2rem .5rem rgba(0, 0, 0, .1));
}
.aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-notes {
  margin-top: 1.5rem;
  padding-right: 5.2rem;
  font-size: 1rem;
  letter-spacing: .155em;
  text-align: right;
}

@media screen and (max-width: 1000px) {
  .aboutUs > .inner {
    width: 100%;
    max-width: none;
    padding: 3em  0 5.5em;
  }
  .aboutUs-ttl {
    padding-left: .25em;
    font-size: 1.8em;
    letter-spacing: .25em;
  }

  .aboutUs-ceoImg {
    width: 100%;
    margin-top: 1.9em;
  }
  .aboutUs-ceoCmt {
    width: 78%;
    margin: 1.8em auto 0;
  }
  .aboutUs-ceoCmt-ttl {
    font-size: 2.3em;
    line-height: 1.45;
  }
  .aboutUs-ceoCmt-ttl span {
    margin-top: .4em;
    font-size: .65em;
    letter-spacing: .09em;
  }
  .aboutUs-ceoCmt-txt {
    margin-top: 1.7em;
    font-size: 1.5em;
    line-height: 2.08;
    letter-spacing: .055em;
  }
  .aboutUs-ceoCmt-ttl + .aboutUs-ceoCmt-txt {
    margin-top: 1.2em;
  }

  .aboutUs-num {
    padding: 3.9em 0 2.7em;
  }
  .aboutUs-num .inner {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
  .aboutUs-num-ttl {
    padding-left: .2em;
    font-size: 1.8em;
    letter-spacing: .2em;
  }
  .aboutUs-num-list {
    display: flex;
    gap: 0;
    margin-top: 2em;
    padding-bottom: 2em;
  }
  .aboutUs-num-list .aboutUs-num-list-item {
    width: 25.2em;
    height: 17.6em;
    margin: 0 1.25em;
    border: .4em solid #F1F1F1;
    border-radius: 2.9em;
  }

  .aboutUs-num-list .aboutUs-num-list-item.item1,
  .aboutUs-num-list .aboutUs-num-list-item.item2 {
    padding-top: 3.7em;
  }
  .aboutUs-num-list .aboutUs-num-list-item.item1 p:first-child,
  .aboutUs-num-list .aboutUs-num-list-item.item2 p:first-child {
    font-size: 1.6em;
    letter-spacing: .15em;
  }
  .aboutUs-num-list .aboutUs-num-list-item.item1 p:nth-child(2),
  .aboutUs-num-list .aboutUs-num-list-item.item2 p:nth-child(2) {
    margin-top: .07em;
    margin-left: .8em;
    font-size: 4.5em;
  }
  .aboutUs-num-list .aboutUs-num-list-item.item1 p:nth-child(2) span,
  .aboutUs-num-list .aboutUs-num-list-item.item2 p:nth-child(2) span {
    padding-left: .5em;
    font-size: .6em;
  }

  .aboutUs-num-list .aboutUs-num-list-item.item3 {
    padding-top: 2.4em;
    background-image: url('/sell/promotion/assets/img/purchase/s/aboutUs_num_03_sp.svg');
  }
  .aboutUs-num-list .aboutUs-num-list-item.item3 p:first-child {
    padding-left: 0;
    font-size: 1.4em;
  }
  .aboutUs-num-list .aboutUs-num-list-item.item3 p:nth-child(2) {
    margin-top: .1em;
    margin-right: .25em;
    color: #FF6741;
    font-size: 5.2em;
  }
  .aboutUs-num-list .aboutUs-num-list-item.item3 p:nth-child(2) span {
    padding-left: .25em;
    font-size: .5em;
  }
  .aboutUs-num-list .aboutUs-num-list-item.item3 p:last-child {
    margin-top: .6em;
    padding-left: 2em;
    font-size: 1em;
    letter-spacing: .04em;
    line-height: 1.3;
  }

  .aboutUs-num-list .aboutUs-num-list-item.item4 {
    padding-top: 2.4em;
    background-image: url('/sell/promotion/assets/img/purchase/s/aboutUs_num_04_sp.svg');
  }
  .aboutUs-num-list .aboutUs-num-list-item.item4 p:first-child {
    padding-left: 0;
    font-size: 1.4em;
  }
  .aboutUs-num-list .aboutUs-num-list-item.item4 p:nth-child(2) {
    margin-top: .1em;
    color: #139BD1;
    font-size: 5.3em;
  }
  .aboutUs-num-list .aboutUs-num-list-item.item4 p:nth-child(2) span {
    padding-left: .2em;
    font-size: .5em;
  }
  .aboutUs-num-list .aboutUs-num-list-item.item4 p:last-child {
    margin-top: .75em;
    padding-left: 0;
    font-size: 1em;
    letter-spacing: 0;
  }

  .aboutUs-num .swiper-scrollbar {
    left: 0;
    right: 0;
    width: 24.8em;
    height: .3em;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, .1);
    opacity: 0;
    transition: opacity .2s ease-in;
  }
  .aboutUs-num .swiper-scrollbar.show {
    opacity: 1;
  }
  .aboutUs-num .swiper-scrollbar-drag {
    height: .3em;
    background-color: rgba(0, 0, 0, .3);
  }

  .aboutUs-strengths {
    padding: 3.8em 0 3.2em;
  }
  .aboutUs-strengths .inner {
    width: 88.89%;
    max-width: none;
    padding-left: 0;
  }
  .aboutUs-strengths-ttl {
    padding-right: .0em;
    font-size: 1.9em;
    letter-spacing: .2em;
  }
  .aboutUs-strengths-list {
    margin-top: 2.3em;
  }
  .aboutUs-strengths-list-ttl {
    padding: 0 .9em;
    font-size: 2em;
    letter-spacing: .11em;
  }
  .aboutUs-strengths-list-ttl span {
    margin-right: .35em;
    letter-spacing: .1em;
  }
  .aboutUs-strengths-list-txt {
    margin-top: .7em;
    padding: 0 1.2em;
    font-size: 1.5em;
    line-height: 1.9;
    letter-spacing: .1em;
  }

  .aboutUs-strengths-list > li:nth-child(1) .aboutUs-strengths-list-txt {
    padding-right: 1.2em;
  }
  .aboutUs-strengths-list > li:nth-child(1) .aboutUs-strengths-list-img {
    margin-top: 2.8em;
  }
  .aboutUs-strengths-list > li:nth-child(1) .aboutUs-strengths-list-img img {
    filter: drop-shadow(0 .2em .5em rgba(0, 0, 0, .1));
  }

  .aboutUs-strengths-list-porter {
    margin-top: 4em;
    margin-right: 0;
    padding: 2.5em 2em 2em;
    border-width: .2em;
    border-radius: .7em;
    box-shadow: 0 .2em .5em rgba(0, 0, 0, .1);
    overflow: hidden;
  }
  .aboutUs-strengths-list-porter::before {
    position: relative;
    top: -.4em;
    left: -.7em;
    width: 11.8em;
    height: 13.5em;
    margin-right: .5em;
    float: left;
  }
  .aboutUs-strengths-list-porter::after {
    content: '';
    display: block;
    clear: both;
  }
  .aboutUs-strengths-list-porter > p {
    padding: 0;
    font-size: 1.5em;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .aboutUs-strengths-list-porter-about {
    margin-top: 1.5em;
    padding: 8.4em 1.07em 1.4em;
    background-position: top .3em center;
    background-size: 14.5em auto;
    border-radius: .5em;
    font-size: 1.4em;
    line-height: 1.86;
    letter-spacing: .085em;
  }

  .aboutUs-strengths-list > li:nth-child(2) {
    display: block;
    margin-top: 4.4em;
    padding: 0;
  }
  .aboutUs-strengths-list > li:nth-child(2) .aboutUs-strengths-list-ttl {
    letter-spacing: .11em;
    line-height: 1.6;
  }
  .aboutUs-strengths-list > li:nth-child(2) .aboutUs-strengths-list-txt {
    margin-top: .6em;
    letter-spacing: .1em;
  }
  .aboutUs-strengths-list-point {
    width: 26.8em;
    margin-top: 2.8em;
    margin-left: 2em;
  }
  .aboutUs-strengths-list-point li {
    height: 3.87em;
    padding-left: 3.5em;
    border-radius: .64em;
    font-size: 1.7em;
    letter-spacing: 0;
  }
  .aboutUs-strengths-list-point li:nth-child(even) {
    line-height: 1.3;
    letter-spacing: -.03em;
  }
  .aboutUs-strengths-list-point li:not(:first-child) {
    margin-top: .9em;
  }
  .aboutUs-strengths-list > li:nth-child(2) .aboutUs-strengths-list-img {
    width: 100%;
    margin-top: 4em;
  }
  .aboutUs-strengths-list > li:nth-child(2) .aboutUs-strengths-list-img img {
    filter: drop-shadow(.1em .2em .6em rgba(0, 0, 0, .1));
  }

  .aboutUs-strengths-list > li:nth-child(3) {
    margin-top: 4.6em;
    padding-left: 0;
    padding-bottom: 13.5em;
  }
  .aboutUs-strengths-list > li:nth-child(3)::after {
    bottom: 0;
    right: 6.9em;
    width: 20em;
    height: 10.4em;
  }
  .aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-ttl {
    letter-spacing: .2em;
    line-height: 1.6;
  }
  .aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-icon {
    top: auto;
    bottom: 8em;
    right: 3em;
    width: 9.8em;
    height: 10.9em;
  }
  .aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-icon::before {
    right: .6em;
    width: 7.5em;
    height: 8.1em;
  }
  .aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-icon::after {
    height: 9.8em;
    box-shadow: .1em .1em .7em rgba(0, 0, 0, .03);
  }
  .aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-txt {
    margin-right: 0;
    letter-spacing: .1em;
  }
  .aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-txt .caution {
    font-size: 0.5em;
    vertical-align: top;
  }
  .aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-notes {
    width: 17em;
    margin-top: .8em;
    padding-left: 2em;
    font-size: 1em;
    letter-spacing: .1em;
  }
  .aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-notes span {
    display: block;
  }
  .aboutUs-strengths-list > li:nth-child(3) .aboutUs-strengths-list-notes span:last-child {
    margin-top: .5em;
    margin-left: 0;
    line-height: 1.5;
    letter-spacing: .15em;
  }

  .aboutUs-strengths-list > li:nth-child(4) {
    margin-top: 4.6em;
    padding-left: 0;
    padding-bottom: 17.6em;
    background-size: 24.5em auto;
    background-position: bottom center;
  }
  .aboutUs-strengths-list > li:nth-child(4) .aboutUs-strengths-list-ttl {
    letter-spacing: .1em;
  }
  .aboutUs-strengths-list > li:nth-child(4) .aboutUs-strengths-list-txt {
    margin-top: 1.2em;
    margin-right: 0;
    padding-bottom: 0;
    line-height: 2;
    letter-spacing: .1em;
  }

  .aboutUs-strengths-list > li:nth-child(5) {
    margin-top: 4em;
    padding-left: 0;
  }
  .aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-ttl {
    letter-spacing: .165em;
    line-height: 1.6;
  }
  .aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-txt {
    margin-right: 0;
    margin-top: 1em;
    letter-spacing: .084em;
  }
  .aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-img {
    width: 100%;
    max-width: 72rem;
    margin: 3.2em auto 0;
  }
  .aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-img::after {
    top: -3.2em;
    right: -1.2em;
    width: 10.4em;
    height: 10.1em;
    background-image: url('/sell/promotion/assets/img/purchase/s/aboutUs_strengths_05_02_sp.svg?260212');
  }
  .aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-img img {
    filter: drop-shadow(0 .2em .5em rgba(0, 0, 0, .1));
  }
  .aboutUs-strengths-list > li:nth-child(5) .aboutUs-strengths-list-notes {
    margin-top: 1.6em;
    padding-right: 0;
    font-size: 1em;
    letter-spacing: .08em;
    text-align: left;
  }
}



/* -------------------------------
  contents - company
------------------------------- */
.company {
  padding: 82px 0 115px;
}
.company .inner {
  max-width: 725px;
}
.company-ttl {
  padding-left: .08em;
  font-size: 3.1em;
  letter-spacing: .08em;
}
.company-data {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  margin-top: 38px;
  margin-left: 15px;
  font-size: 1.6em;
  letter-spacing: .036em;
}
.company-data > dt:not(:first-of-type),
.company-data > dd:not(:first-of-type) {
  margin-top: 26px;
  padding-left: 0;
}
.company-data > dt {
  width: 9.2em;
  letter-spacing: .1em;
}
.company-data > dd {
  width: calc(100% - 9.2em);
  letter-spacing: .1em;
  line-height: 1.85;
}
.company-data > dt.group {
  margin-top: 3.2rem;
  padding: 0;
  background-color: transparent;
}
.company-data > dt.group + dd {
  margin-top: 3.2rem;
  line-height: 1.75;
}
.company-data > dt.member + dd span {
  display: inline-block;
  width: 9em;
}
.company-data > dt.member + dd span:not(:first-child) {
  margin-top: .25rem;
}
.company-data > dt.bank,
.company-data > dt.bank + dd {
  margin-top: 3.3rem;
}
.company-data > dt.bank + dd span {
  display: inline-block;
  margin: 0 .8em;
}

@media screen and (max-width: 1000px) {
  .company {
    padding: 4.2em 0 5.5em;
  }
  .company .inner {
    width: 100%;
    max-width: none;
  }
  .company-ttl {
    font-size: 1.8em;
  }
  .company-data {
    display: block;
    margin-top: 1.7em;
    margin-left: 0;
    font-size: 1.4em;
    line-height: 1.5;
    letter-spacing: .09em;
    text-align: center;
  }
  .company-data > dt {
    width: 100%;
    margin-top: 2em;
    padding-left: .1em;
    font-weight: 700;
  }
  .company-data > dt:not(:first-of-type) {
    margin-top: 1.6em;
  }
  .company-data > dt.member,
  .company-data > dt.business {
    margin-top: 2.2em;
  }
  .company-data > dt.capital,
  .company-data > dt.group,
  .company-data > dt.bank {
    margin-top: 2em;
  }
  .company-data > dd,
  .company-data > dd:not(:first-of-type) {
    width: 100%;
    margin-top: .3em;
    padding-left: .1em;
    font-weight: 500;
    line-height: 1.6;
  }
  .company-data > dt.member + dd {
    line-height: 1.95;
  }
  .company-data > dt.member + dd span {
    position: relative;
    width: auto;
  }
  .company-data > dt.member + dd span:not(:first-child) {
    margin-top: 0;
  }
  .company-data > dt.member + dd span::after {
    content: '／';
    display: inline-block;
    margin: 0 .4em;
  }
  .company-data > dt.group + dd {
    margin-top: .8em;
    line-height: 1.8;
  }
  .company-data > dt.bank + dd {
    margin-top: .9em;
    line-height: 1.75;
  }
  .company-data > dt.bank + dd span {
    display: inline-block;
    margin: 0 .8em 0 1em;
  }
  .company-data > dt.business + dd {
    margin-top: .75em;
    line-height: 1.9;
  }
}


/* -------------------------------
  contents - flow
------------------------------- */
.flow {
  padding: 100px 0 125px;
  background: #F6F6F6;
}
.flow .inner {
  max-width: 1105px;
}
.flow-ttl {
  font-size: 3.3em;
  letter-spacing: .1em;
}
.flow-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 45px;
}
.flow-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 28.96%;
  min-height: 420px;
  background: #fff;
  border-radius: 12px;
}
.step01.flow-list-item { z-index: 6; }
.step02.flow-list-item { margin-top: 45px; z-index: 5; }
.step03.flow-list-item { margin-top: 100px; z-index: 4; }
.step04.flow-list-item { margin-top: 50px; z-index: 3; }
.step05.flow-list-item { margin-top: 95px; z-index: 2; }
.step06.flow-list-item { margin-top: 155px; z-index: 1; }
.flow-list-item:after {
  content: '';
  position: absolute;
  right: -78px;
  display: block;
  width: 87px;
  height: 34px;
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.step03.flow-list-item:after,
.step06.flow-list-item:after {
  content: none;
}
.step01.flow-list-item:after,
.step04.flow-list-item:after {
  bottom: 37.5%;
  background-image: url('/sell/promotion/assets/img/purchase/s/flow_arrow01_pc.svg')
}
.step04.flow-list-item:after {
  bottom: 34.5%;
}
.step02.flow-list-item:after,
.step05.flow-list-item:after {
  bottom: 28.5%;
  background-image: url('/sell/promotion/assets/img/purchase/s/flow_arrow02_pc.svg')
}
.step05.flow-list-item:after {
  bottom: 25%;
}
.flow-list-item-no {
  position: absolute;
  top: -8px;
  left: 0;
  right: 8px;
  height: 26px;
  margin: 0 auto;
  text-align: center;
}
.flow-list-item-no img {
  width: auto;
  height: 100%;
}
.flow-list-item-ttl {
  padding: 0 .5em;
  display: flex;
  justify-content: center;
  font-size: 2.9em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .1em;
}
.step06 .flow-list-item-ttl { letter-spacing: 0; }
.flow-list-item-txt {
  width: 100%;
  min-height: 7.6em;
  margin-top: 8px;
  padding: 0 1.7em 1.3em;
  font-size: 1.6em;
  line-height: 1.8;
  letter-spacing: .12em;
  text-align: justify;
}
.step04 .flow-list-item-txt { min-height: 7.3em; margin-top: 15px; }
.step05 .flow-list-item-txt { min-height: 7.3em; letter-spacing: .1em; }
.step06 .flow-list-item-txt { min-height: 7.3em; margin-top: 15px; }
.flow-list-item-img {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
}
.step01 .flow-list-item-img { width: 209px; transform: translate(-7px, 0); }
.step02 .flow-list-item-img { width: 249px; transform: translate(-4px, 0); }
.step03 .flow-list-item-img { width: 132px; transform: translate(-4px, 0); }
.step04 .flow-list-item-img { width: 167px; transform: translate(0, 4px); }
.step05 .flow-list-item-img { width: 186px; transform: translate(-9px, 0); }
.step06 .flow-list-item-img { width: 199px; transform: translate(3px, -5px); }

@media screen and (max-width: 1000px) {
  .flow {
    padding: 3.3em 0 4.5em;
  }
  .flow .inner {
    width: 100%;
    max-width: 100%;
  }
  .flow-ttl {
    font-size: 1.9em;
  }
  .flow-list {
    flex-wrap: nowrap;
    align-items: stretch;
    margin-top: 3.3em;
  }
  .flow-list-item {
    display: block;
    width: 27.8em;
    min-height: 38.8em;
    margin: 0 1.35em 0;
    border-radius: 1.2em;
  }
  .flow-list-item:not(.step01) {
    margin-top: 5.2em;
  }
  .step01.flow-list-item { margin-top: 0; z-index: 0; }
  .step02.flow-list-item { margin-top: 0; z-index: 1; }
  .step03.flow-list-item { margin-top: 0; z-index: 2; }
  .step04.flow-list-item { margin-top: 0; z-index: 3; }
  .step05.flow-list-item { margin-top: 0; z-index: 4; }
  .step06.flow-list-item { margin-top: 0; z-index: 5; }
  .flow-list-item-no {
    top: -.6em;
    right: 0;
    height: 2.1em;
    vertical-align: top;
  }
  .flow-list-item:after {
    content: none;
  }
  .flow-list-item-ttl {
    font-size: 2.4em;
    line-height: 1.6;
  }
  .step06 .flow-list-item-ttl {
    line-height: 1.4;
  }
  .step06 .flow-list-item-ttl {
    margin-top: .2em;
    padding-left: 1em;
    letter-spacing: .08em;
  }
  .flow-list-item-txt {
    min-height: 7em;
    margin-top: .3em;
    padding: 0 1.5em 0 1.8em;
    line-height: 1.65;
  }
  .step04 .flow-list-item-txt { min-height: 7em; margin-top: .3em; }
  .step05 .flow-list-item-txt { min-height: 7em; margin-top: .5em; letter-spacing: .1em;
    line-height: 1.6; }
  .step06 .flow-list-item-txt { min-height: 7em; margin-top: .4em; }
  .flow-list-item-img {
    height: 20em;
    margin-top: 0;
  }
  .step01 .flow-list-item-img { width: 18.8em; padding-top: 2em; transform: none; }
  .step02 .flow-list-item-img { width: 20.1em; padding-top: 2em; transform: translateX(.5em); }
  .step03 .flow-list-item-img { width: 11.3em; padding-top: 3em; transform: translateX(-1em); }
  .step04 .flow-list-item-img { width: 13.6em; padding-top: 2.5em; transform: translate(-.2em, 0); }
  .step05 .flow-list-item-img { width: 16.4em; height: 16.8em; margin-top: 2.2em; transform: none;}
  .step06 .flow-list-item-img { width: 16.3em; height: 19.5em; padding-top: 2.5em; transform: translate(0, 0); }
}



/* -------------------------------
  contents - faq
------------------------------- */
.faq {
  padding: 85px 0 105px;
}
.faq .inner {
  max-width: 728px;
}
.faq-ttl {
  font-size: 2.9em;
  letter-spacing: .1em;
}
.faq-tab {
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  font-size: 1.7em;
  font-weight: 700;
  letter-spacing: .05em;
}
.faq-tab-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 24px) / 4);
  height: 42px;
  padding-bottom: 3px;
  background: #F0F0F0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  line-height: 1;
}
.faq-tab-item.isActive {
  background: #5FBBE0;
  color: #fff;
}
.faq-tab-item.isActive:after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  left: 0;
  height: 6px;
  background: #3ABDE9;
  z-index: -1;
}
.faq-tab-item:hover {
  cursor: pointer;
}
.faq-body {
  position: relative;
  visibility: hidden;
  height: 0;
  font-size: 1.7em;
  opacity: 0;
}
.faq-body.isActive {
  visibility: visible;
  height: auto;
  margin-top: 7px;
  opacity: 1;
}
.faq-body-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 95px 0 0;
  cursor: pointer;
}
.faq-body-item:before {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 0;
  right: 13px;
  width: 30px;
  background: url('/sell/promotion/assets/img/purchase/s/faq_btn.svg')  top center / 29px auto no-repeat;
  transition: opacity .3s;
}
.faq-body-item.isOpen:before {
  transform: rotate(180deg);
  background-position: bottom 1px center;
}
.faq-body-item:not(.isOpen):hover:before {
  opacity: .7;
}
.faq-body:before,
.faq-body-item:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #555, #555 2px, transparent 0, transparent 4px) center left / 6px 2px repeat-x;
}
.faq-body:before {
  top: 0;
  bottom: auto;
}
.faq-body-item-q,
.faq-body-item-a {
  position: relative;
  padding-left: 70px;
  padding-bottom: 3px;
  background-position: center left 15px;
  background-size: 20px auto;
  background-repeat: no-repeat;
  letter-spacing: .125em;
  transition: .3s;
}
.faq-body-item:not(.isOpen):hover .faq-body-item-q,
.faq-body-item:not(.isOpen):hover .faq-body-item-a {
  opacity: .7;
}
.faq-body-item-q {
  display: flex;
  align-items: center;
  min-height: 86px;
  background-image: url('/sell/promotion/assets/img/purchase/s/faq_q.svg');
  font-weight: 700;
  letter-spacing: .17em;
}
.faq-body-item-a {
  display: none;
  padding-bottom: 20px;
  background-image: url('/sell/promotion/assets/img/purchase/s/faq_a.svg');
  background-position: top .5em left 15px;
  letter-spacing: .2em;
  animation: faq-item-a .8s ease;
}
.faq-body-item.isOpen .faq-body-item-a {
  display: block;
}
@keyframes faq-item-a {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media screen and (max-width: 1000px) {
  .faq {
    padding: 3em 0 1em;
  }
  .faq .inner {
    width: 100%;
    max-width: 100%;
  }
  .faq-ttl {
    font-size: 2em;
    letter-spacing: .1em;
  }
  .faq-tab {
    margin-top: 2em;
    font-size: 1.1em;
  }
  .faq-tab-item {
    width: calc((100% - 2em) / 4);
    height: 3.1em;
    padding-bottom: .1em;
    border-top-left-radius: .45em;
    border-top-right-radius: .45em;
    line-height: 1.1;
    text-align: center;
  }
  .faq-tab-item:first-child {
    border-top-left-radius: 0;
  }
  .faq-tab-item:last-child {
    border-top-right-radius: 0;
  }
  .faq-tab-item.isActive:after {
    content: none;
  }
  .faq-body {
    font-size: 1em;
  }
  .faq-body.isActive {
    margin-top: .5em;
  }
  .faq-body-item {
    padding: 0 6em 0 0;
  }
  .faq-body-item:before {
    top: 2.2em;
    right: 2em;
    width: 2.2em;
    height: 2.2em;
    background-size: 2.2em auto;
  }
  .faq-body-item.isOpen:before {
    background-position: bottom center;
  }
  .faq-body-item:not(.isOpen):hover:before {
    opacity: 1;
  }
  .faq-body:before,
  .faq-body-item:after {
    height: .2em;
    background: linear-gradient(to right, #555, #555 .2em, transparent 0, transparent .4em) center left / .6em .2em repeat-x;
  }
  .faq-body-item:last-child:after {
    content: none;
  }
  .faq-body-item-q,
  .faq-body-item-a {
    letter-spacing: .1em;
  }
  .faq-body-item:not(.isOpen):hover .faq-body-item-q,
  .faq-body-item:not(.isOpen):hover .faq-body-item-a {
    opacity: 1;
  }
  .faq-body-item-q {
    min-height: 4.2em;
    padding: .6em 0 .8em 3.8em;
    background-position: top 1.4em left 1.3em;
    background-size: 1.18em auto;
    font-size: 1.6em;
    line-height: 1.6;
  }
  .faq-body-item-a {
    padding-left: 4em;
    padding-bottom: 2em;
    background-position: top .3em left 1.4em;
    background-size: 1.25em auto;
    font-size: 1.5em;
    letter-spacing: 0;
  }
}


/* -------------------------------
  contents - target
------------------------------- */
.target {
  padding: 50px 0 75px;
  background: #F3F3F3;
}
.target .inner {
  max-width: 843px;
}
.target-ttl {
  font-size: 3.4rem;
  letter-spacing: .1em;
}
.target-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 27px;
  letter-spacing: .12em;
}
.target-list dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 178px;
  min-height: 2.5em;
  margin-right: 10px;
  padding: 0 .5em;
  background-color: #5AB9DF;
  border-radius: 4px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.target-list dd {
  display: flex;
  align-items: center;
  width: calc(100% - 188px);
  padding: .68em .5em .68em 1.5em;
  background: #fff;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: 700;
}
.target-list dt:not(:first-of-type),
.target-list dd:not(:first-of-type) {
  margin-top: 14px;
}
.target-list dd:last-of-type {
  padding: .8em 2em .8em 1.5em;
  letter-spacing: .1em;
}

@media screen and (max-width: 1000px) {
  .target {
    padding: 1.7em 0 2.6em;
  }
  .target .inner {
    width: 100%;
    max-width: none;
  }
  .target-ttl {
    font-size: 2em;
  }
  .target-list {
    margin-top: 1em;
    font-size: 1.3em;
  }
  .target-list dt {
    align-items: self-start;
    width: 7.5em;
    min-height: auto;
    margin-right: 0;
    padding: .497em 1em;
    border-radius: 0;
    font-size: inherit;
  }
  .target-list dd {
    width: calc(100% - 7.5em);
    padding: .5em 1.2em;
    border-radius: 0;
    font-size: inherit;
    font-weight: 700;
  }
  .target-list dt:not(:first-of-type),
  .target-list dd:not(:first-of-type) {
    margin-top: .2em;
  }
  .target-list dd:last-of-type {
    padding: 1.1em 1.4em 1em 1.2em;
    line-height: 1.45;
  }
}


/* -------------------------------
  footer
------------------------------- */
.footer {
  background: #5E5E5E;
}
.footer .inner {
  width: 100%;
  max-width: none;
}
.footer-nav {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 25px 0 30px;
  background: #fff;
}
.footer-nav li:not(:last-child) {
  padding-right: 2.5em;
}
.footer-nav li:not(:first-child) {
  padding-left: 2.5em;
  border-left: 1px solid #000;
}
.footer-nav li > a {
  display: block;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}
.footer-nav li a:hover {
  text-decoration: underline;
}
.footer-copy {
  padding: 15px 0 25px .09em;
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #fff;
  font-size: 2em;
  font-weight: 500;
  letter-spacing: .09em;
}

@media screen and (max-width: 1000px) {
  .footer {
    padding-bottom: 5em;
  }
  .footer .inner {
    flex-direction: column-reverse;
    width: 100%;
  }
  .footer-nav {
    padding: 1.25em 0;
  }
  .footer-nav li {
    padding-left: 1.2em;
  }
  .footer-nav li > a {
    font-size: 1.2em;
  }
  .footer-copy {
    padding: .833em 0;
    font-size: 1.1em;
    letter-spacing: .1em;
  }
}



/* -------------------------------
  pagetop
------------------------------- */
.pagetop {
  position: fixed;
  bottom: 35px;
  right: 13%;
  width: 77px;
  height: 77px;
  transition: .3s linear;
  opacity: 0;
  z-index: -1;
}
.pagetop.isHide {
  opacity: 0;
  z-index: -1;
}
.pagetop.isShow {
  opacity: 1;
  z-index: 999;
}
.pagetop a:hover {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .pagetop {
    bottom: 7.2em;
    right: 1.5em;
    width: 3.4em;
    height: 3.4em;
  }
  .open .pagetop {
    display: none;
  }
}



/*------------------------------
footer fix
------------------------------*/
.footerfix {
  display: none;
}

@media screen and (max-width: 1000px) {
  .footerfix {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
    width: 100%;
    z-index: 999;
  }
  .open .footerfix {
    display: none;
  }
  .footerfix-btn {
    position: relative;
    width: 50%;
    padding: .7895em 0;
    color: #fff;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: .1em;
    text-align: center;
    line-height: 1;
    text-decoration: none;
  }
  .footerfix-btn.form {
    background: #FF6741;
  }
  .footerfix-btn.tel {
    background: #139BD1;
  }
  .footerfix-btn span {
    position: relative;
    display: inline-block;
    padding: 0 1.5em .2em 2.5em;
  }
  .footerfix-btn span:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: .75em;
    display: block;
    margin: auto;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .footerfix-btn.form span:before {
    width: 1.166em;
    background-image: url('/sell/promotion/assets/img/purchase/footerfix_form.svg');
  }
  .footerfix-btn.tel span:before {
    width: 1.11em;
    background-image: url('/sell/promotion/assets/img/purchase/footerfix_tel.svg');
  }
  .footerfix-btn span:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: .556em;
    height: .556em;
    margin: auto;
    background: url('/sell/promotion/assets/img/purchase/footerfix_arrow.svg') center center / contain no-repeat;
  }
}