@charset "utf-8";
/*共通*/
html{
  font-size: 110%;
}
body{
  background-image: url(../imges/back.gif);
  background-color: #fff;
  background-size:contain;
  background-repeat: repeat;
  font-family: "Yu Gothic Medium","游ゴシック Medium",YuGothc,"游ゴシック体","ヒラギノ角ゴ Pro W3",sans-serif;
  line-height: 1.5;
  color: #333;
}
a{
  text-decoration: none;
}
img{
  border: 0;
  margin: 0;
  padding: 0;
}
h2{
  text-align: center;
  font-size: 1.6rem;
  background-image:url(../imges/sub_title.gif);
  background-size: 100% 100%;
}
h3{
  font-size: 1.4rem;
}
/*フェードイン・フェードアウト*/
.fade_off{
  opacity: 0;
  transition: all 1s;
}
.fade_on{
  opacity: 1;
}
/*トップページ↓*/
#wrapper,section.catchcopy,#main_nav,.comment{
  width:80%;
  margin:80px auto;
}
/*見出し*/
#top_image{
  background-image: url(../imges/main.jpg);
  background-size:100% 100vh;
  height:100vh;
  width: 100%;
  position: relative;
}
#top_image h1{
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-40%,-50%);
}
#top_image img{
  width: 80%;
  height: auto;
}
/*キャッチコピー*/
section.catchcopy{
  text-align: center;
  font-weight: bold;
  font-size: 125%;
  padding: 10px;
}
.keywords{
  font-size:140%;
  color:#000;
  text-shadow: 0 0 8px orangered;
  display: inline-block;
  margin:5px;
  padding: 0;
}
/*「今月のおすすめ」セクション*/
#wrapper{
  background-color:rgba(255,230,128,0.5);
  padding: 10px 0;
  position: relative;
}
#wrapper h2{
  position: absolute;
  display: block;
  width:80%;
  height: auto;
  padding: 5px 0;
  top:0;
  left:50%;
  font-size: 1.5rem;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.item{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recommendation{
  width:80%;
  height: 100%;
  margin:40px auto;
  position: relative;
}
.recommendation:first-of-type{
  margin-top: 70px;
}
.recommendation img{
  width: 100%;
  height:auto;
}
.recommendation p{
  display: block;
  color:#fff;
  background-color: rgba(0,0,0,0.8);
  margin: 0;
  padding:3px 5px;
  font-size: 125%;
  position: absolute;
  left:-15px;
  bottom: -10px;
  word-break: keep-all;
}
/*ナビゲーション*/
#main_nav{
  padding: 0 0 100px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#main_nav a .nav1,
#main_nav a .nav2,
#main_nav a .nav3,
#main_nav a .nav4,
#main_nav a h3{
  transition: all 1s ease 0s;
  cursor: pointer;
}
#main_nav a:hover .nav1,
#main_nav a:hover .nav2,
#main_nav a:hover .nav3,
#main_nav a:hover .nav4{
  opacity: 0.8;
  transform: scale(0.95);
}
#main_nav a:hover h3{
  transform: translateX(0.2em);
  text-shadow:0 0 7px red;
}
#main_nav a h3{
  position: absolute;
  right:10px;
  bottom:100px;
  font-size: 1.6rem;
  color:#fff;
  text-shadow:0 0 7px #000;
}
#main_nav .nav1,
#main_nav .nav2,
#main_nav .nav3,
#main_nav .nav4{
  display:inline-block;
  width:250px;
  height:250px;
  margin:100px auto 0 auto;
  border-radius: 50%;
  background-size: 100% 100%;
  background-color: #fff;
  position: relative;
}
#main_nav .nav1{
  background-image:url(../imges/nav1_1.jpg);
}
#main_nav .nav2{
  background-image:url(../imges/nav2_1.jpg);
}
#main_nav .nav3{
  background-image:url(../imges/nav3_1.jpg);
}
#main_nav .nav4{
  background-image:url(../imges/nav4_1.jpg);
}
/*お店の行き方*/
.comment a{
  display: block;
  width:100%;
  height:250px;
  background-image: url(../imges/top3_1.jpg);
  background-size: 100% 100%;
}
.method{
  background-color:rgba(27,27,27,0);
  width:100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: space-between;
}
.method p{
  display: block;
  padding: 20px 15px;
  color:#fff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 0 5px #333;
}
.method p:last-of-type{
  font-size: 1.1rem;
  text-align: right;
  margin-top: auto;
}
.comment a .method,
.comment a .method p:last-of-type{
  transition: all 1s ease 0s;
}
.comment a:hover .method{
  background-color:rgba(27,27,27,0.0);
}
.comment a:hover .method p:last-of-type{
  text-shadow: 0 0 5px red;
}
.comment a:hover .method p:first-of-type{
  text-shadow: 0 0 5px #000;
}
/*ページトップへ戻るボタン*/
.sentou{
  position: fixed;
  right:25px;
  bottom:30px;
}
.sentou a{
  display: block;
  width:110px ;
  height: 110px;
  transition: all 0.5s ease 0s;
}
.sentou img{
  width: 100%;
  height: auto;
}
.sentou a:hover{
  transform: scale(0.8);
}
/*フッター*/
footer{
  background-color: #e4fd3a;
  text-align: center;
  margin: 80px 0 0 0;
  padding: 25px 0;
}
footer p{
  margin: 0;
  padding: 0;
}
footer p i{
  padding: 0 5px;
  font-size: 35px;
  color:#333;
}
footer a i{
  transition: all 1s ease 0s;
}
footer a:hover i{
  transform: scale(1.3);
}
/*トップページ↑*/

