body {
	margin: 0;
	padding: 0;

}
img {
    width: 100%;
    height: auto;
    vertical-align: middle;
    line-height: 0;
}
ul{
    
}
a {
    color: inherit;
    text-decoration: none;
    display: block; /* リンク領域の確保 */
}
.noto-sans-jp{
    font-family: "Noto Sans JP", sans-serif;
}
.inter{
     font-family: "Inter", sans-serif;
}
.Poppins{
    font-family: poppins, sans-serif;
}
.SofiaPro{
    font-family: sofia-pro, sans-serif;
}
#st_wrap{
	width: 100%;
	text-align: center;
	margin: 0 auto 0 0;
	display: block;
	overflow: hidden;
    background-size: 10px 10px;
    background-image: repeating-linear-gradient(-45deg, #7dd3ff 0, #7dd3ff 3px, #fff 0, #fff 50%);
    background-attachment: fixed;
}



.st_wrapper a { 
    text-decoration: none;
}

.st_wrapper {
    max-width: 700px;
	width: 100%;
    text-align: center;
    position: relative;
	margin: 0 auto;
    padding: 0 0;
	letter-spacing: 0.045em;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
	background-color: #fff;
}
.st_wrapper img {
	width: 100%;
	margin: 0 auto;
}

.st_wrapper p{
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7em;
    margin: 0 2%;
}
.st_wrapper img{
    width: 100%;
    vertical-align: bottom;
    line-height: 0;
    border: none;
}
.st_wrapper ul,
.st_wrapper li{
	padding: 0;
    list-style: none;
}

.st_wrapper a,
.st_wrapper a:hover,
.st_wrapper a:link{
    text-decoration: none;
    opacity: 1;
}


/* ==========================================================================
   ヘッダー
 ========================================================================== */
.header_wrap{
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    position: relative;
}
.visual {
    width: 100%;
    margin: 0 auto 5%;
    border-radius: 0;
    animation-name:fadeInAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
    display: inline-block;
    position: relative;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.icon{
    width: 26%;
    right: 15%;
    top: 63%;
    position: absolute;
}
.lead{
    font-size: 25px;
    text-align: center;
    margin: 5% auto 10%;
    display: inline-block;
    position: relative;
    font-weight: 700;
    line-height: 2em;
}






/* ==========================================================================
   コンテンツ
 ========================================================================== */

.wrap_content{
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    text-align: center;
}


/* ================================================ 
タブ切り替え
================================================ */
.tabs {
  width: 100%;
  background-color: #fff;
  margin: 0 auto 0;
  display: flex;
  flex-wrap: wrap;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*上部タブのスタイル*/
.tab_item {
  width: calc(100%/3);
  height: 70px;
  padding-top: 3.5%;
  background-color: #cbedff;
  line-height: 1.2;
  font-size: 24px;
  text-align: center;
  color: #81c5fa;
  display: block;
  transition: all 0.2s ease;
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  opacity: 1; /* 非選択時は半透明 */
  box-sizing: border-box;
  cursor: pointer;
  order: 1;     /* 最上部に並べる */
}

.tab_item span {
  font-size: 60%;
  line-height: 1.2;
}

/* 下部タブのスタイル */
.tab_item2 {
    width: calc(100%/3);
    height: 70px;
    padding-top: 3.5%;
    background-color: #cbedff;
    line-height: 1.2;
    font-size: 24px;
    text-align: center;
    color: #81c5fa;
    font-family: poppins, sans-serif;
    display: block;
    transition: all 0.2s ease;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
    opacity: 1;
    box-sizing: border-box;
    cursor: pointer;
    order: 3;
    margin-top: 0; /* コンテンツと直結させるために0に固定 */
}


/* タブ切り替えの中身のスタイル */
.tab_content {
  display: none;
  width: 100%;
  clear: both;
  overflow: hidden;
  order: 2;     /* タブとタブの間に挟む */
  margin: 0;    /* 余計なマージンを完全にリセット */
  padding: 0;   /* 余計なパディングを完全にリセット */
}

/* コンテンツ内の画像すべてに適用し、画像下の数ミリの隙間を消す */
.tab_content img {
  width: 100%;
  margin: 0;
  display: block; /* インライン要素特有の下隙間を解消 */
}

/* ==========================================================================
   選択（チェック）された時の連動ロジック
   ========================================================================== */

/* 1. 選択されているタブのコンテンツを表示 */
#WOMEN:checked ~ #women_content,
#MEN:checked ~ #men_content,
#KIDS:checked ~ #kids_content {
  display: block;
}

/* 2. 選択されている上部タブのスタイルを変える */
#WOMEN:checked ~ [for="WOMEN"].tab_item,
#MEN:checked ~ [for="MEN"].tab_item,
#KIDS:checked ~ [for="KIDS"].tab_item {
    opacity: 1;
    background-color: #2d9ff7 !important; 
    color: #FFFFFF !important;/* HTMLの指定色に合わせる場合はここで上書き */
}

