@charset "utf-8";

#pr {
  max-width: none;
  font-size: 18px;
  color: #ffffff;
}

#pr header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 120px;
  background-color: rgb(255, 255, 255, 0.1);
}
#pr header h1.title {
  width: 170px;
  height: 100%;
  margin-left: 25px;
  background-image: url(../../v1.0/logo/logo-transparent.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#pr header h1.title a {
  display: block;
  width: 100%;
  height: 100%;
}
#pr header .startBtn {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 220px;
  height: 55px;
  box-shadow: 2px 2px 5px -2px rgb(17, 17, 17, 0.6);
  border-radius: 100px;
  font-size: 20px;
  overflow: hidden; /* ← これ重要 */
}
/* 🔹 ブラー層（内側） */
#pr header .startBtn::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05); /* うっすら白 */
  z-index: -1;
  transition: background-color 0.3s;
}
#pr header .startBtn:hover::after {
  background-color: #e86273;
}
/* 🔹 グラデ枠 */
#pr header .startBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(232, 98, 115, 0.6),
    rgba(255, 255, 255, 0.4)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: 2;
}

#pr footer {
  position: relative;
  bottom: auto;
  left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  background-color: #111111;
  padding: 10px 0;
  font-size: 12px;
}
#pr footer #copyright {
  letter-spacing: 0.1em;
}

/* ファーストビュー */
.firstView {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
  padding: 120px 25px 0;
  font-weight: 700;
  color: #ffffff;
}
.firstView::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../../v1.0/img/hp-items/background-image-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.firstView .contents {
  margin-bottom: 60px;
  padding-top: 65px;
}
.firstView .contents h2 {
  white-space: nowrap;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 32px;
  position: relative;
}
.firstView .contents h2 span {
  font-size: 44px;
}
.firstView .contents h2::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgb(255, 255, 255, 0.6) 0%, rgb(255, 255, 255, 0) 100%);
}
.firstView .contents h3 {
  margin-top: 45px;
  line-height: 1.7;
  font-size: 26px;
}
.firstView .contents .startBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  height: 75px;
  margin-top: 45px;
  background-color: #e86273;
  box-shadow: 2px 2px 5px -2px rgb(17, 17, 17, 0.6);
  border-radius: 100px;
  font-size: 24px;
}
.firstView .imageItem {
  width: 50%;
  height: 100%;
  background-image: url(../../v1.0/img/hp-items/phone-sample-image.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* セクション */
section.mianSec {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 160px 25px;
  position: relative;
}
section.mianSec::before {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
  rgb(255, 255, 255, 0) 0%,
  rgba(255, 168, 179, 0.8) 50%,
  rgb(255, 255, 255, 0) 100%);
}
section .subtitle {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
}
section .subtitle h3 {
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  position: relative;
}
section .subtitle h3::before,
section .subtitle h3::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 25%;
  max-width: 600px;
  height: 3px;
}
section .subtitle h3::before {
  left: 0;
  background: linear-gradient(90deg,
  rgb(255, 255, 255, 0) 0%,
  rgb(255, 255, 255, 0.6) 50%,
  rgb(232, 98, 115, 0.8) 100%);
}
section .subtitle h3::after {
  right: 0;
  background: linear-gradient(90deg,
  rgb(232, 98, 115, 0.8) 0%,
  rgb(255, 255, 255, 0.6) 50%,
  rgb(255, 255, 255, 0) 100%);
}

