@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
}


body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: 1.2vw;
    color: #3f3f3f;
}


li {
    font-family: "Tajawal", sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #585858;
}

ul {
    list-style-type: none;
}


h2 {
    font-family: "Tajawal", sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #585858;
}

#stockists,footer{
    margin-top: 10%;
    padding: 5% 4%;
    background-color: #f7f7f7;
}

ul li a {
    text-decoration: none;
    color: #585858;
}

/* ---------------------header start----------------------------- */
.mainvisual{
    width: 100%;
    height: 50vw;
    padding-top: 4%;
    background-image: url(../images/mv.png);
    background-position: bottom;
    background-size: cover;
}

.header{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    border-radius: 8px;
    background-color: rgba(247, 247, 247, .8);
}

.header h1 {
    width: 3%;
    padding-left: 3%;
    vertical-align: bottom;
}

.header h1 a {
    display: block;
}

.header h1 img {
    width: 100%;
}
.header-nav {
    width: 50%;
}

.header-nav ul {
    display: flex;
}

.header-nav ul li {
    width: 20%;
}

.header-nav ul li a {
    display: block;
    line-height: 3;
    text-align: center;
}

/* -------------------header nav hover start--------------------------*/
.header-nav ul li a{
    /* aタグを基準に動かすためにposition: relative;を記述する */
    position: relative;
}

.header-nav ul li a::after {
    /* 擬似クラスを使うときにはdisplay: block;を使うと位置調整の
    プロパティが自由に使えるようになるので、記述する */
    display: block;
    /* content: "";中身を空っぽにするための記述 */
    content: "";
    /* position: absolute;は親要素を基準として動く（Notionのpositionプロパティにリンクあり）
    leftとtopは親要素を基準にどこの位置にするかを記述している */
    position: absolute;
    left: 15%;
    top: 75%;
    width: 70%;
    height: 1px;
    background-color: #868686;
    transition: transform 0.8s;

    /* transform: scaleX(0)はXに何倍の大きさか記述する。
    (0)にすることで下線が見えなくな */
    transform: scaleX(0);
}

.header-nav ul li a:hover::after {
    /* (1)を記述して、ホバー時に元の大きさに戻す */
    transform: scaleX(1);
     /* transform-origin:はどこを基準に動きの変化をつけるか
     centerの場合は真ん中を基準に動きを付ける
     (この記述をcenterにすることで両端に線が伸びている表現ができる) */
    transform-origin: center top;
}

/* ---------------------header nav hover finish---------------------- */
/* ---------------------header finish---------------------- */

/* ---------------------concept start---------------------- */
.concept-title{
    text-align: center;
    margin-top: 10%;
}

.concept-text{
    text-align: center;
    line-height: 3;
    margin-top: 3%;
    color: #585858;
}
/* ---------------------concept finish---------------------- */

/* ---------------------collection start---------------------- */
#collection{
    margin-top: 10%;
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: #f7f7f7;
}

#collection h2 {
    padding-left: 4%;
}

.item{
    width: 300px;
    transition: 0.5s;
}

.item img{
    width: 100%;
    vertical-align: bottom;
}

.collection-parent-box {
    display: flex;
    gap: 100px;
    overflow: hidden;
}
.collection-box{
    display: flex;
    gap: 100px;
    padding-top: 4%;
    animation: slidshow 60s infinite linear 1s both;
}

.item:hover {
    transform: translateY(-10px);
}

.collection-parent-box:hover .collection-box {
    animation-play-state: paused;
}

@keyframes slidshow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 100px));
    }
}
/* ---------------------collection finish---------------------- */

/* ---------------------news start---------------------- */
#news{
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin-top: 10%;
    margin-right: auto;
    margin-left: auto;
}

.news-box{
    width: 70%;
}

.news-text{
    display: flex;
    padding: 4% 8%;
    border-bottom: #dfdfdf solid 1px;
}

.day{
    padding-right: 9%;
}

/* ---------------------news finish---------------------- */

/* ---------------------stockists start---------------------- */
.stockists-box{
    display: flex;
    justify-content: space-between;
    padding-top: 4%;
}

.stockists-info1,.stockists-info2,.stockists-info3 {
    width: 30%;
}

.stockists-info1 address,.stockists-info2 address,.stockists-info3 address{
    font-style: normal;
    line-height: 1.5;
    margin-top: 2%;
}
/* ------------------tockists GoogleMap hover start--------------------------------------- */

.stockists-info-shop {
    width: 100%;
    height: 20vw;
    background-size: cover;
}

.stockists-info1-shop1 {
    background-image: url(../images/shop1.jpg);
}

.stockists-info2-shop2 {
    background-image: url(../images/shop2.jpg);
}

.stockists-info3-shop3 {
    background-image: url(../images/shop3.jpg);
}


.stockists-info-shop a {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20vw;
    text-decoration: none;
    transition: 1s;
}

.stockists-info-shop:hover a {
    backdrop-filter: brightness(50%);
    transition: 1s;
    
}

.stockists-info-shop p {
    color: transparent;
    transition: 1s;
}

.stockists-info-shop:hover p{
    color: #fff;
    font-weight: 500;
    transition: 1s;
}
/* ------------------tockists GoogleMap hover finish--------------------------------------- */
/* ---------------------stockists finish--------------------- */

/* ------------contact start----------------------------------- */
#contact {
    width: 25%;
    margin-top: 10%;
    margin-right: auto;
    margin-left: auto;
}

#contact h2 {
    text-align: center;
}

.contact-box {
    margin-top: 10%;
}

.contact-item {
    margin-top: 5%;
}

.contact-item input {
    width: 100%;
    margin-top: 1%;
    line-height: 2;
    border: 1px solid #dfdfdf;
}

.contact-item textarea {
    width: 100%;
    height: 10vw;
    margin-top: 1%;
    margin-bottom: 5%;
    line-height: 1.7;
    border: 1px solid #dfdfdf;
}


.submit-button {
    width: 100%;
    border: none;
    background-color: #dfdfdf;
    line-height: 1.7;
    letter-spacing: 2em;
    color: #585858;
}


/* 情報を入力時にクリックしたときの効果
outline:none: を記述後にborderの記述をして太さを設定してもOK！ */
input:focus {
    border: 1px solid transparent;
    outline: 1px solid #cecece;
}

textarea:focus {
    border: 1px solid transparent;
    outline: 1px solid #cecece;
}
/* ---------------------contact finish------------------------------ */

/* ---------------------footer start---------------------------- */
.footer-linkbox {
    display: flex;
    justify-content: space-between;
}

.footer-nav {
    width: 50%;
    display: flex;
}

.footer-nav-left,.footer-nav-right {
    width: 25%;
}

.footer-nav .footer-nav-left li:nth-of-type(2),
.footer-nav .footer-nav-left li:nth-of-type(3),
.footer-nav .footer-nav-right li:nth-of-type(2) {
    padding-top: 15%;
}

.fotter-icon-logo {
    width: 7%;
}

.fotter-icon-logo a {
    display: block;
}

.fotter-icon-logo img {
    width: 100%;
    opacity: 0.5;
}

.sns-icon {
    display: flex;
    margin-top: 15%;
}

.fa-instagram,.fa-line {
    display: block;
    font-size: 2.5vw;
    color: #868686;
}

.fa-instagram {
    padding-right: 5%;
}

footer p {
    margin-top: 2%;
    text-align: right;
}

.footer-nav-left li,
.footer-nav-right li {
    transition: 1s;
}

.footer-nav-left li:hover,
.footer-nav-right li:hover {
    opacity: 0.5;
    transition: 1s;
}
/* ---------------------footer finish---------------------------- */