/* 3. 選択されている下部タブのスタイルを変える（追加部分） */
#WOMEN:checked ~ [for="WOMEN"].tab_item2,
#MEN:checked ~ [for="MEN"].tab_item2,
#KIDS:checked ~ [for="KIDS"].tab_item2 {
  opacity: 1;
  background-color: #2d9ff7 !important;
    color: #FFFFFF !important;/* 上部と同様に赤背景でくっきり表示 */
}

/*-----------------------------------------
   その他ボックス装飾スタイル
----------------------------------------- */
.out_box {
    width: 100%;
    margin: 0 auto;
    padding: 8% 0 10% 0;
    background: #b3e8ff;
    background: linear-gradient(147deg,rgba(179, 232, 255, 1) 0%, rgba(45, 159, 247, 1) 100%);
    background-attachment: fixed;
    display: inline-block;
    position: relative;
    
}
.in_box {
    width: 94%;
    text-align: center;
    margin: 10% auto 0;
    position: relative;
    display: inline-block;
    background: #e0f7ff;
}

.in_box .inner{
    width: 90%;
    text-align: center;
    margin: 0% auto;
    position: relative;
    display: inline-block;
}

.btn_sale{
    width:80%;
    text-align: center;
    margin: 5% auto;
    position: relative;
}
.btn_sale img{
    border: #2d9ff7 1px solid;
}
.search_heading{
    width: 100%;
    display: inline-block;
    position: relative;
    background: url(../images/bar_bg.jpg);
}
.search_heading img{
    width: 50%;
    text-align: center;
    margin: 2.5% auto;
}
.category_box{
    width: 100%;
    display: inline-block;
    margin: 10% auto 8%;
    position: relative;
    text-align: center;
}
.search_ttl{
    font-size: 25px;
    text-align: center;
    margin: 0 auto 7%;
    position: relative;
    font-weight: 700;
    line-height: 1.3em;
}
.search_ttl span{
    font-size: 70%;
    font-family: poppins, sans-serif;
    font-weight: 300;
    
}
.category_box .category{
    width: 100%;
    display: inline-block;
    position: relative;
}
.category_box .category ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:4%;
}
.category_box .category ul li{
    display: inline-block;
    position: relative;
}
.category_box .circle-image img {
    border-radius: 50%; 
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center; 
    aspect-ratio: 1 / 1; 
    border: #3094f7 1px solid;
}
.category_box .txt{
    font-size: 14px;
    text-align: center;
    margin: 5% auto;
    line-height: 1em;
    font-weight: 500;
    letter-spacing: 0px;
    
}
.keyword_box{
    width: 94%;
    display: inline-block;
    margin: 5% auto 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.keyword-btnbox{
	border: none;
	font-family: inherit;
	cursor: pointer;
	padding: 0;
	display: inline-block;
	margin: 2% auto;
	outline: none;
	position: relative;
	text-align: center;
    font-weight: 400;
    font-style: normal;
}
.keyword-btn {
	width: 100%;
	margin: 1.5% 0% 1.5% 0;
	font-size: 19px;
	line-height: 1.65em;
	color: #000;
	background-color: #fff;
    border: #3094f7 1px solid;
	display: flex;
	border-radius: 0px;
	float: left;
	box-sizing: border-box;
	font-weight: 500;
    letter-spacing: 0.05em;
    text-align: left;
    align-items: center;
}

a.keyword-btn:before {
	display: block;
	content: "";
	position: absolute;
	top: 42%;
	right: 5px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 12px solid transparent;        /*top right bottom を透明化 */ 
	border-left: 12px solid #3094f7;
    text-decoration: none;
}
.keyword-thum{
    width: 17%;
    margin-right: 5%;
    
}
.keyword-thum img{
    aspect-ratio: 1 / 1;
    object-fit: cover;
}


.styling_box{
    width: 100%;
    display: inline-block;
    margin: 5% auto 10%;
    position: relative;
    text-align: center;
}
.styling_box .styling ul{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
    gap:3%;
}
.styling_box .styling ul li{
    position: relative;
    display: inline-block;
}
.styling_box .styling img{
    border: #3094f7 1px solid;
}
.styling-txt{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin: 8% auto;
    line-height: 1.7em;
}

.wave-line{
    width: 98%;
    text-align: center;
    margin: 10% auto 5%;
    position: relative;
    display: block;
}

/* ================================================ 
ブランドリスト
================================================ */

.brandlist_wrap{
    width: 90%;
    display: inline-block;
    margin: 15% auto 5%;
    position: relative;
    text-align: center;
}
.brandlist_lineup{
    width: 70%;
    text-align: center;
    margin: 5% auto;
}
.brandlist_box{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3%;
    position: relative;
}
.brandlist_box
.color_w{
    color: #f3535e;
}
.color_m{
    color: #629dff;
}
.color_kd{
    color: #ffe63f;
}
.color_ls{
    color: #48dab9;
}
.color_by{
    color: #c47ae5;
}
.ml_8{
    margin-left: 4%;
}
.ml_16{
    margin-left: 8%;
}
.ml_24{
    margin-left: 12%;
}
.ml_32{
    margin-left: 16%;
}





.footer_box{
    width: 100%;
    background: #b3e8ff;
    background: linear-gradient(147deg,rgba(179, 232, 255, 1) 0%, rgba(45, 159, 247, 1) 100%);
    display: inline-block;
    margin: 10% auto 0;
    position: relative;
    padding: 10% 0;
}
.footer_box .slogan{
    width: 40%;
    text-align: center;
    margin: 0 auto;
    position: relative;
    display: block;
}
.footer_box .foot_sns{
    width: 100%;
    margin: 6% auto;
    display: inline-block;
    position: relative;
}
.footer_box .foot_sns ul{
    width: 40%;
    text-align: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10%;
}
.footer_box .foot_sns ul li{
    position: relative;    
}
.footer_box .cp{
    width: 50%;
    text-align: center;
    margin: 0 auto;
    position: relative;
}


/* ================================================ 
ボタン
================================================ */
.btn {
	border: none;
	font-family: inherit;
	cursor: pointer;
	padding: 10px 20px;
	display: inline-block;
	margin: 2% auto;
	outline: none;
	position: relative;
	text-align: center;
    font-weight: 400;
    font-style: normal;
}

.btn-1{
	width: 100%;
	box-sizing: border-box;
	margin: 5% auto;
	font-size: 20px;
	line-height: 1.8em;
	color: #3094f7;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    font-weight: 500;
    border: #3094f7 1px solid;
    padding: 3% 0;
}

a.btn-1:before {
	display: block;
	content: "";
	position: absolute;
	top: 42%;
	right: 10px;
	width: 0;
	height: 0;
	margin-top: -9px;
	border: 14px solid transparent; 
	border-left: 16px solid #3094f7;
    transition: 0.3s;
    text-decoration: none;
}


.btn-5 {
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto 0;
    padding: 14px 0 30px 10px;
    text-align: left;
	font-size: 14.5px;
	line-height: 1.4em;
	color: #000;
	background-color: #fff;
	display: flex;
}
.btn-5 span {
	font-size: 60%;
	letter-spacing: 0.6em;
	position: absolute;
	top: 55%;
	left: 4.5%;
}
a.btn-5:before {
	display: block;
	content: "";
	position: absolute;
	top: 44%;
	right: 3px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 9px solid transparent;  
	border-left: 10px solid #b3b3b3;
    transition: 0.3s;
    color: #b3b3b3;
    text-decoration: none;
}




.sp {
	display: none;
}

.pc {
	text-align: center;
}

.clear {
    clear: both;
}




@media only screen and (max-width:768px){
    #st_wrap{
        background: #FFFFFF;
        background-attachment: scroll;
    }
	.st_wrapper {
		width: 100%;
	}
    
    .icon{
        width: 28%;
        right: 12%;
    }
    .lead{
        font-size: 16px;
    }
    
    .tab_item,
    .tab_item2{
        font-size: 15px;
        height: 50px;
        padding-top: 4.5%;
    }
    .btn_sale{
        width: 80%;
    }
    .btn_sale img{
        border: #2d9ff7 1px solid;
    }
    .search_heading img{
        width: 60%;
        margin: 3.5% auto;
    }
    .search_ttl{
        font-size: 20px;
    }
    .category_box .txt{
        font-size: 12px;
        line-height: 1.65em;
    }
    .keyword_box{
        width: 100%;
    }
    .keyword-btn{
        font-size: 14px;
        font-weight: 600;
    }
    .keyword-thum{
        width: 20%;
    }
    a.keyword-btn:before{
        border: 10px solid transparent;
    border-left: 10px solid #3094f7;
    }
    .styling_box .styling ul{
        gap:2%;
    }
    .styling-txt{
        font-size: 14px;
    }
    
    .brandlist_lineup{
        width: 100%;
        margin: 5% auto 10%;
    }
    .footer_box .foot_sns ul{
        width: 50%;
    }
    .footer_box .cp{
        width: 70%;
        margin: 0 auto 10%;
    }
    
    
    .btn-1 {
        margin: 2.5% auto;
        font-size: 15px;
        padding: 5% 0;
    }
    .btn-1 span {
        font-size: 120%;;
    }
    a.btn-1:before {
        top: 47%;
        border: 12px solid transparent;
        border-left: 16px solid #3094f7;
    }
    .btn-5 {
        font-size: 11px;
    }
    .btn-5 span {
        left: 6%;
    }
    .ml_8{
        margin-left: 8%;
    }
    .ml_16{
        margin-left: 16%;
    }
    .ml_24{
        margin-left: 24%;
    }
    .ml_32{
        margin-left: 32%;
    }
    .pc {
		display: none;
    }
    .sp {
		display: block;
    }


}

/* ================================================ 
　　　　　　　　　　　　CSS動き
================================================ */


/* ============ スクロールアニメーションCSS ============ */

.img-wrap {
  overflow: hidden;
  position: relative;
}

.img-wrap::before {
  animation: img-wrap 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fcff00;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

/* 遅延用 */
.img-wrap.delay::before {
  animation-delay: 0.5s;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}

.animation{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 0.8s;
}

.keyframe5{
  animation-name: anim_sc;
  transform: scale(0.85,0.85);
}

@keyframes anim_sc {
  100% {
    transform: scale(1,1);
  }
}