@charset "UTF-8";
/* Scss Document */
body {
  color: #222;
  font-family: 'Noto Sans JP', "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
  background: #fff;
  position: relative;
}

a:hover img {
  opacity: 0.64;
  transition: 0.5s;
}

img {
  max-width: 100%;
  height: auto;
}

/* header */
.header {
  position: relative;
}

.header .nav li.parent {
  position: relative;
}

.header .nav li.parent a {
  display: block;
  font-size: 1.5rem;
  font-family: "Barlow Condensed", sans-serif;
  text-decoration: none;
  transition: .5s;
}

.header .nav li.parent a:hover {
  opacity: .8;
}

.header .nav li.parent .child {
  display: none;
  width: 17.5rem;
  text-align: center;
  background: #000;
  position: absolute;
  left: 50%;
  top: calc(1.5rem + 100%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.header .nav li.parent .child::after {
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  margin: 0 auto;
  border-style: solid;
  border-width: 0 0.75rem 0.75rem 0.75rem;
  border-color: transparent transparent #000 transparent;
}

.header .nav li.parent .child li {
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 0;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header .nav li.parent .child li:last-child {
  border-bottom: none;
}

.header .nav li.parent .child li span {
  display: block;
  font-weight: bold;
  padding: 1.5rem 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.header .nav li.parent .child li a {
  display: inline-block;
  font-size: 1rem;
  text-decoration: underline;
  padding: 1.5rem 1rem;
  position: relative;
}

.header .nav li.parent .child li a:hover {
  text-decoration: none;
}

.header .nav li.parent .child li a::after {
  content: "／";
  position: absolute;
  right: -0.75rem;
  top: 1.5rem;
}

.header .nav li.parent .child li a:last-child::after {
  display: none;
}

.header .sns {
  display: flex;
  align-items: center;
}

.header .sns li {
  margin-left: 1.5rem;
}

.header .sns li:first-child {
  margin: 0;
}

.header .sns li a {
  display: block;
}

.header .sns li a img {
  width: 1.5rem;
}

.header h1 {
  position: absolute;
  bottom: 2.5rem;
  left: calc((52 / 1400) * 100vw);
  z-index: 3;
}

.header h1 img {
  height: 2.25rem;
}

.header .menu {
  width: 2.5rem;
  height: 2.5rem;
  position: fixed;
  right: 1.75rem;
  top: 1.25rem;
  transition: 0.5s;
  cursor: pointer;
  z-index: 999;
}

.header .menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: #FFF;
  border-radius: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.5s;
}

.header .menu .span {
  top: calc(50% - 0.75em);
}

.header .menu .span2 {
  width: 1.5rem;
  top: calc(50% - 1px);
}

.header .menu .span3 {
  bottom: calc(50% - 0.75em);
}

.header .menu.open .span {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.header .menu.open .span2 {
  opacity: 0;
}

.header .menu.open .span3 {
  bottom: calc(50% - 1px);
  transform: rotate(-45deg);
}

.header .mainImage {
  width: 100%;
  /*
		height: 100%;
		position: relative;
		overflow: hidden;
		video{
			display: block;
			width: 100%;
			height: 100%;
			position: absolute;
			left: 0;
			top: 0;
			z-index: 1;
		}
		*/
}

@media screen and (max-width: 979px) {
  .header .mainImage {
    height: 100vw;
  }
}

.header .mainImage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.header .mainImage a {
  width: 13.5em;
  display: block;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  text-decoration: none;
  padding: 1em;
  border: 1px solid #fff;
  position: absolute;
  top: 2rem;
  right: 2rem;
  transition: 0.25s;
}

@media screen and (max-width: 979px) {
  .header .mainImage a {
    top: auto;
    bottom: 2rem;
  }
}

.header .mainImage a:hover {
  color: #000;
  background: #fff;
}

.footer {
  padding: 10em 0 5rem;
}

.footer .logo img {
  height: 1.5rem;
  margin: 0 auto;
}

.footer .sns {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .sns li {
  margin: 3.25rem 0.75rem 0;
}

.footer .sns li a {
  display: block;
}

.footer .sns li a img {
  width: 1.5rem;
}

.recipeList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 2em;
}

.recipeList::after {
  display: block;
  content: "";
  width: calc((100% - 7.5em) / 3);
}

@media screen and (max-width: 979px) {
  .recipeList {
    flex-direction: column;
  }
}

.recipeList li {
  width: calc((100% - 7.5em) / 3);
  margin: 0 0 3.75em;
  position: relative;
}

@media screen and (max-width: 979px) {
  .recipeList li {
    width: 100%;
    margin: 0 0 2.5rem;
  }
}

.recipeList li a {
  display: block;
}

.recipeList li span {
  display: block;
}

.recipeList li .img {
  padding-top: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.recipeList li .b {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.48);
}

.recipeList li .title {
  width: calc(100% - 3.75rem);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 1.125rem 1.5rem;
}

.recipeList li .btn {
  display: flex;
  width: 3.75rem;
  background: #000;
  align-items: center;
  justify-content: space-between;
}

.recipeList li .btn img {
  height: 1.5rem;
  margin: 0 auto;
}

.infoList {
  width: calc(100% - 4em);
  max-width: 700px;
  margin: 0 auto 0;
}

.infoList li {
  display: table;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.infoList li a {
  display: block;
  padding: 2rem 0 2rem 0;
  text-decoration: none;
}

.infoList li a:hover {
  opacity: .8;
}

.infoList li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.infoList li span {
  display: table-cell;
  font-size: 0.875rem;
  line-height: 1.5;
  vertical-align: middle;
}

.infoList li .date {
  width: 5.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
}

.post {
  width: calc(100% - 4em);
  max-width: 980px;
  margin: 0 auto;
}

.post h2 {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin: 6rem 0 0;
}

.post h3 {
  font-size: 1.5rem;
  margin: 4.5rem 0 0;
}

.post h4 {
  font-size: 1.25rem;
  margin: 2.5rem 0 0;
}

.post p {
  line-height: 2;
  margin: calc(2rem + -0.5em) 0 -0.5em;
}

.post ul {
  margin: 2rem 0 0;
}

.post ul li {
  padding-left: 1rem;
  line-height: 1.5;
  margin: -0.25em 0 calc(1rem + -0.25em);
  position: relative;
}

.post ul li:last-child {
  margin: -0.25em 0;
}

.post ul li.none::before {
  display: none;
}

.post ul li::before {
  font-size: 0.5rem;
  content: "●";
  position: absolute;
  left: 0;
  top: 0.125rem;
}

.post table {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 2.5em 0 0;
}

.post table th {
  line-height: 1.5;
  font-weight: normal;
  padding: 1em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  vertical-align: top;
}

.post table td {
  line-height: 1.5;
  padding: 1em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.recipe {
  width: calc(100% - 4em);
  max-width: 1098px;
  margin: 5em auto 6.25em;
}

.recipe h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  margin: 0 0 2.5rem;
}

.recipe h3 span {
  display: inline-block;
  position: relative;
}

.recipe h3 span::after {
  width: 3.75rem;
  height: 1px;
  content: "";
  background: rgba(0, 0, 0, 0.48);
  position: absolute;
  left: calc(100% + 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

#index .detail {
  width: 100%;
  height: 100vh;
  color: #FFF;
  padding: 10em 0;
  background: rgba(0, 0, 0, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  overflow: scroll;
  z-index: 10;
  transition: 0.25s;
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 979px) {
  #index .detail {
    padding: 7.5em 0 5rem;
  }
}

#index .detail.detail2 {
  color: #000;
  background: rgba(255, 255, 255, 0.95);
}

#index .detail.detail2 .close {
  filter: invert(1);
}

#index .detail.detail2 .body {
  width: 38em;
}

@media screen and (max-width: 979px) {
  #index .detail.detail2 .body {
    width: 23em;
  }
}

#index .detail.detail2 .body p {
  font-size: 1rem;
  line-height: 2.5;
  white-space: nowrap;
  margin-top: -0.5em;
}

#index .detail.show {
  opacity: 1;
  visibility: visible;
}

