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

@import url('https://fonts.googleapis.com/css?family=Raleway');

$defaultSeconds: 3s;


.flex-container {
	position: absolute;
	height: 100vh;
	width: 100%;
	display: -webkit-flex; /* Safari */
	display: flex;
	overflow: hidden;
	@media screen and (max-width: 768px) {
		flex-direction: column;
	}
}
.flex-title {
	color: #f1f1f1;
	position: relative;
	font-size: 6vw;
	margin: auto;
	text-align: center;
	transform: rotate(90deg);
	top: 15%;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	@media screen and (max-width: 768px) {
		transform: rotate(0deg) !important;
	}
}
.flex-about {
	opacity: 0;
	color: #f1f1f1;
	position: relative;
	width: 70%;
	font-size: 2vw;
	padding: 5%;
	top: 20%;
	border: 2px solid #f1f1f1;
	border-radius: 10px;
	line-height: 1.3;
	margin: auto;
	text-align: left;
	transform: rotate(0deg);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	@media screen and (max-width: 768px) {
		padding: 0%;
		border: 0px solid #f1f1f1;
	}
}


.flex-slide {
	-webkit-flex: 1;  /* Safari 6.1+ */
	-ms-flex: 1;  /* IE 10 */    
	flex: 1;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	@media screen and (max-width: 768px) {
		overflow: auto;
		overflow-x: hidden;
	}
}
.flex-slide p {
	@media screen and (max-width: 768px) {
		font-size: 2em;
	}
} 
.flex-slide ul li {
	@media screen and (max-width: 768px) {
		font-size: 2em;
	}
} 
.flex-slide:hover {
	-webkit-flex-grow: 3;
	flex-grow: 3;
}
.home {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/769286/lake-macquarie-71208_1920.jpg);
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	@media screen and (min-width: 768px) {
		animation: aboutFlexSlide $defaultSeconds 1;
		animation-delay: 0s;
	}
}

@keyframes aboutFlexSlide {
	0% {
		-webkit-flex-grow: 1;
		flex-grow: 1;
	}
	50% {
		-webkit-flex-grow: 3;
		flex-grow: 3;
	}
	100% {
		-webkit-flex-grow: 1;
		flex-grow: 1;
	}
}

.flex-title-home {
	@media screen and (min-width: 768px) {
		transform: rotate(90deg);
		top: 15%;
		animation: aboutFlexSlide $defaultSeconds 1;
		animation-delay: 0s;
	}
}



@keyframes homeFlextitle {
	0% {
		transform: rotate(90deg);
		top: 15%;
	}
	50% {
		transform: rotate(0deg);
		top: 15%;
	}
	100% {
		transform: rotate(90deg);
		top: 15%;
	}
}

.flex-about-home {
	opacity: 0;
	@media screen and (min-width: 768px) {
		animation: aboutFlexSlide $defaultSeconds 1;
		animation-delay: 0s;
	}
}

@keyframes flexAboutHome {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}



.about {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/769286/beach-2089959_1280.jpg);
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;	
}
.contact-form {
	width: 100%;
}

.contact {
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/769286/lake-696098_1920.jpg);
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}
.work {
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/769286/forest-208517_1280.jpg);
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}



// Preloader
.spinner {
	position: fixed;
	top: 0;
	left: 0;
	background: #222;
	height: 100%;
	width: 100%;
	z-index: 11;
	margin-top: 0;
	color: #fff;
	font-size: 1em;
}

.cube1, .cube2 {
  background-color: #fff;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
  animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
  25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
  50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
  75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
  100% { -webkit-transform: rotate(-360deg) }
}

@keyframes sk-cubemove {
  25% { 
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  } 50% { 
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  } 50.1% { 
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  } 75% { 
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  } 100% { 
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}

/*----------------------------------
= index
----------------------------------*/
.linkMore a {
	color: #320703;
	font-size: 1rem;
	background-color: #fff8ee;
	border-radius: 1rem;
	padding: 0 8px;
}
.linkMore a:hover {
	opacity: .7;
	text-decoration: underline;
}
.pickup {
	overflow: hidden;
}
.pickup .swiper-wrapper {
}
.swiper-point-events {
	touch-action: pan-y;
}
.stCards .stCard {
	position: relative;
	width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
	margin-right: 1.5rem;
}
.shopLink {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.stCards .stC-con {
	position: relative;
	z-index: 1;
	width: 12rem;
	background-color: #fff;
	border: 1px solid #e1e5e7;
	border-radius: .5rem;
	pointer-events: none;
}
.shoplistPic {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	overflow: hidden;
}
.shoplistPic img {
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	z-index: 2;
	border-radius: .5rem;
}
.shoplistPic .flag-red {
	position: absolute;
	color: #fff;
	font-size: 9px;
	background-color: #DC3023;
	border: 1px solid #dc3023;
	border-radius: 1rem;
	display: inline-block;
	z-index: 2;
	top: 4px;
	left: 4px;
	padding: 2px;
}
.bookmark {
	position: relative;
	pointer-events: auto;
	background: none; 
	border: none; 
	cursor: pointer;
	top: 0;
	right: 4;
	z-index: 2;
}
.bi-heart {
	color: #a9a9a9;
}
.bi-heart-fill {
	color: #DC3023;
}
.shoplistDt {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: .5rem .25rem;
}

.shoplistDt .fl-row {
	display: flex;
	align-items: center;
	column-gap: 2px;
	width: 100%;/* ←これを追加 */
	min-width: 0;
}
.shoplistName {
	display: block;
	flex: 1 1 auto;
	align-items: center;
	font-weight: 700;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	width: 100%; /* ←これを追加 */
}
.shoplistDt .new {
	font-size: 9px;
	display: inline-block;
	border: 1px solid #dc3023;
	border-radius: .5rem;
	color: #dc3023;
	background-color: #fff;
	padding: 0 3px;
	margin-right: 2px;
}
.shoplistText {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tagWrap {
	display: flex;
	flex-direction: row;
	align-items: center;
	column-gap: 4px;
	color: #988280;
}
.ctgTag {
	padding: 2px 4px;
	color: #988280;
	border: 1px solid #988280;
	border-radius: 4px;
	font-size: 12px;
}
.stC-con .hr {
	border-bottom: 1px solid #e1e5e7;
}
.fr-lightbrown {
	width: auto;
	display: inline-block;
	color: #fff;
	background-color: #b48f0e;
	border: 1px solid #b48f0e;
	border-radius: 1rem;
	padding: 0 .25rem;
	font-size: 11px;
}
.stC-con .point {
	color: #320703;
	font-weight: 700;
	font-size: 24px;
}
@media (max-width: 480px) {
	.linkMore a {
	color: #320703;
	font-size: 0.75rem;
	background-color: #fff8ee;
	border-radius: 1rem;
	padding: 0 8px;
}
}
