@charset "utf-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  /*標準が10pxになる。基本設定として覚えておく*/
}

body {
  font-size: 1.6rem;
  /*16px*/
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif;
  line-height: 2;
  color: #333;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #3cb371;
  /*リンクにアンダーバーを引かない*/
}

img {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

h2 {
  color: #2e8b57;
  border-bottom: #deb887 3px dashed;
  text-align: center;
  margin-bottom: 10px;
  font-size: 4rem;
}

h3 {
  color: #2e8b57;
  font-size: 2rem;
  /*background: linear-gradient(transparent 70%, #a7d6ff 70%);*/
}

i {
  margin-left: 5px;
  margin-right: 5px;
}

table {
  border-collapse: collapse;
}

table,
th,
td {
  border: 1px solid #e5e5e5;
}

p {
  margin: 0 auto 30px;
}

/*p {
  margin: 20px auto;
}*/

/*header*/

header {
  position: fixed;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 3px -3px rgba(0, 0, 0, 0.1);
  width: 100%;
}

header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 10px;
}

header h1 img {
  width: 150px;
}

.header-text {
  text-align: center;
  /* 中央寄せ */
  font-size: 1.5rem;
  margin-bottom: 0;
  color: rgba(204, 138, 17, 0.832);
}

.logo-row {
  display: flex;
  align-items: center;
  /* 高さ方向の中央揃え */
  gap: 16px;
  /* 画像間の余白（ブラウザサポート良好） */
}

.logo-row img {
  height: 50px;
  width: auto;
  display: block;
}

header nav ul {
  display: flex;
  /*background: pink;*/
}

header nav ul li {
  font-size: 1.5rem;
  margin-left: 18px;
  font-weight: bold;
}

header nav ul li a {
  color: #3CB371;
  font-size: 3rem;
  /*margin-left: 18px;*/
}


/*footer*/
footer {
  /*
  background-color:#87cefa;
  background-image: url("../images/menu-food.png");
  background-repeat: no-repeat;
  background: #87cefa url("../images/menu-food.png") no-repeat;
  background: #f1f1f1;*/
  text-align: center;
  color: black;
  padding-top: 50px;
  position: relative;
  margin-top: 100px;
}


footer .sns {
  /*background: #ff0;*/
  width: 136px;
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
}

footer #page_top {
  font-size: 4rem;
  color: #3CB371;
  transition: all 1s;
  /*アニメーション設定*/
  position: absolute;
  right: 50px;
  bottom: 100px;
}

footer #page_top:hover {
  color: red;
  opacity: 0.5;
}

footer #page_top .top-text {
  font-size: 1.8rem;
  display: block;
}


.footer-top {
  margin-top: 0;
}

#page_top2 a {
  background: #3CB371;
  color: #fff;
  text-align: center;
  padding: 50px auto;
  display: none;

}

.inner {
  width: 1240px;
  /*background: #FAD689;*/
  margin: 0 auto;
}

.block {
  display: flex;
  justify-content: space-between;
}

/*visualエリア*/
#visual {
  height: 100vh;
  width: 100%;
  /*
   background-image: url(../images/visual.jpg);
   background-repeat: no-repeat;
   background-position: center bottom;
   background-size: cover;*/
  background: url(../images/visual.jpg) no-repeat center bottom / cover;
  /*coverの前に/を忘れずに*/
  position: relative;
  overflow: hidden;
  /* visualからはみださない */
}

/*#visual .visual-copy{
  background: beige;
  font-size: 2rem;
  font-family: "Sawarabi Mincho", serif;
  position: absolute;
  top: 85%;
  left: 60%;
  transform: translate(0%, -52%);
  padding 10px 20px; 
}

/*#visual .coffee1 img {
  width: 100px;
  position: absolute;
  top:200px;
  left:500px;
  transform: translateX(-500px);
  animation: 3s linear infinite rotation1;
}

#visual .coffee2 img {
  width: 100px;
  position: absolute;
  top:600px;
  left:500px;
  margin-left:-500px;
  transform: translateX(-500px);
  animation: 3s linear infinite rotation1;
}*/


/*#visual .num02 img{
  position: absolute;
  bottom: 150px;
  left: 200px;
  width: 100px;
  display: none;
}

#visual .num03 img{
  position: absolute;
  bottom: 150px;
  left: 300px;
  width: 100px;
}
#visual .num04 img{
  position: absolute;
  bottom: 150px;
  left: 300px;
  width: 100px;
  display: none;
}

@keyframes rotation1{
  0%{transform: rotate(0);}
  100%{transform: rotate(360deg);}
}*/

/*conceptエリア*/
#concept {
  padding: 10px 0;
}

.textbox {
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}

