@charset "utf-8";


/* ----------------------------------------------------------
 Reset,Base CSS
---------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  border-style:none;
  box-sizing: border-box !important;
}
html {
  color: #333333;
  background-color: #ffffff;
  font-family: 'Noto Serif JP', serif;
  font-size : 1rem;
  line-height: 1.75em;
  text-align: left;
  -webkit-font-smoothing: subpixel-antialiased;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size-adjust: none;
  -webkit-font-size-adjust: none;
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  position: relative;
  background-image: url(back.jpg);
  background-size: cover;
  background-position: left top;
}
html,body,#wrapper { height: 100%; }
main { display: block; }
section { margin: 0; }
figure img { width: 100%; }
h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: #333333;
  text-decoration : none;
  border: none;
  outline: none;
  transition: 0.6s;
}
a:hover {
  transition: 0.6s;
  opacity: 0.5;
}
a[href^="tel:"] { cursor: default; }
ul, ol {
  margin: 0;
  padding: 0;
  list-style : none;
}
figure {
  margin: 0;
  padding: 0;
  min-height: 0% !important;
  line-height: 0;
}
img {
  margin: 0;
  padding: 0;
  min-height: 0;
  line-height: 0;
}
p {
  margin-bottom: 1em;
  font-size: 0.9rem;
  line-height: 1.75em;
}
.tx_l { text-align: left !important; }
.tx_r { text-align: right !important; }
.tx_c { text-align: center !important; }

/* ----------------------------------------------------------
 Responsive Settings
---------------------------------------------------------- */
.wrapper { overflow: hidden; }

@media print, screen and (min-width : 767px) { /* PC */
  .wrapper {
    min-width: 1200px;
  }
  .pcoff {
    display: none !important;
  }
  .wrap {
    width: 80%;
    min-width: 1100px;
    max-width: 1400px;
    margin: 0 auto;
  }
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  .smpoff {
    display: none !important;
  }
  html,p {
    font-size: 4.5vw;
    line-height: 1.75em;
  }
}


/* ----------------------------------------------------------
 Header
---------------------------------------------------------- */
header {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1000;
  transition: 0.6s;
  background-color: rgba(255,255,255,0.8);
  padding: 0.5rem 1rem;
}
body.home header {
  opacity: 0;
  position: fixed;
}
body.home header.is-animation {
  opacity: 1;
}
header.is-animation {
  position: fixed;
  transition: 0.6s;
  box-shadow: 0 0 0.5rem #cccccc;
}
header h1 {
  width: 100px;
  line-height: 0;
}
header h1 img {
  width: 100%;
}



/*　ヘッダー、ナビゲーション
--------------------------------------------- */
#nav-toggle {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background-color: transparent;
}
#nav-toggle div {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  transition: 0.6s;
}
#nav-toggle div:hover {
  opacity: 0.7;
  transition: 0.6s;
}
#nav-toggle div span {
  width: 50%;
  height: 3px;
  left: 25%;
  display: block;
  background: #aaaaaa;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease;
}
#nav-toggle div span:nth-child(1) { top: 25px; }
#nav-toggle div span:nth-child(2) { top: 33px; }
#nav-toggle div span:nth-child(3) { top: 41px; }

.open #nav-toggle span { background: #fff; }
.open #nav-toggle span:nth-child(1) {
  top: 35px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 35px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 35px;
  transform: rotate(-45deg);
}

/* z-index */
#nav-toggle { z-index: 1000; }
#container { z-index: 900; }

#gloval-nav {
  background: rgba(137,33,62,0.9);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}
#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color .6s ease;
}
#gloval-nav a { color: #fff; }
#gloval-nav h2 {
  opacity: 0;
  transition:  transform .6s ease, opacity .2s ease;
  transform: translateX(200px);
  transition-delay: .45s;
  font-size: 2rem;
  margin-bottom: 2rem;
  width: 15%;
  margin: 0 auto 2rem auto;
}
#gloval-nav h2 img {
  width: 100%;
}
#gloval-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  margin: 0 auto;
}
#gloval-nav ul li {
  width: 46%;
  margin: 0 2%;
  padding: 0.5rem;
  opacity: 0;
  transform: translateX(200px);
  transition:  transform .6s ease, opacity .2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
