@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  vertical-align: bottom;
}
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Gothic");
html {
  scroll-behavior: smooth;
}
a:hover {
  opacity: 0.5;
}
section {
  padding-top: 50px;
}

/* header */

.home_container {
  width: 100vw;
  padding: 0 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.753);
  z-index: 999;
}
.home_container img {
  width: 150px;
  height: 150px;
}
.home_container ul {
  width: 500px;
  font-weight: bold;
  list-style: none;
  display: flex;
  justify-content: space-around;
  font-family: "Caveat", cursive;
}
.home_container li a {
  color: #565656;
  font-size: 1.5em;
  text-decoration: none;
  transition: all 0.8s;
  scroll-behavior: smooth;
}

.slick__bg {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
}

.slick__bg01 {
  background-image: url(../img/home_hero.jpg);
}
.slick__bg02 {
  background-image: url(../img/pasta.jpg);
}
.slick__bg03 {
  background-image: url(../img/girl.jpg);
}
.slick__bg04 {
  background-image: url(../img/coffee_black.jpg);
}
/* main */
main {
  font-family: "M PLUS 1p", sans-serif;
}
p {
  color: #565656;
}
h3 {
  color: #565656;
  font-family: "Caveat", cursive;
}

/* concept */
.curved {
  position: relative;
  background: cornflowerblue;
  height: 120vh;
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
}
h2 {
  color: sandybrown;
  border-bottom: dotted 5px sandybrown;
  width: 300px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  font-family: "Amatic SC", cursive;
}
.concept_container {
  background-color: cornflowerblue;
  height: 100vh;
  display: flex;
  animation-fill-mode: forwards;
}
.concept_text {
  padding: 150px 150px;
  width: 50%;
  line-height: 2em;
  animation-fill-mode: forwards;
}
.concept_text h2 {
  margin: 20px auto;
  padding-bottom: 8px;
}
.concept_text p {
  color: white;
}
.concept_box {
  width: 50%;
  position: relative;
}
.concept_item01 {
  width: 500px;
  border: solid 7px white;
  position: absolute;
  right: 300px;
  top: 100px;
}
.concept_item02 {
  width: 400px;
  border: solid 7px white;
  position: absolute;
  right: 200px;
  top: 350px;
}

/* news */
.news_container {
  height: 50vh;
  position: relative;
}
.news_container h2 {
  margin: 20px auto;
}

.news_container dl {
  width: 500px;
  margin: 10px auto;
  display: flex;
  gap: 30px;
  color: white;
}
.news_container a {
  display: block;
  border: hidden 1px;
  border-radius: 30px;
  background-color: cornflowerblue;
  width: fit-content;
  padding: 5px 30px;
  margin: 50px auto 20px;
  text-align: center;
  color: white;
  text-decoration: none;
  transition: all 0.8s;
  font-family: "Caveat", cursive;
}
.news_container .skewed {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: #2c3e50;
  z-index: -1;
  transform: skewY(6deg);
  transform-origin: top right;
}
/* shop */
.shop_container {
  height: 90vh;
}
.shop_text {
  width: 500px;
  margin: 20px auto;
  text-align: center;
  line-height: 1.7em;
}
.shop_container h2 {
  margin: 20px auto;
}
.test-slick {
  width: 80vw;
  margin: 0 auto;
}
.test-slick__item {
  width: 80%;
  margin-right: 10px;
  margin-left: 10px;
}
.test-slick__item img {
  height: 300px;
}
.test-slick__item p:last-child {
  border-top: 2px solid #565656;
  text-align: right;
}
.shop_container a:last-child {
  display: block;
  border: hidden 1px;
  border-radius: 30px;
  background-color: cornflowerblue;
  width: fit-content;
  padding: 5px 30px;
  margin: 50px auto 0px;
  text-align: center;
  color: white;
  text-decoration: none;
  transition: all 0.8s;
  font-family: "Caveat", cursive;
}

/* menu */
.menu_container h2 {
  margin: 40px auto;
  color: white;
  border-color: white;
}
.menu_container {
  background-color: sandybrown;
  padding-top: 50px;
}
.menu {
  height: 120vh;
  display: grid;
  grid-template:
    "menu_item01 menu_item04" auto
    "menu_item05 menu_item02" auto
    "menu_item03 menu_item06" auto
    / 1fr 1fr;
}

.menu img {
  height: 300px;
  object-fit: cover;
}

.menu_item01 {
  grid-area: menu_item01;
  animation-fill-mode: forwards;
}
.menu_item02 {
  grid-area: menu_item02;
  animation-fill-mode: forwards;
}
.menu_item03 {
  grid-area: menu_item03;
  animation-fill-mode: forwards;
}
.menu_item04 {
  grid-area: menu_item04;
  animation-fill-mode: forwards;
  padding: 20px 50px;
  line-height: 2em;
}
.menu_item05 {
  grid-area: menu_item05;
  animation-fill-mode: forwards;
  padding: 20px 50px;
}
.menu_item06 {
  grid-area: menu_item06;
  animation-fill-mode: forwards;
  padding: 20px 50px;
}
.menu_container h3 {
  color: white;
  font-size: 1.6em;
  margin-bottom: 10px;
}
.menu_container h4 {
  border-bottom: dotted 2px #565656;
  width: 300px;
  margin-bottom: 10px;
  color: #565656;
  font-size: 1.2em;
}
.menu_container a {
  display: block;
  border: hidden 1px;
  border-radius: 30px;
  background-color: cornflowerblue;
  width: fit-content;
  padding: 5px 30px;
  margin: 50px auto 0px;
  text-align: center;
  color: white;
  text-decoration: none;
  transition: all 0.8s;
  font-family: "Caveat", cursive;
}

.spikes {
  position: relative;
  background: sandybrown;
  height: 0vh;
}

.spikes::after {
  content: "";
  position: absolute;
  right: 0;
  left: -20%;
  top: 100%;
  z-index: 10;
  display: block;
  height: 365px;
  background-size: 165px 100%;
  background-image: linear-gradient(135deg, sandybrown 25%, transparent 25%),
    linear-gradient(225deg, sandybrown 25%, transparent 25%);
  background-position: 0 0;
}

/* access */
.access_container h2 {
  margin: 20px auto;
}
.access_box h3 {
  padding-left: 70px;
}
.access_box {
  background-color: #ffffffe4;
  width: 600px;
  margin: 20px auto;
  padding: 30px;
}
.access_container ul {
  width: 400px;
  list-style: none;
  color: #565656;
  padding-left: 50px;
}
.access_item {
  margin: 20px;
}
.access_container {
  background-image: url(../img/bicycle.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  padding: 100px;
}
.access_box a {
  font-size: 1.3em;
  font-weight: bold;
  width: 300px;
  text-align: right;
  padding-left: 200px;
}
/* footer */
footer p {
  color: rgba(255, 255, 255, 0.87);
  text-align: center;
  background-color: #2c3e50;
  padding: 20px;
}