/*サブページ↓*/
#path,#wrapper_sub{
  width:80%;
  margin:80px auto;
}
/*ヘッダー*/
#top{
  position: relative;
}
#head h1{
  display:block;
  width:40%;
  height:auto;
  margin:0 auto;
  padding-top: 80px
}
#head h1 img{
  width: 100%;
  height:100%;
  cursor: pointer;
}
/*ナビゲーション*/
#global_nav{
  position:fixed;
  bottom: 0;
  right:-350px;
  display: block;
  box-sizing: border-box;
  width:350px;
  height:100vh;
  text-align: center;
  background:pink;
  z-index: 2;
}
#global_nav ul{
  display: block;
  list-style-type: none;
}
#global_nav ul li{
  display: block;
  padding: 20px 0;
}
#global_nav ul li:first-of-type{
padding-top:120px;
}
#global_nav ul li p{
  display: inline-block;
}
#global_nav ul li p.yohaku{
  padding: 0 13px;
}
#global_nav ul li a{
  color:inherit;
  font-size: 25px;
  position:relative;
  border-bottom: 3px dotted #666;
}
#global_nav ul li a,#global_nav ul li a::after,#global_nav ul li a::before{
transition: all 0.3s ease 0s;
}
#global_nav ul li a::after{
  position: absolute;
  content: "✿";
  width: 18px;
  height:18px;
  left:-45px;
  bottom:16px;
  opacity: 0;
}
#global_nav ul li a::before{
  position: absolute;
  content: "✿";
  width: 18px;
  height:18px;
  right:-45px;
  bottom:16px;
  opacity: 0;
}
#global_nav ul li a:hover,#global_nav ul li a:hover::before,#global_nav ul li a:hover::after{
  font-weight: bold;
  opacity: 1;
  color: blue;
  border-color: blue;
}
/*ハンバーガーボタン*/
.btn-gnav{
  width:30px;
  height:30px;
  box-sizing: border-box;
  position:fixed;
  right:30px;
  top:35px;
  cursor: pointer;
  transition:all 0.5s;
  z-index: 3;
}
.btn-gnav span{
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 3px;
  border-radius: 10px;
  margin-top:0;
  background-color: #666;
  transition:all 0.5s;
}
.btn-gnav span:nth-child(1){
  top:0;
}
.btn-gnav span:nth-child(2){
  top:10px;
}
.btn-gnav span:nth-child(3){
  top:20px;
}
.btn-gnav.open span:nth-child(1){
  transform:translate(4px,17px) rotate(-45deg);
  width: 20px;
}
.btn-gnav.open span:nth-child(3){
  transform:translate(4px,-17px) rotate(-135deg);
  width: 20px;
}
/*パンくずリスト*/
#path ol{
  list-style-type: none;
  padding-left: 0;
}
#path ol li{
  display: inline;
  color:#000;
  font-weight: bold;
  text-shadow: 0 0 5px #a77920;
  margin-right: 5px;
}
#path ol li a{
  color:#000;
  text-decoration: underline;
}
#path ol li a:hover{
  color:red;
}
/*セクション*/
/*サブページ「パンの種類」↓*/
.main{
  width: 100%;
  height: auto;
  margin: 0;
  padding: 50px 0;
}
.menu{
  width: 100%;
  margin: 0;
  padding: 10px 5%;
  box-sizing: border-box;
}
figure{
  width:100%;
  margin:20px 0;
}
figure:first-of-type{
  margin-top:0;
}
figure:last-of-type{
  margin-bottom:0;
}
figure img{
  width:100%;
  height:auto;
  display: block;
}
figcaption{
  text-align: right;
  font-weight: bold;
  text-shadow: 0 0 5px #fff;
  margin: 0;
  padding: 15px 2px 10px 0;
  display: block;
  background-color: rgba(167,121,32,0.7);
}
/*サブページ「パンの種類」↑*/
/*サブページ「メニュー」↓*/
.classification{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.classification p{
  display: block;
  width: 40%;
  height:auto;
  1background: pink;
  text-align: center;
  margin:0 10px 10px 10px;
}
.classification p a{
  display: block;
  width: 100%;
  border-bottom: 1px solid firebrick;
  font-weight: bold;
  color: #000;
}
.classification p a:hover{
  color: blue;
  border-color: blue;
  opacity: 0.7;
  transform: scale(0.9);
}
.menu_box{
  width: 100%;
  margin:60px 0;
}
.menu_box h3{
  border-left:15px solid #ffd42a;
  border-bottom:3px solid #ffd42a;
  padding: 0 0 0 5px;
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}
.menu_box h3.toku{
  border-left:15px solid red;
  border-bottom:3px solid red;
  padding: 0 0 0 5px;
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}
.drink{
  width: 100%;
  margin: 0;
  padding: 10px 5%;
  box-sizing: border-box;
}
.drink figure{
  width:100%;
  margin:20px 0;
}
.drink figure:first-of-type{
  margin-top:0;
}
.drink figure:last-of-type{
  margin-bottom:0;
}
.drink figure img{
  width:100%;
  height:auto;
  display: block;
}
.drink figcaption{
  text-align: left;
  padding: 10px 0 10px 10px;
  font-weight:normal;
}
.drink figcaption ul{
  list-style-position: inside;
  padding: 15px 0 0 10px;
}
.set{
  width: 100%;
  margin: 0;
  padding: 10px 5%;
  box-sizing: border-box;
  background-color: rgba(255,230,213,0.5);
}
.set .morning{
  background-image: url(../imges/mornig.jpg);
  background-size: 100% 100%;
  padding: 10px;
  width: 100%;
  height:220px;
  margin: 30px auto 0 auto;
}
.set .morning p{
  color:#fff;
  text-shadow: 0 0 5px #000;
}
.set .morning p:first-of-type{
  text-align: left;
  font-weight: bold;
  font-size:110%;
  padding-bottom: 40px;
}
.set .morning p:last-of-type{
  text-align:right;
  font-size: 90%;
}
/*サブページ「メニュー」↑*/
/*サブページ「お知らせ」↓*/
.news{
  width: 100%;
  height: auto;
  margin: 0;
  padding: 50px 0;
  overflow: hidden;
}
.m_subject,.t_subject{
  background-color:rgba(255,230,213,0.5) ;
  border: 2px solid rgba(199,113,55,0.6);
  box-sizing: border-box;
  padding: 10px 5px;
}
.m_subject{
  display: block;
  width:70%;
  float:right;
}
.t_subject{
  display: block;
  width:28%;
  margin-right:2%;
  float: left;
}
.object,.object-2{
  border-bottom: 2px dotted #aa4400;
  padding-top: 15px;
  padding-bottom:5px;
}
.object:first-of-type,.object-2:first-of-type{
  padding-top: 0;
}
.object h3{
  margin-bottom: 10px;
  font-size: 1.1rem
}
.object img{
  display: block;
  width: 80%;
  height: auto;
  margin:15px 0;
}
.object p a{
  color: red;
  text-decoration: underline;
}
.object p a:hover{
  color:blue;
}
.object-2 p{
  font-size: 75%;
  font-weight: bold;
}
.object-2 p time{
  text-decoration: underline;
}
.object-2 p a{
  color: inherit;
}
.object-2 p a:hover{
  color:red;
}
/*サブページ「お知らせ」↑*/
/*サブページ「お問い合わせ」↓*/
.com{
  width: 100%;
  margin:60px 0;
}
.com h3{
  border-left:15px solid #ffd42a;
  border-bottom:3px solid #ffd42a;
  padding: 0 0 0 5px;
  background-color: rgba(255, 255, 255, 0.7);
}
.comment_parts{
  background-color:rgba(255,204,170,0.5);
  width: 100%;
  margin: 0;
  padding: 10px 5%;
  box-sizing: border-box;
}
input,textarea,select,option{
  border: 1px solid #33333386;
  background-color: #fff;
}
input[type="text"],input[type="email"],input[type="tel"],textarea{
  width: 90%;
}
textarea{
  height: 150px;
  overflow-y: scroll;
}
input[type="submit"]{
  margin: 0 20px 0 0;
}
input[type="submit"],input[type="reset"]{
  display:inline-block;
  width:100px;
  background-color: orange;
  padding: 5px 0;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 0 5px #333;
}
.comment_parts p{
  padding: 15px 0;
}
.comment_parts p .label_name{
  font-weight: bold;
}
.comment_parts p:first-of-type{
  padding-top: 5px;
}
.comment_parts p:last-of-type{
  padding-bottom: 30px;
}
iframe{
  width: 100%;
  height:250px;
}
#shop p:nth-of-type(2),#shop p:nth-of-type(3){
  padding-left: 20px;
}
/*サブページ「お問い合わせ」↑*/
/*サブページ↑*/


