@charset "UTF-8";
/* CSS Document */
/* ==================================================
    BASE (RESET)FONT
================================================== */
html { font-size: 90%; }
body {
    font-family: Helvetica, "sans-serif";
	font-weight: 300;
	line-height: 1.8;
	letter-spacing: 0.02em;
	color:#000;
    background-color: #FFF;    
	-webkit-font-smoothing: antialiased; /* WebKitブラウザサポート */
	text-rendering: optimizeLegibility; /* Chrome、Safariサポート */
	-moz-osx-font-smoothing: grayscale; /* Firefoxサポート */
	font-feature-settings: 'liga'; /* IEサポート */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /* iPhoneの文字サイズバグの回避 */
    overflow-x: hidden;
}
img {
    display: block;
    width: 100%;
}

/* ==================================================
    LINK
================================================== */
a { line-height: 0.85; text-decoration: none; font-weight: bold; }
a:link { color: #5025A3; font-weight: bold; }
a:visited { color: #5025A3; font-weight: bold; }
a:hover { color: #5025A3; text-decoration: underline; font-weight: bold; }
a:active { color: #5025A3; font-weight: bold; }
a img { opacity:1.0; transition: .2s ease-in-out;}
a img:hover { opacity: .7 !important; }

/* ==================================================
    PC/SP 表示切り替え
================================================== */
.sp_only { display:inherit }
.pc_only { display:none }

/* ==================================================
    OTHERS
================================================== */
.clearfix::before,
.clearfix::after { display: table; content: ''; }
.clearfix::after { clear: both; }

/* ==================================================
    COMMON
================================================== */
body {
    text-align: center;
    font-size: 1em; 
}
.common_w {
    max-width: 1024px;
    width:90%;
    margin: 0 auto;
}

/* ==================================================
   header
================================================== */
#cover {
    background-color:#ecf0f0;
}
#cover div {
    height: 30vh;
    max-height:280px;
    margin-bottom:2.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#cover h1 {
    max-width:300px;
    width:70%;
    padding:1.65em 0 2em;
}
#mens #cover div {
    background-image: url("../img/mens/top-sp.jpg");
}
#womens #cover div {
	background-image: url("../img/womens/top-sp.jpg");
}

/* ==================================================
   section
================================================== */
#gallery > ul {
	margin-top: 3em;
    }
#gallery > ul > li {
	transition: 2s;
    margin-bottom: 2em
}
#gallery img {
    margin-bottom:1em;
}
#gallery .button {
    color: #000;
    border: #000 1px solid;
    display: block;
    margin: 0 auto 1em;
    line-height: 1;
    font-size: 0.9em;
    width: 15em;
    padding: 0.5em 0 0.45em 0;
    transition: .3s ease-in-out;
}
#gallery .button:hover {
    cursor: pointer;
    color: rgba(102,102,102,0.3);
    border-color:rgba(102,102,102,0.3);
}
#gallery .button.active {
    color:rgba(102,102,102,0.3);
    border-color:rgba(102,102,102,0.3);
}
#gallery .button.active:hover {
    cursor: pointer;
    color:rgba(102,102,102,1.0);
    border-color:rgba(102,102,102,1.0);
}
#gallery ul.credit {
    display: none;
    font-size:1em;
    line-height:1.6;
    letter-spacing: normal;font-family: Helvetica, "sans-serif";
}
#gallery ul.credit li {
    margin-bottom: 0em;
}
#gallery ul.credit li div {
    margin-top: 1.25em;
}
/*credit*/

#credit div {
    padding-top:4.5em;
    margin-bottom:4.5em;
    font-size: 0.75em;
	text-align: left;
}
.credit li {
		font-size: 1em;
		font-weight: bold;
		line-height: 1.8;
	}
.comment {
	font-size: 14px;
	width: 90%;
	margin: 5em auto 0;
	text-align: left;
	letter-spacing: 0;
}
.comment h1 {
	margin-bottom: 0.85em;
	text-align: center;
	font-size: 16px;
}
.eng {
		margin-top: 3em;
		color: #4e3168;
    }

/* ==================================================
    footer
================================================== */
	footer {
	background-color:rgba(0,0,0,1.00);
	padding-top: 2em;
	color: rgba(255,255,255,1.00);
}
	footer #store_info {
    margin: 0 auto;
    text-align: center;
    padding-bottom:3em;
}
footer #store_info h4 {
    font-weight: normal;
    padding: 0.75em 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1em;
}
footer #store_info h4 span {
    display: block;
    font-size: 0.65em;
}
footer #store_info li {
    font-size:0.9em;
    margin-bottom:1.5em;
}
footer #store_info li a {
    display: block;
}
footer .copyright {
    text-align: center;
    font-size: 0.75em;
    line-height: 3em;
    padding-bottom: 5em;
}


@media screen and (min-width: 768px){
    .sp_only { display:none }
    .pc_only { display:block }
    
    /* ==================================================
       header
    ================================================== */
    #cover {
        background-color:#ecf0f0;
    }
    #cover div {
        min-height: inherit;
        height: auto;
        max-height:600px;
        margin-bottom: 6em;
    }
    #cover h1 {
        max-width:400px;
    }
    /* ==================================================
       section
    ================================================== */
    #gallery > ul {
        display: flex;
        justify-content:center;
        flex-wrap: wrap;
		align-items: center;
		margin-top: 4em;
    }
    #gallery > ul > li {
        display: block;
        width: calc(50% - 13px);
        margin-bottom:0em;
    }
	#gallery > ul > li:nth-child(even)  {
        display: block;
		margin: 0 0 0 26px;
    }
	#gallery ul .twin {
        width: 70% !important;
    }
    #gallery img {
        margin-bottom:2em;
    }
    #gallery .button {
        display: none;
    }
    #gallery ul.credit {
        display: block;
    }
    #gallery ul.credit li {
        line-height: 1.8;
    }
	.bk_credit {
		margin-bottom: 3em;
	}
	.credit_pc li {
		font-size: 1.2em;
		font-weight: bold;
		line-height: 1.6;
	}
	.comment {
        font-size: 15px;
        width: 90%;
        max-width: 1024px;
        margin: 5em auto 0;
        text-align: left;
    }
    .comment h1 {
        text-align: left;
    }
	.eng {
		margin-top: 3em;
		color: #4e3168;
    }
	
    #credit div {
        margin-bottom:6em;
        font-size: 1em;
    }
    footer #store_info li a {
        display: inline-block;
        margin-left: 1em;
        cursor: pointer;
    }
}



/* ==================================================
    SCROLL UP
================================================== */
.scroll-up {
    position: fixed;
    z-index:100;
	right: 1.25em; 
	top:  1.25em;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    }
.scroll-up a {
    width:30px;
	padding: 8px;
	line-height: 1;
	display: inline-block;
	color:#fff;
	background-color:rgba(0,0,0,0.2);
	-webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;     
    }
.scroll-up a:hover{
	background-color:rgba(0,0,0,0.5);
    }