@charset "UTF-8";

/* ===========================================
 * Common
 * ======================================== */

/* 全体スタイル設定 */
html {
  font-size: 62.5%; /* 基本のフォントサイズを10pxに指定 */
}
body {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #000;
  background: #fff;
}

img {
  width: 100%;
  max-width: 100%;
}

a:link,a:visited{
	color: #fff;
	text-decoration: none;
}


.sp-only{
  display: block;
}

.pc-only {
  display: none;
}

.fade-in-target {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in-target.show {
  opacity: 1;
  transform: translateY(0);
}



/* ===== ボタン ========== */
.button-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px; /* スマホ用の隙間 */
}

.button-wrapper .fas{
  font-size: 16px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 41px;
 font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn i {
  margin-right: 5px;
  font-size: 1.7rem;
}

/* 色設定 */
.btn-red {
  background-color: #E51010;
}

.btn-blue {
  background-color: #006E8F;
}

/* ==========================
   PCサイズ：768px以上で上書き
   ========================== */
@media screen and (min-width: 768px) {
  .button-wrapper {
    justify-content: center;
    gap: 32px;
  }

  .button-wrapper .inner{
    max-width: 1160px;
    margin: 0 auto;
  }

  .btn {
    width: 312px;
    height: 86px;
    /* font-size: 18px;*/
     font-size: 2.4rem;
  } 

  .btn i {
    margin-right: 12px;
    font-size: 34px;
  }
}




/* ===== heardセクション ========== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 3.5%;
  height: 50px;
  background: #fff;
  box-sizing: border-box;
}

.logo {
  flex-shrink: 0;
  width: 32px;
}

.logo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

.header-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: nowrap; /* ← 折り返し防止 */
  min-width: 0; /* ← overflow: hidden と併用で必要 */
}

/* ナビゲーション */
.nav {
  display: none;
}

@media screen and (min-width: 768px) {
  .nav {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav li {
    display: inline-block;
  }

  .nav a {
    color: #000;
    font-weight: 500;
    font-size: 1.6rem;
    text-decoration: none;
    white-space: nowrap;
  }

  .nav a:hover,
  .nav a:active {
    color: #006e8f;
  }

.nav li:nth-child(1) a {
  width: clamp(120px, 16vw, 236px);
  font-size: clamp(1.2rem, 1vw + 0.5rem, 2rem);
}

.nav li:nth-child(2) a,
.nav li:nth-child(3) a {
  width: clamp(80px, 9vw, 130px);
  font-size: clamp(1.2rem, 1vw + 0.3rem, 2rem);
}


.nav a {
  display: inline-block;
  text-align: center;
  color: #000;
  font-weight: 500;
  font-size: 2rem;
  text-decoration: none;
  white-space: nowrap;
}


}

/* CTAボタンリスト */
.cta-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-list .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 8px;
  font-size: clamp(1.0rem, 0.5rem + 1.2vw, 2.0rem); /* フォントも縮む */
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  width: clamp(100px, 24vw, 282px); /* 最小100px、最大282px（例） */
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  flex-shrink: 1; /* ← 幅が足りないとき縮む */
}

.btn.red {
  background-color: #e51010;
}

.btn.blue {
  background-color: #006e8f;
}

@media screen and (min-width: 768px) {
  .header {
    height: 80px;
    padding-left: 24px;
    max-width: 1440px;
    margin: 0 auto;
  }

  .cta-list .btn {
    height: 80px;
  }

  .logo {
  width: 50px;
}

.btn:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}


/* ===== KVセクション ========== */
.kv {
  position: relative;
  width: 100%;
  padding:43px 8% 30px;
/* background: #000; */
}

.kv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  object-position: center;


}

.kv-dot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/kv/dot.png');
  background-repeat: repeat;
  background-size: 4px 4px; /* ここを固定するのがポイント */
  opacity: 0.9;
  z-index: 1;
}

.kv-black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);  /* 黒塗り・透過 */
  z-index: 2;
}

.kv-text {
  position: relative;
  z-index: 3;
  max-width: 100%;
  box-sizing: border-box;
}

.kv-text .h1-image {
  width: 100%;
  margin-bottom: 30px;
}

.kv-copy-image {
  width: 100%;
  margin-bottom: 30px;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .kv {
    height: 720px;
  }

  .kv-text {
    max-width: 1085px;
    margin: 0 auto;
  }

  .kv-text .h1-image {
  max-width: 754px;
  margin-bottom: 20px;
}

.kv-copy-image {
  max-width: 630px;
  margin: 0 auto;
  margin-bottom: 24px;
}

  }

  @media screen and (max-width: 767px) {
  .kv {
    height: auto; /* もしくはアスペクト比で調整 */
    /* aspect-ratio: 9 / 16; */
  }
}


