@charset "utf-8";

/*
==============
top.css
==============
*/

/* -----------------
■ mv
------------------- */
.mv {
  padding: 98px 0 60px;
  text-align: center;
}

.mv img {
  border-radius: 10px;
}

.anchor {
  display: flex;
  justify-content: center;
  max-width: 1232px;
  margin: 60px auto 0;
  padding: 0 20px;
  background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 14%, rgba(255, 255, 255, .3) 50%, rgba(255, 255, 255, .3) 88%, rgba(255, 255, 255, 0) 100%);
}

.anchor__box {
  position: relative;
  width: 300px;
}

.anchor__box::before,
.anchor__box:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 24px;
  transform: translateY(-50%);
  background-color: var(--color-gold);
}

.anchor__box::before {
  left: 0;
}

.anchor__box:last-child::after {
  right: 0;
}

.anchor__box a {
  position: relative;
  display: block;
  color: var(--primary-color);
  font-size: 16px;
  font-family: "Cardo", "Zen Old Mincho", serif;
  line-height: 4.5;
  text-align: center;
}

.anchor__box a::after {
  content: "";
  position: absolute;
  top: 33px;
  right: 18px;
  width: 12px;
  height: 6px;
  background: url(../img/top/icon_arrow_down.svg) no-repeat;
}

.anchor__box a:hover::after {
  animation: anchorMove 0.4s linear forwards;
}

@keyframes anchorMove {
  0% { top: 33px; }
  30% { top: 41px; opacity: 0; }
  40% { top: 41px; opacity: 0; }
  45% { top: 25px; opacity: 0; }
  100% { top: 33px; opacity: 1; }
}


@media screen and (max-width: 767px)
{
  .mv {
    width: calc(303 / var(--customW));
    margin: 0 auto;
    padding: calc(58 / var(--customW)) 0 0;
  }

  .mv img {
    border-radius: calc(10 / var(--customW));
  }

  .anchor {
    gap: calc(9 / var(--customW)) 0;
    flex-wrap: wrap;
    margin: calc(47 / var(--customW)) auto 0;
    padding: calc(19 / var(--customW)) 0;
  }

  .anchor__box {
    width: calc(151 / var(--customW));
  }

  .anchor__box:nth-of-type(2)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: calc(28 / var(--customW));
    transform: translateY(-50%);
    background-color: var(--color-gold);
  }

  .anchor__box::before,
  .anchor__box:last-child::after {
    height: calc(28 / var(--customW));
  }

  .anchor__box a {
    padding: calc(5 / var(--customW)) 0;
    font-size: calc(14 / var(--customW));
    line-height: 1.14;
  }

  .anchor__box:last-child a {
    line-height: 2.28;
  }

  .anchor__box a::after {
    top: calc(17 / var(--customW));
    right: calc(12 / var(--customW));
    width: calc(12 / var(--customW));
    height: calc(6 / var(--customW));
  }

  .anchor__box a:hover::after {
    animation: none;
  }

} /* media end */




/* -----------------
■ about
------------------- */
.about {
  position: relative;
  color: #fff;
}

.about__bg {
  position: sticky;
  top: 0;
  height: 100vh;
}

.about__bg::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.35) 0%, rgba(102, 102, 102, 0.35) 100%);
}

.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 1s;
}

.about.is-view .about__bg img {
  filter: blur(10px);
}

.about.is-view .about__bg::after {
  opacity: 1;
}


/* head */
.about-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 90px;
  text-align: center;
}

.deco__scroll {
  position: absolute;
  text-align: left;
  writing-mode: vertical-rl;
}

.about-head .deco__scroll {
  top: -278px;
  right: 48px;
}

.deco__scroll span {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100px;
  padding-left: 4px;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 1;
  letter-spacing: .12em;
}

.deco__scroll ::before,
.deco__scroll span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
}

.deco__scroll span::before {
  top: 0;
  height: 100%;
  background-color: #fff;
}

.deco__scroll span::after {
  top: -100%;
  height: 200%;
  background-color: var(--primary-color);
  animation: acrollLine 1.6s linear infinite;
}

@keyframes acrollLine {
  0% { top: -200%; }
  100% { top: 200%; }
}

