@charset "utf-8";
/* CSS Document */

html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: #444141;
}
img {
  max-width: 100%;
}
p {
  font-size: 16px;
  line-height: 2 !important;
  font-family: serif;
}

section {
  margin: 5rem 0;
}
/*
----------------------
Start ハンバーガーメニュー
----------------------
*/
/* Start ヘッダー */
.header {
  width: 80px;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background-color: #fff0;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  z-index: 10;
}
.headerNavOuter {
  margin-bottom: 0;
  position: relative;
}
.siteIcon {
  margin: 0;
}
.siteIcon img {
  width: 250px;
  margin-top: 2rem;
}
.siteIcon-side img {
  width: 250px;
  margin-top: 250%;
  /* transform: rotate(90deg); */
}

.side-post img {
  width: 250px;
  position: absolute;
  bottom: 2%;
  padding: 3px
  /* transform: rotate(90deg); */
}

.shop-name {
  width: 30px;
  position: absolute;
  top: 45%;
  right: 30%;
  writing-mode: vertical-rl;
}
.post-header {
  width: 100%;
}
/* End ヘッダー */

/* Start ナビゲーション */
.headerNav {
  position: fixed;
  right: -250px; /*右側に隠しておきます*/
  top: 0;
  width: 250px;
  height: 100vh;
  padding-top: 20px;
  background-color: rgba(157, 237, 248, 0.8);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 20;
  overflow-y: auto;
}
.navList {
  margin: 0;
  padding: 0;
  text-align: center;
  display: block;
}
.navItem {
  padding: 1rem 1rem 0;
}
.navItem a {
  display: block;
  border-bottom: 1px solid #eee;
  color: #707070;
  padding: 1rem 0 1rem;
  width: 100%;
  margin: 0 auto;
}
/* End ナビゲーション */

/* Start ハンバーガーボタン(三本線の実装) */
.hamburger_btn {
  position: absolute; /*.headerNavOuterを基準にして、絶対配置*/
  right: -20px;
  top: 0;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 30;
}
.hamburger_line {
  position: absolute; /*.headerNavOuterを基準にして、絶対配置*/
  left: 8px;
  width: 25px;
  height: 1px;
  background-color: #111;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.hamburger_line_1 {
  top: 20px;
}
.hamburger_line_2 {
  top: 26px;
}
.hamburger_line_3 {
  top: 32px;
}
/* End ハンバーガーボタン(三本線の実装) */

/*ハンバーガーメニュをクリックした後に現れる半透明の背景*/
.black-bg {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #000;
  opacity: 0;
  visibility: hidden; /* 非表示にしておきます */
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  cursor: pointer;
}

/* Start ハンバーガーボタンをクリックした際の動き */
/* ナビゲーションが現れる */
.nav-open .headerNav {
  right: 0;
}

/* 半透明の背景を表示させます。 */
.nav-open .black-bg {
  opacity: 0.8;
  visibility: visible;
}

/* 三本線のハンバーガーを、バッテンにします */
.nav-open .hamburger_line_1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 25px;
}
.nav-open .hamburger_line_2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger_line_3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 25px;
}
/* End ハンバーガーボタンをクリックした際の動き */

/*menuのホバーアニメーション*/
.menu-item {
  padding-bottom: 5px;
  position: relative;
}
.menu-item::before {
  background: #383838;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.menu-item:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*button*/
.wrap {
  margin: 5rem auto 5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.btn {
  width: 140px;
  height: 45px;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: white;
  background-color: #727272;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.btn:hover {
  background-color: white;
  box-shadow: 0px 15px 20px #727272;
  color: #727272;
  transform: translateY(-7px);
}

/* アニメーション前 */
.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
  transition: 0.6s;
  transform: translateY(0);
  opacity: 1;
}

/* アニメーション前  左から右へ画像がスライド*/
.u-fade-type-slide {
  transform: translateX(-100px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-slide.is-active {
  transition: 1s;
  transform: translateX(0);
  opacity: 1;
}

/* アニメーション前  右から左へスライド*/
.u-fade-type-slide-l {
  transform: translateX(100px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-slide-l.is-active {
  transition: 0.6s;
  transform: translateX(0);
  opacity: 1;
}
/*page-top*/
#page-top h2 {
  font-size: 3rem;
  text-align: center;
  font-family: serif;
}

/*sectionのタイトル*/
.title-area {
  position: relative;
}
.sec-title-en {
  font-size: 10rem;
  font-family: "Cormorant", serif;
  color: #fafafa;
}
.sec-title-jp {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 10%;
  font-family: serif;
}
.sec-title-jp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -70%;
  display: inline-block;
  width: 146px;
  height: 1px;
  background-color: black;
}
.sec-title-bg {
  font-size: 3rem;
  font-family: "Cormorant", serif;
  color: #fafafa;
}
/*introduce*/
.introduce {
  padding: 5rem 0;
  margin: 0;
}
#introduce .sec-title-en {
  color: white;
}

.passion-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 5rem auto;
  width: 80%;
}
.img-left {
  width: 40%;
  position: absolute;
  opacity: .4;
}
.passion-right {
  width: 100%;
  background: white;
  padding: 3rem;
}
.passion-flex-swap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  width: 80%;
  margin: 0 auto;
}
.sub-title {
  margin: 2rem auto;
  font-size: 1.5rem;
    font-family: serif;
}