#index .detail .close {
  width: 2.5rem;
  position: fixed;
  top: 5rem;
  right: 5rem;
  cursor: pointer;
  margin: 0;
  transform: translateX(50%) translateY(-50%);
}

@media screen and (max-width: 979px) {
  #index .detail .close {
    top: 3.875rem;
    right: 50%;
    z-index: 2;
  }
}

#index .detail .body {
  width: calc(100% - 4em);
  max-width: 1100px;
  margin: 0 auto;
  transition: 0.375s;
  transform: translateY(1.25rem);
  opacity: 0;
}

#index .detail .body.show {
  transform: translateY(0);
  opacity: 1;
}

#index .detail .body .image {
  padding-top: 66.66%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#index .detail .inner {
  width: 100%;
  max-width: 840px;
  margin: 5em auto 0;
}

#index .detail h1 {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1.75;
  margin: -0.375em 0;
}

#index .detail h2 {
  font-size: 1.25rem;
  margin: 4rem 0 0;
}

#index .detail h2.border {
  margin: 5.5rem 0 0;
  padding: 5.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#index .detail h2 span {
  font-size: 0.75rem;
}

#index .detail p {
  font-size: 0.875em;
  line-height: 2;
  margin: calc(2.5rem + -0.5em) 0 -0.5em;
}

