@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 3.0rem;
  text-align: center;
}
a:hover {
  opacity: 0.5;
}
/*縦横比を保ったまま画面幅に合わせる*/
img {
  max-width: 100%;
  height: auto;
}
h3 {
	font-family: brandon-grotesque,sans-serif;
    font-weight: 700;
    font-style: normal;
	font-size: 2.0rem;
	line-height: 1.8rem;
	letter-spacing: 0.1rem;
	margin: 50px 0;
	display: inline-block;
	position: relative;
}
@media(min-width: 1025px) {
  h3 {
    margin: 80px 0;
  }
}
h3:before {
  position: absolute;
  content: "";
  display: inline-block;
  background-color: #8CB4C7;
  width: 10px;
  height: 10px;
  top: 3px;
  left: -18px;
}
h3 span {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
/*htmlでクラス指定したら表示されない*/
.none {
  display: none;
}
/*header*/
.header {
  background-color: #efefef;
  height: 70px;
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.header:before {
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #333;
  width: 1px;
  height: 14px;
	right: 70px;
}
.header h1 img {
  width: 70px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
.header_nav ul li {
  display: none;
}
.header_nav ul li:first-child {
  display: block;
}
.header_nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  margin-left: 80px;
	position: relative;
}
.header_nav ul li a:hover {
	opacity: 1;
	color: #8CB4C7;
	position: relative;
}
.header_nav ul li a:before {
  background: #8CB4C7;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -4px;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.header_nav ul li a:hover:before {
  transform-origin: center top;
  transform: scale(1, 1);
}
.instagram-icon {
  width: 30px;
  min-width: 30px;
  height: auto;
  margin: 4px 24px 0 30px;
  position: relative;
}
.instagram-icon:hover {
	opacity: 1;
	transform: translateY(-5px);
}
.instagram-icon:hover:after {
	position: absolute;
	content: "Instagram";
	top: 30px;
	left: -20px;
	color: #8CB4C7;
	opacity: 1;
}
@media(min-width: 600px) {
  .header_nav ul li a {
    font-size: 1.6rem;
  }
	.header:before {
	right: 68px;
}
}
@media(min-width: 1200px) {
  .header {
    max-width: 1300px;
    margin: 0 auto;
  }
	.header:before {
	right: 78px;
}
  .header_nav ul li {
    display: block;
    position: relative;
  }
  .header_nav ul li:after {
    position: absolute;
    content: "";
    display: inline-block;
    background-color: #333;
    width: 1px;
    height: 12px;
    transform: rotate(30deg);
    top: 9px;
    right: -20px;
  }
  .header_nav ul li:last-child:after {
    display: none;
  }
  .header_nav ul {
    display: flex;
  }
  .header_nav ul li a {
    margin-left: 40px;
    line-height: 2.4rem;
  }
  .instagram-icon {
    margin-left: 44px;
  }
  .instagram-icon:before {
    left: -22px;
  }
}
/*about-specialty-coffee*/
.specialty-coffee {
	margin:0 24px; 
}
.specialty-coffee_title {
	margin: 90px 0;
	font-size: 2.0rem;
}
.specialty-coffee_title:before {
	display: none;
}
.specialty-coffee_img_box_pc {
	display: none;
}
.specialty-coffee_about {
	background-color: #ebefef;
	padding: 0 16px;
}
.specialty-coffee_about h3 {
	margin:60px 0px 50px 14px;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.specialty-coffee_about p {
	text-align: left;
}
.specialty-coffee_about p span {
	padding-bottom: 4px;
	border-bottom: 2px solid #8CB4C7; 
}
.specialty-coffee_about img {
	margin: 60px 0 50px;
}
.bottom-space {
	margin-bottom: 24px;
}
.smoothTrigger {
	opacity: 0;
}
.smooth {
	animation-name: smoothAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	transform-origin: left;
	opacity: 0;
}
.specialty-coffee_img_box_mobile {
	position: relative;
}
.specialty-coffee_graph_mobile {
  z-index: 0;
	position: absolute;
	left: 0px;
	top: 0px;
  opacity: 0;
}
@keyframes smoothAnime {
	from {
		transform: translate3d(0,100%,0) skewY(12deg);
		opacity: 0;
	}
	to {
		transform: translate3d(0,0,0) skewY(0);
		opacity: 1;
	}
}
.fadeUpTrigger {
	opacity: 0;
}
.fadeUp{
  animation-name: fadeUpAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media(min-width: 600px) {
	.specialty-coffee {
	margin:0 83px; 
}
	.specialty-coffee_about_description {
		max-width: 500px;
		margin: auto;
	}
}
@media(min-width: 1025px) {
	.specialty-coffee {
		max-width: 1300px;
		margin: auto;
		position: relative;
	}
	.specialty-coffee_main-title {
		width: 400px;
		margin-right: auto;
	}
	.specialty-coffee_img_box_mobile {
		display: none;
	}
	.specialty-coffee_img_box_pc {
		display: block;
	}
	.specialty-coffee_image_pc {
		z-index: 9;
		position: absolute;
		right: 0;
		top: 150px;
		width: 40%;
		height: auto;
	}
	.specialty-coffee_about {
		max-width: none;
		width: 70%;
		margin: 0 auto 0 0;
	    text-align: left;
		padding: 40px 0 80px 60px;
	}
	.specialty-coffee_about_description {
		margin: 0 auto 0 0;
	}
	.specialty-coffee_graph_pc {
  z-index: 0;
	position: absolute;
	right: 0px;
		top: 150px;
		width: 40%;
  opacity: 0;
}
}
/*story*/
.coffee-story {
	padding: 0 24px 80px;
	max-width: 1300px;
	margin: auto;
}
.coffee-story h3 {
	margin: 80px 0 60px;
}
.coffee-story img {
	display: block;
	width: 30%;
	max-width: 150px;
	height: auto;
	margin: 0 auto 60px;
}
.coffee-story h4 {
	text-align: left;
	margin-bottom: 50px;
}
.coffee-story p {
	text-align: left;
}
.TextTyping span {
	display: none;
}
.TextTyping:after {
	content: "｜";
	animation: typinganime 1s ease infinite;
}
@keyframes typinganime {
	from{opacity: 0}
	to{opacity: 1}
}
.fadeUpTrigger {
	opacity: 0;
}
.fadeUp{
  animation-name: fadeUpAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeInTrigger {
	opacity: 0;
}
.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 4s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeInAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.delay-time04 {
	animation-delay: 0.4s;
}
.delay-time08 {
	animation-delay: 0.8s;
}
.delay-time12 {
	animation-delay: 1.2s;
}
.delay-time16 {
	animation-delay: 1.6s;
}
.delay-time20 {
	animation-delay: 2s;
}
@media(min-width: 600px) {
	.coffee-story {
		padding: 0 83px 80px;
	}
	.coffee-story_description {
		max-width: 560px;
		margin: auto;
	}
}
@media(min-width: 1025px) {
	.story_inside {
		display: flex;
		align-items: flex-start;
	}
	.coffee-story img {
		transform: rotate(-90deg);
		padding: 40px 80px 0 0;
	}
}
/*esquina-coffee*/
.esquina-coffee {
	background-color: #ebefef;
	padding-bottom: 80px;
	margin-bottom: 80px;
}
.esquina-coffee h3 {
	margin: 60px 10px 50px 30px;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.esquina-coffee_description {
	background-color: #fff;
	margin: 0 24px;
	padding: 50px 16px;
	text-align: left;
}
.esquina-coffee_description img {
	margin-top: 50px;
}
.esquina-coffee_image_pc {
	display: none;
}
@media(min-width: 600px) {
.esquina-coffee_description {
	margin: 0 83px;
}
	.esquina-coffee_description_inside {
		max-width: 500px;
		margin: auto;
	}
}
@media(min-width: 1025px) {
	.esquina-coffee_image_mobile {
		display: none;
	}
	.esquina-coffee_inside {
		max-width: 1300px;
		margin: auto;
		position: relative;
		text-align: left;
	}
	.esquina-coffee_image_pc {
		position: absolute;
		display: block;
		width: 40%;
		right: 0;
		top: 50px;
	}
.esquina-coffee h3 {
	margin: 80px 10px 70px 94px;
}
	.esquina-coffee_description {
		max-width: none;
		width: 70%;
		margin: 0 auto 0 0;
	    text-align: left;
		padding: 80px 0 80px 80px;
	}
	.esquina-coffee_description_inside {
		max-width: none;
		width: 500px;
		margin: 0 auto 0 0;
	}
}
/*footer*/
.footer {
  background-color: #ebefef;
  padding: 50px 24px 20px;
}
.footer a img {
  width: 70px;
  height: auto;
}
.footer nav ul {
  margin: 30px 0 30px;
}
.footer nav ul li a {
  text-decoration: none;
  color: #333;
  line-height: 3.0rem;
position: relative;
}
.footer nav ul li a:hover {
	opacity: 1;
	color: #8CB4C7;
}
.footer nav ul li a:before {
  background: #8CB4C7;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -4px;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.footer nav ul li a:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}
.footer small {
  font-size: 1.4rem;
}
@media(min-width: 1025px) {
  .footer {
    padding: 80px 83px 30px;
  }
  .footer_inside {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
  .footer a img {
    width: 120px;
    margin-left: 80px;
  }
  .footer nav ul {
    margin: 0 0 30px 160px;
    text-align: left;
  }
}