@charset "UTF-8";
/* CSS Document */

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

body {
	line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;	
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}

input, select {
	vertical-align:middle;
}
ul,ol{
	list-style: none;
}
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
div{
	line-height: 0;
}
/* original style */
html{
	font-size:0.75rem;
}
body {
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	animation: fadeIn 2s ease 0s 1 normal;
	font-family: 'Roboto', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
h1,h2,h3,h4{
	font-weight: 600;
	font-family: "urw-din-condensed", "roboto", sans-serif;
}
p,li,dt,dd,td{
	color: #333;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.75;
}
a{
	color:#000;
	text-decoration: underline;
}
a:hover{
	color:#006ba6;
}
a:active,a:focus{
	outline: none;
}
small{
	font-size: 0.75em;
}
/* 横スクロールを有効にするコンテナ */
.horizontal-scroll {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	overflow-x: auto; /* 横スクロールを有効にする */
	overflow-y: hidden;
	width: 100vw; /* ビューポート幅に合わせる */
	height: 100svh; /* ビューポート高さに合わせる */
	scroll-snap-type: x mandatory; /* スクロールスナップを有効にする */
	scrollbar-width: none; /* Firefox用スクロールバー非表示 */
	overscroll-behavior-x: contain;
	/*overscroll-behavior-x: none;*/
}

.horizontal-scroll::-webkit-scrollbar {
	display: none; /* Webkit系ブラウザのスクロールバー非表示 */
}

/* 個々のコンテンツアイテム */
.content-item {
	box-sizing: border-box;
	flex: 0 0 auto; /* サイズ固定で横並び */
	width: auto; /* ビューポート幅に合わせる */
	height: 100%; /* ビューポート高さに合わせる */
	display: flex;
	box-sizing: border-box;
	flex-direction: column;
	flex-wrap: nowrap;
}

header{
	margin: 0 auto;
	padding: 0;
	position: relative;
}
header h1{
	line-height: 1;
	width: 35vw;
	margin: 0 auto;
	position: absolute;
	top: 12.5vw;
	left: 30vw;
	z-index: 1;
}
header h1 img{
	display: block;
}
header h1 span{
	color: #fff;
	display: block;
	font-family: "urw-din-condensed", sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.075em;
	text-align: center;
	margin-top: 18px;
}
.pic{
	background-image: url(../../img/01/main_sp.webp);
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-size: cover;
	height: 100svh;
	width: 100vw;
}
#header{
	padding: 0!important;
}
#sec00,
#footer{
	box-sizing: border-box;
	padding: 0 10vw;
	width: 100vw;
}
#sec00{
	padding: 0 15vw;
}
.look{
	margin: 10svh auto 0 0;
}
.look{
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	padding: 0 7.5vw;
	position: relative;
}

.content-item > div{
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.8s ease-in-out 0.3s;
	transition: 0.8s ease-in-out 0.3s;
}
.content-item > div.show{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0)!important;
	transform: translateY(0)!important;
}
.itemCredit{
	margin: 20px 0 0 0;
}
.line2{
	display: flex;
}
.line2 ul{
	width: 47.5%;
}
.line2 ul+ul{
	margin-left: 5%;
}
.vertical .line2 ul{
	width: auto;
}
.itemCredit p{
	color: #666;
	line-height: 1;
	margin-top: 14px;
	margin-bottom: 10px;
	text-align: left;
}
.itemCredit p.category::before{
	color: #666;
	content: "— ";
}
.itemCredit li{
	display: flex;
	font-size: 11px;
	line-height: 1;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: baseline;
	text-align: left;
	margin-top: 1em;
}
.itemCredit span{
	display: inline-block;
	letter-spacing: 0.025em;
}
.itemCredit .itemName{
	letter-spacing: 0.075em;
	width: 7em;
}
.itemCredit a .itemName {
	text-decoration: underline;
	text-decoration-color: #ddd;
	text-underline-offset: 2px;
}
.itemCredit .itemPrice{
}
.itemCredit .instore{
	color: #999;
	font-size: 10px;
	margin-left: 5px;
}
.line2 ul .instore{
	width: 100%;
	margin-left: 0;
	margin-top: 5px;
}
.itemCredit a{
	position: relative;
}
.itemCredit .itemNo{ display:none; }

.lead{
	margin: auto;
}
.lead p{
	font-size: 13px;
	line-height: 2;
}
.scroll_down{
	position:absolute;
	bottom: 5vw;
	right: 5vw;
}
.scroll_down a{
	position: absolute;
	right: 0;
	bottom: 15px;
	color: #000;
	font-size: 10px;
	letter-spacing: .1em;
	text-decoration: none;
	text-transform: uppercase;
}
.scroll_down:before {
	content: "";
	position: absolute;
	bottom: -3px;
	right: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background:#666;
	animation:
	circlemove 1.8s ease-in-out infinite,
	cirlemovehide 1.8s ease-out infinite;
}
@keyframes circlemove{
	0%{right: 80px;}
	100%{right: -3px;}
}
@keyframes cirlemovehide{
	0%{opacity: 0}
	50%{opacity: 1;}
	80%{opacity: 0.9;}
	100%{opacity: 0;}
}
.scroll_down:after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 80px;
	height: 1px;
	background:#666;
}

