@charset "UTF-8";

:root {
  --lpSetSize: (100vw / 1400) * 0.71237;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

ul li {
  list-style: none;
}

.pc { display: block; }
.sp { display: none; }

/*-------------------------
 Common
-------------------------*/
.area-header {
    width: 100%;
}

#feature .feature_inner {
  box-sizing: border-box;
  overflow: clip;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: calc(100 * var(--lpSetSize));
}

#feature .left {
  width: 50%;
  /* position: sticky;
  top: 80px;
  height: calc(100vh - 80px); */
}

#feature .left .hero {
  position: sticky;
  top: 80px;
}

#feature .right {
  width: 50%;
}

#feature img,
svg,
video {
  width: 100%;
  height: auto;
  display: block;
}

.d-f {
  display: flex;
}

/*-------------------------
 View all
-------------------------*/
#feature .anker__fix--img {
  position: fixed;
  top: calc(820 * var(--lpSetSize));
  right: calc(10 * var(--lpSetSize));
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

#feature .anker__fix--img img {
  width: calc(110 * var(--lpSetSize));
}

#feature .anker__fix--img figure {
  width: calc(100 * var(--lpSetSize));
  height: calc(100 * var(--lpSetSize));
}

#feature .anker__fix--img.is-active {
  opacity: 1;
  visibility: visible;
}


/*-------------------------
 hero
-------------------------*/
#feature .hero_flex {
  height: 100%;
  display: flex;
  width: 88%;
  margin: 0 auto 0 calc(53 * var(--lpSetSize));
}

#feature .hero_flex img {
  width: 33.333%;
}

#feature .hero_ttl {
  width: calc(470 * var(--lpSetSize) * 0.7);
  margin-top: calc(102 * var(--lpSetSize));
  /* margin-left: calc(251 * var(--lpSetSize)); */
  margin-left: auto;
  margin-right: auto;
}

#feature .check_all_items_btn {
  margin: calc(85 * var(--lpSetSize)) auto 0 calc(336 * var(--lpSetSize));
}

#feature .check_all_items_btn img {
  width: 46.5%;
}

#feature .lead p {
  font-family: "shippori-mincho-b1", "Shippori Mincho", serif;
  font-size: 18px;
  line-height: 2.0833;
  letter-spacing: 0.01em;
  text-align: center;
}

#feature .lead p:nth-of-type(1) {
  margin-top: calc(58 * var(--lpSetSize));
  margin-left: calc(-70 * var(--lpSetSize));
}
#feature .lead p:nth-of-type(2) {
  margin-top: calc(56 * var(--lpSetSize));
  margin-left: calc(-58 * var(--lpSetSize));
}

#feature .lead p:nth-of-type(3) {
  margin-top: calc(58 * var(--lpSetSize));
  margin-left: calc(-86 * var(--lpSetSize));
}

#feature .lead p:nth-of-type(4) {
  margin-top: calc(65 * var(--lpSetSize));
  margin-left: calc(-72 * var(--lpSetSize));
}

#feature .lead p:nth-of-type(5) {
  margin-top: calc(22 * var(--lpSetSize));
  margin-left: calc(-52 * var(--lpSetSize));
}

#feature .lead p:nth-of-type(6) {
  margin-top: calc(60 * var(--lpSetSize));
  margin-left: calc(-38 * var(--lpSetSize));
}

#feature .border_line {
  border-top: 1px solid #930000;
  width: calc(224 * var(--lpSetSize));
  margin-top: calc(63 * var(--lpSetSize));
  margin-left: calc(344 * var(--lpSetSize));
}

/*-------------------------
 content
-------------------------*/
#feature .contents {
  margin-top: calc(130 * var(--lpSetSize));
  margin-left: calc(-15 * var(--lpSetSize));
  width: 96%;
}

#feature .content__item08 {
  position: relative;
  margin-top: calc(82 * var(--lpSetSize));
}

#feature .content__item08 img.img01 {
  display: block;
  margin-top: calc(22 * var(--lpSetSize));
  margin-left: auto;
  margin-right: auto;
  width: 56%;
}

#feature .content__item08 img.img02 {
  position: absolute;
  display: block;
  bottom: 10.5%;
  right: 6%;
  width: 30%;
}

#feature .all_items {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

#feature .all_items img {
  width: 7.5%;
  height: auto;
  margin: 0 calc(80 * var(--lpSetSize));
  display: block;
}

#feature .all_items::before,
#feature .all_items::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #930000;
}

/*-------------------------
 画面幅750px以下の設定（SP用）
-------------------------*/
@media screen and (max-width: 750px) {
  :root {
    --lpSetSize: (100vw / 750);
  }

  .sp { display: block; }
  .pc { display: none; }

  #feature .hero_flex {
    width: 100%;
    margin: 0;
  }

  #feature .right {
    width: 100%;
  }

  #feature .feature__inner {
    margin: 0; /* PC用の margin: auto をリセット */
  }

  #feature .hero {
    width: calc(750 * var(--lpSetSize));
    height: fit-content;
  }

  #feature .hero_flex {
    height: fit-content;
  }

  #feature .hero_ttl {
    width: calc(390 * var(--lpSetSize));
    margin-top: calc(80 * var(--lpSetSize));
    /* margin-left: calc(180 * var(--lpSetSize)); */
    margin-left: auto;
    margin-right: auto;
  }

  #feature .lead p {
    font-size: calc(24 * var(--lpSetSize));
    line-height: 2.0833;
    letter-spacing: 0.01em;
    margin-left: auto!important;
    margin-right: auto!important;
  }

  #feature .lead p:nth-of-type(1) {
    margin-top: calc(105 * var(--lpSetSize));
  }
  #feature .lead p:nth-of-type(2) {
    margin-top: calc(50 * var(--lpSetSize));
  }

  #feature .lead p:nth-of-type(3) {
    margin-top: calc(50 * var(--lpSetSize));
  }

  #feature .lead p:nth-of-type(4) {
    margin-top: calc(150 * var(--lpSetSize));
  }

  #feature .lead p:nth-of-type(5) {
    margin-top: calc(15 * var(--lpSetSize));
  }

  #feature .lead p:nth-of-type(6) {
    margin-top: calc(53 * var(--lpSetSize));
  }

  #feature .border_line {
    border-top: 1px solid #930000;
    width: calc(177 * var(--lpSetSize));
    margin-top: calc(52 * var(--lpSetSize));
    margin-left: calc(286 * var(--lpSetSize));
    margin-bottom: calc(-94 * var(--lpSetSize));
  }

  #feature .contents{
    margin-top: calc(105 * var(--lpSetSize));
    margin-left: 0;
    margin-bottom: calc(150 * var(--lpSetSize));
    width: 100%;
  }

  #feature .feature_inner {
    margin-bottom: calc(-10 * var(--lpSetSize));
  }

  #feature .all_items img {
  width: 18%;
  height: auto;
  margin: 0 calc(50 * var(--lpSetSize));
  display: block;
}
}