#gloval-nav ul li:last-child {
  width: 100%;
}
#gloval-nav ul li:nth-child(2) { transition-delay: .15s; }
#gloval-nav ul li:nth-child(3) { transition-delay: .3s; }
#gloval-nav ul li:nth-child(4) { transition-delay: .45s; }
#gloval-nav ul li:nth-child(5) { transition-delay: .6s; }
#gloval-nav ul li:nth-child(6) { transition-delay: .75s; }
#gloval-nav ul li:nth-child(7) { transition-delay: .9s; }
#gloval-nav ul li:nth-child(8) { transition-delay: .75s; }
#gloval-nav ul li:nth-child(9) { transition-delay: .6s; }
#gloval-nav ul li:nth-child(10) { transition-delay: .45s; }
#gloval-nav ul li:nth-child(11) { transition-delay: .3s; }
#gloval-nav ul li:nth-child(12) { transition-delay: .15s; }

/* open */
.open { overflow: hidden; }
.open #nav-toggle div:after {
  display: none;
  transition: 0.6s;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav h2 {
  width: 20%;
  opacity: 1;
  transform: translateX(0);
  transition:  transform 1s ease, opacity .9s ease;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition:  transform 1s ease, opacity .9s ease;
}
.open #gloval-nav li a {
  transition: 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.open #gloval-nav li a:hover {
  opacity: 0.5;
  transition: 0.6s;
}

@media screen and (max-width : 768px) { /* スマホ */
  #nav-toggle div {
    position: relative;
    width: 15vw;
    height: 15vw;
    display: flex;
    justify-content: center;
    transition: 0.6s;
  }
  #nav-toggle div:after {
    font-size: 2vw;
    bottom: 0;
  }
  #nav-toggle div span:nth-child(1) { top: 15px; }
  #nav-toggle div span:nth-child(2) { top: 23px; }
  #nav-toggle div span:nth-child(3) { top: 31px; }
  .open #nav-toggle span:nth-child(1),
  .open #nav-toggle span:nth-child(2),
  .open #nav-toggle span:nth-child(3) {
    top: 30px;
  }
  #gloval-nav ul {
    width: 90%;
  }
  #gloval-nav h2 {
    width: 30%;
    margin: 0 auto 2rem auto;
  }
  #gloval-nav h2 img {
    width: 100%;
  }
}


/* ----------------------------------------------------------
 Footer
---------------------------------------------------------- */
footer {
  padding: 3rem 1rem 1rem 1rem;
}
footer h1 {
  text-align: center;
  width: 150px;
  margin: 0 auto;
}
footer h1 img {
  width: 100%;
}
footer div {
  display: flex;
  justify-content: space-between;
}
footer p {
  display: inline-block;
}
@media screen and (max-width : 768px) { /* スマホ */
  footer h1 {
    margin-bottom: 1rem;
  }
  footer div {
    flex-direction: column;
    align-items: center;
  }
}


/* ----------------------------------------------------------
 Common Settings
---------------------------------------------------------- */

.fadein {
  opacity : 0;
  transform : translate(0, 30px);
  transition : all 1s;
}
 
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}



/* ----------------------------------------------------------
 Home
---------------------------------------------------------- */