.post_frame1 h3{
	font-family: 'Roboto', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1;
	font-size: 15px;
	margin-bottom: 1em;
}
#footer{
	justify-content: center;
}
#footer .fadeIn {
	margin: 0 auto 20px;
}
footer p.shop{
	line-height: 2;
}
footer p.shop+p{
	font-size: 11px;
	line-height: 1;
}
.prof .logo{
	margin: 0 auto 40px;
	text-align: center;
}
.prof .logo img{
	display: inline-block;
	width: 120px;
	margin: 0 auto;
}
.prof .logo+p{
	text-align: center;
}
.prof p strong{
	display: inline-block;
	margin-bottom: 0.5em;
}
.post_frame1{
	box-sizing: border-box;
	background-color: #f4f4f4;
	padding: 25px;
	margin-top: 40px;
	margin-bottom: 40px;
}
.copy{
	font-size: 10px;
	text-align: center;
}

#comment{
	background:rgba(244,244,244,0.9);
	text-align: center;
	font-size: 11px;
	line-height: 1.5;
	position: fixed;
	bottom: 10vh;
	left: 5%;
	width: 90%;
	height: auto;
	/*border-radius: 15px;*/
	z-index: 100;
}
#comment::before{
	content: "● ";
	color: #999;
	font-size: 9px;
}
#comment.off{
	display: none;
}
@media(max-width:767px){
.content-item {
	flex: 0 0 100vw;
	width: 100vw;
	padding: 0 7.5vw;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}
.look{
	width: 100%;
	padding: 0;
	margin-left: auto;
	margin-right: auto;;
}
.vertical.content-item {
	flex: 0 0 185vw;
	width: calc( (100vw - 15vw) / 3 * 4 / 2 * 3);
}
}
@media(max-width:375px){
.content-item {
	width: 100vw;
	padding: 0 12.5vw;
}
.vertical .look{
	width: calc(75vw / 3 * 4 / 2 * 3);
	margin-left: 0;
}
.look{
	margin-top: 7.5svh;
}
.itemCredit li{
	font-size: 10px;
	line-height: 1.25;
}
.itemCredit .instore{
	font-size: 9px;
}
}

@media(min-width:821px){
.horizontal-scroll {
	height: 100svh; /* ビューポート高さに合わせる */
}
.content-item {
	scroll-snap-align: none;
	padding: 0 50px;
}
.look {
	width: calc( ( 82.5svh - 11px * 5 - 8px * 4 - 20px ) / 4 * 3);
	padding: 0;
}
.vertical .look {
	width: calc( ( 82.5svh - 11px * 5 - 8px * 4 - 20px ) / 2 * 3);
}

#header, header{
	width: 100vw;
}
header h1{
	width: 20vw;
	max-width: 240px;
	margin: 0 auto;
	top: 50%;
	left: 25%;
	transform: translate(-50%, -50%);
}
header h1 span{
	color: #333;
	font-size: 15px;
	margin-top: 30px;
}
/*.pic{
	height: 100svh;
	width: calc(100svh / 2 * 3);
}*/
.pic {
	background-image: url(../../img/01/main.webp);
	margin-left: 50vw;
	width: calc(100svh / 4 * 3);
}

#sec00{
	padding: 0 10vw;
	width: 50vw;
}
#footer{
	padding: 0 10vw;
	width: 100vw;
}
#footer .fadeIn {
	max-width: 400px;
}
#footer .fadeIn + p {
	text-align: center;
}
.lead p{
	font-size: 14px;
	line-height: 2.25;
	text-align: center;
}

#sec12{
	padding-left: 15svh;
}
#sec12 .look{
	margin-top: 0;
}
.movie {
	margin: 5svh 0 auto auto;	
}
.movie iframe {
	width: 50.625svh;
	height: 90svh;
	aspect-ratio: 16 / 9;
}

.scroll_down{
	position:absolute;
	bottom: 20px;
	right: 20px;
}
@keyframes circlemove{
	0%{right: 100px;}
	100%{right: -3px;}
}
.scroll_down:after{
	width: 100px;
	height: 1px;
}

.prof .logo{
	margin: 0 auto 40px;
}
.prof .logo img{
	width: 150px;
	margin: 0 auto;
}
.post_frame1{
	padding: 40px;
	margin-top: 40px;
	margin-bottom: 40px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}
#comment{
	display: block;
	font-size: 14px;
	line-height: 40px;
	position: fixed;
	bottom: 10vh;
	left: calc(50% - 300px);
	width: 600px;
	padding: 0.5em 0;
	height: 40px;
	z-index: 100;
}
#comment::before{
	font: 12px;
}
#comment.off{
	display: none;
}
}