/* ===== サンパチムービーの魅力セクション ===== */
.features {
  background: #fff;
  padding: 48px 8%;  /* 両サイド：30px */
}

.section-title {
  font-size:clamp(2rem, 1.2rem + 1vw, 3rem);
  font-weight: bold;
  margin-bottom: 40px;
  text-align: left;
  color: #006e8f;
  border-bottom: 1px solid #006e8f;
  padding-bottom: 5px;
}

.feature-block {
  margin-bottom: 40px;
}

.feature-block:last-child{
  margin-bottom: 0;
}

.feature-heading-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.feature-heading-wrap img {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.feature-heading {
  font-size: clamp(1.5rem, 1.198rem + 1.51vw, 2.6rem);
  font-weight: bold;
  margin: 0;
}

.feature-text {
  font-size: clamp(1.2rem, 1.010rem + 0.85vw, 2rem);
  line-height: 1.6;
  margin: 0;
}

.feature-text-underline{
  font-weight: 600;
  color:#ff413a ;
  background: linear-gradient(transparent 60%, #ffea00 60%);

}

@media screen and (min-width: 768px) {
  .feature-block:last-child{
  margin-bottom: 40px;
}

  .features .inner {
    max-width: 1160px;
    margin: 0 auto;
  }

  .feature-heading-wrap img {
    width: 100px;
  }
}

/* ===== 実績セクション ===== */
.works {
  padding: 0 5.8% 32px;
}

.works-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 16px;
  justify-content: space-between;
  background: #e9faff; 
  padding: 18px 5.8% 44px;
}

.work-item {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Youtube動画埋め込み */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin-bottom: 15px;
   /*border-radius: 12px; optional */
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}



@media (min-width: 768px) {
    .work-item {
    width: calc(50% - 8px);
  }
  .work-item h3 {
    min-height: 3.2em; /* 高さ揃え */
    display: flex;
    align-items: center; /* middle alignment */
    justify-content: center;
    text-align: center;
    margin-bottom: 8px;
    width: 100%;
  }

  .works .inner {
  max-width: 1160px;
   margin: 0 auto;
}
  .works-note-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center; /* middle alignment */
    gap: 16px;
  }
  
  .works-note-wrap .work-item,
  .works-note-wrap .works-note {
    width: 50%;
  }
  .works-note-wrap img {
    width: 100%;
    height: auto;
  }
  .works-note {
    text-align: left;
    margin: 0;
  }

  .works-grid {
  padding-top: 54px;
}

}

.work-item img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.work-title {
  /* font-size: clamp(1.3rem, 1vw, 2.8rem); */
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.6rem);
  font-weight: 500;
  margin: 0 0 4px;
  line-height: 1.4;
}

.label {
  display: inline-block;
  background: #fff480;
  font-size: clamp(0.9rem, 0.6rem + 1vw, 1.3rem); 
  padding: 0 6px;
  margin-right: 4px;
  border-radius: 4px;
  border: 1px solid #000;
  font-weight: normal;
}

.work-client,
.work-media {
  font-weight: 500;
  font-size: clamp(1.2rem, 0.832rem + 1.25vw, 2.0rem);
  /* margin: 5px 0; */
}

.work-client{
  margin-bottom: 3px;
}

.works-note {
  font-size: clamp(1.5rem, 1.076rem + 1.8vw, 2.6rem);
  font-weight: 600;
  margin-top: 40px;
  text-align: center;
}

/* .works-note .highlight {
  display: inline-block;
  color: #ff413a;
  font-weight: 600;
  font-size: clamp(2rem, 1.391rem + 2.44vw, 4rem);
  background: linear-gradient(transparent 60%, #ffea00 60%);
} */

.works-not-highlight{
  font-size: clamp(2rem, 1.391rem + 2.44vw, 4rem);
}


@media (max-width: 1000px) and (min-width: 769px) {
  .work-title {
    font-size: 1.7rem; /*タブレット */
  }

.work-client,
.work-media {
  font-size:1.4rem;
 
}
}




/* ===== チェックセクション ===== */
.inquiry-section {
  /* background: url("../images/other/bg_inquiry_sp.png") center center / cover no-repeat; */
  color: #fff;
  padding: 30px 8%;
  position: relative;
  z-index: 0;
   overflow: hidden;
}

.inquiry-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .inquiry-section {
    /* background: url("../images/other/bg_inquiry_pc.png") center center / cover no-repeat; */
  }
}

.in-dot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/kv/dot.png');
  background-repeat: repeat;
  background-size: 4px 4px; /* ここを固定するのがポイント */
  opacity: 0.9;
  z-index: 1;
}

.in-black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* 黒塗り・透過 */
  z-index: 2;
}


.inquiry-section .inquiry-inner{
  position: relative; /* ←これが必要 */
  z-index: 3;
}