.textbox .catchcopy {
  color: #ff6600;
  /* 文字色（オレンジ） */
  font-size: 25px;
  /* 文字サイズ */
  font-weight: bold;
  /* 太字 */
  text-align: center;
  /* 中央寄せ */
  letter-spacing: 2px;
  /* 文字間隔 */
}

/*#concept .textbox {
  width: 700px;
  background: orange;
}*/

/*menu*/
#menu {
  /*background: red;*/
  padding: 100px 0;
}

/*#menu .textbox {
  width: 500px;
  background: orange;
}*/


/*#menu .block {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}*/

#menu .block .item {
  margin-bottom: 20px;
  width: 400px;
}

/*galleryエリア*/

#gallery {
  background-color: #deb887;
  padding: 100px 0;
}

.bx-wrapper .bx-prev {
  left: 10px;
  background: url(../images/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
  right: 10px;
  background: url(../images/controls.png) no-repeat -43px -32px;
}

.bx-wrapper {
  margin: 0 auto;
}

/*contactエリア*/
#contact-top {
  /* background: rgb(143, 143, 234);*/
  text-align: center;
  padding: 100px 0;
}

#contact-top a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  border-bottom: 5px solid #b84c00;
  padding: 10px 20px;
  border-radius: 10px;
}

#contact-top a.btn--orange:hover {
  margin-top: 3px;
  color: #fff;
  background: #f56500;
  border-bottom: 2px solid #b84c00;
  opacity: 0.6;
}

#contact-top a.btn--shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

#contact-top p {
  font-weight: bold;
}

/*#contact .btn a{
  width: 220px;
  background: #000;
  color: #fff;
  height: 50px;
  width: 220px;
  display: block;/*hとwが効かない場合有効*/
/*margin: 10px auto 0;
  line-height: 51px;
  border-radius: 12px;
}
#contact .btn a:hover{
  opacity: 0.6;
}*/

/*access*/
#access dt {
  font-weight: bold;
  font-size: 2rem;
}

#access .googlemap {
  width: 50%;
  padding: 50px 30px;
  /*background: gold;*/
}

#access .access-text {
  width: 50%;

  .access-container {
    display: flex;
    /* 横並び */
    justify-content: space-between;
    /* 左右に配置 */
    align-items: center;
    /* 縦中央寄せ */
    gap: 20px;
    /* DLと画像の間隔 */
  }

  .access-container dl {
    flex: 1;
    /* DLを広めに取る */
  }

  .access-logo {
    width: 300px;
    /* ロゴのサイズ調整 */
    height: auto;
  }

  /*background: red;*/
  padding: 100px 0 100px 100px;
  box-sizing: border-box;
}

#menu-btn-check {
  display: none;
}

/****************************************
                下層ページ共通
*****************************************/

#title {
  height: 450px;
  width: 100%;
  position: relative;
  /*display: flex;              
  justify-content: center;    
  align-items: center; */
  margin-bottom: 80px;
}

#title h2 {
  font-size: 4.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-bottom: none;
  color: white
    /*text-shadow: 2px 2px 2px #FFFFFF;*/
}

/****************************************
                ABOUTページ
*****************************************/
#about #title {
  background: url("../about/images/bg_about.png") no-repeat center top / cover;
  /*background-position: center top;
  background-size: cover;*/
}

#about table,
#about th,
#about td {
  border: 1px solid #e5e5e5;
}

#about table {
  width: 100%;
  margin: 60px auto 0;
  text-align: left;
}

#about th,
#about td {
  padding: 20px 0 20px 20px;
}

#about th {
  background: rgb(182, 235, 182);
  font-weight: bold;
  width: 20rem;
  /*幅を20文字分にする*/
}

/*#about #shop-photo {
  display:flex;
  margin-bottom:50px;
}
#about #shop-photo p{
  width:50%;
}*/

#about .brandstory-container {
  display: inline-block;
  position: relative;
  width: 100%;
}

#about .brandstory-image img {
  /*max-width: 500px;
   画像サイズ調整 */
  width: 70%;
  height: auto;
   border-radius: 10px;
  display: block;
}

#about .textbox {
  position: absolute;
  bottom: -50px;
  /* 下から20px */
  right: 0px;
  /* 右から20px */
  background: #DAC9A6;
  padding: 20px 30px 0;
  /* 横に余白多め */
  border-radius: 8px;
  width: 60%;
  /* 横長にするため幅を大きめに */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/****************************************
            CONTACTページ
*****************************************/
#contact #title {
  background: url("../contact/images/bg_contact.png") no-repeat center top / cover;
}

#contact table {
  font-size: 1.8rem;
  width: 100%;
  margin-bottom: 50px;
}

#contact th {
  width: 26rem;
  text-align: left;
  vertical-align: top;
  background: #fafafa;
  font-weight: bold;
}

#contact th,
#contact td {
  padding: 10px;
}

