@charset "UTF-8";
/*初期設定*/
*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
body{
    min-width: 1280px;
    color: #333;
    font-family: serif;
}
html {
    scroll-behavior: smooth;
}
@media(max-width:767px){
    body{
        min-width: auto;/*初期値に戻る*/
    }
}
a{
    text-decoration: none;
}
h3{
    font-size: 36px;
}
#news h3, #movie h3{
    margin: 0;
    height: 50px;
    padding: 60px 0;
    line-height: 20px;
    border-bottom: 0.5px solid #333;
    letter-spacing: 0.3em;
}
#collection, .category{
    color: #fff;
    background-color: #004d64;
}
#collection h3, .category h3{
    font-size: 33px;
    letter-spacing: 0.3em;
} 
.container{
    width: 1080px;
    margin: 0 auto;
}
.shop-btn{
     transition-duration: 0.5s;
}
.shop-btn:hover{/*ボタンをホバーした時*/
    transform: scale(1.1,1.1);
}

/*＝＝＝＝＝＝＝＝＝＝共通常時部分の設定はここ＝＝＝＝＝＝＝＝＝＝*/
header{
        background-color: #fff;
}
.header-inner{
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}

h1{
    width: 200px;
    line-height: 1;
}


.global-nav ul{
    list-style: none;
   display: flex;
}
.global-nav a{
    padding: 27px 20px;
    display: block;
    color: #333;
}
.global-nav a:hover{
    background-color: #333;
    color: #fff;
}

.more {
    background-image: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
    transition: background-size 0.3s;
}
.more:hover{
    background-position: bottom left; /* 下線のホバー時位置 */
     background-size: 100% 1px; /* 下線の横幅を100%にする */
}
.more a{
    color: #333;
}