.inquiry-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.inquiry-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 1em;
  font-size: clamp(1.2rem, 0.944rem + 1.13vw, 2.2rem);
  line-height: 1.6;
}

.inquiry-list li::before {
  content: "";
  background: url("../images/other/check.png") no-repeat center center / contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0.3em;
  left: 0;
}

.underline {
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent 70%, rgba(229, 16, 16, 0.5) 70%);
}

.inquiry-note {
  font-size: clamp(1.3rem, 1.044rem + 1.13vw, 2.2rem);
  font-weight: 500;
  line-height: 2.0;
  margin-bottom: 24px;
  text-align: center;
  padding: 12px 3%;
  border: 1px solid #fff;
}

@media screen and (min-width: 768px) {
 .inquiry-inner {
    max-width: 1160px;
    margin: 0 auto;
  }

  .inquiry-note {
    padding: 12px 0; 
    text-align: left;
    border: none;
  }
  .inquiry-list li::before {
    width: 28px;
    height: 28px;
    top: 0.2em;
  }

  .inquiry-list li {
    padding-left: 34px;
  }
}


/* ===== サンパチムービーとはセクション ===== */
.video-types {
  padding: 48px 8% 0px;
  background: #fff;
  text-align: center;
}

.video-types .lead {
  font-size: clamp(1.2rem, 0.5rem + 1vw, 2rem);/* SP12px pc20px */
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: left;
}

.video-type-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.video-type-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.3rem;
  font-weight: 500;
}

.video-type-list li img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  box-sizing: border-box;
  margin-bottom: 8px;
}