/*640px以上のとき*/
@media screen and (min-width:640px) {
  /*共通*/
  h2{
    font-size: 1.8rem;
  }
  /*トップページ↓*/
  /*キャッチコピー*/
  section.catchcopy{
    font-size: 150%;
  }
  .keywords{
    font-size:160%;
  }

  /*「今月のおすすめ」セクション*/
  .item{
    display: flex;
    flex-direction:row;
  }
  .recommendation{
    width:41%;
    box-sizing: border-box;
    margin:70px 6% 40px 6%;
  }
  .recommendation:first-of-type{
    margin-right: 0;
  }
  /*お店の行き方*/
  .method{
    background-color:rgba(27,27,27,0.5);
  }
  .comment a{
    width:520px;
    height:325px;
    margin: 0 auto;
  }
  /*トップページ↑*/
  /*サブページ↓*/
  /*ヘッダー*/
  #top{
    position: static;
    margin:0 0 80px 0;
    padding: 70px 0 30px 0;
    vertical-align: middle;
    background-image:url(../imges/sub_top.gif);
    background-size:auto 100%;
    background-repeat: repeat-x;
  }
  #head{
    position: relative;
    width:100%;
    height:auto;
  }
  #head h1{
    margin:0 auto;
    width:25%;
    height:auto;
    padding-top:0;
  }
  /*ナビゲーション*/
  #global_nav{
    position:absolute;
    left:0;
    bottom:50%;
    transform: translateY(50%);
    width:100%;
    height:auto;
    text-align: left;
    background:none;
  }
  #global_nav ul{
    width:85%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    justify-content:space-between;
  }
  #global_nav ul li{
    padding:  0;
    width:15.8%;
    float:left;
  }
  #global_nav ul li:first-of-type{
    padding-top:0;
  }
  #global_nav ul li:nth-of-type(2){
    margin-right:36.8%;
  }
  #global_nav ul li p{
    display: block;
    padding-top: 120px;
    text-align: center;
    background-size:77px 80%;
    background-position:top center;
  }
  #global_nav ul li p.image1{
    background-image: url(../imges/icon1.gif);
  }
  #global_nav ul li p.image2{
    background-image: url(../imges/icon2.gif);
  }
  #global_nav ul li p.image3{
    background-image: url(../imges/icon3.gif);
  }
  #global_nav ul li p.image4{
    background-image: url(../imges/icon4.gif);
  }
  #global_nav ul li p.yohaku{
    padding:120px 0 0 0;
  }
  #global_nav ul li a{
    font-size:16px;
    font-weight: bold;
    border-bottom: 0;
    transition: all 0.3s ease 0s;
}
  #global_nav ul li a::after{
    display: none;
  }
  #global_nav ul li a::before{
    display: none;
  }
  #global_nav ul li a:hover{
    color: blue;
  }
  /*ハンバーガーボタン*/
  .btn-gnav{
    display: none;
  }
  /*サブページ「パンの種類」↓*/
    .menu{
      width: 100%;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 10px 0;
    }
    figure{
      width:49%;
    }
    figure:nth-of-type(2){
      margin-top:0;
    }
    figure:nth-of-type(3){
      margin-bottom:0;
    }
    /*サブページ「パンの種類」↑*/
    /*サブページ「メニュー」↓*/
    .drink{
      padding: 10px 0;
    }
    .drink figure{
      display: flex;
    }
    .drink figure:nth-of-type(2){
      flex-direction: row-reverse;
    }
    .drink figure img{
      width:50%;
    }
    .drink figcaption{
      width: 50%;
    }
    .set{
      padding: 10px;
    }
    .set .morning{
      margin-left:0;
      margin-right:0;
      width:490px;
      height:250px;
    }
    .set .morning p:first-of-type{
      padding-bottom: 70px;
    }
    /*サブページ「メニュー」↑*/
    /*サブページ「お問い合わせ」↓*/
    iframe{
      height:350px;
    }
    /*サブページ「お問い合わせ」↑*/

    /*サブページ↑*/

}
