@charset "UTF-8";
/*html5doctor.com Reset Stylesheetv1.6.1*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: middle;
}

body {
  line-height: 1.6em;background-image: url("../img/umi_pic08.jpg")
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

/* change colours to suit your needs */
ins {
  background-color: transparent;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: transparent;
  color: #000;
  font-style: normal;
  font-weight: normal;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

iframe {
  border: 0;
}

/*-------------------*/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

.container:before, .container:after {
  display: table;
  content: " ";
}

/*-------------------*/
input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

/*iOS reset*/
input[type="submit"], input[type="button"], input[type="reset"], button {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration, input[type="reset"]::-webkit-search-decoration, button::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus, input[type="button"]:focus, input[type="reset"]:focus, button:focus {
  outline-offset: -2px;
}

/*=======
public
=====================*/
html {
  overflow-x: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  /*16 base*/
  background-color: #fefefe;
  color: #444;
  font-family: "メイリオ",meiryo,"Hiragino Kaku Gothic ProN",sans-serif;
  font-size: 1em;
  word-break: break-all;
}

img {
  width: 100%;
  /*IE8*/
  height: auto\9;
}

.f--min {
  font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
}

.f--en {
  font-family: "Alfa Slab One", cursive;
}

/*=======
link
=====================*/
a {
  outline: none;
  text-decoration: underline;
}

a:link {
  color: #171c61;
}

/*未訪問*/
a:visited {
  color: #171c61;
}

/*訪問済*/
a:hover {
  color: #171c61;
  text-decoration: none;
  opacity: .85;
}

/*マウスオーバー*/
a:active {
  color: #171c61;
}

/*クリック動作間*/
button:hover {
  opacity: .85;
}

.link--offset a, .link--offset a:hover {
  color: #444;
  text-decoration: none;
}

/*========
Micro clearfix
=====================*/
.cf:before, .cf:after {
  display: table;
  content: "";
}

.cf:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
  zoom: 1;
}

/*=======
Animation
=====================*/
.fadeInDown {
  -webkit-animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  visibility: visible !important;
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.amt_fade {
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  animation: fadeIn 1s ease 0s 1 normal;
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Float Shadow */
.hvr-float-shadow {
  -webkit-transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  display: inline-block;
  position: relative;
  transform: perspective(1px) translateZ(0);
          box-shadow: 0 0 1px transparent;
  vertical-align: middle;
  transition-duration: 0.3s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.hvr-float-shadow:before {
  -webkit-transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  z-index: -1;
  position: absolute;
  top: 100%;
  left: 5%;
  width: 90%;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  content: '';
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.3s;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}

.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  opacity: 1;
}

/*=========
Operation(fixed)
=====================*/
.operation {
  z-index: 997;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.operation__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 60px;
  background: #111;
  color: #fff;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
}

.operation__arrow a {
  display: block;
  color: #fff;
}

/* Header */
.header {
  width: 100%;
  background: #fff;
}

.header__inner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1280px;
  height: 60px;
  margin: 0 auto;
  padding: 0 20px;
}

.header__inner h1 {
  position: absolute;
  top: 15px;
  width: 94px;
}

.breadcrumb {
  width: 100%;
  margin-bottom: 0;
  padding-top: 17px;
  padding-left: 120px;
  font-size: 0;
}

.breadcrumb li {
  display: inline-block;
  font-size: 12px;
}

.breadcrumb li:after {
  padding: 0 8px;
  font-family: FontAwesome;
  content: '\f0da';
}

.breadcrumb li:last-child:after {
  content: none;
}

/* Main Visual */
.visual {
  
}

.visual__inner {
max-width:748px;margin: 0 auto;
}

p.openday{text-align:center;border-bottom: solid 1px #999;border-top: solid 1px #999;padding: 1rem 0;font-size: 1.5rem;margin:2rem 0;font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;}

.bg{background-image: url("../img/main_bg.png");background-position: center top;}
.main_v-wrap{ padding-top:2rem;padding-bottom: calc(20vw + 10px);  }

.main_v{max-width: 1065px;margin:0 auto;}
.main_v p{text-align: center;margin-top:1rem;font-size: 1.25rem;line-height: 1.8rem;padding:0 3rem;}
.main_v p span{display: block;}

.container {
  width: 100%;
  max-width: 1056px;
  margin: -16% auto 50px;
    
}
.container2 {
  width: 100%;

background-image: url(../img/umi_pic07.png);
    padding-top: 5rem;
}

.wrap--press {
  width: 100%;
  padding: 0 20px;
}

.about{max-width: 842px;margin: 0 auto;min-height: 680px;}
.about h3{font-size: 2rem;font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;color:#fff;margin-bottom:1rem;}
.about p{color:#fff;}
.about ul{position: relative;}
.about ul li.pic01{max-width: 523px;position: absolute;}
.posi01{position: relative;}
.caption_box01{max-width: 441px;padding: 1.75rem;background-color: #42210b;border:solid 1px #fff;position: absolute;top:87%;left:8%;}
.about ul li.pic02{max-width: 292px;position: absolute;top:0;right: 0;}
.posi02{position: relative;}
.caption_box02{;padding: 1.75rem;border:solid 1px #fff;position: relative;

  margin-top: 2rem;}
.caption_box02 h3{color:#42210b; position: absolute;
  top: 0;
  left: 0;
    padding: 0 1em;
  margin: 0;
  background-color: #f2ebd8;
  transform: translateY(-50%) translateX(1rem);
}
.caption_box02 p{font-size: 0.9rem;color:#42210b;}

.about ul li.pic03{position: absolute;top:446px;left: 550px;}
.posi03{position: relative;}
.posi03 img{max-width: 292px}
.caption_box03{;padding: 1.75rem;position: absolute;top:70px;left:-174%;width:740px;}
.line-box{  position: relative;
  margin-top: 1rem;
  padding: 1rem 2rem;
  border: 1px solid #fff;z-index: -100;}
.caption_box03 h3{color:#42210b;position: absolute;
  top: 0;
  left: 39.5%;
  padding: 0 1rem;
  margin: 0;
  background-color: #f2ebd8;
  transform: translateY(-50%) translateX(1rem);}
.caption_box03 p{font-size: 0.9rem;color:#42210b;margin-top:0.8rem;}

.live-wrap{padding: 0.75rem 0;background-color: #fff;border-bottom: solid 4px #42210b;border-top: solid 4px #42210b;}
ul.live{display: flex;align-items: center;max-width:842px;margin: 0 auto;}
ul.live li:last-child{padding:2rem;}
ul.live p{font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;font-weight: bold;font-size:1.5rem;}

.menu{background-image: url("../img/umi_pic06.png");padding:1rem 0 2rem 0;}
.menu-wrap{max-width:842px;margin: 0 auto;padding:2rem 0;position: relative;}
.menu-box{max-width:377px;}
.menu-box h2{padding-top: 3rem;}
dl.menu01{width:311px;margin: 0 auto;padding:2rem 0;}
dl.menu01 dt{float:left;padding-top:0.5rem;}
dl.menu01 dd{text-align: right;color:#c0272d;padding:0.5rem 0;border-bottom: solid 1px #c6af9b;}
ul.menu02{width:311px;margin: 0 auto;padding:2rem 0;}
ul.menu02 li{text-indent: -1rem; padding:0.5rem 0;border-bottom: solid 1px #c6af9b;padding-left: 1rem;}
ul.menu02 li span{color:#c0272d;}
.menu-bg{position: absolute;top:0;right: -35%;width: 77%;}

.shop {
  max-width: 842px;
  margin-bottom: 60px;
margin: 0 auto;
    padding-bottom: 5rem;
}


ul.shop-name{display: flex;align-items: center;}
ul.shop-name li{margin:0 3rem 2rem;}
ul.shop-name li h4{font-size: 2rem;font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;}
ul.shop-name li h4 span{font-size: 3rem;display: block;margin-top:1rem;}
ul.shop-name li h4 span span{font-size: 2rem;display:inline-block;vertical-align: 0px;}

.shop__title img {
  max-width: 525px;
}

.shop__content {
  border-top: dashed 1px #42210b;
  border-bottom: none;
}

.shop__data {
  display: table;
  width: 100%;
  border-bottom: dashed 1px #42210b;
    color:#42210b;
    
}

.shop__data dt {
  display: table-cell;
  width: 255px;
  padding: 10px;

  text-align: center;
}

.shop__data dd {
  display: table-cell;
  padding: 10px;
  padding: 10px;
}

.shop__data .red {
  color: #ff0000;
}

/* Map */
.canvas__wrap {
  position: relative;
  width: 100%;
  height: auto;
}

.canvas__wrap:before {
  display: block;
  padding-top: 30%;
  content: '';
}

#canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  width: 100%;
  padding: 25px;
  background: #0080b8;
}

.footer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.footer__sns {
  width: 100%;
  margin-bottom: 20px;
}

.footer__sns li {
  display: inline-block;
  padding: 0 10px;
  font-size: 1.5rem;
}

.footer__sns li a {
  color: #fff;
}

.return__btn {
  width: 100%;
  margin-bottom: 20px;
}

.return__btn a {
  display: inline-block;
  padding: 12px 20px 10px;
  border: solid 1px #fff;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
}

.return__btn a:hover {
  border-color: #171c61;
  background: #171c61;
}

.operation {
  z-index: 997;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.operation__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 60px;
  background: #111;
  color: #fff;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
}

.operation__arrow a {
  display: block;
  color: #fff;
}

.modal {
  display: none;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.modal__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal__contents {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 800px;
          transform: translate(-50%, -50%);
}

.modal__contents img {
  border-radius: 2px;
}

@media (max-width: 926px) {
  .visual__logo {
    left: 0;
    width: 100%;
    margin-left: 0;
    padding-right: 20px;
  }
}


@media (max-width: 879px){
    .about {
    max-width: 842px;
    margin: 0 auto;
    min-height: 930px;
}
    .about ul li.pic01 {
        left:20%;
    position: absolute;
}
    .about ul li.pic02 {
    max-width: 292px;
    position: absolute;
    top: 500px;
    right: 0;
    left:7%;
} 
    .about ul li.pic03 {
    position: absolute;
    top: 500px;
    left: 60%;
        
}
.caption_box03 {
    padding: 1.75rem;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 292px;
    padding: 0;
    border: none;
    position: relative;
    margin-top: 2rem;
}
    .caption_box03 h3 {
    color: #42210b;
    position: absolute;
    top: 0;
    left: 6%;
    padding: 0 2rem;

}
    .caption_box03 p{min-height: 136px}
}
@media (max-width: 821px){
    ul.shop-name {
    display: block;
    align-items: center;
}
    ul.shop-name li h3{max-width: 200px;margin: 0 auto;}
    ul.shop-name li h4 {
    text-align: center;
}
}
@media (max-width: 640px) {
  .header__inner {
    height: auto;
    padding: 15px;
    text-align: center;
  }
  .header__inner h1 {
    position: static;
    margin: 0 auto 10px;
  }
  .breadcrumb {
    padding: 0;
  }
  .visual__inner {

  }
  .visual__logo {

  }
    .menu-bg {
    position: static;
    width: 100%;
}
    .menu-box {
    max-width: 100%;
}
    .menu-box h2{width:80%;margin: 0 auto;}
}
@media (max-width: 619px){
      .about {
    max-width: 842px;
    margin: 0 auto;
    min-height: 930px;
}
    .about ul li.pic01 {
    position: static;
    max-width: 100%;
        margin-bottom: 2.5rem;
}
    .caption_box01 {
    max-width: 100%;
    padding: 1.75rem;
    position: static;
    z-index: 100;
    margin-top:0%;
}
    .about ul li.pic02 {
    max-width: 100%;
    position:static ;
    margin-bottom: 2.5rem;

} 
    .about ul li.pic03 {
    max-width: 100%;
    position:static ;
    margin-bottom: 2.5rem;       
} 
    .posi03 img{max-width:100%;}
    .line-box {
    position: static;
    margin-top: 1rem;
    padding: 1rem 2rem;
    border: 1px solid #fff;
}
    .caption_box03 {
    padding: 1.75rem;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    padding: 0;
    border: none;
    position: relative;
}
    .caption_box03 h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 2rem;
}
    .caption_box03 p {
    min-height: 36px;
}
    ul.live{margin: 0 auto;max-width: 90%;}
    ul.live li p span{display: block;}
}

@media (max-width: 550px) {
  .visual__inner {

  }
  .visual__logo {

  }
    ul.live li:last-child {
    padding:2rem 0 2rem 1rem;
}
}

@media (max-width: 450px) {
  .visual__inner {

  }
  .visual__logo {
 
  }
  .canvas__wrap:before {
    padding-top: 70%;
  }
  .breadcrumb li {
    font-size: 10px;
  }
  .footer small {
    font-size: 10px;
  }
   ul.shop-name li h4 {
    font-size: 1rem;
} 
    ul.shop-name li h4 span {
    font-size: 2rem;
    margin: 0;
}
}

@media (max-width: 414px) {
  .visual__inner {

  }
}

@media (max-width: 700px) {
  .shop__data dt {
    width: 30%;

}

}