#contact input[type="text"],
#contact input[type="tel"],
#contact input[type="email"] {
  font-size: 1.8rem;
  height: 40px;
  width: 100%;
  border: 1px solid #c2c2c2;
  padding: 10px;
  box-sizing: border-box;
}

#contact input[type="radio"],
#contact input[type="checkbox"] {
  height: 20px;
  width: 20px;
  vertical-align: -4px;
  box-sizing: border-box;
}

#contact select {
  width: 100%;
  padding: 0 0 0 1em;
  height: 40px;
  border: 1px solid #c2c2c2;
  cursor: pointer;
  box-shadow: none;
  background: none;
  color: #666;
  font-size: 1.6rem;
  box-sizing: border-box;
}

#contact textarea {
  font-size: 1.8rem;
  width: 100%;
  height: 300px;
  border: 1px solid #c2c2c2;
}

#contact input[type="submit"],
#contact input[type="reset"] {
  font-size: 1.6rem;
  width: 200px;
  height: 40px;
  text-align: center;
  border: 1px solid #c2c2c2;
  background: #eee;
  border-radius: 5px;
}

::placeholder {
  color: #999
}

.red {
  color: red;
}

/****************************************
                スマホ
*****************************************/
@media screen and (max-width: 767px) {

  /* 共通 */
  .inner {
    /*background: #ff0;*/
    width: 94%;
    margin: 0 auto;
  }

  /* header エリア */

  header h1 img {
    width: 150px;
  }

  header .inner ul {
    display: block;
  }

  .header-nav {
    width: 100%;
    /*height: 100%;*/
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #3cb371;
    opacity: 0.8;
    transition: all 0.5s;
    /*アニメーション設定*/
  }

  .header-text {
    display: none;
  }

  footer #page_top {
    display: none;
  }

  #page_top2 a {
    display: block;
  }

  #menu-btn-check:checked~.header-nav {
    left: 0;
    /*メニューを画面内へ*/
  }

  .header-nav ul {
    padding: 70px 10px 0;
    display: block;
  }

  .header-nav ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
  }

  .header-nav ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
    margin: 0;
  }

  .header-nav ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
  }

  /* メニューボタンエリア */
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background-color: #3cb371;
  }

  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
  }

  .menu-btn span:before {
    bottom: 8px;
  }

  .menu-btn span:after {
    top: 8px;
  }

  #menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
  }

  #menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* footer エリア */
  footer {
    padding: 30px 0 10px;
  }

  footer ul {
    font-size: 1.6rem;
  }

  /* mainエリア */

  section h2 {
    font-size: 4rem;
    line-height: 1.5;
    margin: 0 0 15px;
  }

  /* visualエリア */
  #visual {
    height: 260px;
  }

  /*#visual .visual-copy {
    font-size: 3rem;
    padding-top: 90px;
    display: none;
  }

  #visual .coffee1,.coffee2{
    display: none;
  }*/


  /* menuエリア */
  #menu {
    padding: 30px 0;
  }

  .block {
    display: block;
  }

  #menu .block .item {
    width: 100%;
    padding: 30px 0;
  }

  /* accessエリア */
  #access .googlemap {
    width: 94%;
    margin: 0 auto;
    height: 300px;
    padding: 0;
  }

  #access .access-text {
    width: 94%;
    margin: 0 auto;
    /*background: #f1f1f1;*/
    padding: 0;
  }

  .access-logo {
    display: none;
  }

  /****************************************
                aboutページ
*****************************************/
  #about th {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  #about td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  #about .brandstory-container {
    /* flex-direction: column;
    縦並びに変更 
    text-align: center;
    テキストも中央寄せ */
    display: block;
    position: static;
  }

  #about .brandstory-image img {
    /*max-width: 80%;
    スマホでは小さめ 
    margin-bottom: 20px;*/
    width: 100%;
  }
  /*#about .text{
    /*position: static;  絶対配置を解除 
    width: 100%;      /* 幅いっぱい 
    margin-top: 10px; /* 画像との余白 
    padding: 15px;
    background:#fff;
    box-shadow: none; /* スマホでは影なしでシンプルに 
  }*/
#about .textbox {
    position: static;
    margin: 20px auto; /* ←追加: 上下に余白を加え、中央寄せにします。 */
    bottom: auto; /* ←追加: bottomの指定をリセットします。*/ 
    right: auto; /* ←追加: rightの指定をリセットします。*/
    width: 90%;
    text-align: center;
    background:none ;
    box-shadow: none;
    padding: 0;
}
  /****************************************

              contactページ

*****************************************/

  table,
  th,
  td {
    border: none;
  }

  #contact th {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px dotted #999;
  }

  #contact td {
    display: block;
    width: 100%;
    padding: 0 0 10px;
  }

  #contact input[type="submit"],
  #contact input[type="reset"] {
    width: 49%;
  }





}