/* Shutter */
.shutter{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#000;
  z-index:9999;
}
.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #89213e;
  width: 1px;
  height: 0;
}
.shutter {
  -webkit-animation: byeShutter 2.6s forwards;
          animation: byeShutter 2.6s forwards;
}
.shutter::before {
  -webkit-animation: shutterOpen 2.6s forwards;
          animation: shutterOpen 2.6s forwards;
}
.sec_top {
  -webkit-animation: contentScale 2.6s forwards;
          animation: contentScale 2.6s forwards;
}
@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen {
  0% {
    width: 1px;
    height: 0;
  }
  50% {
    width: 1px;
    height: 100%;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}



/* Main Image */
.sec_top {
  width: 100%;
  height: 100vh;
  background-image: url(images/back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sec_top h1 {
  position: relative;
  width: 15%;
  min-width: 170px;
}
.sec_top h1 img {
  width: 100%;
}
.sec_top p.scroll {
  color: #ffffff;
  position: absolute;
  bottom: 1rem;
}
.scroll span {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/* Instagram */
.sec_ig {
  padding: 2rem 0 4rem 0;
  text-align: center;
  position: relative;
}
/*.sec_ig div.gift {
  width: 500px;
  margin: 0 auto 1rem auto;
}
.sec_ig div.gift img {
  width: 100%;
}*/
.sec_ig div.gift {
  display: flex;
  justify-content: space-between;
  width: 800px;
  margin: 0 auto 1rem auto;
}
.sec_ig div.gift img {
  width: 48%;
}
.sec_ig p {
  font-size: 1.8rem;
  line-height: 1.5em;
}
.sec_ig p span {
  display: block;
  font-size: 0.9rem;
}
.sec_ig ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3rem auto;
}
.sec_ig ul li {
  width: 20vw;
  height: 20vw;
  overflow: hidden;
}
.sec_ig ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.sec_ig ul li a img {
  width: 100%;
  height: 100%;
}
.sec_ig ul li a span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 2rem;
  word-wrap: break-word;
  color: #ffffff;
  background-color: rgba(00,00,00,0.7);
  opacity: 0;
  text-align: left;
  transition: .6s;
}
.sec_ig ul li a:hover {
  opacity: 1;
}
.sec_ig ul li a:hover span {
  opacity: 1;
  transition: .6s;
}
.sec_ig ul li:last-child {
  color: #ffffff;
  background-color: #89213e;
}
.sec_ig ul li:last-child a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.sec_ig ul li:last-child a:hover {
  opacity: 0.5;
}
.sec_ig ul li:last-child a img {
  width: 26%;
  height: auto;
  margin-bottom: 2rem;
}
@media screen and (max-width : 768px) { /* Smart Phone*/
  .sec_ig {
    padding: 2rem 10% 3rem 10%;
  }
  /*.sec_ig div.gift {
    width: 100%;
  }*/
  .sec_ig div.gift {
    flex-direction: column;
    width: 90%;
    margin: 0 auto 1rem auto;
  }
  .sec_ig div.gift img {
    width: 100%;
    margin-bottom: 1rem;
  }
  .sec_ig p {
    font-size: 6vw;
  }
  .sec_ig p span {
    font-size: 4vw;
    line-height: 1.75em;
    margin-top: 1rem;
    text-align: left;
  }
  .sec_ig ul {
    flex-wrap: wrap;
    margin: 1rem 0;
  }
  .sec_ig ul li {
    width: 40vw;
    height: 40vw;
  }
  .sec_ig ul li:last-child a {
    font-size: 3vw;
  }
  .sec_ig ul li:last-child a img {
    margin-bottom: 0;
  }
}

/* 商品詳細 */
.sec_about {
  display: flex;
  margin-bottom: 4rem;
}
.sec_about div:nth-of-type(1) {
  width: 40%;
  color: #ffffff;
  background-color: #89213e;
  display: flex;
}
.sec_about div:nth-of-type(1) article {
  padding: 7rem 3rem 7rem 0;
  margin-left: auto;
}
.sec_about div:nth-of-type(2) {
  width: 60%;
  background-image: url(images/photo-about.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.sec_about h2 {
  margin-bottom: 1em;
  font-size: 1.8rem;
  line-height: 1.5em;
  letter-spacing: 1.5rem;
  display: flex;
  align-items: center;
}
.sec_about h2 span {
  font-size: 0.9rem;
  letter-spacing: initial;
}
.sec_about a {
  display: block;
  color: #ffffff;
}
@media screen and (max-width : 768px) { /* Smart Phone*/
  .sec_about {
    flex-direction: column;
  }
  .sec_about div:nth-of-type(1) {
    width: 100%;
    padding: 4rem 10%;
  }
  .sec_about div:nth-of-type(1) article {
    padding: 0;
  }
  .sec_about h2 {
    font-size: 8vw;
  }
  .sec_about div:nth-of-type(2) {
    width: 100%;
    height: 185px;
  }
}

/* こだわり */
.sec_commit {
  display: flex;
  flex-direction: column;
}
.sec_commit figure,
.sec_commit figure img {
  width: 100%;
}
.sec_commit div {
  padding: 0 20% 220px 20%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  color: #ffffff;
  background-color: #000000;
}
.sec_commit div h2 {
  height: max-content;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: -ms-max-content;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 1.8rem;
  margin-top: -1.5em;
  margin-right: 4rem;
  padding-left: 1rem;
}
.sec_commit div h2 span {
  font-size: 0.9rem;
  margin-top: 1rem;
}
.sec_commit div p {
  margin-bottom: 0;
  padding-right: 1rem;
}
.sec_commit div + figure {
  display: flex;
  align-items: flex-start;
  width: 60%;
  margin: -150px auto 0 auto;
}
.sec_commit div + figure img {
  width: calc(100% / 3);
  padding: 0 1rem;
}
@media screen and (max-width : 768px) { /* Smart Phone*/
  .sec_commit div {
    padding: 2rem 10% 4rem 10%;
    align-items: flex-start;
  }
  .sec_commit div h2 {
    font-size: 8vw;
    margin-right: 2rem;
    padding-left: 0;
  }
  .sec_commit div + figure {
    width: 80%;
    margin: -2rem auto 0 auto;
  }
  .sec_commit div + figure img {
    padding: 0 0.25rem;
  }
}

/* 店舗情報 */
.sec_shopinfo {
  width: 90%;
  margin: 1rem auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.sec_shopinfo p {
  font-size: 1.8rem;
  line-height: 1.25em;
  letter-spacing: 0.75rem;
  text-align: left;
  width: 60%;
  margin: 0 auto 1em auto;
}
.sec_shopinfo p span {
  font-size: 0.9rem;
  letter-spacing: initial;
  text-indent: initial;
  display: block;
}
.sec_shopinfo p a {
  display: block;
  width: 100%;
  padding: 1.5rem 2rem;
  border: 1px solid #333;
  position: relative;
}
.sec_shopinfo p a:after {
  content: "\0bb";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
.sec_shopinfo ul li h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media screen and (max-width : 768px) { /* Smart Phone*/
  .sec_shopinfo {
    width: 90%;
    margin: 1rem auto;
    padding-top: 2rem;
    padding-bottom: 0rem;
  }
  .sec_shopinfo h2 {
    font-size: 8vw;
  }
  .sec_shopinfo p {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.25em;
    letter-spacing: 0.75rem;
    text-align: left;
    margin: 0 auto 1em auto;
  }
  .sec_shopinfo p a {
    padding: 1rem;
  }
}

/* 会社情報 */
.sec_company {
  padding-top: 4rem;
}
.sec_company h2 {
  margin-bottom: 1em;
  font-size: 1.8rem;
  line-height: 1.25em;
  letter-spacing: 0.75rem;
  text-indent: 0.75rem;
  text-align: center;
}
.sec_company h2 span {
  font-size: 0.9rem;
  letter-spacing: initial;
  text-indent: initial;
  display: block;
}
.sec_company figure,
.sec_company figure img {
  width: 100%;
}
.sec_company article {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 3rem auto 0 auto;
}
.sec_company article div {
  width: 30%;
}
.sec_company article div h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.sec_company article div h4 {
  margin-bottom: 1rem;
}
.sec_company article iframe {
  width: 65%;
  height: 12rem;
}
@media screen and (max-width : 768px) { /* Smart Phone*/
  .sec_company h2 {
    font-size: 8vw;
  }
  .sec_company article {
    width: 80%;
    flex-direction: column;
  }
  .sec_company article div {
    width: 100%;
  }
  .sec_company article iframe {
    width: 100%;
    text-align: center;
  }
  .sec_company article iframe img {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}


/* ----------------------------------------------------------
 商品詳細 about.html
---------------------------------------------------------- */
.page {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.sec_shimiten {
  display: flex;
  margin-bottom: 2rem;
}
.sec_shimiten figure {
  width: 55%;
}
.sec_shimiten figure img {
  width: 100%;
}
.sec_shimiten div {
  width: 45%;
  padding: 0 4rem;
}
.sec_shimiten div h1 {
  width: 130px;
  margin: 0 auto 1rem auto;
}
.sec_shimiten div h1 img {
  width: 100%;
}
.sec_shimiten div h1 + p {
  font-size: 1.25rem;
  line-height: 1.5em;
  color: #4a6948;
  text-align: center;
}
.sec_shimiten div h1 + p + p {
  padding-top: 1rem;
  border-top: 1px solid #333333;
  font-size: 1.0125rem;
  text-align: center;
}
.sec_shimiten div dl {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  font-size: 0.85rem;
  line-height: 1.75em;
}
.sec_shimiten div dl dt {
  width: 100%;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  text-align: center;
}
.sec_shimiten div dl dd {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.sec_shimiten.anko,
.sec_shimiten.cheese {
  margin-top: 5rem;
}
.sec_shimiten.anko figure {
  order: 2;
}
.sec_shimiten.anko div {
  order: 1;
}
.sec_shimiten.anko div h1 + p {
  color: #89213e;
}
.sec_shimiten.cheese div h1 + p {
  color: #ffb742;
}
.sec_allergies {
  text-align: center;
}
.sec_allergies ul {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 1rem auto;
}
.sec_allergies ul li {
  width: 10%;
  margin: 0.5rem;
}
.sec_allergies ul li img {
  width: 100%;
}

.sec_frozen {
  width: 100%;
  margin: 7rem auto 0 auto;
  padding: 2rem;
}
.sec_frozen div {
  width: 80%;
  margin: 0 auto;
}
.sec_frozen div h2 {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.75rem;
  text-align: center;
}
.sec_frozen div p {
  margin-bottom: 0;
  text-align: center;
}
.sec_frozen ul {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.sec_frozen ul li {
  width: calc((100% - 3rem) / 3);
  padding: 0 0.75rem;
}
.sec_frozen ul li figure {
  width: 100%;
  margin-bottom: 1rem;
}
.sec_frozen ul li figure img {
  width: 100%;
}
.sec_frozen ul li div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.sec_frozen ul li div h3 {
  width: 9em;
  display: inline-block;
  margin-right: 1em;
  background-color: #4a6948;
  color: #ffffff;
  border-radius: 0.25em;
  font-size: 0.9rem;
  text-align: center;
}
.sec_frozen ul li:nth-child(2) div h3 {
  background-color: #83203c;
}
.sec_frozen ul li:nth-child(3) div h3 {
  background-color: #ffb742;
}
.sec_frozen ul li div p {
  margin-bottom: 0;
  font-size: 0.9rem;
}
.sec_frozen ul + picture img {
  width: 80%;
  margin: 2rem 10%;
}

@media screen and (max-width : 768px) { /* スマホ */
  .sec_shimiten {
    flex-direction: column;
  }
  .sec_shimiten figure {
    width: 100%;
    order: 2;
  }
  .sec_shimiten div {
    order: 1;
    width: 100%;
    padding: 2rem 10%;
  }
  .sec_shimiten div h1 + p {
    font-size: 5vw;
  }
  .sec_shimiten div h1 + p + p {
    text-align: left;
  }
  .sec_shimiten div dl {
    flex-direction: column;
  }
  .sec_shimiten div dl dt {
    width: 100%;
  }
  .sec_shimiten div dl dd {
    width: 95%;
    margin-left: 5%;
  }
  .sec_allergies {
    padding: 0 10%;
  }
  .sec_allergies ul {
    flex-wrap: wrap;
  }
  .sec_allergies ul li {
    width: 25%;
    margin: 0;
    padding: 0.25rem;
  }
  .sec_allergies ul + p {
    width: 80%;
    margin: 1rem auto;
  }
  .sec_frozen {
    flex-direction: column;
    width: 90%;
    margin: 0rem auto;
    padding: 1rem;
  }
  .sec_frozen > div {
    flex-direction: column;
  }
  .sec_frozen div {
    width: 100%;
  }
  .sec_frozen div h2 {
    margin-bottom: 1rem;
  }
  .sec_frozen div p {
    text-align: left;
  }
  .sec_frozen ul {
    flex-direction: column;
  }
  .sec_frozen ul li {
    width: 100%;
    margin-bottom: 2rem;
    padding: 0;
    flex-direction: column;
  }
  .sec_frozen ul li figure {
    width: 100%;
    margin-bottom: 1rem;
  }
  .sec_frozen ul li div {
    flex-direction: column;
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .sec_frozen ul li div h3 {
    width: 100%;
    margin-right: 0;
  }
  .sec_frozen ul + picture img {
    width: 100%;
    margin: 0;
  }
}


/* ----------------------------------------------------------
 店舗情報 shop.html
---------------------------------------------------------- */
body.shop .sec_shop {
  padding-top: 2rem;
  margin-bottom: 3rem;
}
body.shop .sec_shop h2 {
  margin-bottom: 1em;
  font-size: 1.8rem;
  line-height: 1.25em;
  letter-spacing: 0.75rem;
  text-indent: 0.75rem;
  text-align: center;
}
body.shop .sec_shop h2 span {
  font-size: 0.9rem;
  letter-spacing: initial;
  text-indent: initial;
  display: block;
}
body.shop .sec_shop ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
body.shop .sec_shop ul li {
  width: calc(100% / 3);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
body.shop .sec_shop ul li figure {
  width: 100%;
  margin-bottom: 1rem;
}
body.shop .sec_shop ul li figure img {
  width: 100%;
}
body.shop .sec_shop ul li h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #cccccc;
  display: flex;
  align-items: center;
}
body.shop .sec_shop ul li h3 span {
  color: #ffffff;
  background-color: #88213E;
  font-size: 0.9rem;
  padding: 0 0.75rem;
  margin-right: 0.5rem;
  border-radius: 0.25rem;
}
body.shop .sec_shop ul li h3 span.sub {
  background-color: #4C6B49;
}
body.shop .sec_shop ul li p.gmap {
  margin-top: auto;
  text-align: right;
}
body.shop .sec_shop ul li p.gmap a {
  display: inline-block;
  padding: 0 0.5rem;
  border: 1px solid #333;
  border-radius: 0.25rem;
  font-size: 0.8rem;
}

body.shop .sec_shop2 {
  padding: 3rem 0 5rem 0;
  margin-bottom: 3rem;
  width: 90%;
  margin: 0 auto;
}
body.shop .sec_shop2 h2 {
  margin-bottom: 2em;
  font-size: 1.8rem;
  line-height: 1.25em;
  text-align: center;
}
body.shop .sec_shop2 h3 {
  color: #ffffff;
  background-color: #454545;
  font-size: 1.25rem;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1em;
}
body.shop .sec_shop2 h4 {
  color: #454545;;
  border-bottom: 1px solid #454545;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}
body.shop .sec_shop2 h4 span {
  padding: 0.5em;
  position: relative;
}
body.shop .sec_shop2 h4 span:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #454545;
  position: absolute;
  left: 0;
  bottom: -5px;
}

body.shop .sec_shop2 h5 {
  background-color: #efefef;
  padding: 0.25em 0.5em;
  margin-bottom: 1em;
}
body.shop .sec_shop2 ul {
  width: 98%;
  margin: 0 auto 3rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body.shop .sec_shop2 ul li {
  display: flex;
  justify-content: space-between;
  width: 48%;
  padding: 0.5em 0;
  border-bottom: 1px solid #454545;
}
body.shop .sec_shop2 + section {
  text-align: center;
}


@media screen and (max-width : 768px) { /* スマホ */
  body.shop .sec_shop ul {
    flex-direction: column;
    width: 85%;
  }
  body.shop .sec_shop ul li {
    width: 100%;
    padding: 0 0 1rem 0;
  }
  body.shop .sec_shop ul li h3 {
    font-size: 4.85vw;
  }
  body.shop .sec_shop2 {
    padding: 3rem 0 0 0;
  }
  body.shop .sec_shop2 ul {
    flex-direction: column;
  }
  body.shop .sec_shop2 ul li {
    flex-direction: column;
    padding: 0.5em 0 0.75em 0;
    width: 100%;
  }
  body.shop .sec_shop2 ul li p {
    padding: 0;
    text-align: right;
  }
  body.shop .sec_shop2 + section {
    width: 80%;
    margin: 0 auto;
  }
}



/* ----------------------------------------------------------
 お問い合わせフォーム contact
---------------------------------------------------------- */
body.contact main {
  padding-top: 2rem;
  min-height: 70vh;
}
body.contact section {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
body.contact section h1 {
  color: #ffffff;
  background-color: #89213e;
  font-size: 1.8rem;
  line-height: 1.25em;
  padding: 0.25rem 0;
  margin-bottom: 4rem;
}
body.contact section.fc h1 {
  margin-bottom: 2rem;
}
body.contact section.fc h1 + p {
  font-size: 1.2rem;
  margin-bottom: 4rem;
}
body.contact section article {
  margin-bottom: 4rem;
}
body.contact section article h2 {
  font-size: 1.8rem;
  line-height: 1.25em;
  border-bottom: 1px solid #aaaaaa;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
body.contact section article p.tel {
  font-size: 2.5rem;
  margin-bottom: 0;
}
body.contact form {
  margin-bottom: 4rem;
}
body.contact table {
  width: 100%;
  margin: 2rem auto;
  border: 1px solid #aaaaaa;
  border-bottom: 0;
}
body.contact table tbody tr {
  display: flex;
}
body.contact table tbody tr th {
  display: block;
  width: 20%;
  padding: 1rem;
  background-color: #efefef;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  text-align: left;
  font-size: 0.9rem;
  font-weight: normal;
}
body.contact .red {
  color: #89213e;
  font-weight: bold;
}
body.contact table tbody tr td {
  display: block;
  width: 80%;
  padding: 1rem;
  border-bottom: 1px solid #aaaaaa;
  text-align: left;
}
body.contact input,
body.contact textarea {
  width: 90%;
  border: 1px solid #aaaaaa;
  font-size: 1.2rem;
  line-height: 1.5em;
}
body.contact input[name="item_address_2"] {
  margin-top: 0.5rem;
}
body.contact .red_txt {
  color: #89213e;
  font-weight: bold;
  font-size: 1.25rem;
  text-align: left;
}
body.contact input[type="submit"] {
  font-family: 'Noto Serif JP', serif;
  width: initial;
  display: block;
  width: 200px;
  text-align: center;
  color: #ffffff;
  background-color: #333333;
  padding: 1rem 3rem;
  margin: 0 auto;
  letter-spacing: 1em;
  text-indent: 1em;
  transition: .6s;
}
body.contact input[type="submit"]:hover {
  opacity: 0.5;
  transition: .6s;
}
body.contact input[name="item_sradio01"] + label {
  margin-right: 1em;
}
body.contact section article h3 {
  margin-bottom: 1rem;
}
body.contact section article .kiyaku {
  border: 1px solid #aaaaaa;
  padding: 1rem 2rem;
  margin: 2rem 0;
}
body.contact section article .kiyaku h4 {
  margin-bottom: 1rem;
}
body.contact section article .kiyaku ul {
  text-align: left;
  font-size: 0.9rem;
}
body.contact .button_box {
  display: inline-flex;
}

@media screen and (max-width : 768px) { /* スマホ */
  body.contact section h1 {
    font-size: 7vw;
  }
  body.franchise section.fc h1 {
    font-size: 6vw;
    line-height: 1.5em;
  }
  body.contact section article h2 {
    font-size: 6vw;
  }
  body.contact section.finish article h2 {
    text-align: left;
  }
  body.contact section.finish p {
    text-align: left;
  }
  body.contact section.fc h1 + p {
    text-align: left;
  }
  body.contact section article p.tel {
    font-size: 6.5vw;
    margin-bottom: 0.5rem;
  }
  .art_form p {
    text-align: left;
  }
  body.contact table {
    border-bottom: 0;
  }
  body.contact table tbody tr {
    flex-direction: column;
  }
  body.contact table tbody tr th {
    width: 100%;
    padding: 0.5rem;
    border-right: 0;
    border-bottom: 0;
  }
  body.contact table tbody tr td {
    width: 100%;
  }
  body.franchise table tbody tr td {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  body.franchise table tbody tr td input[type="radio"] {
    -webkit-appearance: auto !important;
    border-radius: initial !important;
    width: 1em !important;
    height: 1em !important;
  }
  body.franchise table tbody tr td input[type="radio"] + label {
    width: calc(100% - 1.5em);
    margin-right: 0;
  }
  body.contact input,
  body.contact textarea {
    width: 100%;
    -webkit-appearance: none;
    border-radius: 0;
  }
  body.contact .button_box {
    display: flex;
    flex-direction: column;
  }
  body.contact .button_box input {
    margin-bottom: 1rem;
  }
} 


/*　onlineshop  2021.9
--------------------------------------------- */

/* ヘッダーメニュー */
div.onlineshop {
  position: absolute;
  top: 0;
  right: 70px;
  height: 70px;
  display: flex;
  align-items: center;
}
div.onlineshop a {
  color: #333333;
  padding: 0 1rem;
  border-right: 1px solid #aaaaaa;
  display: flex;
  align-items: center;
}
div.onlineshop a img {
  width: 40px;
  margin-right: 5px;
}

/* nav 展開 */
/*#gloval-nav ul li:last-child {
  width: 100%;
}*/
#gloval-nav ul li:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
}
#gloval-nav ul li:last-child a img {
  width: 40px;
  margin-right: 5px;
}

/* バナー設置 */
.stores a img {
  width: 800px;
  margin: 2rem auto 0 auto;
}
.home .stores a img {
  margin: 0 auto;
}
p.franchise {
  width: 800px;
  margin: 1rem auto;
  font-size: 1.8rem;
  text-align: center;
}
p.franchise a {
  display: block;
  width: 100%;
  padding: 0.25rem 0;
  color: #ffffff;
  background-color: #89213e;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
p.franchise a span {
  font-size: 0.9rem;
  position: absolute;
  right: 1rem;
}


@media screen and (max-width : 768px) { /* スマホ */
  div.onlineshop {
    right: 15vw;
    height: 15vw;
    display: flex;
    align-items: center;
  }
  div.onlineshop a {
    padding: 0 0.5rem;
  }
  div.onlineshop a img {
    width: 10vw;
  }
  div.onlineshop a span {
    display: none;
  }
  .stores a {
    display: block;
  }
  .stores a img {
    width: 100%;
  }
  p.franchise {
    width: 100%;
    margin-bottom: 2rem;
  }
  p.franchise a {
    flex-direction: column;
    font-size: 5vw;
    line-height: 1.25em;
    padding: 0.75rem 0;
  }
  p.franchise a span {
    position: initial;
    margin-top: 0.5rem;
  }
}