.about__title {
  font-size: 80px;
  font-weight: normal;
  line-height: 1.5;
  text-shadow: 1px 0px 0px rgba(0,0,0,0.3);
}

.about-head .about__title {
  text-shadow: none;
}

.about.is-view .about__bottom {
  opacity: 0;
}

.about__icon {
  margin-top: 5px;
  text-align: center;
}

.about__icon-text {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.about__icon-img {
  margin-top: 14px;
  animation: scrollMove 1.6s linear infinite;
}

@keyframes scrollMove {
  0% { transform: translateY(0); opacity: 0; }
  25% { transform: translateY(15px); opacity: 1; }
  50% { transform: translateY(30px); opacity: 0; }
  75% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}


/* body */
.about-body {
  position: relative;
/*
  margin-top: 106px;
*/
  padding: 0 20px 160px;
}

.about__content {
  text-align: center;
}

.about__content:nth-of-type(n+2) {
  margin-top: 85px;
}

.about__subTitle {
  margin-top: 25px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 1px 0px 0px rgba(0,0,0,0.3);
}

.about__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  text-shadow: 1px 0px 0px rgba(0,0,0,0.3);
}

.about__text sup {
  font-size: 16px;
  vertical-align: text-bottom;
}

.about__text:nth-of-type(1) {
  margin-top: 25px;
}

.about__text:nth-of-type(n+2) {
  margin-top: 34px;
}

.about__text-wrap {
  display: inline-block;
}

.about__note {
  font-size: 15px;
  line-height: 2;
  text-shadow: 1px 0px 0px rgba(0,0,0,0.3);
}

.about__video {
  max-width: 1034px;
  margin: 130px auto 0;
  line-height: 0;
  cursor: pointer;
}

.about__video img {
  border-radius: 20px;
}


@media screen and (max-width: 767px)
{
  /* head */
  .about-head {
    padding-top: calc(106 / var(--customW));
  }

  .deco__scroll {
    text-align: left;
  }

  .about-head .deco__scroll {
    top: calc(-229 / var(--customW));
    right: calc(10 / var(--customW));
  }

  .deco__scroll span {
    height: calc(80 / var(--customW));
    padding-left: calc(3 / var(--customW));
    font-size: calc(14 / var(--customW));
  }

  .about__title {
    font-size: calc(40 / var(--customW));
  }

  .about__icon {
    margin-top: calc(17 / var(--customW));
  }

  .about__icon-text {
    font-size: calc(14 / var(--customW));
  }

  .about__icon-img {
    width: calc(44 / var(--customW));
    margin: calc(2 / var(--customW)) auto 0;
  }

  @keyframes scrollMove {
    0% { transform: translateY(0); opacity: 0; }
    25% { transform: translateY(calc(10 / var(--customW))); opacity: 1; }
    50% { transform: translateY(calc(20 / var(--customW))); opacity: 0; }
    75% { transform: translateY(0); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
  }


  /* body */
  .about-body {
/*
    margin-top: calc(106 / var(--customW));
*/
    padding: 0 calc(20 / var(--customW)) calc(122 / var(--customW));
  }

  .about__content:nth-of-type(n+2) {
    margin-top: calc(76 / var(--customW));
  }

  .about__subTitle {
    margin-top: calc(17 / var(--customW));
    font-size: calc(16 / var(--customW));
  }

  .about__text {
    font-size: calc(14 / var(--customW));
    line-height: 1.7;
  }

  .about__text sup {
    font-size: calc(12 / var(--customW));;
  }

  .about__text:nth-of-type(1) {
    margin-top: calc(19 / var(--customW));
  }

  .about__text:nth-of-type(n+2) {
    margin-top: calc(26 / var(--customW));
  }

  .about__note {
    font-size: calc(12 / var(--customW));
  }

  .about__video {
    margin-top: calc(87 / var(--customW));
  }

  .about__video img {
    border-radius: calc(15 / var(--customW));
  }

} /* media end */




/* -----------------
■ video
------------------- */
.video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg_mv.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 99;
}

.video__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1106px;
  padding: 0 36px;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  line-height: 0;
  z-index: 1;
}

.video__close {
  position: absolute;
  top: -70px;
  right: 0;
  font-size: 10px;
  cursor: pointer;
}

