@charset "UTF-8";
/* =====
 * サイト全体共通レイアウト
============================================================================= */
body {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

/* -----
 * link setting
----------------------------------------------------------------------------- */
a:link, a:visited, a:active {
  color: #03c;
  outline: 0 none #000;
}

a img {
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0;
}

/* -----
 * tag setting
----------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  margin: 1.3em 0 1em;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

p, ul, ol, table {
  margin: 1em 0;
}

p:last-child, ul:last-child, ol:last-child, table:last-child {
  margin-bottom: 0;
}

p:first-child, ul:first-child, ol:first-child, table:first-child {
  margin-top: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

small {
  font-size: 100%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* -----
 * サイト内共通class
----------------------------------------------------------------------------- */
.adjust-width {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.g-main {
  background: #000;
}

.section-title {
  text-align: center;
  margin: 0;
}

/* -----
 * g-header
----------------------------------------------------------------------------- */
body.header-fixed[aria-header-scroll="true"] .site-header {
  transform: translateY(-100%);
}

.g-header {
  background: #04040b;
  width: 100%;
  line-height: 1;
}

.header-inner {
  width: 1200px;
  margin: auto;
}

.header-inner:after {
  content: "";
  display: block;
  clear: both;
}

.head-logo {
  float: left;
  width: 25%;
  max-width: 280px;
  padding-top: 16px;
}

.toggle {
  display: none;
  margin: 0;
}

.nav {
  /*float: right;
  width: 75%;*/
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  z-index: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.navigation span {
  display: block;
  height: 100%;
  background: url(../images/menu-hover.png) no-repeat center center;
  -webkit-animation: chika 1s ease-in-out alternate infinite;
          animation: chika 1s ease-in-out alternate infinite;
}

.menu {
  padding: 0;
  list-style: none;
  margin: 0;
}

/*.menu:after {
  content: "";
  display: block;
  clear: both;
}*/

.menu li {
  text-align: center;
}

.menu li:not(:first-child) {
}

.menu li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 19px 0;
  position: relative;
  z-index: 1;
}

.menu li a span {
  display: inline-block;
  position: relative;
  padding: 2px 0;
}

.menu li a span:after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(171, 186, 205, 0)), color-stop(30%, #abbacd), color-stop(50%, #abbacd), color-stop(70%, #abbacd), to(rgba(171, 186, 205, 0)));
  background: linear-gradient(to right, rgba(171, 186, 205, 0) 0%, #abbacd 30%, #abbacd 50%, #abbacd 70%, rgba(171, 186, 205, 0) 100%);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

@-webkit-keyframes chika {
  0% {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@keyframes chika {
  0% {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

/* -----
 * メインビジュアル
----------------------------------------------------------------------------- */
.ex-hero {
  background: url(../images/main-bg.jpg) no-repeat center bottom #000;
  -webkit-background-size: cover;
          background-size: cover;
  text-align: center;
  margin-top: 110px;
  padding: 40px 0 50px;
  position: relative;
}

.ex-hero:before, .ex-hero:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ex-hero:before {
  background: url(../images/main-bg-before.jpg) no-repeat center bottom;
  -webkit-background-size: cover;
          background-size: cover;
  -webkit-animation: mainBg 2.5s ease-out 0.5s forwards;
          animation: mainBg 2.5s ease-out 0.5s forwards;
  z-index: 0;
}

.ex-hero:after {
  background-image: radial-gradient(at center center, rgba(0, 0, 0, 0.5) 0%, black 100%);
  background-position: 0 0;
  -webkit-background-size: 100% 250%;
          background-size: 100% 250%;
  z-index: 1;
  -webkit-animation: mainBg 2.5s ease-out 0.5s forwards;
          animation: mainBg 2.5s ease-out 0.5s forwards;
}

.ex-hero > div {
  position: relative;
}

.ex-hero .main-item {
  position: relative;
  z-index: 2;
  padding-bottom: 65px;
}

.ex-hero .main-item .main-item-img {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-animation: displayTop 1.8s ease-out 2.5s forwards;
          animation: displayTop 1.8s ease-out 2.5s forwards;
}

.ex-hero .main-item:after {
  content: "";
  display: block;
  width: 483px;
  height: 585px;
  background: url(../images/pentagon.png) no-repeat center center;
  -webkit-background-size: contain;
          background-size: contain;
  position: absolute;
  top: 65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  z-index: -1;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-animation: displayBottom 1.8s ease-out 2.5s forwards;
          animation: displayBottom 1.8s ease-out 2.5s forwards;
}

.ex-hero .main-title {
  position: absolute;
  left: 100px;
  top: 0;
  z-index: 3;
  padding-top: 50px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-animation: display 2s ease-out 4s forwards;
          animation: display 2s ease-out 4s forwards;
}

.ex-hero .main-title > * {
  margin: 0;
}

.ex-hero .main-catch {
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 3;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-animation: display 2s ease-out 4s forwards;
          animation: display 2s ease-out 4s forwards;
}

@-webkit-keyframes mainBg {
  0% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes mainBg {
  0% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@-webkit-keyframes display {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@keyframes display {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@-webkit-keyframes displayTop {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes displayTop {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes displayBottom {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    margin-top: 20px;
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    margin-top: 0;
  }
}

@keyframes displayBottom {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    margin-top: 20px;
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    margin-top: 0;
  }
}

/* -----
 * CM
----------------------------------------------------------------------------- */
.cm-container {
  background: url(../images/cm-bg.jpg) no-repeat center top;
  -webkit-background-size: cover;
          background-size: cover;
  padding: 100px 0;
  color: #fff;
}

.cm-inner:after {
  content: "";
  display: block;
  clear: both;
}

.video-content {
  float: left;
  width: 506px;
}

.video-content .video {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  background: #000;
}

.video-content .video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.video-content .video-name {
  margin: 20px 0 0;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 20px;
  font-weight: bold;
}

.cm-text {
  float: right;
  width: 654px;
}

.cm-text .text {
  font-size: 18px;
  line-height: 2.1;
  margin: 0;
}

.cm-comment {
  padding-left: 27px;
  margin-top: 50px;
}

.cm-comment:after {
  content: "";
  display: block;
  clear: both;
}

.cm-comment .comment {
  float: left;
  width: 935px;
  position: relative;
}

.cm-comment .comment .double-quote {
  position: absolute;
}

.cm-comment .comment .double-quote.-left {
  top: -13px;
  left: -17px;
}

.cm-comment .comment .double-quote.-right {
  right: -17px;
  bottom: -9px;
}

.cm-comment .comment:before, .cm-comment .comment:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 35px);
}

.cm-comment .comment:before {
  left: 0;
  bottom: 0;
  height: calc(100% - 32px);
  border-left: 1px solid #736d80;
  border-bottom: 1px solid #736d80;
}

.cm-comment .comment:after {
  right: 0;
  top: 0;
  height: 104px;
  border-top: 1px solid #736d80;
  border-right: 1px solid #736d80;
}

.cm-comment .comment-inner {
  position: relative;
  margin: 0;
  padding: 30px;
  line-height: 2;
}

.cm-comment .comment-inner:before, .cm-comment .comment-inner:after {
  content: "";
  display: block;
  position: absolute;
}

.cm-comment .comment-inner:before {
  right: 0;
  bottom: 32px;
  width: 1px;
  height: calc(100% - 150px);
  background: #736d80;
}

.cm-comment .comment-inner:after {
  width: 30px;
  height: 20px;
  border-bottom: 1px solid #736d80;
  border-right: 1px solid #736d80;
  left: 100%;
  top: 104px;
  -webkit-transform: skewX(57deg);
          transform: skewX(57deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

.cm-comment .image {
  float: right;
  width: 180px;
}

.cm-comment .image img {
  height: auto;
}

/* -----
 * 想い
----------------------------------------------------------------------------- */
.thought {
  background: -webkit-gradient(linear, left top, left bottom, from(#041122), to(#143664));
  background: linear-gradient(to bottom, #041122 0%, #143664 100%);
  padding: 100px 0;
  color: #fff;
  line-height: 2;
}

.thought .section-title {
  position: relative;
  z-index: 1;
}

.thought-label {
  margin: 70px 0;
  font-size: 18px;
}

.thought-label:after {
  content: "";
  display: block;
  clear: both;
}

.thought-label .image {
  float: left;
  width: 475px;
  text-align: right;
  position: relative;
}

.thought-label .image img {
  position: relative;
  z-index: 1;
}

.thought-label .image:before {
  content: "";
  display: block;
  width: 704px;
  height: 704px;
  background: url(../images/label-symbol.png) no-repeat center top;
  position: absolute;
  top: -155px;
  left: -60px;
  z-index: 0;
  -webkit-transform: rotate(-30deg) scale(0);
          transform: rotate(-30deg) scale(0);
  -webkit-transition: all 0.85s cubic-bezier(0.58, 0.44, 0.39, 1);
  transition: all 0.85s cubic-bezier(0.58, 0.44, 0.39, 1);
}

.thought-label .text {
  float: right;
  width: 694px;
  position: relative;
  z-index: 1;
}

.thought-label.-js-wp-animate .image:before {
  -webkit-transform: rotate(0) scale(1);
          transform: rotate(0) scale(1);
}

.thought-symbol {
  background: url(../images/thought-bg.jpg) no-repeat right top #151515;
  -webkit-background-size: auto 100%;
          background-size: auto 100%;
  padding: 0 48px;
  line-height: 2.1;
  height: 270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.thought-symbol .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 100%;
  max-width: 440px;
}

/* -----
 * 味わい
----------------------------------------------------------------------------- */
.taste-container {
  background: url(../images/taste-bg.jpg) no-repeat center top;
  -webkit-background-size: cover;
          background-size: cover;
  padding: 100px 0 0;
}

.taste-container > .adjust-width {
  padding-bottom: 85px;
  background: url(../images/taste-bg-glass.png) no-repeat right 150px bottom;
}

.taste-data {
  margin-top: 70px;
}

.taste-data:after {
  content: "";
  display: block;
  clear: both;
}

.taste-data .text {
  float: left;
  width: 506px;
  font-size: 18px;
  line-height: 2;
}

.taste-data .data {
  float: right;
  width: 654px;
}

.taste-data .taste-graph {
  margin-bottom: 50px;
}

.taste-data .taste-graph:after {
  content: "";
  display: block;
  clear: both;
}

.taste-data .taste-graph .graph {
  width: 50%;
  float: left;
  text-align: center;
}

.taste-data .taste-graph .name {
  font-size: 22px;
  font-weight: bold;
}

.taste-data .taste-graph.-js-wp-animate .graph-data {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.taste-data .graph-box {
  position: relative;
  max-width: 305px;
  margin: auto;
}

.taste-data .graph-data {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-transition: all 0.6s cubic-bezier(0.81, 0.17, 0.39, 1);
  transition: all 0.6s cubic-bezier(0.81, 0.17, 0.39, 1);
  -webkit-transform: scale(0);
          transform: scale(0);
}

/* -----
 * 製法
----------------------------------------------------------------------------- */
.recipe-container {
  background: url(../images/recipe-bg.jpg) no-repeat center center;
  -webkit-background-size: cover;
          background-size: cover;
  padding: 100px 0;
}

.recipe-container .lead {
  margin: 70px 0 40px;
  font-size: 18px;
  line-height: 2.1;
}

/*.material-container:after {
  content: "";
  display: block;
  clear: both;
}*/

.material {
  /*width: 360px;
  float: left;*/
}

.material:not(:last-child) {
  /*margin-right: 60px;*/
}

.material .image {
  margin: 0;
  text-align: center;
}

.material .image .img-wrap {
  display: inline-block;
  -webkit-box-shadow: 0 10px 27px rgba(0, 0, 0, 0.65);
          box-shadow: 0 10px 27px rgba(0, 0, 0, 0.65);
}

.material .image figcaption {
  height: 2.16em;
  margin: 25px 0 15px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}

.material .image figcaption .ruby {
  display: block;
  font-size: 11px;
}

/* -----
 * 商品情報
----------------------------------------------------------------------------- */
.item-container {
  background: url(../images/item-bg.jpg) no-repeat center top;
  -webkit-background-size: cover;
          background-size: cover;
  padding: 100px 0 70px;
}

.item-inner {
  background: rgba(255, 255, 255, 0.8);
  padding: 50px 44px;
  margin: 70px auto 100px;
}

.item-inner .item {
  width: calc(100% / 4);
  max-width: 255px;
  float: left;
  margin: 0 30px 40px 0;
}

.item-inner .item:nth-child(4) {
  margin-right: 0;
}

.item-inner .item .image {
  text-align: center;
  margin: 0 auto;
}

.item-inner .item .image.item-900 {
  padding-top: 51px;
}

.item-inner .item .image.item-pack {
  padding-top: 12px;
}

.item-inner .item .image.item-pack-900 {
  padding-top: 76px;
}

.item-inner .item .image figcaption {
  font-weight: bold;
  margin-top: 25px;
}

.item-inner .component {
  clear: both;
  padding: 40px 0 0;
  margin: 0;
  border-top: 1px solid #000;
}

.item-inner .component dt {
  font-size: 14px;
}

.item-inner .component dd {
  margin: 5px 0 0;
  font-size: 13px;
}

.item-data {
  padding: 0;
  list-style: none;
  margin: 30px 0 0;
  font-size: 14px;
  font-feature-settings: "palt";
}

.item-data li:nth-child(3) span:nth-child(2) {
  padding-left: 1em;
}

.item-catch {
  background: #000;
  text-align: center;
}

.link {
  text-align: center;
  margin-top: 70px;
  font-size: 0;
}

.link a {
  display: inline-block;
  position: relative;
  width: 520px;
  padding: 30px 60px;
  margin: 0 32px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  text-decoration: none;
  color: #fff;
  line-height: 1.3;
  font-size: 22px;
  font-weight: bold;
  -webkit-transition: background .4s ease-out;
  transition: background .4s ease-out;
}

/*.link a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 38px;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}*/

.link a:hover {
  background: rgba(255, 255, 255, 0.15);
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.link a .icon-link {
  display: inline-block;
  width: 25px;
  height: 28px;
  vertical-align: middle;
}

/* -----
 * g-footer
----------------------------------------------------------------------------- */
.g-footer {
  padding: 50px 0;
  background: #000;
  color: #fff;
}

.foot-inner:after {
  content: "";
  display: block;
  clear: both;
}

.sns {
  margin-top: 20px;
}

.sns a {
  display: inline-block;
  text-decoration: none;
  max-width: 30px;
  margin: 0 0.2em;
}

.foot-logo {
  max-width: 300px;
  margin: 0 0 25px;
}

.foot-menu {
  padding: 0;
  list-style: none;
  margin: 0 0 10px;
  font-size: 14px;
}

.foot-menu a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 0 1em;
}

.copyright {
  float: left;
  font-size: 10px;
  line-height: 1.3;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 50px;
  background: #fff;
  line-height: 32px;
  text-align: center;
  /*border-top: solid 4px #225739;
  border-left: solid 4px #225739;
  width: 24px;
  height: 24px;
  transform: rotate(45deg);*/
  cursor: pointer;
}

.pagetop img {
  width: 25px;
  height: 15px;
}

.footer-sns__line__qr__desc {
  margin: 0;
}

/* -----
 * responsive
----------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  /* PC */
  .g-wrapper {
    min-width: 1200px;
    margin: auto;
  }
  .menu {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    /*-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;*/
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: 0;
  }

  .menu li {
    margin: 0 25px;
  }

  .menu li:first-child {
    margin-left: 0;
  }

  .menu li:last-child {
    margin-right: 0;
  }

  .menu li a:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  .menu li a:hover span:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    width: 100px;
  }
  .g-header.-js-fixed {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
  }
  .g-footer .attention {
    text-align: right;
    float: right;
    max-width: 200px;
    font-size: 10px;
  }
  .foot-top {
    float: right;
    text-align: right;
  }
  .foot-menu li {
    display: inline-block;
    position: relative;
  }
  .foot-menu li:first-child a {
    padding-left: 0;
  }
  .foot-menu li:not(:last-child):after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1em;
    background: #fff;
    vertical-align: middle;
  }

  .material-container {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;*/
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;*/
  }

  .material-container .material {
    margin: 0 30px 30px;
    width: 30%;
  }

  .material-container .material:nth-child(3n) {
    margin-right: 0;
  }

  .material-container .material:first-child {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 943px) {
  /* tablet */
}

@media screen and (max-width: 767px) {
  /* smart phone */
  body {
    width: 100%;
    font-size: 14px;
  }
  /* -----
   * サイト内の共通class
　 ----------------------------------------------------------------------------- */
  .adjust-width {
    width: 100%;
    padding: 0 20px;
  }
  /* -----
   * g-header
  ----------------------------------------------------------------------------- */
  .g-header {
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    z-index: 99;
    background: rgba(0, 0, 0, 0.4);
  }
  body.header-fixed .g-header {
    top: 0;
  }
  .header-inner {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 10px;
  }
  .head-logo {
    width: 70%;
    max-width: 220px;
    padding-top: 0;
    margin-right: auto;
    position: relative;
    z-index: 99;
  }
  .toggle {
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 99;
    cursor: pointer;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
  }
  .toggle i {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 25px;
    height: 2px;
    background: #fff;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
  }
  .toggle i:first-child {
    margin-top: -11px;
  }
  .toggle i:nth-child(2) {
    margin-top: -1px;
  }
  .toggle i:nth-child(3) {
    margin-top: 9px;
  }
  .navigation {
    display: none;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    float: none;
    background: rgba(0, 0, 0, 0.9);
    z-index: 98;
    overflow: auto;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
  }
  .menu {
    padding-top: 90px;
  }
  .menu li {
    float: none;
    width: 100%;
  }
  .menu li:not(:first-child) {
    margin: 0;
  }
  .menu li a {
    padding: 21px 0;
  }
  .g-header.-js-open .toggle {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  .g-header.-js-open .toggle i:first-child {
    -webkit-transform: translateY(10px) rotate(-45deg);
            transform: translateY(10px) rotate(-45deg);
  }
  .g-header.-js-open .toggle i:nth-child(2) {
    -webkit-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
  }
  .g-header.-js-open .toggle i:nth-child(3) {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  .g-header.-js-open .nav {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  /* -----
   * メインビジュアル
  ----------------------------------------------------------------------------- */
  .ex-hero {
    background: #000;
    margin-top: 73px;
    padding: 0 20px 45px;
  }
  .ex-hero:before, .ex-hero:after {
    content: none;
  }
  .ex-hero .hero-inner {
    padding: 0;
  }
  .ex-hero .main-item {
    padding: 0;
    margin: 0 -20px;
  }
  .ex-hero .main-item .main-item-img {
    -webkit-animation: display 2s ease-out 0.5s forwards;
            animation: display 2s ease-out 0.5s forwards;
    padding-top: 154.66%;
    background: url(../images/main-item-sp.jpg) no-repeat 0 0;
    -webkit-background-size: 100% auto;
            background-size: 100% auto;
  }
  .ex-hero .main-item .main-item-img img {
    display: none;
  }
  .ex-hero .main-item img {
    width: 100%;
  }
  .ex-hero .main-item:after {
    content: none;
  }
  .ex-hero .main-catch {
    max-width: 52%;
    top: 13.8%;
    right: 2%;
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  .ex-hero .main-title {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    left: 0;
    text-align: center;
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  /* -----
   * CM
  ----------------------------------------------------------------------------- */
  .cm-container {
    background: url(../images/cm-bg.jpg) no-repeat center top;
    -webkit-background-size: cover;
            background-size: cover;
    padding: 50px 0;
  }
  .video-content {
    float: none;
    width: 100%;
  }
  .video-content .video-name {
    margin: 20px 0 40px;
  }
  .cm-text {
    float: none;
    width: 100%;
  }
  .cm-text .text {
    font-size: 16px;
    line-height: 1.8;
  }
  .cm-comment {
    padding: 0 5px;
    margin-top: 20px;
  }
  .cm-comment .image {
    float: none;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  .cm-comment .comment {
    float: none;
    width: 100%;
    font-size: 14px;
  }
  .cm-comment .comment:before {
    height: calc(100% - 24px);
    width: calc(100% - 24px);
  }
  .cm-comment .comment:after {
    height: calc(100% - 24px);
    width: calc(50% + 4px);
  }
  .cm-comment .comment .double-quote {
    width: 25px;
  }
  .cm-comment .comment .double-quote.-left {
    left: -12px;
  }
  .cm-comment .comment .double-quote.-right {
    right: -13px;
  }
  .cm-comment .comment-inner {
    padding: 20px 15px;
  }
  .cm-comment .comment-inner:before {
    bottom: auto;
    right: auto;
    top: 0;
    left: 24px;
    height: 1px;
    width: calc(50% - 44px);
  }
  .cm-comment .comment-inner:after {
    top: -18px;
    left: calc(50% - 20px);
    width: 20px;
    height: 18px;
    -webkit-transform: skewY(-40deg);
            transform: skewY(-40deg);
    border-top: 1px solid #736d80;
    border-bottom: none;
  }
  /* -----
   * 想い
  ----------------------------------------------------------------------------- */
  .thought {
    padding: 50px 0;
  }
  .thought-label {
    margin: 10px 0 40px;
    font-size: 16px;
  }
  .thought-label .image {
    float: none;
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 19% 10% 30px;
    margin: auto;
  }
  .thought-label .image:before {
    width: calc(100% + 40px);
    height: 100%;
    -webkit-background-size: 110% 110%;
            background-size: 110%;
    top: 0;
    left: -20px;
  }
  .thought-label .text {
    float: none;
    width: 100%;
  }
  .thought-symbol {
    background-image: url(../images/thought-bg-sp.jpg);
    -webkit-background-size: 100% auto;
            background-size: 100% auto;
    padding: 47.46% 15px 20px;
    line-height: 1.7;
    height: auto;
  }
  .thought-symbol .text {
    max-width: 100%;
  }
  /* -----
   * 味わい
  ----------------------------------------------------------------------------- */
  .taste-container {
    padding: 50px 0 0;
    background: url(../images/taste-bg-sp.jpg) no-repeat center bottom;
    -webkit-background-size: cover;
            background-size: cover;
  }
  .taste-container > .adjust-width {
    padding-bottom: 50px;
    background: none;
  }
  .taste-data {
    margin-top: 40px;
  }
  .taste-data .text {
    float: none;
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
  }
  .taste-data .data {
    float: none;
    width: 100%;
  }
  .taste-data .taste-graph {
    margin-bottom: 0;
  }
  .taste-data .taste-graph .graph {
    width: 100%;
    float: none;
    margin-top: 35px;
  }
  .taste-data .taste-graph .graph:nth-child(2) .graph-data {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
  .taste-data .taste-graph .name {
    font-size: 20px;
    margin: 0;
  }
  /* -----
   * 製法
  ----------------------------------------------------------------------------- */
  .recipe-container {
    background-image: url(../images/recipe-bg-sp.jpg);
    padding: 50px 0;
  }
  .recipe-container .lead {
    margin: 40px 0;
    font-size: 16px;
    line-height: 1.8;
  }
  .material {
    width: 100%;
    float: none;
  }
  .material:not(:last-child) {
    margin: 0 0 30px;
  }
  .material .image figcaption {
    height: auto;
    margin: 20px 0 10px;
    font-size: 18px;
  }
  .material .image figcaption .ruby {
    font-size: 10px;
  }
  /* -----
   * 商品情報
  ----------------------------------------------------------------------------- */
  .item-container {
    padding: 50px 0;
  }
  .item-inner {
    padding: 40px 15px;
    margin: 40px auto 50px;
  }
  .item-inner .item {
    width: 100%;
    float: none;
    margin: 0 auto 40px;
    max-width: 300px;
  }
  .item-inner .item:nth-child(4) {
    margin-right: auto;
    margin-bottom: 0;
  }
  .item-inner .item .image {
    width: 70%;
  }
  .item-inner .item .image.item-900, .item-inner .item .image.item-pack, .item-inner .item .image.item-pack-900 {
    padding-top: 0;
  }
  .item-inner .item .image figcaption {
    margin-top: 10px;
  }
  .item-inner .component {
    padding: 30px 0 0;
    margin-top: 35px;
  }
  .item-inner .component dd {
    font-size: 11px;
  }
  .item-data {
    margin: 15px 0 0;
  }
  .link {
    margin-top: 40px;
    padding: 0 20px;
  }
  .link a {
    width: 100%;
    padding: 20px 30px;
    margin: 0;
    font-size: 16px;
  }
  .link a:not(:first-child) {
    margin-top: 15px;
  }
  /*.link a:after {
    right: 20px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }*/
  .link a .icon-link {
    width: 20px;
    height: auto;
    vertical-align: middle;
  }

  /* -----
   * g-footer
  ----------------------------------------------------------------------------- */
  .g-footer {
    padding: 25px 0 20px;
    text-align: center;
  }
  .g-footer .foot-inner {
    padding: 0;
  }
  .g-footer .attention {
    font-size: 12px;
    margin: auto;
  }
  .foot-top {
    margin-bottom: 30px;
  }
  .foot-logo {
    margin: 0 auto 20px;
    width: 60%;
  }
  .foot-menu {
    margin: 0 0 30px;
    font-size: 16px;
    text-align: left;
    border-top: 1px solid #fff;
  }
  .foot-menu li {
    border-bottom: 1px solid #fff;
  }
  .foot-menu a {
    display: block;
    padding: 12px 20px;
    background: url(../images/icon-pc.png) no-repeat right 20px center;
    -webkit-background-size: 17px auto;
            background-size: 17px auto;
  }
  .copyright {
    float: none;
    margin: 25px 0 0;
  }

  .pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 43px;
    background: #fff;
    line-height: 28px;
    text-align: center;
    /*border-top: solid 4px #225739;
    border-left: solid 4px #225739;
    width: 24px;
    height: 24px;
    background: #fff;
    transform: rotate(45deg);*/
    cursor: pointer;
  }

  .pagetop img {
    width: 21px;
    height: 13px;
  }
}