/*＝＝＝＝＝＝＝＝＝＝topに戻るボタン＝＝＝＝＝＝＝＝＝＝*/
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background-color: rgb(255, 255, 255,  0.5);
    border: none 0.5px #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    transform: translateY(20%) rotate(-45deg);
}
/*＝＝＝＝＝＝＝＝＝＝ファーストビューはここから＝＝＝＝＝＝＝＝＝＝*/
.first-view{
        background-color: antiquewhite;
    width: 100%;
    height: 720px;
    background-image: url("../images/blue-suit.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.fv-contents{
    text-align: center;
}
.main-tittle{
    text-align: center;
}
.sub-tittle{
     color: #333;
  letter-spacing: 0.3em;
    font-size: 30px;
 margin-top: 10px;
    }
.webNAME{
    font-size: 130px;
 letter-spacing: 0.3em;
    color: #fff;
}
.sub-tittle{
    margin: 0 0 80px 0;
}
.first-view p{
    font-size: 20px;
}
.fv-contents a{
    display: block;
    margin: 0 auto;
    padding: 1em 0;
    text-decoration: none;
    border: solid 1px #fff;
    color: #FFEAEA;
    background-color: #004d64;
    text-align: center;
    margin-top: 20px;
    width: 180px;
    line-height: 1em;
    transition-duration: 0.5s;
}
.first-view a:hover{
    color: #fff;
    transform: scale(1.1,1.1);
    background-color: #0D4454;
}


/*＝＝＝＝＝＝＝＝＝＝バナーはここから＝＝＝＝＝＝＝＝＝＝*/
.bnr{/*section*/
    min-height: 320px;
    display: flex;
    align-items: center;
}
.bnr .container { /*3つのバナー*/
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media(max-width:767px){
    .bnr .container{
        display: block;
        text-align: center;
    }
}
.bnr article:hover{
    box-shadow: 10px 10px 15px 0 rgba(0,0,0,0.25);
}
.bnr img{
    margin: 0;
    min-width: 320px;
    height: 160px;
}

/*＝＝＝＝＝＝＝＝＝＝カテゴリーはここから＝＝＝＝＝＝＝＝＝＝*/
.category{
    display: flex;
    flex-direction: column;
}
.category h3{
    margin: 0;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
}
.category .container{
    display: flex;
    justify-content: space-between;
}
.category article{
    width: 300px;
    height: 380px;
    margin-bottom: 120px;
    position: relative;
    overflow: hidden;
}
#category_women{
    background-color: coral;
    background-image: url("../images/women.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    }
#category_men{
    background-color: blue;
    background-image: url("../images/men.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
    filter: brightness(90%);
}
#category_kids{
    background-color: yellow;
    background-image: url("../images/kids.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
    filter: brightness(90%);
}
article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit; /* ← 元のbackgroundをそのまま再利用！ */
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(80%); /* ぼかしの強さ */
  mask-image: radial-gradient(circle at center 30%, transparent 35%, black 37%);
  z-index: 1;
  pointer-events: none; /* クリック操作を邪魔しないように */
}
.category__txt{
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  margin-top: 78%;
}
.category__txt h4{
    font-size: 24px;
    margin-bottom: 0.3em;
}
.category__txt p{
    margin-bottom: 0.7em;
}
.category__txt a{
    display: block;
    width: 8em;
    padding: 0.7em;
    margin: 0 auto;
    text-decoration: none;
    color: #333;
    border: solid 1px #fff;
    background-color: rgb(255, 255, 255,  0.5);
}

 /*＝＝＝＝＝＝＝＝＝＝movieはここから  120 360 120→600＝＝＝＝＝＝＝＝＝＝*/
 #movie .container{
    max-height: 600px;
     position: relative;
 }
.card{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.card__movieimg img{
    width: 640px;
    height: auto;
    cursor: pointer;
   }
.movie-btn{
    background-color: rgba(255,0,0,.8);
    border-radius: 15px;
    width: 110px;
    height: 65px;
    position: absolute;
    left: 270px;/*左から50px分移動した。*/
    top: 300px;
    z-index: 1;
    cursor: pointer;
    transition-duration: 0.5s;
}
.movie-btn:hover{
     transform: scale(1.1,1.1);
}
.movie-btn::after{
    content: ''; /* 疑似要素に必須 */
    width: 0;    /* 幅を0に指定 */
    height: 0;   /* 高さを0に指定 */
    border-style: solid;  /* 線の種類を指定 */
    border-width: 15px 0 15px 30px;  /* 線の幅を指定して三角を作る */
    border-color: transparent transparent transparent #fff;  /* 左のみ線の色を指定 */
    position: absolute; /* 相対位置に指定 */
    top: 50%;  /* 上から50%の位置に配置 */
    left: 50%; /* 左から50%の位置に配置 */
    transform: translate(-50%,-50%); /* 要素の半分ぶんだけ左上方向に移動。 */
}
.card__movieimg p{
    padding-top: 10px;
}
.card__movieimg a img{
    width: 1.2em;
    height: auto;
    padding-left: 10px 0;
}
.card__txt{
      padding: 40px;
}
.card__txt h4{ 
    font-size: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid #004d64;
}
.card__txt a{
    color: #fff;
    display: block;
    background-color: #004d64;
    border-radius: 999px;
    text-align: center;
    margin-top: 20px;
    width: 130px;
    line-height: 1em;
    padding: 1em 0;
    transition-duration: 0.5s;
}
.card__txt a:hover{
    background-color: #0D4454;
    color: #fff;
    transform: scale(1.1,1.1);
}
.card__movieimg a{
    color: #333;
    text-decoration: none;
}

/*＝＝＝＝＝＝＝＝＝＝コレクションスライドショーはここから＝＝＝＝＝＝＝＝＝＝*/
.pic{
    width: 560px;
    height: 420px;
    background-color: #eee;
    margin: 0 30px;
    margin-bottom: 40px;
}
#collection h3{
    margin: 0;
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
}

#collection .container{
    width: 1080px;
    margin: 0 auto;
}

/*＝＝＝＝＝＝＝＝＝＝お知らせはここから＝＝＝＝＝＝＝＝＝＝*/

#news li{
    list-style: "□";
    padding-left: 1em;
    cursor: pointer;
}
.news-topics{
    padding-top: 30px;
    padding-left: 1em;
}
#news a{
    color: #333;
    text-decoration: none;
}
#news .more{
      text-align: right;
    margin-bottom: 20px;
    margin-left: auto;
    width: 200px;
}
#news ul a:hover{
 color: #004d64;
}
/*＝＝＝＝＝＝＝＝＝＝フッター＝＝＝＝＝＝＝＝＝＝*/
footer{
    background-color: #313131;
    color: #fff;
    text-align: center;
    max-height: 420px;
}
footer .container{
    margin: 0 auto;
    align-items: center;
}
.footer-logo{
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    }
footer img{
    max-width: 100%;
    height: 25%;
    display: block;
    }
footer .copywrite{
    font-size: 14px;
    line-height: 1em;
    padding-bottom: 120px;
}