/* サービス */
.serviceSec {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 160px 0;
  position: relative;
}
.serviceSec .item {
  width: 100%;
  max-width: 450px;
  margin: 0 25px 60px;
  padding: 25px;
  box-shadow: 2px 2px 5px -2px rgb(17, 17, 17, 0.6);
  border-radius: 12px;
  position: relative;
  overflow: hidden; /* ← これ重要 */
}
/* 🔹 ブラー層（内側） */
.serviceSec .item::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05); /* うっすら白 */
  z-index: 0;
}
/* 🔹 グラデ枠 */
.serviceSec .item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(232, 98, 115, 0.6),
    rgba(255, 255, 255, 0.4)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: 2;
}
/* 🔹 コンテンツ */
.serviceSec .item > * {
  position: relative;
  z-index: 3;
}
.serviceSec .item h4 {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 85px;
  padding-left: 65px;
  line-height: 1.7;
  font-size: 22px;
  position: relative;
}
.serviceSec .item h4::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgb(255, 255, 255, 0.6) 0%, rgb(255, 255, 255, 0) 100%);
}
.serviceSec .item h4::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 55px;
  height: 55px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.serviceSec .item.cards h4::after {
  background-image: url(../../v1.0/img/hp-items/icon-image1.svg);
}
.serviceSec .item.pages h4::after {
  background-image: url(../../v1.0/img/hp-items/icon-image2.svg);
}
.serviceSec .item.chat h4::after {
  background-image: url(../../v1.0/img/hp-items/icon-image3.svg);
}
.serviceSec .item p {
  min-height: 130px;
  padding-top: 35px;
  line-height: 1.7;
  font-size: 20px;
}

/* トライアル */
.trialSec {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 160px 0;
  position: relative;
}
.trialSec::before {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
  rgb(255, 255, 255, 0) 0%,
  rgba(255, 168, 179, 0.8) 50%,
  rgb(255, 255, 255, 0) 100%);
}
.trialSec .item {
  width: 100%;
  max-width: 290px;
  min-width: 270px;
  margin: 0 25px 60px;
  padding: 25px;
  box-shadow: 2px 2px 5px -2px rgb(17, 17, 17, 0.6);
  border-radius: 12px;
  position: relative;
  overflow: hidden; /* ← これ重要 */
}
/* 🔹 ブラー層（内側） */
.trialSec .item::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05); /* うっすら白 */
  z-index: 0;
}
/* 🔹 グラデ枠 */
.trialSec .item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(232, 98, 115, 0.6),
    rgba(255, 255, 255, 0.4)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: 2;
}
/* 🔹 コンテンツ */
.trialSec .item > * {
  position: relative;
  z-index: 3;
}
.trialSec .item h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65px;
  font-size: 22px;
  position: relative;
}
.trialSec .item h4::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgb(255, 255, 255, 0.6) 0%, rgb(255, 255, 255, 0) 100%);
}
.trialSec .item p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65px;
  font-size: 20px;
}

/* よくある質問 */
section.faqSec {
  max-width: 900px;
}
.faqSec .row {
  height: 80px;
  margin-bottom: 30px;
  padding: 0 25px;
  box-shadow: 2px 2px 5px -2px rgb(17, 17, 17, 0.6);
  border-radius: 12px;
  position: relative;
  overflow: hidden; /* ← これ重要 */
  cursor: pointer;
  transition: height 0.3s;
}
/* 🔹 ブラー層（内側） */
.faqSec .row::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05); /* うっすら白 */
  z-index: -1;
}
/* 🔹 グラデ枠 */
.faqSec .row::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(232, 98, 115, 0.6),
    rgba(255, 255, 255, 0.4)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: 2;
}
.faqSec dt {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 80px;
  font-size: 20px;
}
.faqSec dd {
  margin: 20px 0;
  line-height: 1.7;
  font-size: 20px;
  position: relative;
}
.faqSec dd::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(255, 255, 255, 0.6) 0%, rgb(255, 255, 255, 0.2) 100%);
}

/* 背景ブラック */
.blackContainer {
  padding: 210px 0;
  background: linear-gradient(180deg,
  rgb(17, 17, 17, 0) 0%,
  #111111 30%,
  #111111 80%,
  rgb(17, 17, 17, 0) 100%);
}
.blackContainer .mianSec.tool {
  padding-top: 0;
  padding-bottom: 60px;
}