/*top-2nd*/
.top-2nd {
  background: #fafafa;
  padding-bottom: 5rem;
}
#top-2nd img {
width: 90%;
}

.flex-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
  font-family: serif;
}
.each-content {
  text-align: center;
  padding: 2rem;
  width: 30%;
}
.each-title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.36;
  color: cadetblue;
}
.each-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 13px auto 0;
  width: 112px;
  height: 73px;
}
.short-detail {
  margin-top: 15px;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.733;
}

.product-pic-box {
  text-align: center;
  margin: 3rem auto;
  width: 50%;
}
.product-pic {
  width: 80%;
}




#introduce .about-description-text {
  width: 50%;
  margin: 0 auto;
}
.about-pic {
  width: 25%;
  display: flex;
  flex-wrap: wrap;
  margin: 3rem auto;
}
#introduce img {
  width: 100%;
  margin: 5px;
}
.items-display-flex {
  flex-wrap: wrap;
  margin: 2rem 0 5rem;
}
.items-inner {
  width: 50%;
  margin: 0 auto;
}
.introduce-message {
  width: 90%;
  margin: 2rem auto;
}
.message-box {
  width: 90%;
  margin: 0 1rem;
}
#introduce h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: serif;
}
.message-detail {
  font-family: serif;
  font-size: 1rem;
  margin: 0 auto;
  position: relative;
}
.message-detail::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  position: absolute;
  bottom: -1rem;
  left: 10px;
  background-color: #383838;
}
.materials {
  font-family: serif;
  margin-top: 2rem;
  font-size: 1rem;
}

.link-online {
  width: 100%;
  margin: 0 auto;
}
.online-box {
  width: 60%;
  margin: 3rem auto 0;
}
.cta {
  background: white;
  padding: 3rem;
}



/***********************************************************************Filter
******************************************************************/

.filters {
  text-align: center;
  margin: 5rem auto 2rem;
  width: 70%;
}

.filters * {
  display: inline-block;
}

.filters label {
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: 2rem;
  min-width: 50px;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s;
  background-color: rgb(157 237 248 / 20%);
}

.filters label:hover {
  /* background: orange;
  color: var(--white); */
  transform-origin: left top;
  transform: scale(1, 1);
}