@media screen and (min-width: 980px) {
  #index .detail .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.5rem;
  }
  #index .detail .flex p {
    width: calc(50% - 1rem);
    margin-top: 0;
  }
}

#index .contents > div {
  position: relative;
}

#index .contents h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-align: justify;
  position: absolute;
  top: 10rem;
  left: calc((112 / 1400) * 100vw);
  z-index: 2;
}

#index #about {
  padding: 5em 0 0;
}

#index #about .img1 {
  width: calc((630 / 1400) * 100vw);
  height: calc((700 / 1400) * 100vw);
  margin-left: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#index #about .read {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 2;
  margin: -0.5em 0;
}

#index #about .read rt {
  font-family: "Barlow Condensed", sans-serif;
}

#index #about .txt {
  font-size: 1.125rem;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.15em;
  line-height: 2.5;
  text-align: justify;
  margin: calc(4rem + -0.75em) 0 -0.75em;
}

#index #about .txt a {
  display: block;
  width: 10em;
  font-size: 0.75rem;
  text-decoration: none;
  text-align: center;
  padding: 0.5em;
  margin-top: 1.5rem;
  border: 1px solid #000;
  transition: 0.5s;
}

#index #about .txt a:hover {
  color: #fff;
  background: #000;
}

#index #about .img2 {
  width: calc((280 / 1400) * 100vw);
  height: calc((700 / 1400) * 100vw);
  background: url(../img/02.jpg) center/cover no-repeat;
  position: absolute;
  left: 0;
  top: 15rem;
  z-index: 1;
}

#index #about .box .image {
  padding-top: 56.36%;
  background: url(../img/03.jpg) center/cover no-repeat;
}

#index #about .box .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5em 0 0;
}

#index #about .box dl dt {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: right;
  letter-spacing: 0.2em;
}

#index #about .box dl dd {
  font-size: 0.875rem;
  line-height: 1.75;
  text-align: justify;
  margin: calc(2.5rem + -0.375em) 0 -0.375em;
}

#index #products .box {
  margin: 0 0 10em;
}

#index #products .box.gift {
  padding: 10em 0;
  background: #f7eb00;
}

#index #products .box.gift .title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.15em;
  position: absolute;
  right: -3rem;
  top: -11.5rem;
}

#index #products .box.gift .body {
  width: 100%;
  max-width: 821px;
  margin: 0 auto;
  position: relative;
}

#index #products .box .imgBox .image {
  padding-top: 56.36%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#index #products .box .txtBox h3 {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

#index #products .box .txtBox .price {
  font-family: "Barlow Condensed", sans-serif;
  margin: 1.5rem 0 0;
}

#index #products .box .txtBox .price strong {
  font-size: 1.5rem;
}

#index #products .box .txtBox .txt {
  font-size: 0.875rem;
  line-height: 1.75;
  text-align: justify;
  margin: calc(3.75rem + -0.375em) 0 -0.375em;
}

