@charset "UTF-8";
/* ===================================
Foundation
=================================== */
/*
 * _setting.scss
 */
/* -----------------------------------
Color
------------------------------------ */
/*
 * _mixin.scss
 */
/* -----------------------------------
media query print
------------------------------------ */
/* -----------------------------------
media query ver1
------------------------------------ */
/* -----------------------------------
transition
------------------------------------ */
/* -----------------------------------
clearfix
------------------------------------ */
/* -----------------------------------
formFocus
------------------------------------ */
/* -----------------------------------
shadow
------------------------------------ */
/* -----------------------------------
vw
------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
/*
 * _reset.scss
 */
/* -----------------------------------
reset
------------------------------------ */
html,
body {
  height: 100%;
}

html {
  overflow-y: scroll;
}

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

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

form {
  display: inline;
}

pre,
textarea {
  overflow: auto;
}

[hidden],
audio:not([controls]),
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=text],
input[type=password] {
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  vertical-align: middle;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 60%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.15em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  border: none;
  background: none;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

ol,
ul {
  list-style: none;
}

select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

select option {
  background-color: #fff;
  color: #333;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

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

fieldset {
  border: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 15px 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: inherit;
}

/*
 * _base.scss
 */
/* -----------------------------------
base Setting
------------------------------------ */
html {
  font-size: 62.5%;
}

body {
  color: #323232;
  background-color: #f8f8f8;
  font-size: 1.6rem;
  line-height: 1.93;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  max-height: 999999px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  opacity: 0;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.3333333333vw;
  }
}

html, body {
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

@media print {
  html, body {
    height: auto;
  }
}
a {
  color: #323232;
}
a.disabled {
  pointer-events: none;
}
a:hover {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* ===================================
Layout
=================================== */
/*
 * _layout.scss
 */
/* -----------------------------------
wrapper
------------------------------------ */
.l-wrapper {
  position: relative;
  overflow: clip;
}

/* -----------------------------------
header
------------------------------------ */
.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .l-header.is-hidden {
    background: none;
  }
}
.l-header_in {
  position: relative;
  width: 100%;
  height: 63px;
}
@media screen and (max-width: 768px) {
  .l-header_in {
    height: 12.5333333333vw;
  }
}
.l-header_logo {
  width: 167px;
  position: absolute;
  line-height: 1;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 1;
  visibility: visible;
  z-index: 11;
}
@media screen and (max-width: 1400px) {
  .l-header_logo {
    left: 2%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .l-header_logo {
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .l-header_logo {
    width: 7.3333333333vw;
    width: 26.6666666667vw;
    left: 3.2vw;
  }
}
.l-header_logo img {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .l-header_logo.is-hidden {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
  .l-header_logo.is-open {
    opacity: 1;
    visibility: visible;
    z-index: 11;
  }
}
@media screen and (min-width: 769px) {
  .l-header_gnav {
    position: absolute;
    top: 50%;
    right: 10%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 1400px) {
  .l-header_gnav {
    right: 1%;
  }
}
@media screen and (max-width: 768px) {
  .l-header_gnav {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 18.6666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in, -webkit-backdrop-filter 0.4s ease-in;
    transition: opacity 0.3s ease-in, -webkit-backdrop-filter 0.4s ease-in;
    transition: opacity 0.3s ease-in, backdrop-filter 0.4s ease-in;
    transition: opacity 0.3s ease-in, backdrop-filter 0.4s ease-in, -webkit-backdrop-filter 0.4s ease-in;
  }
  .l-header_gnav * {
    pointer-events: none;
  }
  .l-header_gnav.is-open {
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    opacity: 1;
    pointer-events: auto;
  }
  .l-header_gnav.is-open * {
    pointer-events: auto;
  }
}
@media screen and (min-width: 769px) {
  .l-header_gnav ul._nav1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .l-header_gnav ul._nav1 li + li {
    margin-top: 2vw;
  }
}
.l-header_gnav ul._nav1 li a {
  position: relative;
  text-decoration: none;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 0px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .l-header_gnav ul._nav1 li a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header_gnav ul._nav1 li a {
    padding: 3.3333333333vw 2vw;
    font-size: 4vw;
    width: 100%;
  }
}
.l-header_gnav ul._nav1 li a:before {
  content: "";
  display: block;
  width: 1px;
  height: 60%;
  background: #323232;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .l-header_gnav ul._nav1 li a:before {
    display: none;
  }
}
.l-header_gnav ul._nav1 li a:after {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background: rgba(255, 204, 177, 0.4);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .l-header_gnav ul._nav1 li a:after {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    border-radius: 13.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .l-header_gnav ul._nav1 li a br.-sp_hide {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .l-header_gnav ul._nav1 li a:hover:after {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
.l-header_gnav ul._nav1 li:first-child a:before {
  display: none;
}
[data-page-id=top] .l-header_gnav ul._nav1 li[data-page-id=top] a:after, [data-page-id=buyer] .l-header_gnav ul._nav1 li[data-page-id=buyer] a:after, [data-page-id=seller] .l-header_gnav ul._nav1 li[data-page-id=seller] a:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

@media screen and (min-width: 769px) {
  .l-header_gnav ul._nav2 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header_gnav ul._nav2 {
    margin-top: 6.6666666667vw;
  }
  .l-header_gnav ul._nav2 li + li {
    margin-top: 2.6666666667vw;
  }
  .l-header_gnav ul._nav2 li a {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    text-decoration: none;
    background: #1e1e1e;
    color: #fff;
    border-radius: 1.3333333333vw;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.4;
    height: 13.3333333333vw;
    padding: 1.3333333333vw 4vw;
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .l-header_btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header_btn {
    display: block;
    position: absolute;
    z-index: 100;
    right: 2.6666666667vw;
    width: 8vw;
    height: 8vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .l-header_btn > div {
    position: absolute;
    width: 1px;
    height: 1px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .l-header_btn > div span {
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 4vw;
    height: 0.2666666667vw;
    background: #323232;
    left: -2vw;
  }
  .l-header_btn > div span:nth-child(1) {
    -webkit-transform: translate(0, -1.3333333333vw);
            transform: translate(0, -1.3333333333vw);
  }
  .l-header_btn > div span:nth-child(2) {
    -webkit-transform: translate(0, 0vw);
            transform: translate(0, 0vw);
  }
  .l-header_btn > div span:nth-child(3) {
    -webkit-transform: translate(0, 1.3333333333vw);
            transform: translate(0, 1.3333333333vw);
  }
  .l-header_btn.is-open div span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .l-header_btn.is-open div span:nth-child(2) {
    opacity: 0;
  }
  .l-header_btn.is-open div span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

/* -----------------------------------
content
------------------------------------ */
.l-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.l-content:before {
  content: "";
  display: block;
  width: calc(100% - 80px);
  height: 2px;
  background: #fff;
  position: absolute;
  top: 30px;
  left: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .l-content:before {
    width: calc(100% - 5.7142857143vw);
    top: 2.1428571429vw;
    left: 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .l-content:before {
    width: calc(100% - 8vw);
    top: 2.6666666667vw;
    left: 4vw;
  }
}
.l-content:after {
  content: "";
  display: block;
  height: calc(100% - 80px);
  width: 2px;
  background: #fff;
  position: absolute;
  top: 40px;
  left: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .l-content:after {
    height: calc(100% - 5.7142857143vw);
    top: 2.8571428571vw;
    left: 2.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .l-content:after {
    height: calc(100% - 8vw);
    top: 4vw;
    left: 2.6666666667vw;
  }
}
.l-content_in {
  position: relative;
}
.l-content_in:before {
  content: "";
  display: block;
  width: calc(100% - 80px);
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 30px;
  right: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .l-content_in:before {
    width: calc(100% - 4.2857142857vw);
    bottom: 2.1428571429vw;
    right: 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .l-content_in:before {
    width: calc(100% - 8vw);
    bottom: 2.6666666667vw;
    right: 4vw;
  }
}
.l-content_in:after {
  content: "";
  display: block;
  height: calc(100% - 80px);
  width: 2px;
  background: #fff;
  position: absolute;
  top: 40px;
  right: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .l-content_in:after {
    height: calc(100% - 5.7142857143vw);
    top: 2.8571428571vw;
    right: 2.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .l-content_in:after {
    height: calc(100% - 8vw);
    top: 4vw;
    right: 2.6666666667vw;
  }
}

/* -----------------------------------
section
------------------------------------ */
.l-sec {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
}
@media screen and (max-width: 768px) {
  .l-sec {
    padding: 8vw;
  }
}
.l-sec_in {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* -----------------------------------
footer
------------------------------------ */
.l-footer {
  background-color: #fff;
  padding: 80px 30px 30px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 10.6666666667vw 6.6666666667vw 4.6666666667vw;
  }
}
.l-footer_in {
  margin: 0 auto;
  max-width: 1000px;
}
.l-footer_logo img {
  width: 328px;
}
@media screen and (max-width: 768px) {
  .l-footer_logo img {
    width: 50.5333333333vw;
  }
}
.l-footer_nav {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .l-footer_nav {
    margin-top: 4vw;
  }
}
.l-footer_nav > ul li:before {
  content: "―";
  display: inline-block;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .l-footer_nav > ul li:before {
    margin-right: 1.3333333333vw;
  }
}
.l-footer_nav > ul li a {
  font-size: 1.5rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  text-decoration: none;
}
.l-footer_nav > ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media screen and (max-width: 768px) {
  .l-footer_nav > ul li a {
    font-size: 2.8vw;
  }
}
.l-footer ._copyright {
  margin-top: 30px;
  font-size: 1.1rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  color: #5a5a5a;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer ._copyright {
    text-align: right;
    margin-top: 2.6666666667vw;
    font-size: 1.3333333333vw;
  }
}

/* ===================================
Object
=================================== */
/* -----------------------------------
Component
------------------------------------ */
/*
 * _component.scss
 */
/* -----------------------------------
.c-shoulder
------------------------------------ */
.c-shoulder {
  z-index: 10;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 15rem;
  line-height: 0.7;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-underline-position: left;
  text-underline-offset: -0.07em;
  text-decoration-thickness: 3px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .c-shoulder {
    zoom: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .c-shoulder {
    font-size: 16.6666666667vw;
  }
}

/* -----------------------------------
.c-imgStyle1
------------------------------------ */
.c-imgStyle1 {
  position: relative;
  display: inline-block;
}
.c-imgStyle1 img {
  border-radius: 1000px;
  position: relative;
  z-index: 2;
}
.c-imgStyle1:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1000px;
  background: rgba(233, 190, 98, 0.5);
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 10%;
}

/* -----------------------------------
.c-titleStyle1
------------------------------------ */
.c-titleStyle1 {
  position: relative;
  z-index: 1;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1 {
    margin-bottom: 13.3333333333vw;
  }
}
.c-titleStyle1:before {
  content: "";
  display: block;
  width: 438px;
  height: 2px;
  background: #323232;
  position: absolute;
  top: 65px;
  left: 0px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1:before {
    width: 47.0666666667vw;
    top: 6.6666666667vw;
    left: 2.1333333333vw;
  }
}
.c-titleStyle1:after {
  content: "";
  display: block;
  width: 2px;
  height: 128px;
  background: #323232;
  position: absolute;
  top: 0px;
  left: 50px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1:after {
    height: 14vw;
    left: 7.4666666667vw;
  }
}
.c-titleStyle1_in {
  display: inline-block;
  position: relative;
  padding: 140px 115px 100px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1_in {
    padding: 13.3333333333vw 15.3333333333vw 10.1333333333vw;
  }
}
.c-titleStyle1_in:before {
  content: "";
  display: block;
  width: 438px;
  height: 2px;
  background: #323232;
  position: absolute;
  bottom: 50px;
  right: 0px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1_in:before {
    width: 36.4vw;
    bottom: 5.0666666667vw;
  }
}
.c-titleStyle1_in:after {
  content: "";
  display: block;
  width: 2px;
  height: 218px;
  background: #323232;
  position: absolute;
  bottom: 0px;
  right: 50px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1_in:after {
    height: 23.3333333333vw;
    right: 7.4666666667vw;
  }
}
.c-titleStyle1 ._txt1 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 9.7rem;
  line-height: 1.1649484536;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .c-titleStyle1 ._txt1 {
    zoom: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .c-titleStyle1 ._txt1 {
    font-size: 10.4vw;
  }
}
.c-titleStyle1 ._txt2 {
  display: inline-block;
  margin-top: 25px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 2.3rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1 ._txt2 {
    margin-top: 3.3333333333vw;
    font-size: 2.9333333333vw;
  }
}
.c-titleStyle1 ._img1 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 200px;
}
.c-titleStyle1 ._img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-titleStyle1 ._img1.-structure {
  width: 309.5px;
  right: -120px;
  bottom: -13px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1 ._img1.-structure {
    width: 33.0666666667vw;
    right: -10.6666666667vw;
    bottom: -1.7333333333vw;
  }
}
.c-titleStyle1 ._img1.-image {
  width: 242.5px;
  right: -70px;
  bottom: 0px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1 ._img1.-image {
    width: 25.8666666667vw;
    right: -5.3333333333vw;
  }
}
.c-titleStyle1 ._img1.-buyer_what {
  width: 205.5px;
  right: -60px;
  bottom: 0px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle1 ._img1.-buyer_what {
    width: 24vw;
    right: -6.6666666667vw;
  }
}

/* -----------------------------------
.c-titleStyle2
------------------------------------ */
.c-titleStyle2 {
  position: relative;
  z-index: 1;
  margin: 0 auto 60px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .c-titleStyle2 {
    margin-bottom: 13.3333333333vw;
  }
}
.c-titleStyle2:before {
  content: "";
  display: block;
  width: 355px;
  height: 2px;
  background: #323232;
  position: absolute;
  top: 50px;
  left: 0px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle2:before {
    width: 37.7333333333vw;
    top: 5.0666666667vw;
  }
}
.c-titleStyle2:after {
  content: "";
  display: block;
  width: 2px;
  height: 103px;
  background: #323232;
  position: absolute;
  top: 0px;
  left: 36px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle2:after {
    height: 10.9333333333vw;
    left: 5.0666666667vw;
  }
}
.c-titleStyle2_in {
  display: block;
  position: relative;
  padding: 120px 115px 100px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle2_in {
    padding: 15.2vw 9.8666666667vw 10.6666666667vw;
  }
}
.c-titleStyle2_in:before {
  content: "";
  display: block;
  width: 355px;
  height: 2px;
  background: #323232;
  position: absolute;
  bottom: 50px;
  right: 0px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle2_in:before {
    width: 37.7333333333vw;
    bottom: 4vw;
  }
}
.c-titleStyle2_in:after {
  content: "";
  display: block;
  width: 2px;
  height: 157px;
  background: #323232;
  position: absolute;
  bottom: 0px;
  right: 36px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle2_in:after {
    height: 15.2vw;
    right: 4vw;
  }
}
.c-titleStyle2 ._txt1 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 6rem;
  line-height: 1;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .c-titleStyle2 ._txt1 {
    zoom: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .c-titleStyle2 ._txt1 {
    font-size: 7.8666666667vw;
    white-space: nowrap;
  }
}
.c-titleStyle2 ._txt2 {
  display: block;
  text-align: center;
  margin-top: 25px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-titleStyle2 ._txt2 {
    margin-top: 3.3333333333vw;
    font-size: 2.9333333333vw;
  }
}
.c-titleStyle2 ._img1 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 200px;
}
.c-titleStyle2 ._img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-titleStyle2 ._img1.-buyer_merit {
  width: 176px;
  right: -27px;
  bottom: 5px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle2 ._img1.-buyer_merit {
    width: 25.3333333333vw;
    right: -2.6666666667vw;
    bottom: -4.6666666667vw;
  }
}
.c-titleStyle2 ._img1.-seller_merit {
  width: 164px;
  right: -10px;
  bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-titleStyle2 ._img1.-seller_merit {
    width: 26.6666666667vw;
    right: -2.6666666667vw;
    bottom: -2.6666666667vw;
  }
}
.c-titleStyle2 ._txt3 {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .c-titleStyle2 ._txt3 {
    margin-top: 10px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .c-titleStyle2 ._txt3 {
    margin-top: 1.3333333333vw;
    font-size: 2.8vw;
  }
}

/* -----------------------------------
data-ruby
------------------------------------ */
[data-ruby] {
  position: relative;
}
[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -0.7em;
  left: 50%;
  font-size: 1.2rem;
  line-height: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  [data-ruby]::before {
    top: -0.8em;
    font-size: 1.6vw;
  }
}

/* -----------------------------------
c-btnStyle
------------------------------------ */
.c-btnStyle1 {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.c-btnStyle1 > span {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: block;
  position: relative;
  z-index: 1;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.075em;
  line-height: 1;
  border-radius: 50px;
  padding: 15px 60px 15px 40px;
  background: #323232;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-btnStyle1 > span {
    border-radius: 6.6666666667vw;
    padding: 3.3333333333vw 15.3333333333vw 3.3333333333vw 10.6666666667vw;
    font-size: 4vw;
  }
}
.c-btnStyle1 > span:after {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  content: "";
  display: block;
  width: 24px;
  height: 6px;
  background: url(../img/common/ico_arrow_wh.svg) no-repeat center/contain;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .c-btnStyle1 > span:after {
    width: 6.2666666667vw;
    height: 1.6vw;
    top: 4.8vw;
    right: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .c-btnStyle1:hover > span {
    opacity: 0.7;
  }
  .c-btnStyle1:hover > span:after {
    right: 10px;
  }
}

/* -----------------------------------
c-btnStyle2
------------------------------------ */
.c-btnStyle2 {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .c-btnStyle2 {
    min-width: 684px;
    min-height: 228px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 768px) {
  .c-btnStyle2 {
    width: 100%;
    height: 30.4vw;
    border-radius: 2vw;
  }
}
.c-btnStyle2.-seller {
  background: -webkit-gradient(linear, left bottom, left top, from(#e79f79), to(#efc8b0));
  background: -webkit-linear-gradient(bottom, #e79f79 0%, #efc8b0 100%);
  background: linear-gradient(0deg, #e79f79 0%, #efc8b0 100%);
}
.c-btnStyle2.-buyer {
  background: -webkit-gradient(linear, left bottom, left top, from(#e3b044), to(#eac980));
  background: -webkit-linear-gradient(bottom, #e3b044 0%, #eac980 100%);
  background: linear-gradient(0deg, #e3b044 0%, #eac980 100%);
}
.c-btnStyle2 ._txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-btnStyle2 ._txt span {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}
.c-btnStyle2 ._txt span._txt0 {
  font-size: 2.5rem;
  font-size: 2.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-btnStyle2 ._txt span._txt0 {
    font-size: 4vw;
    font-size: 3.4666666667vw;
  }
}
.c-btnStyle2 ._txt span._txt1 {
  font-size: 3rem;
  font-size: 2.8rem;
  line-height: 1.4;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-btnStyle2 ._txt span._txt1 {
    margin-top: 1.3333333333vw;
    font-size: 4.6666666667vw;
    font-size: 4vw;
  }
}
.c-btnStyle2 ._txt span._txt2 {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-btnStyle2 ._txt span._txt2 {
    margin-top: 2vw;
    font-size: 2.5333333333vw;
    line-height: 1;
  }
}
.c-btnStyle2:before {
  content: "";
  display: block;
  width: 43px;
  height: 44px;
  background: url(../img/common/ico_form.svg) no-repeat center/contain;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .c-btnStyle2:before {
    width: 8.2666666667vw;
    height: 8.4vw;
    margin-right: 2.6666666667vw;
  }
}
.c-btnStyle2:after {
  content: "";
  display: block;
  width: 39px;
  height: 10px;
  background: url(../img/common/ico_arrow.svg) no-repeat center/contain;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .c-btnStyle2:after {
    width: 5.8666666667vw;
    height: 1.3333333333vw;
    margin-left: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .c-btnStyle2:hover {
    -webkit-filter: brightness(105%);
            filter: brightness(105%);
  }
}

/* -----------------------------------
c-btnStyle2
------------------------------------ */
.c-btnStyle3 {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  background: url(../img/common/simulation_bg.svg) no-repeat center/contain;
}
@media screen and (min-width: 769px) {
  .c-btnStyle3 {
    min-width: 564px;
    min-height: 344px;
  }
}
@media screen and (max-width: 768px) {
  .c-btnStyle3 {
    width: 100%;
    height: 53.3333333333vw;
  }
}
.c-btnStyle3 ._txt0 {
  text-align: center;
}
.c-btnStyle3 ._txt0 img {
  width: 142px;
}
@media screen and (max-width: 768px) {
  .c-btnStyle3 ._txt0 img {
    width: 21.8666666667vw;
  }
}
.c-btnStyle3 ._txt1 {
  margin-top: 15px;
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .c-btnStyle3 ._txt1 {
    margin-top: 2.6666666667vw;
    font-size: 4.6666666667vw;
  }
}
.c-btnStyle3 ._txt1:before {
  content: "";
  display: block;
  width: 28px;
  height: 42px;
  background: url(../img/common/ico_simulation.svg) no-repeat center/contain;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .c-btnStyle3 ._txt1:before {
    width: 4vw;
    height: 6.6666666667vw;
    margin-right: 3.3333333333vw;
  }
}
.c-btnStyle3 ._txt1:after {
  content: "";
  display: block;
  width: 39px;
  height: 10px;
  background: url(../img/common/ico_arrow.svg) no-repeat center/contain;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .c-btnStyle3 ._txt1:after {
    width: 5.8666666667vw;
    height: 1.3333333333vw;
    margin-left: 3.3333333333vw;
  }
}
.c-btnStyle3 ._txt2 {
  margin-top: 10px;
  text-align: center;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .c-btnStyle3 ._txt2 {
    margin-top: 2vw;
    font-size: 2vw;
  }
}
@media screen and (min-width: 769px) {
  .c-btnStyle3:hover {
    -webkit-filter: brightness(105%);
            filter: brightness(105%);
  }
}

/* -----------------------------------
Project
------------------------------------ */
/*
 * _project.scss
 */
body {
  background: url(../img/common/bg.webp) repeat center center;
  background-attachment: fixed;
}

/* ---------------------------------------
.p-fixedBtn
--------------------------------------- */
.p-fixedBtn {
  position: fixed;
  z-index: 5;
  right: 0px;
  top: 13vw;
}
@media screen and (min-width: 769px) {
  [data-page-id=buyer] .p-fixedBtn, [data-page-id=seller] .p-fixedBtn {
    top: calc(12vw - 63px);
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-fixedBtn {
    top: 120px !important;
  }
}
@media screen and (max-width: 768px) {
  .p-fixedBtn {
    display: none;
  }
}
.p-fixedBtn ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-fixedBtn ul li + li {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-fixedBtn ul li + li {
    margin-top: 2.6666666667vw;
  }
}
.p-fixedBtn ul li a {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-decoration: none;
  padding: 22px 10px;
  background: #1e1e1e;
  color: #fff;
  border-radius: 10px 0 0 10px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-fixedBtn ul li a {
    padding: 2.4vw 1.3333333333vw;
    padding: 3.3333333333vw;
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 768px) {
  .p-fixedBtn ul li a span {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .p-fixedBtn ul li a:hover {
    opacity: 0.8;
  }
}

/* ---------------------------------------
.p-pageTop{
--------------------------------------- */
.p-pageTop {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
  position: fixed;
  z-index: 10;
  right: 70px;
  bottom: 150px;
  padding: 0 10px;
  border-left: 1px solid #323232;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .p-pageTop {
    right: 2.6666666667vw;
    bottom: 45.3333333333vw;
    bottom: 20vw;
    padding: 0 1.3333333333vw;
  }
}
.p-pageTop.is-visible {
  visibility: visible;
  opacity: 1;
}
.p-pageTop:before {
  content: "";
  display: block;
  width: 10px;
  height: 42px;
  background: url(../img/common/ico_arrow_top.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-pageTop:before {
    width: 1.6vw;
    height: 7.3333333333vw;
  }
}
.p-pageTop span {
  margin-top: 20px;
  line-height: 1;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 1.6rem;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: relative;
  right: -4px;
}
@media screen and (max-width: 768px) {
  .p-pageTop span {
    margin-top: 2.6666666667vw;
    font-size: 3.3333333333vw;
    right: -0.5333333333vw;
  }
}

/* ---------------------------------------
.p-bg
--------------------------------------- */
.p-bg {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.p-bg img {
  width: 100%;
}

/* ---------------------------------------
.p-secMain
--------------------------------------- */
.p-secMain {
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgb(246, 218, 174)), to(rgb(231, 199, 154)));
  background: -webkit-linear-gradient(top, rgb(246, 218, 174) 80%, rgb(231, 199, 154) 100%);
  background: linear-gradient(180deg, rgb(246, 218, 174) 80%, rgb(231, 199, 154) 100%);
}
@media screen and (min-width: 769px) {
  .p-secMain {
    padding-top: 63px;
  }
}
@media screen and (max-width: 768px) {
  .p-secMain {
    padding-top: 12.5333333333vw;
  }
}
.p-secMain:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/index/main_bg.webp) no-repeat center/cover;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.74;
  mix-blend-mode: color-burn;
}
.p-secMain_in {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
  padding-top: 2.1428571429%;
  padding-bottom: 6.2142857143%;
}
@media screen and (max-width: 768px) {
  .p-secMain_in {
    padding-top: 32vw;
    padding-bottom: 33.8666666667vw;
  }
}
.p-secMain_logo {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  margin-top: 4%;
  margin-left: 5.0714285714%;
  width: 23.2857142857%;
}
@media screen and (max-width: 768px) {
  .p-secMain_logo {
    margin-top: 6vw;
    margin-left: 4.6666666667vw;
    width: 47.7333333333vw;
  }
}
.p-secMain_img1 {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  margin-bottom: 2.5714285714%;
  margin-left: 12.5714285714%;
  width: 11.1428571429%;
}
@media screen and (max-width: 768px) {
  .p-secMain_img1 {
    width: 26.8vw;
    margin-left: 3.4666666667vw;
    margin-bottom: 4vw;
  }
}
.p-secMain_img2 {
  position: absolute;
  z-index: 5;
  bottom: 0;
  right: 0;
  margin-bottom: 2.5714285714%;
  margin-right: 9.3571428571%;
  width: 16%;
}
@media screen and (max-width: 768px) {
  .p-secMain_img2 {
    width: 38.5333333333vw;
    margin-right: -3.4666666667vw;
    margin-bottom: 4vw;
  }
}
@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, -10%);
            transform: translate(0, -10%);
  }
  51% {
    -webkit-transform: translate(0, 10%);
            transform: translate(0, 10%);
  }
  100% {
    -webkit-transform: translate(0, -10%);
            transform: translate(0, -10%);
  }
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, -10%);
            transform: translate(0, -10%);
  }
  51% {
    -webkit-transform: translate(0, 10%);
            transform: translate(0, 10%);
  }
  100% {
    -webkit-transform: translate(0, -10%);
            transform: translate(0, -10%);
  }
}
.p-secMain_img3 {
  position: absolute;
  z-index: 3;
  top: 0;
  -webkit-animation: fuwafuwa 7s linear -2s infinite;
          animation: fuwafuwa 7s linear -2s infinite;
}
@media screen and (min-width: 769px) {
  .p-secMain_img3 {
    right: 0;
    margin-top: 5.4285714286%;
    margin-right: 9.0714285714%;
    width: 3.6428571429%;
  }
}
@media screen and (max-width: 768px) {
  .p-secMain_img3 {
    left: 0;
    width: 4vw;
    margin-top: 26.1333333333vw;
    margin-left: 7.4666666667vw;
    margin-right: auto;
  }
}
.p-secMain_img4-1 {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  margin-top: 12.2857142857%;
  margin-right: 6.4285714286%;
  width: 4.2857142857%;
  -webkit-animation: fuwafuwa 4s linear -2s infinite;
          animation: fuwafuwa 4s linear -2s infinite;
}
@media screen and (max-width: 768px) {
  .p-secMain_img4-1 {
    width: 8.8vw;
    margin-top: 5.3333333333vw;
    margin-right: 28vw;
  }
}
.p-secMain_img4-2 {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  margin-top: 14%;
  margin-right: 11.2857142857%;
  width: 9.5%;
  -webkit-animation: fuwafuwa 4.5s linear -1s infinite;
          animation: fuwafuwa 4.5s linear -1s infinite;
}
@media screen and (max-width: 768px) {
  .p-secMain_img4-2 {
    width: 14vw;
    margin-top: 13.3333333333vw;
    margin-right: 10.6666666667vw;
  }
}
.p-secMain_img4-3 {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  margin-top: 15.7857142857%;
  margin-left: 8.5%;
  width: 13.6428571429%;
  -webkit-animation: fuwafuwa 4.8s linear -2.5s infinite;
          animation: fuwafuwa 4.8s linear -2.5s infinite;
}
@media screen and (max-width: 768px) {
  .p-secMain_img4-3 {
    width: 28.4vw;
    margin-top: 36.5333333333vw;
    margin-left: 6.6666666667vw;
  }
}
.p-secMain_img5 {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 1%;
  width: 98%;
  margin-bottom: 11.7142857143%;
}
@media screen and (max-width: 768px) {
  .p-secMain_img5 {
    width: 110.2666666667vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-bottom: 40.9333333333vw;
  }
}
.p-secMain_img5 img {
  width: 100%;
}
.p-secMain_slider {
  position: relative;
  z-index: 4;
  margin: 0 auto;
  height: auto;
  width: 70.1428571429%;
  aspect-ratio: 982/589;
}
@media screen and (max-width: 768px) {
  .p-secMain_slider {
    width: 96.8vw;
    aspect-ratio: 726/610;
  }
}
.p-secMain_slider ul li ._img {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 769px) {
  .p-secMain_slider ul li ._img {
    -webkit-mask-image: url(../img/index/main_mask.svg);
            mask-image: url(../img/index/main_mask.svg);
  }
}
@media screen and (max-width: 768px) {
  .p-secMain_slider ul li ._img {
    -webkit-mask-image: url(../img/index/main_mask_sp.svg);
            mask-image: url(../img/index/main_mask_sp.svg);
  }
}
.p-secMain_slider ul li ._img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 3s ease-out;
  transition: -webkit-transform 3s ease-out;
  transition: transform 3s ease-out;
  transition: transform 3s ease-out, -webkit-transform 3s ease-out;
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.p-secMain_slider ul li.swiper-slide-active ._img img, .p-secMain_slider ul li.swiper-slide-duplicate-active ._img img, .p-secMain_slider ul li.swiper-slide-prev ._img img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}
.p-secMain_slider ul li ._txt {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
}
.p-secMain_slider ul li ._txt.-slider1 {
  width: 30.4081632653%;
  margin-top: 0.5102040816%;
  margin-right: 7.1428571429%;
}
@media screen and (max-width: 768px) {
  .p-secMain_slider ul li ._txt.-slider1 {
    width: 54.6666666667vw;
    margin-top: -14.5333333333vw;
    margin-right: 9.0666666667vw;
  }
}
.p-secMain_slider ul li ._txt.-slider2 {
  width: 28.3673469388%;
  margin-top: 1.0204081633%;
  margin-right: 7.1428571429%;
}
@media screen and (max-width: 768px) {
  .p-secMain_slider ul li ._txt.-slider2 {
    width: 50.4vw;
    margin-top: -14.2666666667vw;
    margin-right: 10.2666666667vw;
  }
}
.p-secMain_slider ul li ._txt.-slider3 {
  width: 31.2244897959%;
  margin-top: 0.5102040816%;
  margin-right: 3.0612244898%;
}
@media screen and (max-width: 768px) {
  .p-secMain_slider ul li ._txt.-slider3 {
    width: 60.1333333333vw;
    margin-top: -13.7333333333vw;
    margin-right: 5.0666666667vw;
  }
}
.p-secMain_slider ul li ._txt.-slider4 {
  width: 27.1428571429%;
  margin-top: 3.3673469388%;
  margin-right: 13.2653061224%;
}
@media screen and (max-width: 768px) {
  .p-secMain_slider ul li ._txt.-slider4 {
    width: 47.4666666667vw;
    margin-top: -13.6vw;
    margin-right: 10.6666666667vw;
  }
}
.p-secMain_slider ul li ._txt img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
@-webkit-keyframes txtUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
}
@keyframes txtUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
}
.p-secMain_slider ul li.swiper-slide-active ._txt img, .p-secMain_slider ul li.swiper-slide-duplicate-active ._txt img, .p-secMain_slider ul li.swiper-slide-prev ._txt img {
  -webkit-animation: txtUp 5.5s linear 0s normal both;
          animation: txtUp 5.5s linear 0s normal both;
}

/* ---------------------------------------
.p-secConcept
--------------------------------------- */
.p-secConcept {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .p-secConcept {
    padding-top: 48.9333333333vw;
  }
}
.p-secConcept .c-shoulder {
  position: absolute;
  top: 160px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-secConcept .c-shoulder {
    top: 62vw;
  }
}
.p-secConcept_cnt1 {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .p-secConcept_cnt1 {
    width: 75.5%;
    margin: 0 auto;
  }
}
.p-secConcept_cnt1:before {
  content: "";
  display: block;
  width: 27.3730684327%;
  height: auto;
  aspect-ratio: 248/40;
  background: url(../img/index/concept_before.svg) no-repeat center/cover;
  position: absolute;
  z-index: 1;
  top: 0;
  margin-top: -4.4150110375%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-secConcept_cnt1:before {
    width: 22vw;
    margin-top: -3.3333333333vw;
  }
}
.p-secConcept_cnt1:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(233, 190, 98, 0.5);
  position: absolute;
  z-index: -1;
  top: 31px;
  left: 35px;
}
@media screen and (max-width: 768px) {
  .p-secConcept_cnt1:after {
    top: 2.6666666667vw;
    left: 3.3333333333vw;
  }
}
.p-secConcept_cnt1_in {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: 13.2450331126% 14.348785872%;
}
@media screen and (max-width: 768px) {
  .p-secConcept_cnt1_in {
    padding: 14.6666666667vw 8.8vw 13.3333333333vw;
    padding: 14.6666666667vw 6.6666666667vw 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secConcept_cnt1_in {
    padding: 13.2450331126% 8.8300220751%;
  }
}
.p-secConcept_cnt1_in:before {
  content: "";
  display: block;
  width: calc(100% - 60px);
  height: 1px;
  background: #323232;
  position: absolute;
  top: 20px;
  left: 30px;
}
@media screen and (max-width: 768px) {
  .p-secConcept_cnt1_in:before {
    width: calc(100% - 5.8666666667vw);
    top: 2.9333333333vw;
    left: 2.9333333333vw;
  }
}
.p-secConcept_cnt1_in:after {
  content: "";
  display: block;
  width: calc(100% - 60px);
  height: 1px;
  background: #323232;
  position: absolute;
  bottom: 20px;
  left: 30px;
}
@media screen and (max-width: 768px) {
  .p-secConcept_cnt1_in:after {
    width: calc(100% - 5.8666666667vw);
    bottom: 2.9333333333vw;
    left: 2.9333333333vw;
  }
}
.p-secConcept_cnt1_in ._head {
  display: block;
  width: 14.238410596%;
  margin: 0 auto;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: -1%;
}
@media screen and (max-width: 768px) {
  .p-secConcept_cnt1_in ._head {
    width: 15.3333333333vw;
  }
}
.p-secConcept_cnt1_in ._mask {
  display: block;
  width: 31.2362030905%;
  height: 50px;
  margin: 0 auto;
  position: absolute;
  z-index: 0;
  background: #fff;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-secConcept_cnt1_in ._mask {
    width: 24vw;
  }
}
.p-secConcept_cnt1_in ._title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 3.5rem;
  letter-spacing: 0.2em;
  line-height: 1.5365853659;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secConcept_cnt1_in ._title {
    zoom: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .p-secConcept_cnt1_in ._title {
    font-size: 5.0666666667vw;
    white-space: nowrap;
    letter-spacing: 0.1em;
  }
}
.p-secConcept_cnt1_in ._title::first-letter {
  font-size: 4.1rem;
}
@media screen and (max-width: 768px) {
  .p-secConcept_cnt1_in ._title::first-letter {
    font-size: 6.8vw;
  }
}
.p-secConcept_cnt1_in ._body {
  margin-top: 50px;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .p-secConcept_cnt1_in ._body {
    white-space: nowrap;
    font-size: 3.3333333333vw;
    font-size: 3.0666666667vw;
    letter-spacing: normal;
  }
}
@media screen and (min-width: 769px) {
  .p-secConcept_cnt1_in ._img {
    width: 27.5938189845%;
    margin-left: auto;
  }
}
@media screen and (min-width: 1201px) {
  .p-secConcept_cnt1_in ._img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 21.1920529801%;
    margin-right: 12.3620309051%;
    margin-bottom: 12.3620309051%;
  }
}
@media screen and (max-width: 768px) {
  .p-secConcept_cnt1_in ._img {
    width: 37.6vw;
    margin-top: 8vw;
    margin-left: auto;
  }
}
.p-secConcept_img1 {
  position: absolute;
  z-index: 1;
  width: 30.6666666667%;
  top: 0;
  left: 0;
  margin-top: 10.6666666667%;
  margin-left: -13.3333333333%;
}
@media screen and (max-width: 768px) {
  .p-secConcept_img1 {
    width: 37.8666666667vw;
    margin-top: -33.7333333333vw;
    margin-left: -14vw;
  }
}
.p-secConcept_img2 {
  position: absolute;
  z-index: 2;
  width: 11.3333333333%;
  top: 0;
  left: 0;
  margin-top: 48.3333333333%;
  margin-left: 6.0833333333%;
}
@media screen and (max-width: 768px) {
  .p-secConcept_img2 {
    width: 17.0666666667vw;
    margin-top: -38.6666666667vw;
    margin-left: 34.6666666667vw;
  }
}
.p-secConcept_img3 {
  position: absolute;
  z-index: 2;
  width: 26.8333333333%;
  bottom: 0;
  right: 0;
  margin-bottom: -6.9166666667%;
  margin-right: -12.5833333333%;
}
@media screen and (max-width: 768px) {
  .p-secConcept_img3 {
    width: 34vw;
    top: 0;
    bottom: auto;
    margin-top: 76.8vw;
    margin-right: -14.4vw;
  }
}

/* ---------------------------------------
.p-secStructure
--------------------------------------- */
.p-secStructure_cnt1 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-secStructure_cnt1 {
    margin-top: 70px;
    padding-left: 110px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secStructure_cnt1 {
    padding-left: 50px;
  }
}
.p-secStructure_cnt1 ._title {
  font-size: 4.4rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secStructure_cnt1 ._title {
    zoom: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt1 ._title {
    letter-spacing: normal;
    font-size: 5.6vw;
  }
}
.p-secStructure_cnt1 ._title::first-letter {
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt1 ._title::first-letter {
    font-size: 7.4666666667vw;
  }
}
.p-secStructure_cnt1 ._body {
  margin-top: 35px;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secStructure_cnt1 ._body {
    padding-right: 40%;
  }
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt1 ._body {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secStructure_cnt1 ._img1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 34.4166666667%;
    margin-top: 3.3333333333%;
    margin-top: 6.6666666667%;
    margin-right: 3.3333333333%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secStructure_cnt1 ._img1 {
    margin-top: 8.3333333333%;
    margin-right: 1.6666666667%;
  }
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt1 ._img1 {
    margin-top: 10.6666666667vw;
    padding: 0 2vw;
  }
}
.p-secStructure_cnt2 {
  margin-top: 140px;
  padding: 100px 75px;
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt2 {
    margin-top: 10.1333333333vw;
    padding: 9.6vw 7.3333333333vw;
  }
}
.p-secStructure_cnt2_title {
  position: relative;
  z-index: 2;
}
.p-secStructure_cnt2_title ._title {
  position: absolute;
  left: 50%;
  top: -40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-bottom: 2px solid #323232;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt2_title ._title {
    font-size: 4.1333333333vw;
    white-space: nowrap;
    top: -5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secStructure_cnt2_title ._title::first-letter {
    font-size: 3rem;
  }
}
.p-secStructure_cnt2_item {
  position: relative;
  margin-top: 80px;
  margin-left: 100px;
  margin-right: 80px;
  padding: 40px;
  border-top: 1px solid #323232;
  background: url(../img/index/structure_img4.svg) no-repeat left bottom;
  background-size: contain;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secStructure_cnt2_item {
    padding: 30px;
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt2_item {
    background: url(../img/index/structure_img4_sp.svg) no-repeat left bottom;
    background-size: contain;
    margin: 8.8vw 2.2666666667vw 0;
    padding: 8.8vw 3.3333333333vw;
  }
}
.p-secStructure_cnt2_item ._shoulder {
  position: absolute;
  top: 1em;
  left: -3em;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt2_item ._shoulder {
    font-size: 2.5333333333vw;
  }
}
@media screen and (min-width: 1400px) {
  .p-secStructure_cnt2_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-secStructure_cnt2_item ._title {
  position: relative;
  -webkit-flex-basis: 390px;
      -ms-flex-preferred-size: 390px;
          flex-basis: 390px;
  font-size: 2.3rem;
  padding-left: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1400px) {
  .p-secStructure_cnt2_item ._title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt2_item ._title {
    padding-left: 6vw;
    margin-bottom: 0;
    font-size: 4.2666666667vw;
    white-space: nowrap;
  }
}
.p-secStructure_cnt2_item ._title:first-letter {
  font-size: 3.1rem;
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt2_item ._title:first-letter {
    font-size: 5.4666666667vw;
  }
}
.p-secStructure_cnt2_item ._title:before {
  content: "";
  display: block;
  width: 24px;
  height: 28px;
  background: url(../img/index/structure_img5.svg) no-repeat center/contain;
  position: absolute;
  top: 18px;
  left: 0px;
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt2_item ._title:before {
    width: 4.5333333333vw;
    height: 6vw;
  }
}
.p-secStructure_cnt2_item ._txt {
  -webkit-flex-basis: calc(100% - 390px);
      -ms-flex-preferred-size: calc(100% - 390px);
          flex-basis: calc(100% - 390px);
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt2_item ._txt {
    margin-top: 8vw;
  }
}
.p-secStructure_cnt2_item ._txt a {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt2_item ._txt a {
    margin-top: 1.3333333333vw;
  }
}
.p-secStructure_cnt2_item ._txt a:after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 6px;
  background: url(../img/common/ico_arrow.svg) no-repeat center/contain;
  position: relative;
  z-index: 1;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt2_item ._txt a:after {
    width: 5.8666666667vw;
    height: 1.3333333333vw;
  }
}
.p-secStructure_cnt2_item ._txt ._txt1 {
  font-size: 1.3rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-secStructure_cnt2_item ._txt ._txt1 {
    font-size: 2.5333333333vw;
  }
}

/* ---------------------------------------
.p-secImage
--------------------------------------- */
@media screen and (max-width: 768px) {
  .p-secImage {
    padding-bottom: 24vw;
  }
}
.p-secImage_cnt1 {
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .p-secImage_cnt1 {
    width: 95%;
    margin: 0 auto;
  }
}
.p-secImage_cnt1:before {
  content: "";
  display: block;
  width: 350px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secImage_cnt1:before {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1:before {
    width: 46.6666666667vw;
    height: 0.4vw;
    top: 1.2vw;
  }
}
.p-secImage_cnt1_title {
  position: absolute;
  z-index: 1;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 3.5rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  border-bottom: 2px solid #323232;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secImage_cnt1_title {
    zoom: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_title {
    top: -5.3333333333vw;
    font-size: 4.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_title span {
    font-size: 4.8rem;
  }
}
.p-secImage_cnt1_home {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_home {
    width: 25.25%;
    top: 45%;
    left: 48%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_home {
    width: 27.4666666667vw;
    top: 77.3333333333vw;
    top: 74.6666666667vw;
    left: 4vw;
  }
}
.p-secImage_cnt1_slider {
  width: 100%;
  height: 100%;
  z-index: 1;
  aspect-ratio: 1208/604;
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider {
    aspect-ratio: 649/987;
  }
}
.p-secImage_cnt1_slider ul li {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_slider ul li {
    aspect-ratio: 1208/604;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li {
    aspect-ratio: 649/987;
  }
}
.p-secImage_cnt1_slider ul li.-slider0 > ._box {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_slider ul li.-slider0 > ._box {
    right: 0;
    top: 0;
    width: 37.8333333333%;
    margin-top: 8.0833333333%;
    margin-right: -1.0833333333%;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li.-slider0 > ._box {
    width: 56vw;
    right: 5.3333333333vw;
    bottom: 12.2666666667vw;
    bottom: 9.6vw;
  }
}
.p-secImage_cnt1_slider ul li.-slider5 > ._box {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_slider ul li.-slider5 > ._box {
    right: 0;
    top: 0;
    width: 44.4166666667%;
    margin-top: 7.6666666667%;
    margin-right: -8.75%;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li.-slider5 > ._box {
    width: 66vw;
    right: -2.9333333333vw;
    bottom: 8.6666666667vw;
    bottom: 6vw;
  }
}
.p-secImage_cnt1_slider ul li > ._head {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_slider ul li > ._head {
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 9.1666666667%;
    width: 18.8333333333%;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._head {
    width: 34.6666666667vw;
    top: 69.3333333333vw;
    top: 65.3333333333vw;
    left: 2vw;
    text-align: center;
  }
  .p-secImage_cnt1_slider ul li > ._head img {
    width: auto;
    height: 6.6666666667vw;
  }
}
.p-secImage_cnt1_slider ul li > ._home {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_slider ul li > ._home {
    width: 25.25%;
    top: 45%;
    left: 48%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._home {
    width: 27.4666666667vw;
    top: 77.3333333333vw;
    top: 74.6666666667vw;
    left: 4vw;
  }
}
.p-secImage_cnt1_slider ul li > ._img {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_slider ul li > ._img {
    top: 47%;
    left: -3%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 35.0833333333%;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._img {
    width: 49.8666666667vw;
    top: 9.4666666667vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-secImage_cnt1_slider ul li > ._txt {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_slider ul li > ._txt {
    margin-top: 5.8333333333%;
    margin-right: 5%;
    margin-left: 65.8333333333%;
    background: url(../img/common/line1.svg) no-repeat left top;
    background-size: 172px 944px;
    padding-top: 7.0833333333%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secImage_cnt1_slider ul li > ._txt {
    padding-top: 5.4166666667%;
    background-size: 100px auto;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._txt {
    margin-top: 63.6vw;
    margin-right: 4.2666666667vw;
    margin-left: 34.6666666667vw;
    background: url(../img/common/line1.svg) no-repeat left top;
    background-size: 21.8666666667vw auto;
    padding-top: 7.4666666667vw;
    padding-top: 6vw;
  }
}
.p-secImage_cnt1_slider ul li > ._txt ._step {
  display: block;
  width: 20.8450704225%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._txt ._step {
    width: 15.7333333333vw;
  }
}
.p-secImage_cnt1_slider ul li > ._txt ._title {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 39.4366197183%;
  height: 140px;
  white-space: nowrap;
  line-height: 1.5;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 3rem;
  font-size: 2.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title {
    height: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title {
    height: 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title {
    line-height: 1.5;
    font-size: 4vw;
    font-size: 2.9333333333vw;
  }
}
.p-secImage_cnt1_slider ul li > ._txt ._title:before {
  content: "";
  display: block;
  width: 35px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title:before {
    margin-right: 1.3333333333vw;
  }
}
.p-secImage_cnt1_slider ul li > ._txt ._title.-slider1:before {
  width: 35px;
  height: 40px;
  background-image: url(../img/index/image_slider1_ico.svg);
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title.-slider1:before {
    width: 2.5vw;
    height: 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title.-slider1:before {
    width: 3.6vw;
    height: 5.3333333333vw;
  }
}
.p-secImage_cnt1_slider ul li > ._txt ._title.-slider2:before {
  width: 25px;
  height: 40px;
  background-image: url(../img/index/image_slider2_ico.svg);
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title.-slider2:before {
    width: 1.7857142857vw;
    height: 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title.-slider2:before {
    width: 3.2vw;
    height: 5.0666666667vw;
  }
}
.p-secImage_cnt1_slider ul li > ._txt ._title.-slider3:before {
  width: 28px;
  height: 34px;
  background-image: url(../img/index/image_slider3_ico.svg);
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title.-slider3:before {
    width: 2vw;
    height: 2.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title.-slider3:before {
    width: 3.6vw;
    height: 4.4vw;
  }
}
.p-secImage_cnt1_slider ul li > ._txt ._title.-slider4:before {
  width: 52px;
  height: 55px;
  background-image: url(../img/index/image_slider4_ico.svg);
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title.-slider4:before {
    margin-right: 5px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title.-slider4:before {
    width: 3.7142857143vw;
    height: 3.9285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title.-slider4:before {
    width: 6.8vw;
    height: 7.2vw;
    width: 6.1333333333vw;
    height: 6.6666666667vw;
  }
}
.p-secImage_cnt1_slider ul li > ._txt ._title:after {
  content: "";
  display: block;
  height: 1px;
  background: #323232;
  position: absolute;
  bottom: 0;
  left: -94px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._txt ._title:after {
    left: -8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_slider ul li > ._txt ._body {
    padding-top: 7.0422535211%;
    padding-left: 11.2676056338%;
    padding-right: 7.0422535211%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .p-secImage_cnt1_slider ul li > ._txt ._body {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li > ._txt ._body {
    padding-top: 2.6666666667vw;
    padding-left: 3.3333333333vw;
    font-size: 2.8vw;
    letter-spacing: normal;
    line-height: 1.6666666667;
  }
}
@-webkit-keyframes image_headUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
}
@keyframes image_headUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
}
@-webkit-keyframes image_headUp_sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes image_headUp_sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_slider ul li.swiper-slide-active ._head {
    -webkit-animation: image_headUp 0.2s cubic-bezier(0, 0.68, 0.45, 0.85) both;
            animation: image_headUp 0.2s cubic-bezier(0, 0.68, 0.45, 0.85) both;
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li.swiper-slide-active ._head {
    -webkit-animation: image_headUp_sp 0.2s cubic-bezier(0, 0.68, 0.45, 0.85) both;
            animation: image_headUp_sp 0.2s cubic-bezier(0, 0.68, 0.45, 0.85) both;
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
}
@-webkit-keyframes image_homeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@keyframes image_homeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes image_homeUp_sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes image_homeUp_sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@media screen and (min-width: 769px) {
  .p-secImage_cnt1_slider ul li.swiper-slide-active ._home {
    -webkit-animation: image_homeUp 0.4s ease-out 0s both;
            animation: image_homeUp 0.4s ease-out 0s both;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li.swiper-slide-active ._home {
    -webkit-animation: image_homeUp_sp 0.4s ease-out 0s both;
            animation: image_homeUp_sp 0.4s ease-out 0s both;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
}
@-webkit-keyframes image_imgUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes image_imgUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes image_imgUp_sp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 20%);
            transform: translate(-50%, 20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
}
@keyframes image_imgUp_sp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 20%);
            transform: translate(-50%, 20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
}
.p-secImage_cnt1_slider ul li.swiper-slide-active ._img {
  -webkit-animation: image_imgUp 1s cubic-bezier(0.26, 0.48, 0.53, 1) both;
          animation: image_imgUp 1s cubic-bezier(0.26, 0.48, 0.53, 1) both;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_slider ul li.swiper-slide-active ._img {
    -webkit-animation: image_imgUp_sp 1s cubic-bezier(0.26, 0.48, 0.53, 1) both;
            animation: image_imgUp_sp 1s cubic-bezier(0.26, 0.48, 0.53, 1) both;
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
}
@-webkit-keyframes image_txtUp {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes image_txtUp {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.p-secImage_cnt1_slider ul li.swiper-slide-active ._box, .p-secImage_cnt1_slider ul li.swiper-slide-active ._txt {
  -webkit-animation: image_txtUp 0.8s cubic-bezier(0.26, 0.48, 0.53, 1) both;
          animation: image_txtUp 0.8s cubic-bezier(0.26, 0.48, 0.53, 1) both;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.p-secImage_cnt1_slider .c-imgStyle1:before {
  top: 5%;
  left: 5%;
}
.p-secImage_cnt1_bg {
  position: absolute !important;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  aspect-ratio: 1208/604;
}
@media screen and (max-width: 768px) {
  .p-secImage_cnt1_bg {
    aspect-ratio: 649/987;
  }
}

/* ---------------------------------------
.p-secRelated
--------------------------------------- */
@media screen and (max-width: 768px) {
  .p-secRelated {
    padding-bottom: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secRelated_cnt1 {
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
  }
}
.p-secRelated_cnt1_img1 {
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secRelated_cnt1_img1 {
    width: 57.25%;
    position: absolute;
    top: 10%;
    left: -16.6666666667%;
  }
}
@media screen and (max-width: 768px) {
  .p-secRelated_cnt1_img1 {
    position: relative;
    left: -5.3333333333vw;
    margin-left: -2.9333333333vw;
  }
}
.p-secRelated_cnt1_img1 img {
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
.p-secRelated_cnt1_img1:after {
  content: "";
  display: block;
  background: rgba(227, 156, 72, 0.5);
  position: absolute;
  z-index: 0;
  top: 40px;
  left: 20px;
  right: -20px;
  bottom: -40px;
  border-radius: 10px;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secRelated_cnt1_img1:after {
    top: 20px;
    left: 10px;
    right: -10px;
    bottom: -20px;
  }
}
@media screen and (max-width: 768px) {
  .p-secRelated_cnt1_img1:after {
    top: 5.3333333333vw;
    left: 2.6666666667vw;
    right: -2.6666666667vw;
    bottom: -5.3333333333vw;
  }
}
.p-secRelated_cnt1_img2 {
  position: absolute;
  z-index: 1;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .p-secRelated_cnt1_img2 {
    bottom: 0;
    left: 0;
    width: 15.0833333333%;
    margin-bottom: -2.25%;
    margin-left: 35.1666666667%;
    padding-top: 200px;
  }
}
@media screen and (max-width: 768px) {
  .p-secRelated_cnt1_img2 {
    top: 0;
    right: 0;
    width: 23.3333333333vw;
    margin-top: 50.2666666667vw;
    margin-right: 3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secRelated_cnt1_item {
    padding-top: 7.5%;
    padding-bottom: 8.3333333333%;
    padding-right: 6.6666666667%;
    padding-left: 51.6666666667%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secRelated_cnt1_item {
    padding-right: 3.3333333333%;
    padding-left: 45.8333333333%;
  }
}
@media screen and (max-width: 768px) {
  .p-secRelated_cnt1_item {
    margin-top: -49.3333333333vw;
    padding-top: 64vw;
    padding-right: 10.1333333333vw;
    padding-left: 9.3333333333vw;
    padding-bottom: 10.6666666667vw;
  }
}
.p-secRelated_cnt1_item ._txt {
  padding-top: 120px;
  padding-top: 24%;
  background: url(../img/common/line1.svg) no-repeat left top;
  background-size: 172px 944px;
}
@media screen and (max-width: 768px) {
  .p-secRelated_cnt1_item ._txt {
    background-size: 23.2vw auto;
    padding-top: 17.3333333333vw;
  }
}
.p-secRelated_cnt1_item ._txt ._title {
  position: relative;
  padding-bottom: 20px;
  padding-left: 50px;
  line-height: 1.4;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-secRelated_cnt1_item ._txt ._title {
    padding-bottom: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secRelated_cnt1_item ._txt ._title {
    zoom: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .p-secRelated_cnt1_item ._txt ._title {
    font-size: 4.9333333333vw;
  }
}
.p-secRelated_cnt1_item ._txt ._title::first-letter {
  font-size: 5.2rem;
}
@media screen and (max-width: 768px) {
  .p-secRelated_cnt1_item ._txt ._title::first-letter {
    font-size: 7.3333333333vw;
  }
}
.p-secRelated_cnt1_item ._txt ._title::after {
  content: "";
  display: block;
  height: 1px;
  background: #323232;
  position: absolute;
  bottom: 0;
  left: -200px;
  right: 0;
}
@media screen and (min-width: 769px) {
  .p-secRelated_cnt1_item ._txt ._body {
    padding-top: 6%;
    padding-left: 10%;
    padding-right: 16%;
  }
}
@media screen and (max-width: 768px) {
  .p-secRelated_cnt1_item ._txt ._body {
    padding-top: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
.p-secRelated_cnt1_item ._txt ._btn {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .p-secRelated_cnt1_item ._txt ._btn {
    margin-top: 10px;
    padding-right: 16%;
  }
}
@media screen and (max-width: 768px) {
  .p-secRelated_cnt1_item ._txt ._btn {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secRelated.-buyer .p-secRelated_cnt1 {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
}
@media screen and (min-width: 769px) {
  .p-secRelated.-buyer .p-secRelated_cnt1_img1 {
    left: auto;
    right: -16.6666666667%;
  }
}
@media screen and (max-width: 768px) {
  .p-secRelated.-buyer .p-secRelated_cnt1_img1 {
    left: auto;
    position: relative;
    right: -5.3333333333vw;
    margin-left: 0;
    margin-right: -2.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secRelated.-buyer .p-secRelated_cnt1_img1:after {
    left: -20px;
    right: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secRelated.-buyer .p-secRelated_cnt1_img1:after {
    left: -10px;
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-secRelated.-buyer .p-secRelated_cnt1_img1:after {
    left: -2.6666666667vw;
    right: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secRelated.-buyer .p-secRelated_cnt1_img2 {
    left: auto;
    right: 0;
    width: 20.5833333333%;
    margin-bottom: -2.25%;
    margin-left: auto;
    margin-right: 27.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .p-secRelated.-buyer .p-secRelated_cnt1_img2 {
    top: 0;
    left: 0;
    width: 31.8666666667vw;
    margin-top: 48vw;
    margin-left: -7.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secRelated.-buyer .p-secRelated_cnt1_item {
    padding-left: 12.5%;
    padding-right: 44.1666666667%;
  }
  .p-secRelated.-buyer .p-secRelated_cnt1_item ._txt ._title::after {
    left: -80px;
    width: 200%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secRelated.-buyer .p-secRelated_cnt1_item {
    padding-left: 11.6666666667%;
    padding-right: 40%;
  }
}

/* ---------------------------------------
.p-boxStyle1
--------------------------------------- */
.p-boxStyle1 {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-boxStyle1 {
    border-radius: 1.3333333333vw;
  }
}
.p-boxStyle1:after {
  content: "";
  display: block;
  border: 3px solid #ffdfd3;
  position: absolute;
  z-index: 0;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-boxStyle1:after {
    border: 1px solid #ffdfd3;
    top: 1.3333333333vw;
    left: 1.3333333333vw;
    right: 1.3333333333vw;
    bottom: 1.3333333333vw;
  }
}
.p-boxStyle1:before {
  content: "";
  display: block;
  width: 400%;
  height: 400%;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(255, 255, 255, 0)), color-stop(25%, white), color-stop(26%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 25%, white 25%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, white 25%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 100%);
  background-size: 10px 10px;
  -webkit-transform: rotate(15deg) translate(-50%, -50%);
          transform: rotate(15deg) translate(-50%, -50%);
  opacity: 0.5;
  z-index: -1;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* ---------------------------------------
.swiper
--------------------------------------- */
.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
  height: 100%;
}
.swiper-slide {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
  -webkit-transition-property: opacity !important;
  transition-property: opacity !important;
}
.swiper-pagination {
  position: absolute;
  z-index: 10;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-secMain .swiper-pagination {
  bottom: -43px;
}
@media screen and (max-width: 768px) {
  .p-secMain .swiper-pagination {
    bottom: -25.3333333333vw;
  }
}

.p-secImage .swiper-pagination {
  bottom: 43px;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secImage .swiper-pagination {
    zoom: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .p-secImage .swiper-pagination {
    bottom: -10.6666666667vw;
  }
}

.swiper-pagination-bullet {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  color: #323232;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.p-secMain .swiper-pagination-bullet {
  background-color: white;
  margin: 0 15px;
  width: 12px;
  height: 12px;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .p-secMain .swiper-pagination-bullet {
    margin: 0 2.6666666667vw;
    width: 2vw;
    height: 2vw;
  }
}

.p-secImage .swiper-pagination-bullet {
  cursor: pointer;
  background-color: rgba(211, 209, 208, 0.2);
  margin: 0 10px;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-secImage .swiper-pagination-bullet {
    margin: 0 2vw;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    font-size: 2.8vw;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.p-secImage .swiper-pagination-bullet._0, .p-secImage .swiper-pagination-bullet._5 {
  background-color: rgba(222, 163, 154, 0.2);
}
@media screen and (min-width: 769px) {
  .p-secImage .swiper-pagination-bullet:hover {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

.p-secMain .swiper-pagination-bullet-active {
  background-color: #231815;
}

.p-secImage .swiper-pagination-bullet-active {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
@media screen and (min-width: 769px) {
  .p-secImage .swiper-pagination-bullet-active {
    background-color: rgba(211, 209, 208, 0.5);
  }
  .p-secImage .swiper-pagination-bullet-active._0, .p-secImage .swiper-pagination-bullet-active._5 {
    background-color: rgba(222, 163, 154, 0.5);
  }
}

.swiper-button-prev, .swiper-button-next {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: absolute;
  border-radius: 100px;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .swiper-button-prev, .swiper-button-next {
    top: 45%;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 223, 211, 0.9);
  }
}
.swiper-button-prev:before, .swiper-button-next:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-bottom: 1px solid #323232;
  border-left: 1px solid #323232;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev:before, .swiper-button-next:before {
    width: 2vw;
    height: 2vw;
  }
}
@media screen and (min-width: 769px) {
  .swiper-button-prev:hover, .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.9);
    -webkit-transform: translateY(-50%) scale(1.1);
            transform: translateY(-50%) scale(1.1);
  }
}
.swiper-button-prev {
  left: -80px;
}
@media screen and (max-width: 1400px) {
  .swiper-button-prev {
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: -5.3333333333vw;
  }
}
.swiper-button-prev:before {
  -webkit-transform: translate(-30%, -50%) rotate(45deg);
          transform: translate(-30%, -50%) rotate(45deg);
}
.swiper-button-next {
  right: -80px;
}
@media screen and (max-width: 1400px) {
  .swiper-button-next {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: -5.3333333333vw;
  }
}
.swiper-button-next:before {
  -webkit-transform: translate(-70%, -50%) rotate(-135deg);
          transform: translate(-70%, -50%) rotate(-135deg);
}

/* ---------------------------------------
.p-localNav
--------------------------------------- */
.p-localNav {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 0 10px 10px 0;
  position: fixed;
  z-index: 10;
  top: 15vw;
  left: 0;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-localNav {
    padding: 15px;
    top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .p-localNav {
    display: none;
  }
}
.p-localNav dl {
  margin-left: 10px;
  border-left: 1px solid #323232;
}
.p-localNav dl dt {
  position: relative;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  padding: 20px;
  padding-bottom: 12px;
  font-size: 1.2rem;
}
.p-localNav dl dt::before {
  content: "";
  display: block;
  width: 134px;
  height: 1px;
  background: #323232;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -15px;
}
.p-localNav dl dd {
  padding: 20px;
}
.p-localNav dl dd ul li a {
  text-decoration: none;
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-size: 1.5rem;
  padding: 5px 0;
}
.p-localNav dl dd ul li a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 4px;
  background: url(../img/common/ico_arrow.svg) no-repeat center/contain;
  margin-left: 10px;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 769px) {
  .p-localNav dl dd ul li a:hover {
    text-decoration: underline;
  }
}

/* ---------------------------------------
.p-secHead
--------------------------------------- */
.p-secHead {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secHead {
    margin-top: 63px;
  }
}
@media screen and (max-width: 768px) {
  .p-secHead {
    padding-top: 12.5333333333vw;
  }
}
.p-secHead_img img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-secHead_img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* -----------------------------------
.p-secWhat
------------------------------------ */
.p-secWhat {
  position: relative;
  padding-top: 135px;
}
@media screen and (max-width: 768px) {
  .p-secWhat {
    padding-top: 12vw;
  }
}
.p-secWhat .c-shoulder {
  position: absolute;
  z-index: 10000;
  top: -55px;
  left: 46px;
}
@media screen and (max-width: 768px) {
  .p-secWhat .c-shoulder {
    top: -33.3333333333vw;
    left: 3.3333333333vw;
  }
}
.p-secWhat_cnt0 {
  margin: -50px auto 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt0 {
    padding-left: 6.6666666667%;
  }
}
@media screen and (min-width: 1201px) {
  .p-secWhat_cnt0 {
    padding-left: 13.75%;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt0 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-secWhat_cnt0 ._img {
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt0 ._img {
    -webkit-flex-basis: 40.2898550725%;
        -ms-flex-preferred-size: 40.2898550725%;
            flex-basis: 40.2898550725%;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt0 ._img {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 85%;
    margin: 5.3333333333vw auto 0;
  }
}
.p-secWhat_cnt0 ._img > img {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-secWhat_cnt0 ._img:after {
  content: "";
  display: block;
  background: rgba(226, 155, 72, 0.5);
  border-radius: 10px;
  position: absolute;
  z-index: 0;
  top: 30px;
  left: -40px;
  right: 40px;
  bottom: -30px;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt0 ._img:after {
    top: 15px;
    left: -20px;
    right: 20px;
    bottom: -15px;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt0 ._img:after {
    top: 4vw;
    left: 4vw;
    right: -4vw;
    bottom: -4vw;
  }
}
.p-secWhat_cnt0 ._txt {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-basis: 59.7101449275%;
      -ms-flex-preferred-size: 59.7101449275%;
          flex-basis: 59.7101449275%;
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt0 ._txt {
    padding-left: 6.6666666667%;
    padding-right: 6.6666666667%;
  }
}
@media screen and (min-width: 1201px) {
  .p-secWhat_cnt0 ._txt {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt0 ._txt {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-secWhat_cnt0 ._txt ._title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  line-height: 1.7948717949;
  font-size: 3.9rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt0 ._txt ._title {
    zoom: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt0 ._txt ._title {
    font-size: 5.6vw;
  }
}
.p-secWhat_cnt0 ._txt ._body {
  margin-top: 25px;
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt0 ._txt ._body {
    line-height: 2.4117647059;
    font-size: 1.7rem;
  }
}
.p-secWhat_cnt1 {
  position: relative;
}
.p-secWhat_cnt1 ._txt {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt1 ._txt {
    width: 61.6666666667%;
    padding-top: 3.8333333333%;
    padding-right: 10.4166666667%;
    background: url(../img/common/line1.svg) no-repeat left top;
    background-size: 172px 944px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt1 ._txt {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt1 ._txt {
    padding-top: 6.6666666667vw;
    background: url(../img/common/line1.svg) no-repeat left top;
    background-size: 24.8vw auto;
  }
}
.p-secWhat_cnt1 ._txt ._head {
  width: 24.5945945946%;
  width: 27.7027027027%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt1 ._txt ._head {
    width: 20.8vw;
    width: 23.2vw;
  }
}
.p-secWhat_cnt1 ._txt ._title {
  position: relative;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  line-height: 1.7948717949;
  font-size: 3.9rem;
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt1 ._txt ._title {
    margin-top: 6.7567567568%;
    padding-bottom: 5.4054054054%;
    padding-left: 10.8108108108%;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt1 ._txt ._title {
    margin-top: 7.7333333333vw;
    padding-bottom: 6.6666666667vw;
    padding-left: 4.6666666667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt1 ._txt ._title {
    zoom: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt1 ._txt ._title {
    font-size: 5.6vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt1 ._txt ._title::first-letter {
    font-size: 6.8vw;
  }
}
.p-secWhat_cnt1 ._txt ._title::after {
  content: "";
  display: block;
  height: 1px;
  background: #323232;
  position: absolute;
  bottom: 0;
  left: -65px;
  right: 0;
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt1 ._txt ._body {
    line-height: 2.4117647059;
    font-size: 1.7rem;
    white-space: nowrap;
    padding-top: 5.4054054054%;
    padding-left: 10.8108108108%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt1 ._txt ._body {
    white-space: normal;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt1 ._txt ._body {
    padding-top: 6.6666666667vw;
    padding-left: 4.6666666667vw;
    line-height: 2.2;
  }
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt1 ._img1 {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 29%;
    margin-top: 6.3333333333%;
    margin-right: -1.6666666667%;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt1 ._img1 {
    margin: 13.3333333333vw auto 0;
    width: 70.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  [data-page-id=buyer] .p-secWhat_cnt1 ._img1 {
    margin-top: 6.3333333333%;
  }
  [data-page-id=seller] .p-secWhat_cnt1 ._img1 {
    margin-top: 2.0833333333%;
  }
}
.p-secWhat_cnt1 ._img1 img {
  width: 100%;
}
.p-secWhat_cnt1 ._img2 {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
}
[data-page-id=buyer] .p-secWhat_cnt1 ._img2 {
  width: 20.6666666667%;
  margin-right: 16.6666666667%;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  [data-page-id=buyer] .p-secWhat_cnt1 ._img2 {
    margin-right: 4.1666666667%;
  }
}
@media screen and (max-width: 768px) {
  [data-page-id=buyer] .p-secWhat_cnt1 ._img2 {
    right: auto;
    left: 0;
    width: 35.0666666667vw;
    bottom: -14vw;
  }
}

[data-page-id=seller] .p-secWhat_cnt1 ._img2 {
  width: 15.0833333333%;
  margin-right: -3.3333333333%;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  [data-page-id=seller] .p-secWhat_cnt1 ._img2 {
    margin-right: 4.1666666667%;
  }
}
@media screen and (max-width: 768px) {
  [data-page-id=seller] .p-secWhat_cnt1 ._img2 {
    width: 26.6666666667vw;
    bottom: -14vw;
  }
}

@media screen and (min-width: 769px) {
  .p-secWhat_cnt4 + .p-secWhat_cnt1 {
    margin: 188px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt4 + .p-secWhat_cnt1 {
    margin-top: 29.3333333333vw;
  }
}
.p-secWhat_cnt2, .p-secWhat_cnt4 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt2, .p-secWhat_cnt4 {
    margin: 188px auto 0;
  }
}
@media screen and (min-width: 1251px) {
  .p-secWhat_cnt2, .p-secWhat_cnt4 {
    width: 81.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2, .p-secWhat_cnt4 {
    margin-top: 29.3333333333vw;
  }
}
.p-secWhat_cnt2:before, .p-secWhat_cnt4:before {
  content: "";
  display: block;
  width: 600px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt2:before, .p-secWhat_cnt4:before {
    width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2:before, .p-secWhat_cnt4:before {
    width: 61.3333333333vw;
    height: 0.5333333333vw;
    top: 1.3333333333vw;
  }
}
.p-secWhat_cnt2 ._title, .p-secWhat_cnt4 ._title {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  margin-top: 50px;
  border-bottom: 2px solid #323232;
  line-height: 1.4;
  font-size: 4.4rem;
  white-space: nowrap;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt2 ._title, .p-secWhat_cnt4 ._title {
    zoom: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ._title, .p-secWhat_cnt4 ._title {
    font-size: 5.3333333333vw;
    font-size: 4vw;
    margin-top: 4vw;
  }
}
.p-secWhat_cnt2 ._title > span, .p-secWhat_cnt4 ._title > span {
  font-size: 5.5rem;
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ._title > span, .p-secWhat_cnt4 ._title > span {
    font-size: 6.8vw;
    font-size: 5.3333333333vw;
  }
}
.p-secWhat_cnt2 ._title:before, .p-secWhat_cnt4 ._title:before {
  content: "";
  display: block;
  width: 29px;
  height: 23px;
  background: url(../img/common/ico_shoulder.svg) no-repeat center/contain;
  position: absolute;
  z-index: 1;
  top: -12px;
  left: -18px;
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ._title:before, .p-secWhat_cnt4 ._title:before {
    width: 3.4666666667vw;
    height: 2.6666666667vw;
    top: -1.6vw;
    left: -2.4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 {
    margin-top: 40vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt2 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 7.5819672131%;
    padding-left: 7.6844262295%;
    padding-right: 7.6844262295%;
    padding-bottom: 10.2459016393%;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ul {
    padding: 12vw 8.5333333333vw 9.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt2 ul li {
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
    margin-top: 4.4057377049%;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ul li + li {
    margin-top: 4.8vw;
  }
}
.p-secWhat_cnt2 ul li a {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 60px;
  min-height: 124px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  border-radius: 15px;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt2 ul li a {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ul li a {
    min-height: 16.5333333333vw;
    padding: 0;
  }
}
.p-secWhat_cnt2 ul li a.-merit1 {
  background: -webkit-gradient(linear, left bottom, left top, from(#e3b044), to(#eac980));
  background: -webkit-linear-gradient(bottom, #e3b044 0%, #eac980 100%);
  background: linear-gradient(0deg, #e3b044 0%, #eac980 100%);
}
.p-secWhat_cnt2 ul li a.-merit2 {
  background: -webkit-gradient(linear, left bottom, left top, from(#e39c48), to(#eabb80));
  background: -webkit-linear-gradient(bottom, #e39c48 0%, #eabb80 100%);
  background: linear-gradient(0deg, #e39c48 0%, #eabb80 100%);
}
.p-secWhat_cnt2 ul li a.-merit3 {
  background: -webkit-gradient(linear, left bottom, left top, from(#e4b376), to(#eac99a));
  background: -webkit-linear-gradient(bottom, #e4b376 0%, #eac99a 100%);
  background: linear-gradient(0deg, #e4b376 0%, #eac99a 100%);
}
.p-secWhat_cnt2 ul li a.-merit4 {
  background: -webkit-gradient(linear, left bottom, left top, from(#e79f79), to(#efc8b0));
  background: -webkit-linear-gradient(bottom, #e79f79 0%, #efc8b0 100%);
  background: linear-gradient(0deg, #e79f79 0%, #efc8b0 100%);
}
.p-secWhat_cnt2 ul li a.-merit5 {
  background: -webkit-gradient(linear, left bottom, left top, from(#dea39a), to(#e9c8c3));
  background: -webkit-linear-gradient(bottom, #dea39a 0%, #e9c8c3 100%);
  background: linear-gradient(0deg, #dea39a 0%, #e9c8c3 100%);
}
.p-secWhat_cnt2 ul li a.-merit6 {
  background: -webkit-gradient(linear, left bottom, left top, from(#d6c694), to(#eadfc2));
  background: -webkit-linear-gradient(bottom, #d6c694 0%, #eadfc2 100%);
  background: linear-gradient(0deg, #d6c694 0%, #eadfc2 100%);
}
.p-secWhat_cnt2 ul li a:before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #323232;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ul li a:before {
    width: 4vw;
    left: -2.6666666667vw;
  }
}
.p-secWhat_cnt2 ul li a:after {
  content: "";
  display: block;
  width: 24px;
  height: 6px;
  background: url(../img/common/ico_arrow.svg) no-repeat center center/contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ul li a:after {
    width: 3.2vw;
    height: 0.8vw;
    right: 2.6666666667vw;
  }
}
.p-secWhat_cnt2 ul li a span {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  line-height: 1.6;
}
.p-secWhat_cnt2 ul li a ._txt1 {
  position: absolute;
  left: 30px;
  font-size: 3.6rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt2 ul li a ._txt1 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ul li a ._txt1 {
    font-size: 3.7333333333vw;
    left: 3.2vw;
  }
}
.p-secWhat_cnt2 ul li a ._txt2 {
  font-size: 1.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt2 ul li a ._txt2 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ul li a ._txt2 {
    font-size: 2.9333333333vw;
  }
}
.p-secWhat_cnt2 ul li a ._txt2 span {
  font-size: 2.2rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt2 ul li a ._txt2 span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ul li a ._txt2 span {
    font-size: 3.7333333333vw;
  }
}
.p-secWhat_cnt2 ul li a ._txt3 {
  font-size: 2.2rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt2 ul li a ._txt3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ul li a ._txt3 {
    font-size: 3.7333333333vw;
  }
}
.p-secWhat_cnt2 ul li a ._txt4 {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 5px;
  padding-left: 10px;
  letter-spacing: normal;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt2 ul li a ._txt4 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt2 ul li a ._txt4 {
    font-size: 2vw;
  }
}
.p-secWhat_cnt2 ul li a ._txt4 span {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt2 ul li a:hover {
    -webkit-filter: brightness(105%);
            filter: brightness(105%);
  }
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt4 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 7.5819672131%;
    padding-left: 5.1229508197%;
    padding-right: 5.1229508197%;
    padding-bottom: 10.2459016393%;
  }
}
@media screen and (max-width: 1300px) {
  .p-secWhat_cnt4 ul {
    padding-left: 5.1229508197%;
    padding-right: 5.1229508197%;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt4 ul {
    padding: 12vw 8.5333333333vw 9.3333333333vw;
  }
}
.p-secWhat_cnt4 ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px) {
  .p-secWhat_cnt4 ul li {
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
    margin-top: 4.4057377049%;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt4 ul li + li {
    margin-top: 4.8vw;
  }
}
.p-secWhat_cnt4 ul li > span {
  -webkit-flex-basis: 25.2525252525%;
      -ms-flex-preferred-size: 25.2525252525%;
          flex-basis: 25.2525252525%;
}
.p-secWhat_cnt4 ul li > p {
  -webkit-flex-basis: 74.7474747475%;
      -ms-flex-preferred-size: 74.7474747475%;
          flex-basis: 74.7474747475%;
  padding-left: 2%;
  font-size: 2.7rem;
  line-height: 1.5;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt4 ul li > p {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt4 ul li > p {
    padding-left: 4%;
    font-size: 4vw;
  }
}
.p-secWhat_cnt4 ul li > p::first-letter {
  font-size: 4.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secWhat_cnt4 ul li > p::first-letter {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .p-secWhat_cnt4 ul li > p::first-letter {
    font-size: 6vw;
  }
}

/* -----------------------------------
.p-secMerit
------------------------------------ */
.p-secMerit_title {
  text-align: center;
}
.p-secMerit_cnt1 {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-secMerit_cnt1 {
    padding-top: 2.5%;
    padding-left: 6.6666666667%;
    padding-right: 6.6666666667%;
    padding-bottom: 6.6666666667%;
  }
}
@media screen and (min-width: 1201px) {
  .p-secMerit_cnt1 {
    width: 93.3333333333%;
    padding-top: 2.5%;
    padding-left: 10.8333333333%;
    padding-right: 10.8333333333%;
    padding-bottom: 10.8333333333%;
  }
}
@media screen and (max-width: 768px) {
  .p-secMerit_cnt1 {
    padding: 2.6666666667vw 10.6666666667vw 16vw;
  }
}
.p-secMerit_cnt1_item {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secMerit_cnt1_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 17.4418604651%;
  }
}
@media screen and (max-width: 768px) {
  .p-secMerit_cnt1_item {
    padding-top: 18.6666666667vw;
  }
}
.p-secMerit_cnt1_item ._img {
  position: relative;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  -webkit-flex-basis: 48.6046511628%;
      -ms-flex-preferred-size: 48.6046511628%;
          flex-basis: 48.6046511628%;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
}
.p-secMerit_cnt1_item ._img > span {
  position: absolute;
  z-index: 2;
  width: 118px;
  top: -80px;
  left: -57px;
}
@media screen and (max-width: 768px) {
  .p-secMerit_cnt1_item ._img > span {
    width: 18.8vw;
    top: -12vw;
    left: -10vw;
  }
}
.p-secMerit_cnt1_item ._img ._img1 {
  position: relative;
}
.p-secMerit_cnt1_item ._img ._img1 > img {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-secMerit_cnt1_item ._img ._img1:after {
  content: "";
  display: block;
  border-radius: 10px;
  position: absolute;
  z-index: 0;
  top: 25px;
  left: 25px;
  right: -25px;
  bottom: -25px;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secMerit_cnt1_item ._img ._img1:after {
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
  }
}
@media screen and (max-width: 768px) {
  .p-secMerit_cnt1_item ._img ._img1:after {
    top: 4vw;
    left: 4vw;
    right: -4vw;
    bottom: -4vw;
  }
}
.p-secMerit_cnt1_item ._img ._img1.-merit1:after {
  background: rgba(230, 187, 98, 0.5);
}
.p-secMerit_cnt1_item ._img ._img1.-merit2:after {
  background: rgba(227, 156, 72, 0.5);
}
.p-secMerit_cnt1_item ._img ._img1.-merit3:after {
  background: rgba(228, 179, 118, 0.5);
}
.p-secMerit_cnt1_item ._img ._img1.-merit4:after {
  background: rgba(231, 159, 121, 0.5);
}
.p-secMerit_cnt1_item ._img ._img1.-merit5:after {
  background: rgba(222, 163, 154, 0.5);
}
.p-secMerit_cnt1_item ._img ._img1.-merit6:after {
  background: rgba(215, 199, 149, 0.5);
}
@media screen and (min-width: 769px) {
  .p-secMerit_cnt1_item ._txt {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    -webkit-flex-basis: 48.6046511628%;
        -ms-flex-preferred-size: 48.6046511628%;
            flex-basis: 48.6046511628%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    padding-right: 5.3488372093%;
  }
}
@media screen and (max-width: 768px) {
  .p-secMerit_cnt1_item ._txt {
    margin-top: 9.3333333333vw;
  }
}
.p-secMerit_cnt1_item ._txt ._title {
  position: relative;
  font-size: 2.9rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.018em;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secMerit_cnt1_item ._txt ._title {
    zoom: 0.7;
  }
}
@media screen and (min-width: 769px) {
  .p-secMerit_cnt1_item ._txt ._title {
    padding-top: 10px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-secMerit_cnt1_item ._txt ._title {
    text-align: center;
    padding-bottom: 3.3333333333vw;
    font-size: 4.9333333333vw;
    white-space: nowrap;
  }
}
.p-secMerit_cnt1_item ._txt ._title::first-letter {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-secMerit_cnt1_item ._txt ._title::first-letter {
    font-size: 6.6666666667vw;
  }
}
.p-secMerit_cnt1_item ._txt ._title:after {
  content: "";
  display: block;
  width: 110%;
  height: 1px;
  background: #323232;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0px;
}
@media screen and (max-width: 768px) {
  .p-secMerit_cnt1_item ._txt ._title:after {
    width: 100%;
  }
}
.p-secMerit_cnt1_item ._txt ._body {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-secMerit_cnt1_item ._txt ._body {
    margin-top: 4vw;
  }
}
.p-secMerit_cnt1_item ._txt ._caption {
  margin-top: 20px;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .p-secMerit_cnt1_item ._txt ._caption {
    margin-top: 2.6666666667vw;
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secMerit_cnt1_item:nth-child(even) ._img {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-secMerit_cnt1_item:nth-child(even) ._img ._img1:after {
    left: -25px;
    right: 25px;
  }
  .p-secMerit_cnt1_item:nth-child(even) ._txt {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    padding-left: 5.3488372093%;
    padding-right: 0;
  }
  .p-secMerit_cnt1_item:nth-child(even) ._txt ._title:after {
    width: 120%;
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secMerit_cnt1_item:nth-child(even) ._img {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-secMerit_cnt1_item:nth-child(even) ._img ._img1:after {
    left: -15px;
    right: 15px;
  }
}

/* -----------------------------------
.p-secFlow
------------------------------------ */
.p-secFlow_title {
  text-align: center;
}
.p-secFlow_cnt1 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-secFlow_cnt1 {
    width: 90.8333333333%;
    margin: -100px auto 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secFlow_cnt1 {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1 {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secFlow_cnt1_bg {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_bg {
    z-index: 0;
    background: rgba(255, 255, 255, 0.3);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), color-stop(10%, rgba(255, 255, 255, 0.6)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 10%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 10%);
    width: 28.2666666667vw;
    height: 99%;
    position: absolute;
    z-index: -1;
    top: 10.6666666667vw;
    left: 5.8666666667vw;
    overflow: hidden;
    -webkit-mask-image: url(../img/seller/flow_bg_mask_sp.svg);
            mask-image: url(../img/seller/flow_bg_mask_sp.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: bottom right;
            mask-position: bottom right;
    -webkit-mask-size: cover;
            mask-size: cover;
  }
  .p-secFlow_cnt1_bg:before {
    content: "";
    display: block;
    width: 500%;
    height: 150%;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(255, 255, 255, 0)), color-stop(25%, white), color-stop(26%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 25%, white 25%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, white 25%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 100%);
    background-size: 1.3333333333vw 1.3333333333vw;
    -webkit-transform: rotate(15deg) translate(-50%, 0%);
            transform: rotate(15deg) translate(-50%, 0%);
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 0.5;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    pointer-events: none;
  }
}
.p-secFlow_cnt1_item {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secFlow_cnt1_item {
    -webkit-flex-basis: 29.5412844037%;
        -ms-flex-preferred-size: 29.5412844037%;
            flex-basis: 29.5412844037%;
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 12vw;
  }
}
.p-secFlow_cnt1_item:before {
  content: "";
  display: block;
  width: 22px;
  height: 20px;
  background: url(../img/seller/ico_flow.svg) no-repeat center/contain;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-secFlow_cnt1_item:before {
    top: 0;
    left: 0;
    margin-left: -12.4223602484%;
    margin-top: 27.950310559%;
  }
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item:before {
    top: 0;
    right: 0;
    width: 3.7333333333vw;
    height: 4.5333333333vw;
    background: url(../img/seller/ico_flow_sp.svg) no-repeat center/contain;
    margin-right: 16.6666666667vw;
    margin-top: -6vw;
  }
}
.p-secFlow_cnt1_item:nth-of-type(1):before {
  display: none;
}
.p-secFlow_cnt1_item:nth-of-type(1) {
  z-index: 0;
}
.p-secFlow_cnt1_item:nth-of-type(1) ._bg {
  background: rgba(255, 255, 255, 0.3);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.2)), color-stop(10%, rgba(255, 255, 255, 0.6)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 10%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 10%);
  width: calc(1200px + (100vw - 1200px) / 2);
  min-height: 305px;
  height: 70%;
  position: absolute;
  z-index: -1;
  bottom: 0px;
  left: -60px;
  overflow: hidden;
}
.p-secFlow_cnt1_item:nth-of-type(1) ._bg:before {
  content: "";
  display: block;
  width: 400%;
  height: 400%;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(255, 255, 255, 0)), color-stop(25%, white), color-stop(26%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 25%, white 25%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, white 25%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 100%);
  background-size: 10px 10px;
  -webkit-transform: rotate(15deg) translate(-50%, 0%);
          transform: rotate(15deg) translate(-50%, 0%);
  opacity: 0.5;
  z-index: -1;
  top: 0;
  left: 0;
  pointer-events: none;
}
.p-secFlow_cnt1_item:nth-of-type(1) ._bg:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffdfd3;
  position: absolute;
  z-index: 0;
  left: 15px;
  bottom: 15px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item:nth-of-type(1) ._bg {
    display: none;
  }
}
.p-secFlow_cnt1_item:nth-of-type(6) {
  z-index: 0;
}
.p-secFlow_cnt1_item:nth-of-type(6) ._bg {
  background: rgba(255, 255, 255, 0.3);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.2)), color-stop(10%, rgba(255, 255, 255, 0.6)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 10%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 10%);
  width: calc(1200px + (100vw - 1200px) / 2);
  min-height: 305px;
  height: 70%;
  position: absolute;
  z-index: -1;
  bottom: 0px;
  right: -130px;
  overflow: hidden;
  -webkit-mask-image: url(../img/seller/flow_bg_mask.webp);
          mask-image: url(../img/seller/flow_bg_mask.webp);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
          mask-position: bottom right;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.p-secFlow_cnt1_item:nth-of-type(6) ._bg:before {
  content: "";
  display: block;
  width: 400%;
  height: 400%;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(255, 255, 255, 0)), color-stop(25%, white), color-stop(26%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 25%, white 25%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, white 25%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 100%);
  background-size: 10px 10px;
  -webkit-transform: rotate(15deg) translate(-50%, 0%);
          transform: rotate(15deg) translate(-50%, 0%);
  opacity: 0.5;
  z-index: -1;
  top: 0;
  left: 0;
  pointer-events: none;
}
.p-secFlow_cnt1_item:nth-of-type(6) ._bg:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffdfd3;
  position: absolute;
  z-index: 0;
  left: 15px;
  bottom: 15px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item:nth-of-type(6) ._bg {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._img1 {
    -webkit-flex-basis: 41.0666666667vw;
        -ms-flex-preferred-size: 41.0666666667vw;
            flex-basis: 41.0666666667vw;
    -webkit-flex-basis: 38.6666666667vw;
        -ms-flex-preferred-size: 38.6666666667vw;
            flex-basis: 38.6666666667vw;
    padding-top: 10.6666666667vw;
  }
}
.p-secFlow_cnt1_item ._img1 img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._img1 img {
    border-radius: 1.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secFlow_cnt1_item ._txt {
    padding: 25px 30px 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .p-secFlow_cnt1_item ._txt {
    padding: 25px 0px 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._txt {
    -webkit-flex-basis: 37.3333333333vw;
        -ms-flex-preferred-size: 37.3333333333vw;
            flex-basis: 37.3333333333vw;
  }
}
.p-secFlow_cnt1_item ._txt ._step {
  text-align: center;
}
.p-secFlow_cnt1_item ._txt ._step img {
  width: 85px;
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._txt ._step img {
    width: 15.7333333333vw;
  }
}
.p-secFlow_cnt1_item ._txt ._title {
  position: relative;
  margin: 15px auto 10px;
  font-size: 2.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._txt ._title {
    margin: 2.6666666667vw auto 2vw;
    font-size: 4vw;
    right: -2.6666666667vw;
  }
}
.p-secFlow_cnt1_item ._txt ._title:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0px;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
@media screen and (min-width: 769px) {
  .p-secFlow_cnt1_item ._txt ._title:before {
    margin-left: -10px;
  }
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._txt ._title:before {
    top: 52%;
    margin-left: -1.3333333333vw;
  }
}
.p-secFlow_cnt1_item ._txt ._title.-step1:before {
  width: 27px;
  height: 27px;
  background-image: url(../img/seller/flow_ico1.svg);
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._txt ._title.-step1:before {
    width: 3.4666666667vw;
    height: 3.6vw;
  }
}
.p-secFlow_cnt1_item ._txt ._title.-step2:before {
  width: 22px;
  height: 28px;
  background-image: url(../img/seller/flow_ico2.svg);
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._txt ._title.-step2:before {
    width: 2.8vw;
    height: 3.6vw;
  }
}
.p-secFlow_cnt1_item ._txt ._title.-step3:before {
  width: 21px;
  height: 33px;
  background-image: url(../img/seller/flow_ico3.svg);
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._txt ._title.-step3:before {
    width: 2.6666666667vw;
    height: 4.2666666667vw;
  }
}
.p-secFlow_cnt1_item ._txt ._title.-step4:before {
  width: 27px;
  height: 27px;
  background-image: url(../img/seller/flow_ico4.svg);
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._txt ._title.-step4:before {
    width: 3.4666666667vw;
    height: 3.6vw;
  }
}
.p-secFlow_cnt1_item ._txt ._title.-step5:before {
  width: 21px;
  height: 29px;
  background-image: url(../img/seller/flow_ico5.svg);
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._txt ._title.-step5:before {
    width: 2.6666666667vw;
    height: 3.7333333333vw;
  }
}
.p-secFlow_cnt1_item ._txt ._title.-step6:before {
  width: 27px;
  height: 20px;
  background-image: url(../img/seller/flow_ico6.svg);
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._txt ._title.-step6:before {
    width: 3.7333333333vw;
    height: 2.5333333333vw;
  }
}
.p-secFlow_cnt1_item ._txt ._body {
  border-top: 1px solid #323232;
  padding-top: 15px;
  margin-top: 10px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p-secFlow_cnt1_item ._txt ._body {
    margin-top: 2vw;
    padding-top: 2.6666666667vw;
    font-size: 2.8vw;
  }
}

/* -----------------------------------
.p-secInformation
------------------------------------ */
/* -----------------------------------
.p-secForm
------------------------------------ */
@media screen and (min-width: 769px) {
  .p-secForm {
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 768px) {
  .p-secForm {
    padding-bottom: 13.3333333333vw;
  }
}
.p-secForm_title {
  text-align: center;
}
.p-secForm_cnt1 {
  text-align: center;
}
@media screen and (min-width: 1001px) {
  .p-secForm_cnt1 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1001px) {
  .p-secForm_cnt1 ul li {
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
  }
}
@media screen and (max-width: 1000px) {
  .p-secForm_cnt1 ul li + li {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 1001px) {
  .p-secForm_cnt1 ul li a {
    width: 100%;
    min-width: 1px;
    max-width: 100%;
  }
}

/* -----------------------------------
Utility
------------------------------------ */
/*
 * _utility.scss
 */
/* -----------------------------------
print
------------------------------------ */
@media print {
  .u-printHidden {
    display: none;
  }
}

.u-printVisible {
  display: none;
}
@media print {
  .u-printVisible {
    display: block;
  }
}

/* -----------------------------------
font
------------------------------------ */
.u-fwb {
  font-weight: bold !important;
}

.u-fwn {
  font-weight: normal !important;
}

/* -----------------------------------
align
------------------------------------ */
.u-tc {
  text-align: center !important;
}

.u-tl {
  text-align: left !important;
}

.u-tr {
  text-align: right !important;
}

/* -----------------------------------
padding
------------------------------------ */
.u-mt5 {
  margin-top: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

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

.u-pt15 {
  padding-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

/* -----------------------------------
font-size rem
------------------------------------ */
.u-fz10px {
  font-size: 1rem;
}

.u-fz11px {
  font-size: 1.1rem;
}

.u-fz12px {
  font-size: 1.2rem;
}

.u-fz13px {
  font-size: 1.3rem;
}

.u-fz14px {
  font-size: 1.4rem;
}

/* -----------------------------------
font-size em
------------------------------------ */
.u-fz09em {
  font-size: 0.9em;
}

.u-fz10em {
  font-size: 1em;
}

.u-fz11em {
  font-size: 1.1em;
}

.u-fz12em {
  font-size: 1.2em;
}

.u-fz13em {
  font-size: 1.3em;
}

.u-fz14em {
  font-size: 1.4em;
}

/* -----------------------------------
clerfix
------------------------------------ */
.sec::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* -----------------------------------
display
------------------------------------ */
.u-d_b {
  display: block !important;
}

.u-d_n {
  display: none !important;
}

.u-d_ib {
  display: inline-block !important;
}

/* -----------------------------------
display adjust
------------------------------------ */
.u-smhide, .u-sphide, .u-middlehide, .u-tablethide, .u-basehide {
  display: block;
}

.u-smblock, .u-spblock, .u-middleblock, .u-tabletblock, .u-baseblock {
  display: none;
}

@media screen and (max-width: 1499px) {
  .u-baseblock {
    display: block;
  }
  .u-basehide {
    display: none !important;
  }
}
@media screen and (max-width: 1100px) {
  .u-tabletblock {
    display: block;
  }
  .u-tablethide {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-middleblock {
    display: block;
  }
  .u-middlehide {
    display: none !important;
  }
}
@media screen and (max-width: 589px) {
  .u-spblock {
    display: block;
  }
  .u-sphide {
    display: none !important;
  }
}
@media screen and (max-width: 374px) {
  .u-smblock {
    display: block;
  }
  .u-smhide {
    display: none !important;
  }
}
@media screen and (max-width: 650px) {
  .u-customhide {
    display: none !important;
  }
}
/* ===================================
Page
=================================== *//*# sourceMappingURL=style.css.map */