.video-type-list li span {
  display: inline-block;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .video-type-list {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .video-type-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .video-type-list li img {
    width: 80px;
    height: 80px;
  }
  .video-types .section-title,
  .video-types .lead {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .video-types {
    padding-bottom: 30px;
  }
  .video-types .inner {
    max-width: 1160px;
    margin: 0 auto;
  }
  
}

/* ===== 流れセクション ===== */
.features-section {
  padding: 40px 8% 32px;
  background: #fff;
  text-align: center;
}

.lead-title {
  font-size: clamp(1.5rem, 1.12rem + 1.6vw, 2.6rem);
  font-weight: bold;
  margin-bottom: 4px;
}

.lead-text {
  font-size: clamp(1.2rem, 0.5rem + 1vw, 2rem);/* SP12px pc20px */
  line-height: 1.6;
  margin-bottom: 26px;
}

.lead-text .highlight-red {
  color: #ff413a;
  background: linear-gradient(transparent 60%, #ffea00 60%);
  font-weight: bold;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  list-style: none;
  
}

.features-list li {
  margin-bottom: 32px;
}

.features-list li:last-child{
  margin-bottom: 0;
}

.features-image img {
  width: 100%;
  height: auto;
}

.flow-caption{
  text-align: left;
  display: block;
  font-size: 1.1rem;
  margin-top: 5px;
  font-weight: 600;
}


@media screen and (min-width: 768px) {
  .features-section {
    padding: 40px 8% 76px;
    text-align: left;
  }

  .features-section .inner{
    max-width: 1160px;
    margin: 0 auto;
  }

  .features-list li {
    width: auto;
  }
}


/* ===== 料金セクション ===== */
.price-section {
  background-color: #006e8e;
  padding: 20px 8% 30px;
  color: #fff;
  margin-bottom: 27px;
}

.price-section .section-title {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.price-note {
  font-size: clamp(1.2rem, 0.5rem + 1vw, 2rem);/* SP12px pc20px */
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 300;
}

.plan-wrap{
background-color: #fff;
padding: 24px 10px;
margin-bottom: 22px;
color: #000;
border-radius: 2px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .price-card {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.price-card-text {
  flex: 1;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0px;
  text-align: center;
  /* line-height: 1rem; */
}

.plan-title.sunpachi {
  color: #ff413a;
}

.price-amount {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.highlight {
  color: #ff413a;
}

.yen {
  font-size: 1.6rem;
}

.tax-included {
  font-size: 0.7rem;
  /* margin-left: 4px; */
  color: #ff413a;
}

.plan-tagline {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.plan-sunpachi .plan-tagline {
  color: #ff413a;
}

.plan-title.talent,
.highlight-talent,
.plan-talent .plan-tagline,
.plan-talent .tax-included {
  color: #8d40d9;  
}

.plan-title.vertical,
.highlight-vertical,
.plan-vertical .plan-tagline,
.plan-vertical .tax-included {
  color: #dc4c97;
}

.plan-title.success,
.highlight-success,
.plan-success .plan-tagline {
  color: #f26e21;
}

.plan-success .plan-tagline{
   letter-spacing: -0.5px; /*一文字落ちを調整 */
}

.price-label {
  font-size: 1rem;
  font-weight: 600;
  margin: 16px 0 4px;
  background: #000;
  color: #fff;
  display: inline-block;
  padding:3px 5px;
  border-radius: 4px;
}

.price-list {
  padding: 0;
  margin: 0;
}

.price-row {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.5em;
  row-gap: 6px;
  font-size: 1.1rem;
}

.price-row dt {
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.price-row dd {
  margin: 0;
}

.att{
  font-size: 0.8rem;
}

.price-section .red {
  color: #ff413a;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #ffea00 60%);
}

.half-circle-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.6rem;
}

.half-circle-list li {
  position: relative;
  padding-left: 1.0em;
  margin-bottom: 0em;
}

.half-circle-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 0.8em;
  height: 0.8em;
  background: #000;
  border-radius: 0 50% 50% 0;
  clip-path: inset(0 0 0 50%);
}

.usage {
  font-size: 1.1rem;
  line-height: 1.5;
}

.last-message{
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 23px;
}

.message-icon{
  width: 9.8%;
  margin: 0  auto 14px;
}

.pc-row-only{
  display: block;
}

.plan-talent-note{
  margin-top: 10px;
  font-size: 0.9rem;
}



@media screen and (min-width: 768px) {
  .price-section{
    margin-bottom: 50px;
    padding:72px 4% 60px  ;
  }

  .price-card {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }

  .plan-wrap{
    border-radius: 5px;
    padding: 24px 0px;
  }

  .price-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }

  .price-card-top {
    text-align: center;
    margin-bottom: 20px;
  }
  /* .price-section{
    padding-top:72px ;
  } */
  .double-card-row{
    display: flex;
    gap:24px;
  }

  .double-card-row .plan-wrap{
    width: 50%;
  }

  .price-card-row-only{
    padding: 0 30px;
  }

  .price-section .inner{
    max-width: 1160px;
    margin: 0 auto;
  }

  .price-card {
    padding:30px;
    align-items: flex-start;
    position: relative;
  }

  .price-card-img{
   width: clamp(180px, 20vw, 300px); /* 最小180px〜最大300pxの範囲で可変 */
  height: auto;
  }

  .plan-title{
    font-size: 3rem;
  }

  .plan-sunpachi{
    margin-top: 50px;
  }

  .price-list dt {
    position: relative;
    padding-left: 1.2em;
  }

  .price-list dt::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 0.8em;
    height: 0.8em;
    background: #000;
    border-radius: 0 50% 50% 0;
    clip-path: inset(0 0 0 50%);
  }
  

  .price-note {
    margin-bottom: 30px;
  }

  .price-amount {
    font-size: 5rem;
  }

  .yen{
    font-size: 2.7rem;
  }

  .tax-included{
    font-size: 1.2rem;
  }

  .plan-tagline{
    font-size: 2.0rem;
  }

  .price-label {
    font-size: 1.3rem;
    font-weight: 300;
  }

  .price-row dt {
    font-weight: normal;
  }

  .att{
    font-size: 1.8rem;
  }

  .plan-tagline,
  .price-row,
  .half-circle-list,
  .usage{
    font-size: 2rem;
  }
  .plan-success-note{
    font-size: 1.4rem;
  }

  .plan-talent-note{
  font-size: 1.4rem;
}

  .last-message{
    font-size: 2.0rem;
    font-weight: normal;
    line-height: 29px;
    background-color: #fff;
    padding: 24px 10px;
    margin-bottom: 22px;
    color: #000;
    box-sizing: border-box;
    max-width: 1160px;
    margin: 0 auto;
     border-radius: 5px;
  }

  .video-icon-pc{
    width: 48px;
  }

}

@media (max-width: 1000px) and (min-width: 769px) {
  
}


/* ===== 会社概要セクション ===== */
.company-info {
  padding: 48px 8%;
}

.company-table {
  font-size: clamp(0.9rem, 0.766rem + 0.69vw, 1.7rem);
  line-height: 1.6;
}

.company-table .row {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.company-table dt {
  white-space: nowrap;
}

.company-table dd {
  margin: 0;
}

.company-table .row:last-of-type {
  border-bottom: none;
}

.company-info-list li{
  margin-bottom: 10px;
}

.company-info-list li:last-child{
  margin-bottom: 0;
}


@media screen and (min-width: 768px) {
  .company-info .inner{
    max-width: 1160px;
    margin: 0 auto;
  }

  .company-table{
    width: 580px;
  }

  .company-info-list li{
  margin-bottom: 12px;
}

}


/* === footer）=== */
footer{
  font-size: clamp(0.7rem, 0.2rem + 1vw, 0.9rem);
  text-align: center;
  margin-bottom: 20px;
  font-weight: normal;
}



@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }



}