.video__close span {
  display: inline-block;
  position: relative;
  width: 3.6em;
  height: 3.6em;
}

.video__close span::before,
.video__close span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #737373;
}

.video__close span::before {
  transform: translateY(-50%) rotate(135deg);
}

.video__close span::after {
  transform: translateY(-50%) rotate(45deg);
}

.video iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}



@media screen and (max-width: 767px)
{

}




/* -----------------
■ system
------------------- */
.system {
  padding: 120px 40px 0;
}

.system-inner {
  max-width: 1233px;
  margin: 0 auto;
  padding: 72px 0 48px;
  background-color: rgba(255, 255, 255, 0.5);
}

.system__title {
  color: var(--color-blue);
  text-align: center;
  line-height: 1.5;
}

.system__title-en {
  font-size: 48px;
  font-weight: normal;
}

.system__title-ja {
  font-size: 40px;
  font-weight: bold;
}

.system__icon {
  margin-top: 21px;
  text-align: center;
}

.system__title2 {
  margin-top: 35px;
  color: var(--color-blue);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.system__title3 {
  margin-top: 24px;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}

.system__text {
  max-width: 1032px;
  margin: 8px auto 0;
  padding: 0 20px;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.system__text span {
  font-size: 13px;
}

.system__img {
  max-width: 1032px;
  margin: 38px auto 0;
  padding: 0 20px;
  text-align: center;
}

.system__img-caption {
  margin-top: 10px;
  color: var(--primary-color);
  font-size: 13px;
  line-height: 1;
  text-align: right;
}


@media screen and (max-width: 767px)
{
  .system {
    padding: calc(90 / var(--customW)) calc(18 / var(--customW)) 0;
  }

  .system-inner {
    padding: calc(30 / var(--customW)) 0 calc(30 / var(--customW));
  }

  .system__title-en {
    font-size: calc(32 / var(--customW));
  }

  .system__title-ja {
    font-size: calc(24 / var(--customW));
  }

  .system__icon {
    width: calc(60 / var(--customW));
    margin: calc(16 / var(--customW)) auto 0;
  }

  .system__title {
    font-size: calc(16 / var(--customW));
  }
    
  .system__title2 {
    margin-top: calc(17 / var(--customW));
    font-size: calc(16 / var(--customW));
    line-height: 1.5;
  }

  .system__title3 {
    margin-top: calc(12 / var(--customW));
    font-size: calc(14 / var(--customW));
    line-height: 1.71;
  }

  .system__text {
    margin-top: calc(9 / var(--customW));
    padding: 0 calc(18 / var(--customW));
    font-size: calc(14 / var(--customW));
    text-align: left;
  }

  .system__text span {
    display: block;
    margin-top: calc(3 / var(--customW));
    font-size: calc(12 / var(--customW));
  }

  .system__img {
    margin-top: calc(39 / var(--customW));
    padding: 0 calc(18 / var(--customW));
  }

  .system__img-caption {
    margin-top: calc(14 / var(--customW));
    font-size: calc(12 / var(--customW));
  }

} /* media end */




/* -----------------
■ feature
------------------- */
.feature {
  margin-top: 20px;
}

.feature-inner {
  position: sticky;
  top: 20px;
  padding: 0 40px;
}

.feature__title {
  color: var(--color-blue);
  text-align: center;
  line-height: 1.5;
}

.feature__list {
  position: relative;
  max-width: 1233px;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.5);
}

.feature__list-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 604px;
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
  box-sizing: border-box;
}

.feature__list-item.is-current {
  position: static;
  opacity: 1;
  pointer-events: all;
  z-index: 1;
}

.feature__list-item-column {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}

.feature__list-item-column-left,
.feature__list-item-head {
  text-align: center;
}

.feature__list-item-title {
  margin-top: 29px;
  color: var(--color-blue);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.7;
}

.feature__list-item-title-wrap {
  display: inline-block;
}

.feature__list-item-title-note {
  display: block;
  padding-right: 14px;
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.feature__list-item-text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 2;
}

.feature__list-item-text sup {
  font-size: 13px;
  vertical-align: text-bottom;
}

.feature__list-item-text span {
  font-size: 13px;
}

