@import url('https://fonts.googleapis.com/css2?family=Stick+No+Bills:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stick+No+Bills:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stick+No+Bills:wght@300&family=Zen+Kaku+Gothic+Antique&display=swap');
/* ===== Webサイト全体のスタイル ===== */
/* html */
html {
  height: 100%;
  scroll-behavior: smooth;
}

@keyframes zoom_in {
  100% {
    transform: scale(1);
  }
}


/* body */
body {
  font-family: sans-serif;
  height: 100%;
  margin: 0;
  
}


::selection{
  color:white;
  background-color:#27bece;
}

.pagetop {
    height: 70px;
    width: 70px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #a7dbd2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 10px 6px rgb(0 0 0 / 30%);
}

.pagetop__arrow {
    height:20px;
    width: 20px;
    border-top: 3px solid #a7dbd2;
    border-right: 3px solid #a7dbd2;
    transform: translateY(20%) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
    .pagetop:hover, .pagetop:hover .pagetop__arrow {
        border-color: #27bece;
    }
}





     nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 10%;
    height: 100vh;
    color:#27bece;
    background-color: #fff;
  }
  nav a{
    margin-top:100px;
    font-size:20px;
    color:#27bece;
  }
  .nav img{
    margin-top:500px;
  }
  
  main {
    margin-right: 10%;
    background-color: #fff;
    height: 2500px;
   
  }
/* h1見出し */
h1 {
  font-family: 'Stick No Bills', sans-serif;
  color: #ffffee;/* フォントの色 */
  color: white;
  font-size: 140px;/* フォントの大きさ */
 margin-left:30px;
 margin-top:-350px;
  background-repeat: no-repeat;/* 背景のくり返しをやめる */
  background-position: top center;/* 背景の位置 */
  animation: zoom_in 2s ease-in-out forwards ;
transform: scale(0.1);
filter: drop-shadow(0 0 5px white);


}

/* ===== ヘッダーのスタイル ===== */
/* ヘッダーの箱 */
header {
  
  background-image: url(img/header.jpg);/* 背景画像 */
  background-size:cover;
  font-family: 'Stick No Bills', sans-serif;
  height: 350px;/* 高さ */
  padding-top: 350px;/* 上がわの余白 */
clip-path: polygon(0 0, 100% 0%, 100% 90%, 0 100%);
background-color:#e8faf7;
background-blend-mode:multiply;

}
header p{
  font-size:20px;
  color:white;
  margin-left:30px;
 margin-top:-80px;
  font-family: 'Stick No Bills', sans-serif;
  animation: zoom_in 2s ease-in-out forwards ;
transform: scale(0.4);
filter: drop-shadow(0 0 5px white);

}

/* ナビゲーションの箱 */




/* ===== お店紹介のスタイル ===== */
/* セクション */
.shop {
  background-color: #ffffff;/* 背景の色 */
  color:#27bece;
  padding: 30px;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

/* h2見出し */
.title {
  font-size: 30px;
  text-align:center;
  border-left-width: 10px;
  padding-left: 15px;
  margin-bottom: 50px;
}

/* 段落 */
.shop p {
 font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 20px;
  color:black;
  background-color: #ffffff;
  padding: 60px;
  border-radius: 30px;
}


/* 画像 */
.shop img {
  float: right;/* 画像や箱の回り込み */
}


/* ===== パン紹介のスタイル ===== */
/* セクション */
.photo {
  padding-top: 70px;
  height:1050px;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
  background-color:white;
}
.photo h2{
  font-size:30px;
  color:#27bece;
  text-align:center;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
}
.photo p{
  text-align:center;
  padding:5px;
  font-size:20px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
}
 .photo img { width: 420px; height: 280px; } .wrap { overflow: hidden; display: flex; align-items: center; height: 340px; margin-bottom: 100px; } .slide { display: flex; -webkit-animation: slide 30s infinite linear 1s both; animation: slide 30s infinite linear 1s both; } @-webkit-keyframes slide { from { transform: translateX(0); } to { transform: translateX(-100%); } } @keyframes slide { from { transform: translateX(0); } to { transform: translateX(-100%); } } .slider:hover .slide { -webkit-animation-play-state: paused; animation-play-state: paused; } .item { transition: all 0.2s; margin-right: 20px; } .item:hover { transform: translateY(-20px); border-radius: 400px; box-shadow: 0 10px 10px 0 #333; opacity: 1; cursor: pointer; }
/* ===== 値段表のスタイル ===== */
/* セクション */
.price {
 
background-color:#27bece;
  padding: 30px;
   background: linear-gradient(to bottom ,white 0%,#27bece 100%);
 
}

/* h2見出し */
.price h2 {
  font-size:30px;
  color: #27bece;
  border-color: #ffcc11;
}

/* 表 */
table {
  border-collapse: collapse;
  margin: 20px auto;
  font-size: 16px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  width: 100%;
  background: linear-gradient(to bottom ,white 0%,#27bece 100%);
}

thead {
  background-color: #fff;
  color: #000;
  font-weight: bold;
}

th {
  padding: 10px;
  text-align: left;
  background-color:#6495ED;
  border-radius:50px;
  padding-left:40px;
  
}

tbody tr:nth-child(even) {
  background-color: #f2f2f2;
  
}

td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #ddd;
   padding:50px;
  border-radius:50px;
}


/* ===== アクセス情報のスタイル ===== */
/* セクション */
.access {
  padding: 30px;
  background: linear-gradient(to bottom ,#27bece 0%,black 50%,#74aa9c 100%);
  color: white;
}

/* h3見出し */
.access h3 {

  font-size:30px;
  font-family: lobster;
  margin-top: 0px;
   font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

/* リスト */
.access p {
 text-align:center;
 padding:30px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
 font-size:25px;
}
.access ul{
  list-style-type: none;
}
.access li {
  padding-left:80px;
  padding-bottom:30px;
  font-size:25px;
  text-align: left; /* 文頭を揃える */
   }

.access img{
  padding-left:180px;
  padding-bottom:50px;

}

.chat{
   font-family: 'Zen Kaku Gothic Antique', sans-serif;
  background-color:#74aa9c;
}
.chat h2{
  color:#fff;
  text-align:center;
  font-size:40px
}
.chat p{
  text-align:center;
  font-size:25px;
  color:#fff;
  padding:20px;
}

iframe {
 border: none;
 margin: 0px;
 padding-left:120px;
 padding-bottom:30px;
 overflow: hidden;
}

.sosyal {
  
}
.facebook {
  background-color: #2e4a88;
  box-shadow: 0 4px 0 #1B3D82;
  text-shadow: 0 -1px -1px #1B3D82;
  
  display: inline;
  position: relative;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  padding: 14px 80px;
}
.facebook:hover {
  background-color: #354F84;
}
.facebook:active {
  top: 2px;
	box-shadow: 0 2px 0 #1B3D82;
}
.twitter {
  background-color: black;
  box-shadow: 0 4px 0 #0078BD;
  
  display: inline;
  position: relative;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  padding: 14px 80px;
}
.twitter:active {
  top: 2px;
	box-shadow: 0 2px 0 black;
}
.twitter:hover {
  background-color: #1397D8;
}
.google {
  background-color: #CC3622;
  box-shadow: 0 4px 0 #BA2714;
  
  display: inline;
  position: relative;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  padding: 14px 80px;
}
.google:active {
  top: 2px;
	box-shadow: 0 2px 0 #BA2714;
}
.google:hover {
  background-color: #D04829;
}


footer{
  padding-top:20px;
  text-align:center;
  color:#fff;
  background-color:#74aa9c;
}