.filters label::before {
  background: #383838;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.filters label:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}


/*チェックを隠す*/
input[type="radio"] {
  position: absolute;
  left: -9999px;
}


/***********************************************************************Filter Posts
******************************************************************/
.posts {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  width: 70%;
  margin: 0 auto;
}

.posts .post {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.posts .post-title {
  font-size: 1rem;
  color: cadetblue;
}

.posts .post-title:hover {
  text-decoration: underline;
}

.detail {
  margin: 1rem auto;
    font-size: 0.875rem;
}

.posts figcaption {
  padding: 1rem;
}

.posts .post-categories {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
}

.posts .post-categories * {
  display: inline-block;
}

.posts .post-categories li {
  margin-bottom: 0.2rem;
}

.posts .post-categories a {
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
  border: 1px solid;
  line-height: normal;
  transition: all 0.1s;
}

.posts .post-categories a:hover {
  background: var(--green);
  color: var(--white);
}


/***********************************************************************Filter
******************************************************************/
[value="All"]:checked ~ .filters [for="All"],
[value="flour"]:checked ~ .filters [for="flour"],
[value="rice"]:checked ~ .filters [for="rice"],
[value="bagel"]:checked ~ .filters [for="bagel"]
{
  background: var(--green);
  color: var(--white);
}

[value="All"]:checked ~ .posts [data-category] {
  display: block;
}
[value="flour"]:checked ~ .posts .post:not([data-category~="flour"]),
[value="rice"]:checked ~ .posts .post:not([data-category~="rice"]),
[value="bagel"]:checked ~ .posts .post:not([data-category~="bagel"]){
  display: none;
}



/***********************************************************************serve
******************************************************************/
.serve-pic {
  width: 50%;
}
.serve-pic-area {
  text-align: center;
}
.serve-text {
  margin: 0 auto;
    width: 60%;
    padding: 2rem 0;
}

/***********************************************************************How to eat
******************************************************************/

.flour-bread {
  text-align: center;
  padding: 2rem 0 1rem;
  font-family: serif;
}
.rice-bread {
  text-align: center;
  padding: 2rem 0 1rem;
  font-family: serif;
}



/***********************************************************************footer
******************************************************************/
.bg-footer {
  position: relative;
  width: 100%;
  background: url(../images/30.jpg) no-repeat center center fixed #fcf0f0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.footer-bg {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 1rem;
}
.middle {
  width: 80%;
  margin: 0 auto;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}
.footer-logo {
  width: 270px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
}
#footer a {
  margin: 0 25px;
}
.note-icon {
  width: 50px;
}
#footer small {
  font-size: 0.75rem;
}
.footer-copyright {
  text-align: center;
  margin: 5rem auto 0;
}
.br_sp {
  display: none;
}
.br_pc {
  display: block;
}
/***********************************************************************
スマホ対応
**********************************************************************/

@media all and (max-width: 768px) {
  .br_sp {
    display: block;
  }
  .br_pc {
    display: none;
  }
  iframe {
    width: 100%;
    height: 300px;
  }
  .img-box::after {
    width: 0%;
  }
  .sec-title-en {
    font-size: 3rem;
  }
  .header {
    background-color: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    width: max-content;
  }
  .siteIcon-side {
    display: none;
  }
  /*ここまではみ出しをなくす*/

  p {
    font-size: 15px;
    line-height: 1.7 !important;
  }

  .posts {
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
    margin: 0 auto;
}

.sub-title {
  font-size: 1.25rem;
  margin: 1rem auto;
}
.sec-title-jp {
  font-size: 1.5rem;
  position: static;
  text-align: center;
}
.sec-title-en {
display: none;
}


/*page-top*/
.passion-flex {
width: 80%;
}
.sec-title-jp::before {
  display: none;
}
.img-left {
  width: 50%;
  text-align: center;
}
.sec-title-bg {
  display: none;
}
.passion-right {
width: 100%;
padding: 1rem;
  }

.passion-flex-swap {
  flex-direction: column;
}
.passion-flex-swap {
width: 80%;
}

.top-2nd {
padding-bottom: 2rem;
}
.introduce {
  padding: 0rem;
}
.each-content {
  width: 90%;
}

.product-pic-box {
  text-align: center;
  margin: 1rem auto;
  width: 100%;
}


/*filter*/
.filters {
  text-align: center;
  margin: 2rem auto 1rem;
  width: 100%;
}

#introduce h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: serif;
}


/*cta*/
.cta {
  padding: 0%;
}
.online-box {
width: 80%;
}

.serve-text {
width: 80%;
}


/*Howtoeat*/
.howtoeat {
  background: #fafafa;
}
#howtoeat .title-area{
  font-size: 1.25rem;
}
#whotoeat .sec-title-jp {
  font-size: 1.25rem;
}
.serve-pic-area {
padding-top: 2rem;
}


/*footer*/
  .footer-flex {
    flex-direction: column;
  }
  .footer-logo {
    width: 70%;
    margin: 0 auto;
  }
  #footer a {
    margin: 1.5rem auto;
  }
  .footer-middle {
    margin: 0 auto;
  }
  .footer-menu {
    margin: 2rem auto;
  }
  .footer-right {
    margin: 0 auto;
  }
  .icon,
  .note-icon {
    margin: 0 1.5rem;
  }
  .middle {
    width: 100%;
  }
}
