@charset "UTF-8";


/* ベース設定 */
:root {
    --primary: #ff4081; /* Woomy Pink */
    --primary-dark: #c60055;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

body {
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    font-feature-settings: "palt";
    color: #1C1C1C;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    letter-spacing: 0.05em;
    background: white;
    }

    body:before{
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background-size:cover;
}

/* 共通ユーティリティ */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.text_red { color: #ff4081; }
.text_b { font-weight: 700 !important; }

a { color: var(--primary); transition: 0.3s; }
a:hover { color: var(--primary-dark); text-decoration: none; }
.row {margin-right: 0px;margin-left: 0px;}
/* 下線マーカー */
.h2_bg {
    background: linear-gradient(transparent 70%, #ffdde9 70%);
    padding: 0 5px;
    border-radius: 4px;
}
h2{font-size:2.2rem;}
h4 {font-size: 1.5em!important; }

.text_blue {color: #3498db; }
.center {text-align: center; }
.column {margin-bottom: 140px !important; }

.table-bordered td, .table-bordered th{
  vertical-align: middle;
}

/* コンテンツセクション */
.section-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 80px 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.row.bg-light {
    background-color: var(--white) !important; /* 上書き */
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 20px 0;
    padding: 0 !important;
    overflow: hidden;
}

/* 画像周り */
.row.bg-light img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 20px;
}
.container2 {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/************************************

	ページ上部navbar
	 
************************************/
/*woomyのロゴ*/
.navbar{
    position: fixed;
    background: rgb(255 255 255);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
    width: 100%;
    z-index: 50;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}
.navbar>.container2{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.btn-pink {
    background: linear-gradient(135deg, #ff4081, #ff79b0);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-pink:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 64, 129, 0.4);
}
.login_box {
  float: right; }


/************************************

	トップ
	 
************************************/
.top-com-box {
    display: flex;
    align-items: center;
}

/*タイトル*/ 
.text-gradient{
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/*登録インフルエンサー23,000名以上*/
.line_box{
	position: fixed;
    right: 10px;
    bottom: 10px;
    transition: 1s;
    background: #06c755;
    color: #fff;
    height: 60px;
    width: 60px;
    border-radius: 50%;
	 z-index: 2;
	 box-shadow: 2px 2px 4px #666;
}
.line_box:hover{
	opacity:0.7;
}

.line_box_inner{
position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.line_box p{
	    color: #fff;
    line-height: 14px;
    font-size: 12px;
    text-align: center;
	font-weight: bold;
}







/**********************************
	右から左へ自動表示
************************************/ 
.scroll-gallery {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}
.scroll-track,
.scroll-track-second {
  display: flex;
  width: max-content;
  flex-wrap: nowrap; /* 折り返しを絶対に防ぐ */
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.scroll-track {
  animation: scroll-left 70s linear infinite;
  -webkit-animation: scroll-left 70s linear infinite;
}

.scroll-track-second {
  animation: scroll-right 70s linear infinite;
  -webkit-animation: scroll-right 70s linear infinite;
}

/*ブランドロゴ*/
.scroll-gallery img {
  height: 150px; /* 高さは自由に調整可 */
  width: auto;   /* アスペクト比を維持 */
  margin-right: 0px;
  flex-shrink: 0; /* 圧縮を防止（重要） */
  /* Safariで画像読み込み前に幅が0になるのを防ぐ */
  min-width: 1px;
}

/* 標準の定義を詳細に */
@keyframes scroll-left {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@-webkit-keyframes scroll-left {
  0% { -webkit-transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(-50%, 0, 0); }
}

@keyframes scroll-right {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@-webkit-keyframes scroll-right {
  0% { -webkit-transform: translate3d(-50%, 0, 0); }
  100% { -webkit-transform: translate3d(0, 0, 0); }
}

/* ホバー時にアニメーション停止（任意） */
.scroll-gallery:hover .scroll-track,
.scroll-gallery:hover .scroll-track-second {
  animation-play-state: paused;
}





/*一方、Woomyは商品提供のみでOK見出し部分*/
.alert-box-big{
  position: relative;
    padding: 2em 2.4em;
    background-color: #f700650f;
    border-radius: 100px;
}
/*ズラす線の部分*/
.alert-box-big::before{
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 100%;
    height: 100%;
    border: 1px solid rgb(255 77 140) !important;
    margin: unset;
    border-radius: 100px;
}
.alert-box-big h2{
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.2em;
    display: block;
}
  



/* 衝撃のデータ */
.alert-box{
  padding: 1em 1.5em;
  margin: 2em 0;
  background-color: #fff3cd;/*背景色*/
  box-shadow: 0 0 0 8px #fff3cd;/*背景色外側*/
  border: 2px dashed #ffffff;/*線*/
  color: #000000;/*文字色*/
    border-radius: 8px;
}
.alert-top{
  background: #00BCD4;
    margin-bottom: 0.5em;
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    padding: 0.5em 1em;
    border-radius: 8px;
    margin-left: 0.5em;
}
.alert-btm{
  background:#E91E63;
    margin-bottom: 0.5em;
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    padding: 0.5em 1em;
    border-radius: 8px;
    margin-left: 0.5em;
  }

.alert-box .alert-inner{
  padding: 1.2em .5em .5em;
}
/* つまり、PR効果に1000倍の差が出ます！ */
.point_box {
    background: #fff0f5;
    border-left: 5px solid var(--primary);
    padding: 15px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 10px;
}



/************************************
	 ｻｰﾋﾞｽﾌﾛｰ
************************************/
ul {
  padding: 0;
}
li {
  list-style-type: none;
}
dd {
  margin-left: 0;
}

.flow {
  padding-left: 120px;
  position: relative;
}
.flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
}
.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 8vh;
}
.flow > li .icon {
  font-size: 12px;
  color: #fff;
  background: rgb(107,144,219);
  background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
  background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 8px 20px;
  display: block;
  position: absolute;
  top: 0;
  left: -120px;
  z-index: 1;
}
.flow > li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #66d5e9;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flow > li dl {
  padding-left: 70px;
  position: relative;
}
.flow > li dl::before,
.flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}
.flow > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #6b90db;
  border-radius: 50%;
  left: -4px;
}
.flow > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}
.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #3498db;
  margin-bottom: 1vh;
}
/* ステップフロー */
ul.flow {
    list-style: none;
    padding: 0;
    position: relative;
}
ul.flow li {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 5px solid var(--primary);
}
ul.flow li .icon {
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}
ul.flow dt {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-dark);
}




/************************************
	 質問
************************************/
/* FAQ アコーディオン */
.accordion {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
}
.accordion-hidden { display: none; }

/* Question部分 */
.accordion-op {
display: block;
    padding: 20px;
    background: #fff;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    color: var(--text-dark);
    transition: 0.3s;
}
.accordion-op:hover { background: #fafafa; color: var(--primary); }
.accordion-cl {
    display: none;
    padding: 20px;
    background: #fcfcfc;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
    font-size: 0.95rem;
}
.accordion-hidden:checked + .accordion-op + .accordion-cl {
    display: block;
    animation: fadeIn 0.3s ease;
}
.checkbox{
  padding-left: 5px;
  position:relative;
  margin-right: 5px;
  color:#003569;
  width: 20px;
  height: 20px; 
}




/************************************

	ラストfoamまわり
	 
************************************/

.h2_text{
  font-size: 2rem;
}
/* 統計セクション（ピンク背景） */
.bg_pink {
    background: linear-gradient(135deg, #ff4081, #ff80ab);
    color: #fff;
    padding: 60px 0;
}
/* フォーム*/
form.form-horizontal {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    height: auto;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 64, 129, 0.25);
}




/************************************

	 footer
	 
************************************/
#footer {
  padding: 10px 0;
  width: 100%;
  text-align: center;
  background-color: #000; }

#footer p {
  color: #fff;
  font-size: 14px; }





.fluffy {
  /* アニメーション名 アニメーションにかかる時間 アニメーションの繰り返し回数 */
  /* fluffy 10秒 無限ループ */
  animation: fluffy 10s infinite;
}

@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.fluffy_delayed {
  /* アニメーション名 アニメーションにかかる時間 アニメーションの繰り返し回数 */
  /* fluffy 10秒 2秒ずらし　無限ループ */
  animation: fluffy 10s infinite;
  animation-delay: -2s;
}

@keyframes fluffy_delayed {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}










@media (min-width: 1536px) {
    .container2 {
        max-width: 1536px;
    }
}
@media (min-width: 1536px) {
    .container2 {
        max-width: 1140px;
    }
}
@media (min-width: 1200px) {
    .container2 {
        max-width: 1140px;
    }
}




@media (max-width: 767px) {
p {font-size: 14px;}
.navbar-brand,.btn-pink, .btn-outline-secondary {font-size: 0.8em;}

/*ブランドロゴ*/
.scroll-gallery img {
  height: 100px; /* 高さは自由に調整可 */
}
.grid {
    display: block!important;
}
.section-card { padding: 60px 10px; }
.gap-y-16{row-gap: 2rem!important;}
.text-3xl{
  font-size: 1.1rem !important;
  line-height: 1.5rem !important;
}
.text-4xl{
  font-size: 2rem !important;
}
.px-6 {
    padding-left: 1rem!important;
    padding-right: 1rem!important;
}
.top-com-box p{
  font-size: 1em;
}

h1 {
  line-height: 1.2;
}
h2{
	font-size:1.0rem;
}
.alert-box-big h2{
  font-size: 1.5em;
}
.alert-box-big{
    position: relative;
    padding: 1em 1.2em;
    background-color: #f700650f;
    border-radius: 10px;
}
.alert-box-big::before{
    border-radius: 10px;
}

.table-bordered{
  font-size: 12px;
}
/************************************
	 ｻｰﾋﾞｽﾌﾛｰ
************************************/
.flow{
	padding-left: 0;
}
.flow > li dl::before{
	width: 0px;
    height: 0px;
}
	.flow > li dl {
    padding-left: 0px;
    left: 0px;
    top: 0px;
}
.flow::before {
        left: 20%;
}
.flow > li dl::before,
.flow > li dl::after {
  content: none;
}
.flow > li .icon{
	left: -10px;
  top: -10px;
}
.flow > li:not(:last-child) {
    margin-bottom: 12vh;
}
.flow > li .icon::after {
    border-width: 0px;
    position: absolute;
    top: 115%;
    left: 40%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #69b6e3;
    z-index: 0;

}
.h2_text{
  font-size: 1rem;
}

@media (max-width: 576px) {
  .merit-img {
      max-width: 100px;
    margin: 0 auto 1em auto;
    }
h4 {
  font-size: 1.2em!important;
 }
}
}
/* スマホ（例: 768px以下）で「sp-hidden」を非表示 */
@media screen and (max-width: 768px) {
  .sp-hidden {
    display: none;/* 要素を消してスペースも詰める  */
  }
}

/* PC（例: 769px以上）で「pc-hidden」を非表示 */
@media screen and (min-width: 769px) {
  .pc-hidden {
    display: none;
  }
}