.feature__list-item-text2 {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.53;
}

.feature__list-item-column-right {
  padding-top: 15px;
  padding-right: 15px;
}

.feature__caption {
  max-width: 1233px;
  margin: 10px auto 0;
  font-size: 13px;
  line-height: 1.2;
}

.feature__list-item-component {
  display: flex;
  gap: 0 25px;
  max-width: 1112px;
  margin: 0 auto;
}

.feature__list-item-component-box {
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 10px;
  box-sizing: border-box;
}

.feature__list-item-component-box1 {
  width: 216px;
}

.feature__list-item-component-box2 {
  width: 871px;
}

.feature__list-item-component-box-head {
  background-color: #fff;
  text-align: center;
}

.feature__list-item-component-box-head-text1 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.feature__list-item-component-box-head-text2 {
  margin-top: 9px;
  color: var(--color-gold);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.feature__list-item-component-box1 .feature__list-item-component-box-head {
  padding: 6px 0 6px;
}

.feature__list-item-component-box2 .feature__list-item-component-box-head {
  padding: 6px 0 9px;
}

.feature__list-item-component-box-head-text2 span {
  font-size: 12px;
}

.feature__list-item-component-box-body {
  text-align: center;
}

.feature__list-item-component-box1 .feature__list-item-component-box-body {
  padding: 12px 0;
}

.feature__list-item-component-box1 .feature__list-item-component-box-body-img {
  padding: 0 10px;
}

.feature__list-item-component-box-body-text {
  margin: 10px -5px 0;
  color: var(--primary-color);
  font-size: 13px;
  line-height: 1.3;
}

.feature__list-item-component-box-body-text span {
  font-size: 12px;
}

.feature__list-item-component-box-list {
  display: flex;
  gap: 0 10px;
  padding: 16px 22px 10px;
}

.feature__list-item-component-box-list-item:nth-of-type(2) .feature__list-item-component-box-body-text {
  letter-spacing: -0.06em;
}

.feature__list-item-component-box-list-item:last-child .feature__list-item-component-box-body-text {
  margin: 10px -24px 0;
}

/* item1 */
.feature__list-item1 {
  padding: 32px 0 40px;
}

.feature__list-item1 .feature__list-item-body {
  margin-top: 20px;
  padding: 0 20px;
  text-align: center;
}


/* item2 */
.feature__list-item2 {
  padding: 32px 0 69px;
}

.feature__list-item2 .feature__list-item-body {
  margin-top: 53px;
  text-align: center;
}


/* item3 */
.feature__list-item3 {
  padding: 32px 0 69px;
}

.feature__list-item3 .feature__list-item-body {
  margin-top: 25px;
  text-align: center;
}


/* scroll */
.feature .deco__scroll {
  top: calc(50% - 131px);
  right: -100px;
  transform: translateY(-50%);
}


/* dot */
.feature__dot {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}

.feature__dot-item {
  width: 14px;
  height: 14px;
  margin: 14px 0;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
}

.feature__dot-item.is-current {
  background-color: var(--primary-color);
}


@media screen and (max-width: 1450px)
{
  .feature .deco__scroll,
  .feature__dot {
    right: -40px;
  }

} /* media end */



@media screen and (min-width: 768px) and (max-width: 1200px)
{
  .feature__list-item-text {
    font-size: clamp(14px, 1.05vw, 16px);
  }

  .feature__list-item-text2 {
    font-size: clamp(12px, 0.86vw, 13px);
  }

}


@media screen and (max-width: 767px)
{
  .feature {
    margin-top: calc(22 / var(--customW));
  }

  .feature-inner {
    top: calc(20 / var(--customW));
    padding: calc(0 / var(--customW)) calc(18 / var(--customW));
  }

  .feature__title {
    line-height: 1.5;
  }

  .feature__title-en {
    font-size: calc(32 / var(--customW));
  }

  .feature__title-ja {
    margin-left: calc(6 / var(--customW));
    font-size: calc(24 / var(--customW));
  }

  .feature__list {
    width: calc(320 / var(--customW));
    margin: calc(17 / var(--customW)) 0 0;
  }

  .feature__list-item {
    overflow-y: auto;
    height: calc(600 / var(--customW));
    max-height: calc(100vh - calc(40 / var(--customW)));
    box-sizing: border-box;
  }

  .feature__list-item-column {
    display: block;
  }

  .feature__list-item-icon {
    width: calc(60 / var(--customW));
    margin: 0 auto;
  }

  .feature__list-item-title {
    margin-top: calc(18 / var(--customW));
    font-size: calc(16 / var(--customW));
    line-height: 1.5;
  }

  .feature__list-item-title-note {
    padding-right: calc(20 / var(--customW));
    font-size: calc(12 / var(--customW));
  }

  .feature__list-item-text {
    margin-top: calc(10 / var(--customW));
    font-size: calc(14 / var(--customW));
    text-align: left;
  }
  
  .feature__list-item-text sup {
    font-size: calc(10 / var(--customW));
  }

  .feature__list-item-text2 {
    margin-top: calc(6 / var(--customW));
    font-size: calc(12 / var(--customW));
    text-align: left;
  }

  .feature__list-item-text span {
    font-size: calc(12 / var(--customW));
  }

  .feature__list-item-column-right {
    margin-top: calc(20 / var(--customW));
    padding-right: 0;
  }

  .feature__caption {
    margin: calc(6 / var(--customW)) 0 0;
    font-size: calc(12 / var(--customW));
    text-align: left;
  }

  .feature__list-item-component {
    display: block;
  }

  .feature__list-item-component-box {
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: calc(7 / var(--customW));
    box-sizing: border-box;
  }

  .feature__list-item-component-box1 {
    width: auto;
  }

  .feature__list-item-component-box2 {
    width: auto;
    margin-top: calc(18 / var(--customW));
  }

  .feature__list-item-component-box-head {
    padding: calc(10 / var(--customW)) 0 calc(10 / var(--customW));
  }

  .feature__list-item-component-box2 .feature__list-item-component-box-head {
    padding: calc(10 / var(--customW)) 0 calc(10 / var(--customW));
  }

  .feature__list-item-component-box-head-text1 {
    font-size: calc(12 / var(--customW));
  }

  .feature__list-item-component-box-head-text2 {
    margin-top: calc(6 / var(--customW));
    font-size: calc(14 / var(--customW));
  }

  .feature__list-item-component-box-head span {
    display: block;
    font-size: calc(12 / var(--customW));
  }

  .feature__list-item-component-box1 .feature__list-item-component-box-body-img {
    padding: 0 calc(12 / var(--customW));
  }

  .feature__list-item-component-box2 .feature__list-item-component-box-body-img {
    padding: 0;
  }

  .feature__list-item-component-box2 .feature__list-item-component-box-body-img {
    flex-shrink: 0;
    width: calc(50 / var(--customW));
  }

  .feature__list-item-component-box1 .feature__list-item-component-box-body {
    padding: calc(12 / var(--customW)) 0;
  }

  .feature__list-item-component-box-body-text {
    line-height: 1.1;
  }
  .feature__list-item-component-box1 .feature__list-item-component-box-body-text {
    margin: calc(11 / var(--customW)) 0 0;
    font-size: calc(14 / var(--customW));
  }

  .feature__list-item-component-box2 .feature__list-item-component-box-body-text {
    margin: 0;
    font-size: calc(10 / var(--customW));
    text-align: left;
  }

  .feature__list-item-component-box2 .feature__list-item-component-box-body-text span {
    font-size: calc(8 / var(--customW));
  }

  .feature__list-item-component-box-list {
    flex-wrap: wrap;
    gap: calc(16 / var(--customW)) calc(6 / var(--customW));
    padding: calc(18 / var(--customW)) calc(8 / var(--customW));
  }

  .feature__list-item-component-box-list-item {
    display: flex;
    align-items: center;
    gap: 0 calc(6 / var(--customW));
    width: 48%;
  }

  .feature__list-item-component-box-list-item:nth-of-type(2) .feature__list-item-component-box-body-text {
    letter-spacing: -0.06em;
  }

  .feature__list-item-component-box-list-item:last-child .feature__list-item-component-box-body-text {
    margin: 0;
  }

  /* item1 */
  .feature__list-item1 {
    padding: calc(30 / var(--customW)) calc(18 / var(--customW)) calc(48 / var(--customW));
  }

  .feature__list-item1 .feature__list-item-body {
    margin-top: calc(20 / var(--customW));
    padding: 0;
  }

  /* item2 */
  .feature__list-item2 {
    padding: calc(30 / var(--customW)) calc(18 / var(--customW)) calc(48 / var(--customW));
  }

  .feature__list-item2 .feature__list-item-body {
    width: calc(200 / var(--customW));
    margin: calc(20 / var(--customW)) auto 0;
  }

  /* item3 */
  .feature__list-item3 {
    padding: calc(30 / var(--customW)) calc(18 / var(--customW)) calc(48 / var(--customW));
  }

  .feature__list-item3 .feature__list-item-body {
    width: calc(240 / var(--customW));
    margin: calc(20 / var(--customW)) auto 0;
  }


  /* scroll */
  .feature .deco__scroll {
    top: calc(163 / var(--customW));
    right: calc(-27 / var(--customW));
    transform: none;
  }

  /* dot */
  .feature__dot {
    top: calc(300 / var(--customW));
    right: calc(-20 / var(--customW));
  }

  .feature__dot-item {
    width: calc(10 / var(--customW));
    height: calc(10 / var(--customW));
    margin: calc(14 / var(--customW)) 0;
    box-sizing: border-box;
  }

} /* media end */




/* -----------------
■ lineup
------------------- */
.lineup {
  margin-top: 120px;
  padding-bottom: 120px;
}

.lineup__title {
  color: var(--color-blue);
  font-size: 48px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}

.lineup__list-wrap {
  position: relative;
  margin-top: 26px;
}

.lineup__list-wrap::before,
.lineup__list-wrap::after {
  content: "";
  position: absolute;
  background-color: #fff;
}

.lineup__list-wrap::before {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.lineup__list-wrap::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.lineup__list-inner {
  display: flex;
  max-width: 1512px;
  margin: 0 auto;
}

.lineup__list-item {
  width: 50%;
  padding-bottom: 72px;
  text-align: center;
}

.lineup__list:nth-of-type(1) .lineup__list-item {
  padding-top: 24px;
}

.lineup__list:nth-of-type(2) .lineup__list-item {
  padding-top: 58px;
}

.lineup__list-item-title {
  color: var(--color-blue);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.7;
}

.lineup__list-item-img {
  margin-top: 55px;
}

.lineup__list-item-text1 {
  margin-top: 20px;
  color: var(--color-gold);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.lineup__list-item-text2 {
  margin-top: 10px;
  color: var(--color-blue);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
}

.lineup__list-item-btn {
  margin: 25px auto 0;
}



@media screen and (max-width: 767px)
{
  .lineup {
    margin-top: calc(60 / var(--customW));
    padding-bottom: calc(120 / var(--customW));
  }

  .lineup__title {
    font-size: calc(32 / var(--customW));
  }

  .lineup__list-wrap {
    margin-top: calc(20 / var(--customW));
  }

  .lineup__list-wrap::after {
    top: 49%;
  }

  .lineup__list-item {
    padding-bottom: calc(42 / var(--customW));
  }

  .lineup__list:nth-of-type(1) .lineup__list-item {
    padding-top: calc(20 / var(--customW));
  }

  .lineup__list:nth-of-type(2) .lineup__list-item {
    padding-top: calc(15 / var(--customW));
  }

  .lineup__list-item-title {
    font-size: calc(16 / var(--customW));
    line-height: 1.5;
  }

  .lineup__list:nth-of-type(2) .lineup__list-item-title {
    padding-top: calc(20 / var(--customW));
  }

  .lineup__list-item-img {
    width: calc(174 / var(--customW));
    margin: calc(24 / var(--customW)) auto 0;
  }

  .lineup__list-item-text1 {
    margin-top: calc(18 / var(--customW));
    font-size: calc(16 / var(--customW));
  }

  .lineup__list-item-text2 {
    margin-top: calc(8 / var(--customW));
    font-size: calc(14 / var(--customW));
  }

  .lineup__list-item-btn {
    margin: calc(20 / var(--customW)) auto 0;
  }

} /* media end */