#index #products .box .txtBox table {
  font-size: 0.875rem;
  margin: calc(3rem + -0.25em) 0 -0.25em;
}

#index #products .box .txtBox table th {
  width: 4.5rem;
  font-weight: normal;
  padding: 0.75em 0 0;
  line-height: 1.5;
  vertical-align: top;
}

#index #products .box .txtBox table td {
  font-weight: normal;
  padding: 0.75em 0 0;
  line-height: 1.5;
}

#index #news {
  padding: 10em 0 0;
  color: #FFF;
  background: rgba(0, 0, 0, 0.88);
}

@media screen and (min-width: 980px) {
  .pcNone {
    display: none !important;
  }
  html {
    width: 100%;
    height: 100%;
    font-size: 14px;
  }
  body {
    width: 100%;
    height: 100%;
    font-size: 1rem;
  }
  img {
    display: block;
    height: auto;
  }
  /* header */
  .header {
    height: calc((600 / 1400) * 100vw);
  }
  .header::after {
    width: 100%;
    height: 10vw;
    content: "";
    background: url("../img/grade.png") center/100% no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
  }
  .header nav {
    color: #FFF;
    position: absolute;
    bottom: 2.5em;
    left: calc((450 / 1400) * 100vw);
    z-index: 9;
  }
  .header .sns {
    position: absolute;
    bottom: 2.5em;
    right: calc((73 / 1400) * 100vw);
    z-index: 9;
  }
  .header .nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .header .nav li {
    margin-right: 3.75rem;
  }
  .header .nav li:last-child {
    margin: 0;
  }
  #index {
    overflow: hidden;
  }
  #index .header .menu {
    display: none;
  }
  #index #about .txtBox {
    position: absolute;
    top: calc((260 / 1400) * 100vw);
    left: calc((456 / 1400) * 100vw);
  }
  #index #about .box {
    width: calc((770 / 1400) * 100vw);
    margin: 5em 0 0 calc((456 / 1400) * 100vw);
  }
  #index #about .box .inner {
    display: flex;
    justify-content: space-between;
  }
  #index #about .box .inner .img3 {
    width: 25rem;
  }
  #index #about .box .inner dl {
    width: calc(100% - 27.5em);
  }
  #index #products {
    padding: 10em 0 0;
  }
  #index #products h2 {
    top: 7.5rem;
  }
  #index #products .box {
    display: flex;
    align-items: flex-end;
  }
  #index #products .box .imgBox {
    width: 55rem;
  }
  #index #products .box .imgBox .list {
    display: flex;
    justify-content: flex-end;
  }
  #index #products .box .imgBox .list li {
    width: 25rem;
    margin: 1.5rem 0 0 1.5rem;
  }
  #index #products .box .txtBox {
    width: calc((630 / 1400) * 100vw);
    padding: 0 10.75em 0 5em;
  }
  #index #products .box:nth-child(odd) .imgBox {
    order: 2;
  }
  #index #products .box:nth-child(odd) .imgBox .list {
    justify-content: flex-start;
  }
  #index #products .box:nth-child(odd) .imgBox .list li {
    margin: 1.5rem 1.5rem 0 0;
  }
  #index #products .box:nth-child(odd) .txtBox {
    order: 1;
    padding: 0 5em 0 10.75em;
  }
  #index #products .box:nth-child(odd) .txtBox h3 {
    text-align: right;
  }
  #index #products .box:nth-child(odd) .txtBox .price {
    text-align: right;
  }
  #index #products .box.gift {
    margin: 0;
  }
  #index #products .box.gift .body {
    display: flex;
    justify-content: flex-end;
  }
  #index #products .box.gift .body .txtBox {
    width: calc(100% - 25rem);
    padding: 0 0 0 4.25em;
  }
  #index #products .box.gift .body .txtBox h3,
  #index #products .box.gift .body .txtBox .price {
    text-align: left;
  }
  #index #products .box.gift .body .list {
    width: 25rem;
    position: absolute;
    top: -13.5em;
    left: 0;
    z-index: 2;
  }
  #index #products .box.gift .body .list li {
    margin: 0 0 1.25em;
  }
}