/* ツール */
.mianSec.tool .detail {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 160px;
}
.mianSec.tool .detail .image {
  width: calc(100% - 620px);
  min-height: 640px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
/* 名刺保存 */
.mianSec.tool-cards .detail .image {
  background-image: url(../../v1.0/img/hp-items/phone-tool-image1.webp);
}
/* ページ作成 */
.mianSec.tool-pages .detail .image {
  background-image: url(../../v1.0/img/hp-items/phone-tool-image2.webp);
}
/* シェア */
.mianSec.tool-share .detail .image {
  background-image: url(../../v1.0/img/hp-items/phone-tool-image3.webp);
}
/* AIチャット */
.mianSec.tool-ai .detail .image {
  background-image: url(../../v1.0/img/hp-items/phone-tool-image4.webp);
}
/* テキスト */
.mianSec.tool .detail .text {
  width: 620px;
}
.mianSec.tool .detail h4 {
  line-height: 1.7;
  font-size: 28px;
  font-weight: 700;
}
.mianSec.tool .detail p {
  margin-top: 25px;
  line-height: 2;
  font-size: 26px;
}

/* ラストビュー */
.lastView {
  padding: 60px 25px;
  background: linear-gradient(180deg, rgb(17, 17, 17, 0) 0%, #111111 50%);
}
/* はじめるボタン */
.lastView .startAccess {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 60px;
  font-size: 16px;
}
.lastView .startAccess p {
  position: relative;
}
.lastView .startAccess p::before {
  content: '▶';
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
}
.lastView .startAccess .startBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 45px;
  margin-left: 35px;
  background-color: #e86273;
  box-shadow: 2px 2px 5px -2px rgb(17, 17, 17, 0.6);
  border-radius: 100px;
}
/* 外部リンク */
.lastView .links {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
  font-size: 14px;
}
.lastView .links li {
  margin-top: 20px;
  padding-right: 35px;
  position: relative;
}
.lastView .links li::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,
  rgb(232, 98, 115, 0.8) 0%,
  rgb(255, 255, 255, 0.6) 50%,
  rgb(255, 255, 255, 0) 100%);
  transition: width 0.3s;
}
.lastView .links li:hover::before {
  width: calc(100% - 25px);
}

@media screen and (max-width:1340px) {
  
  .firstView .contents {
    padding-top: 20px;
  }
  .firstView .imageItem {
    height: auto;
    min-height: 560px;
    background-position: top;
  }
}

@media screen and (max-width:1200px) {
  #pr {
    font-size: 16px;
  }

  .firstView .contents h2 {
    font-size: 32px;
  }
  .firstView .contents h2 span {
    font-size: 46px;
  }
  .firstView .contents h3 {
    font-size: 16px;
  }
  .firstView .imageItem {
    min-width: 560px;
    background-position: bottom;
  }
}

@media screen and (max-width:1100px) {
  .firstView .imageItem {
    min-width: 560px;
  }

  section .subtitle h3 {
    font-size: 26px;
  }
  .mianSec.tool .detail .image {
    width: 100%;
  }
  .mianSec.tool .detail .text {
    width: 100%;
    padding: 0 25px 60px;
  }
}

@media screen and (max-width:540px) {
  #pr header .startBtn {
    display: none;
  }

  .firstView .contents .startBtn {
    max-width: 280px;
    height: 55px;
    font-size: 20px;
  }
  .firstView .contents h2 {
    font-size: 16px;
  }
  .firstView .contents h2 span {
    font-size: 28px;
  }
  .firstView .imageItem {
    width: 100%;
    min-width: auto;
    min-height: 340px;
  }

  section .subtitle h3::before {
    opacity: 0;
  }
  section .subtitle h3::after {
    top: auto;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 35%;
  }

  .serviceSec .item p {
    font-size: 16px;
  }

  .blackContainer {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .mianSec.tool .detail .image {
    min-height: 340px;
  }

  .mianSec.tool .detail h4 {
    font-size: 20px;
  }
  .mianSec.tool .detail p {
    font-size: 18px;
  }

  .faqSec dt {
    line-height: 1.7;
    font-size: 18px;
  }
  .faqSec dd {
    font-size: 16px;
  }

  .lastView .links {
    font-size: 12px;
  }
  .lastView .startAccess p {
    font-size: 14px;
  }
  .lastView .startAccess .startBtn {
    width: 160px;
  }
}