@media screen and (max-width: 979px) {
  .spNone {
    display: none !important;
  }
  html {
    width: 100%;
    height: 100%;
    font-size: 12px;
  }
  body {
    width: 100%;
    height: 100%;
    font-size: 1rem;
    overflow-x: hidden;
  }
  img {
    display: block;
    max-width: 100%;
    width: auto;
  }
  .header h1 {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    bottom: initial;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
  .header h1 img {
    height: 2rem;
    margin: 0 auto;
  }
  .header nav {
    visibility: hidden;
    width: 100%;
    height: 100vh;
    text-align: center;
    padding: 0 4em;
    background: rgba(0, 0, 0, 0.95);
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    transition: 0.375s;
    opacity: 0;
  }
  .header nav.show {
    visibility: visible;
    opacity: 1;
  }
  .header nav .inner {
    width: 20rem;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transition: 0.375s;
    transform: translateY(calc(-50% + 1.5rem));
    opacity: 0;
  }
  .header nav .inner.show {
    transform: translateY(-50%);
    opacity: 1;
  }
  .header .nav li a {
    display: block;
    color: #fff;
    padding: 1.5rem 0;
  }
  .header .sns {
    width: 1.5rem;
    display: block;
    position: absolute;
    top: 5.75em;
    right: 2.25rem;
    z-index: 10;
  }
  .header .sns li {
    margin: 0 0 1.5rem;
  }
  .header .sns li:first-child {
    margin: 0 0 1.5rem;
  }
  .footer {
    padding: 5rem 0;
  }
  .infoList li a {
    text-align: left;
    padding: 1.5rem 1rem 1.5rem 0;
    background-position: center right;
  }
  .infoList li a span {
    display: inline-block;
  }
  .infoList li a .date {
    width: 7rem;
  }
  .infoList li a .title {
    display: block;
    margin: 0.75rem 0 0;
  }
  #index .contents h2 {
    top: 2.5rem;
    left: 2rem;
  }
  #index #about {
    padding: 0;
  }
  #index #about h2 {
    top: calc((413 / 448) * 100vw);
  }
  #index #about .img1 {
    width: 100%;
    height: 100vw;
  }
  #index #about .txtBox {
    display: table;
    margin: 5.5em auto 5em;
  }
  #index #about .img2 {
    width: 100%;
    height: 100vw;
    background-image: url(../img/_02.jpg);
    position: static;
  }
  #index #about .box {
    margin: 5em 2em 0;
    position: relative;
  }
  #index #about .box .image {
    padding-top: 100%;
  }
  #index #about .box .img3 {
    width: calc((217 / 448) * 100vw);
    position: absolute;
    right: -2rem;
    top: calc((323 / 448) * 100vw);
  }
  #index #about .box .inner {
    display: block;
    margin-top: 2.5rem;
  }
  #index #about .box .inner dt {
    text-align: left;
  }
  #index #products h2 {
    top: -2.5rem;
  }
  #index #products .box {
    margin: 9em 0 0;
  }
  #index #products .box .list {
    margin: 0 2em;
  }
  #index #products .box .list li {
    margin: 0 0 1.5em;
  }
  #index #products .box .list li:last-child {
    margin: 0;
  }
  #index #products .box .imgBox .image {
    padding-top: 100%;
  }
  #index #products .box .imgBox .list {
    display: none;
  }
  #index #products .box .txtBox {
    padding: 3.75rem 2em 3.5em;
  }
  #index #products .box.gift {
    padding: 0 0 3.5em;
    position: relative;
    background: none;
  }
  #index #products .box.gift::after {
    width: 100%;
    height: calc(100% - 2.5em);
    content: "";
    position: absolute;
    top: 2.5rem;
    left: 0;
    z-index: -1;
    background: #f7eb00;
  }
  #index #products .box.gift .title {
    right: 1rem;
    top: -3.5rem;
  }
  #index #news {
    padding: 5em 2em 0;
    margin: 0 0 0;
  }
  #index #news h2 {
    top: -2.5rem;
  }
  #index #news .infoList {
    width: calc(100% - 6em);
    margin: 0 0 0 6em;
  }
}
