@charset "UTF8";

/*共通エリア*/
a{
  text-decoration: none;
}
body{
  background-image: url(../img/backimage.png);
  background-size: contain;
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
}

.wrapper{
  width: 100%;
  background-color: rgba(255,255,255,0.85);
  position: relative;
  top: 0;
  left: 0;
  z-index: 50;
}
.container{
  width: 100%;
}


/*---------------------------
↓↓↓↓↓　Modalエリア開始　↓↓↓↓↓
-----------------------------*/
.header-wrapper{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3000;
}
.modalArea {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}

.modalBg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(30,30,30,0.9);
  z-index: 1200;
}

.modalWrapper {
  position: fixed;
  top: 0%;
  left: 0%;
  transform:translate(0%,0%);
  width: 100vw;
  height: 100vh;
  z-index: 1300;
}

.modalContents{
width: 100vw;
height: 200vh;
text-decoration: none;
}

.modal-title{
  width: 100%;
  height: 15vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modalContents h1{
  color: #fff;
  font-size: 2em;
  text-align: center;
  margin: 0;
  padding: 0;
}

.modalContents p{
font-size: 5vw;
color: #ffffff;
text-align: center;
margin: 10px 0px 10px 0px;
}

.closeModal {
  position: absolute;
  top: 0px;
  right: 1rem;
  cursor: pointer;
  font-size: 10vw;
  color: #ffffff;
  z-index: 1400;
}

button {
  padding: 5px;
  background-color: rgba(200,26,43,0.8);
  border: 1px solid #000000;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#openModal {
  position: absolute;
  top: 50%;
  right: 0%;
  z-index: 1500;
  transform:translate(-10%,-50%);
}

.modal-navi-area{
width: 100%;
height: 60vh;
}

.modal-contents-box{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  align-content: space-around;
}

.modal-contents-box-oblong{
  width: 90%;
  margin: 0 auto;
}

.modal-contents-box-item-oblong{
  width: 100%;
}

.modal-contents-box-item-oblong img{
  width: 100%;
}

.modal-contents-box-item{
  width: 40%;
}

.modal-contents-box-item img{
  width: 100%;
}

.modal-contents-box-item a{
  display: block;
}
.modal-contents-box-item a:hover{
}

/*---------------------------
↑↑↑↑↑　Modalエリア終了　↑↑↑↑↑↑
-----------------------------*/

/*---------------------------
↓↓↓↓↓↓　menu-trigger　↓↓↓↓↓↓↓
---------------------------*/

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: fixed;
  top: 5px;
  right: 5px;
  width: 50px;
  height: 44px;
}

.menu-trigger-wrapper{
  width: 100%;
  height: 10vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3200;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 20px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger::after {
  position: absolute;
  left: 0;
  bottom: -30px;
  display: block;
  width: 100%;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
}
.menu-trigger.active::after {
  content: 'CLOSE';
  color: #fff;
  bottom: -25px;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

.modalArea.active {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}

/*--------------------------
↑↑↑↑↑↑　menu-trigger　↑↑↑↑↑↑
--------------------------*/

/*共通エリア 終了*/

/*-----------------------
max-width 480px開始
-----------------------*/
@media screen and (max-width: 480px){
  .m-header-area{
    width: 100%;
    height: 5vh;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3100;
  }

  .menu ul{
  list-style: none;
  }

  .topimage-area{
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .topimage-area-inner{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
  }
  .topimage-bgarea{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/m_top_bg_image.jpg");
    background-size: cover;
    z-index: 100;
  }
  .topimage-bgarea img{
  width: 100%;
  }
  .topimage-area-drink-left{
    width: 40%;
    position: absolute;
    top: 45vh;
    left: 5%;
    transform: rotate(10deg);
    z-index: 200;
  }
  .topimage-area-drink-left img{
    width: 100%;
  }
  .topimage-area-drink-right{
    width: 40%;
    position: absolute;
    top: 45vh;
    right: 5%;
    transform: rotate(-10deg);
    z-index: 200;
  }
  .topimage-area-drink-right img{
    width: 100%;
  }
  .rogo{
    width: 70%;
    position: absolute;
    top: 5vh;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 200;
  }
  .rogo img{
    width: 100%;
  }
  .top-navi-area{
    display: none;
  }
  .top-sns-banner-area{
    width: 100%;
    position: absolute;
    top: 73%;
    border-radius: 5px;
    z-index: 2000;
  }
  .top-sns-banner-area-inner{
    width: 100%;
    display: flex;
  }
  .top-sns-banner-left{
    width: 50%;
  }
  .top-sns-banner-left img{
    width: 100%;
    padding: 30%;
  }
  .top-sns-banner-right{
    width: 50%;
  }
  .top-sns-banner-right img{
    width: 100%;
    padding: 30%;
  }
  .v-space5{
    height: 2vh;
  }
  .main-area{
    width: 100%;
  }
  .main-area-wrapper{
    width: 100%;
    position: relative;
    left: 0;
    display: flex;
    flex-direction: column;
  }
  .menu-title-area{
    width: 100%;
  }
  .menu-title-area-inner{
    width: 70%;
    margin: 0 auto;
    display: flex;
  }
  .menu-title-area-inner-left{
    width: 15%;
    margin-left: 5%;
  }
  .menu-title-area-inner-left img{
    width: 100%;
  }
  .menu-title-area-inner-center{
    width: 60%;
    display: flex;
    flex-direction: column;
  }
  .menu-title-top{
    width: 100%;
  }
  .menu-title-top img{
    width: 100%;
  }
  .menu-title-bottom{
    width: 100%;
  }
  .menu-title-bottom img{
    width: 100%;
  }
  .menu-title-area-inner-right{
    width: 15%;
    margin-right: 5%;
  }
  .menu-title-area-inner-right img{
    width: 100%;
  }
  .drink-title-area{
    width: 100%;
    height: 10vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .drink-title-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .drink-title-line{
    width: 25%;
    display: table-cell;
    vertical-align: middle;
  }
  .drink-title-line img{
    width: 100%;
  }
  .drink-title{
    width: 50%;
    display: table-cell;
    vertical-align: middle;
  }
  .drink-title img{
    width: 100%;
  }
  .menu-contents-area{
    width: 100%;
  }
  .menu-contents-area-inner{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  .menu-contents-area-text{
    width: 100%;
    vertical-align: middle;
    -ms-flex-order:2;
    -webkit-order:2;
    order:2;
  }
  .menu-contents-area-text p{
    color: #b01561;
    font-size: 5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
    display: table;
    margin: 0 auto;
  }
  .menu-contents-area-text span{
    color: #d78107;
    font-size: 5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  span.anko{
    color: #000;
    font-size: 4vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }

  span.menu-contents-area-text-note{
    color: #b01561;
    font-size: 2vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
    display: table;
    margin: 0 auto;
  }
  .menu-contents-area-photo{
    width: 100%;
    -ms-flex-order:1;
    -webkit-order:1;
    order:;
  }
  .menu-contents-area-photo img{
    width: 100%;
  }
  .menu-border-area{
    width: 100%;
  }
  .menu-border-area-inner{
    width: 90%;
    margin: 0 auto;
  }
  .menu-border-area-inner img{
    width: 100%;
  }

  .sweets-title-area{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
  .sweets-title-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .sweets-title-line{
    width: 35%;
    display: table-cell;
    vertical-align: middle;
  }
  .sweets-title-line img{
    width: 100%;
  }
  .sweets-title{
    width: 30%;
    display: table-cell;
    vertical-align: middle;
  }
  .sweets-title img{
    width: 100%;
  }

  .sweet-potato-period{
    width: 100%;
  }

  .sweet-potato-period-inner{
    width: 100%;
    text-align: center;
  }

  .sweet-potato-period-inner p{
    color: #d78107;
    font-size: 1em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }

  .period-area{
    width: 100%;
  }

  .period-area-inner{
    width: 100%;
    text-align: center;
  }

  .period-area-inner p{
    color: #d78107;
    font-size: 1em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }

  .about-mi-cafe-title-area{
    width: 100%;
    margin-top: 5vh;
  }
  .about-mi-cafe-title-inner{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .about-mi-cafe-title-top{
    width: 50%;
    margin: 0 auto;
    display: table;
  }
  .about-mi-cafe-title-top-left{
    width: 15%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-left img{
    width: 100%;
  }
  .about-mi-cafe-title-top-center{
    width: 70%;
    padding: 0 2%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-center img{
    width: 100%;
  }
  .about-mi-cafe-title-top-right{
    width: 15%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-right img{
    width: 100%;
  }
  .about-mi-cafe-title-bottom{
    width: 100%;
    position: relative;
  }
  .about-mi-cafe-title-bottom-wavy-line{
    width: 100%;
    overflow: hidden;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 100;
  }
  .about-mi-cafe-title-bottom-wavy-line img{
    width: 100%;
  }
  .about-mi-cafe-title-turtle{
    width: 10%;
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 200;
  }
  .about-mi-cafe-title-turtle img{
    width: 100%;
  }
  .about-mi-cafe-contents-area{
    width: 100%;
  }
  .about-mi-cafe-contents-area-inner{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  .about-mi-cafe-contents-text{
    width: 100%;
    vertical-align: middle;
    -ms-flex-order:2;
    -webkit-order:2;
    order:2;
  }
  .about-mi-cafe-contents-text p{
    color: #b01561;
    font-size: 1em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
    text-align: center;
  }
  .about-mi-cafe-contents-photo{
    width: 70%;
    margin: 5% auto;
    -ms-flex-order:1;
    -webkit-order:1;
    order:1;
  }
  .about-mi-cafe-contents-photo img{
    width: 100%;
  }
  .map-area{
    width: 100%;
  }
  .map-area-inner{
    width: 90%;
    margin: 0 auto;
  }
  .sns-area{
    width: 100%;
    height: 100vh;
    margin-top: 5vh;
    background: url("../img/diagonal_rogo.png");
    background-repeat: repeat;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .sns-area-wall{
    width: 100%;
    height: 100vh;
    background-color: rgba(130,195,197,0.9);
    position: relative;
    top: 0;
    left: 0;
    z-index: 200;
  }
  .sns-area-contents{
    width: 90%;
  }
  .sns-banner-area{
    width: 100%;
  }
  .sns-banner-area-inner{
    width: 70%;
    padding: 5% 0;
    margin: 0 auto;
    display: table;
  }
  .sns-banner-instagram{
    width: 40%;
    padding: 10%;
    display: table-cell;
  }
  .sns-banner-instagram img{
    width: 100%;
  }
  .sns-banner-space{
    width: 5%;
    display: table-cell;
  }
  .sns-banner-text{
    width: 55%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
  }
  .sns-banner-text p{
    display: inline;
    color: #b01561;
    font-family: fantasy;
    font-size: 3vw;
  }

  .sns-banner-text-link{
    color: #b01561;
    font-family: fantasy;
    font-size: 3vw;
  }
  .sns-banner-text-link2{
    color: #4064ac;
    font-family: fantasy;
    font-size: 3vw;
  }

  .footer-area{
    width: 100%;
    background: #395697;
  }
  .footer-area-inner{
    width: 70%;
    margin: 0 auto;
  }
  .footer-area-navi{
    width: 100%;
    margin-top: 2%;
  }
  .footer-area-navi a{
    text-decoration: none;
    color: #fff;
  }
  .footer-area-navi a:active{
    color: #fff;
  }
  .footer-area-navi a:hover{
    color: red;
  }
  .footer-area-navi ul{
    width: 100%;
    display: block;
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    display: flex;
    justify-content: space-between;
}

.footer-area-navi li{
  display: inline;
  color: #fff;
  font-family: fantasy;
  font-size: 2vw;
  margin-right: 5%;
}
.footer-contents{
  width: 100%;
  margin-top: 3%;
  display: table;
}
.footer-contents-inner{
  width: 100%;
  margin-top: 3%;
  display: table-cell;
  text-align: center;
}
.footer-contents-inner p{
  font-family: fantasy;
  font-size: 2vw;
  margin-right: 5%;
  color: #fff;
}
.copyright-area{
  width: 100%;
  margin-top: 3%;
  text-align: center;
}
.copyright-area p{
  font-size: 1.5vw;
  color: #fff;
  margin: 0;
  line-height: 1.5em;
}
}
/*-----------------------
max-width 480px終了
-----------------------*/

/*-----------------------
min 481px-max 896px開始
-----------------------*/
@media screen and (min-width: 481px) and (max-width: 896px) {
  .menu-trigger-wrapper{
    display: none;
  }
  .topimage-area{
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .topimage-area-inner{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
  }
  .topimage-bgarea{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/top_bg_image.jpg");
    background-size: cover;
    z-index: 100;
  }
  .topimage-bgarea img{
  width: 100%;
  }
  .topimage-area-drink-left{
    width: 23%;
    position: absolute;
    top: 25vh;
    left: 5%;
    transform: rotate(10deg);
    z-index: 200;
  }
  .topimage-area-drink-left img{
    width: 100%;
  }
  .topimage-area-drink-right{
    width: 23%;
    position: absolute;
    top: 25vh;
    left: 37%;
    transform: rotate(-10deg);
    z-index: 200;
  }
  .topimage-area-drink-right img{
    width: 100%;
  }
  .rogo{
    width: 25%;
    position: absolute;
    top: 5vh;
    right: 5%;
    z-index: 200;
  }
  .rogo img{
    width: 100%;
  }
  .top-navi-area{
    width: 30%;
    position: absolute;
    top: 70%;
    right: 2.5%;
    background: rgba(226,99,41,1);
    border-radius: 5px;
    z-index: 2000;
  }
  .top-navi-area-inner{
  }
  .top-navi-area-navi{
  }
  .top-navi-area-navi a{
    text-decoration: none;
    color: #fff;
  }
  .top-navi-area-navi a:hover{
    color: #e2c841;
  }
  .top-navi-area-navi a:active{
    color: #fff;
  }
  .top-navi-area-navi ul{
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    display: flex;
    justify-content: space-between;
  }
  .top-navi-area-navi li{
    display: inline;
    color: #fff;
    font-family: fantasy;
    font-size: 1.5vw;
    margin-right: 5%;
  }
  .top-sns-banner-area{
    width: 30%;
    position: absolute;
    top: 70%;
    right: 2.5%;
    border-radius: 5px;
    z-index: 2000;
  }
  .top-sns-banner-area-inner{
    width: 100%;
    display: flex;
  }
  .top-sns-banner-left{
    width: 50%;
  }
  .top-sns-banner-left img{
    width: 100%;
    padding: 20%;
  }
  .top-sns-banner-right{
    width: 50%;
  }
  .top-sns-banner-right img{
    width: 100%;
    padding: 20%;
  }
  .v-space5{
    height: 5vh;
  }
  .main-area{
    width: 100%;
  }
  .main-area-wrapper{
    width: 100%;
    position: relative;
    left: 0;
    display: flex;
    flex-direction: column;
  }
  .menu-title-area{
    width: 100%;
    height: 20vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .menu-title-area-inner{
    width: 30%;
    margin: 0 auto;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menu-title-area-inner-left{
    width: 15%;
    margin-left: 5%;
  }
  .menu-title-area-inner-left img{
    width: 100%;
  }
  .menu-title-area-inner-center{
    width: 60%;
    display: flex;
    flex-direction: column;
  }
  .menu-title-top{
    width: 100%;
  }
  .menu-title-top img{
    width: 100%;
  }
  .menu-title-bottom{
    width: 100%;
  }
  .menu-title-bottom img{
    width: 100%;
  }
  .menu-title-area-inner-right{
    width: 15%;
    margin-right: 5%;
  }
  .menu-title-area-inner-right img{
    width: 100%;
  }
  .drink-title-area{
    width: 100%;
    height: 10vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .drink-title-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .drink-title-line{
    width: 35%;
    display: table-cell;
    vertical-align: middle;
  }
  .drink-title-line img{
    width: 100%;
  }
  .drink-title{
    width: 30%;
    display: table-cell;
    vertical-align: middle;
  }
  .drink-title img{
    width: 100%;
  }
  .menu-contents-area{
    width: 100%;
  }
  .menu-contents-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .menu-contents-area-text{
    width: 45%;
    padding: 3%;
    display: table-cell;
    vertical-align: middle;
  }
  .menu-contents-area-text p{
    color: #b01561;
    font-size: 2.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  .menu-contents-area-text span{
    color: #d78107;
    font-size: 2.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  span.anko{
    color: #000;
    font-size: 2vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  span.menu-contents-area-text-note{
    color: #b01561;
    font-size: 1.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
    display: table;
  }
  .menu-contents-area-photo{
    width: 55%;
    padding-right: 3%;
    display: table-cell;
  }
  .menu-contents-area-photo img{
    width: 100%;
  }
  .menu-border-area{
    width: 100%;
  }
  .menu-border-area-inner{
    width: 90%;
    margin: 0 auto;
  }
  .menu-border-area-inner img{
    width: 100%;
  }

  .sweets-title-area{
    width: 100%;
    height: 10vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .sweets-title-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .sweets-title-line{
    width: 35%;
    display: table-cell;
    vertical-align: middle;
  }
  .sweets-title-line img{
    width: 100%;
  }
  .sweets-title{
    width: 30%;
    display: table-cell;
    vertical-align: middle;
  }
  .sweets-title img{
    width: 100%;
  }

  .sweet-potato-period{
    width: 100%;
  }

  .sweet-potato-period-inner{
    width: 100%;
    text-align: center;
  }

  .sweet-potato-period-inner p{
    color: #d78107;
    font-size: 2em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }

  .period-area{
    width: 100%;
  }

  .period-area-inner{
    width: 100%;
    text-align: center;
  }

  .period-area-inner p{
    color: #d78107;
    font-size: 2em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }

  .about-mi-cafe-title-area{
    width: 100%;
  }
  .about-mi-cafe-title-inner{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .about-mi-cafe-title-top{
    width: 50%;
    margin: 0 auto;
    display: table;
  }
  .about-mi-cafe-title-top-left{
    width: 15%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-left img{
    width: 100%;
  }
  .about-mi-cafe-title-top-center{
    width: 70%;
    padding: 0 2%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-center img{
    width: 100%;
  }
  .about-mi-cafe-title-top-right{
    width: 15%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-right img{
    width: 100%;
  }
  .about-mi-cafe-title-bottom{
    width: 100%;
    position: relative;
  }
  .about-mi-cafe-title-bottom-wavy-line{
    width: 100%;
    overflow: hidden;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 100;
  }
  .about-mi-cafe-title-bottom-wavy-line img{
    width: 100%;
  }
  .about-mi-cafe-title-turtle{
    width: 10%;
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 200;
  }
  .about-mi-cafe-title-turtle img{
    width: 100%;
  }
  .about-mi-cafe-contents-area{
    width: 100%;
  }
  .about-mi-cafe-contents-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .about-mi-cafe-contents-text{
    width: 100%;
    padding: 3%;
    display: table-cell;
    vertical-align: middle;
  }
  .about-mi-cafe-contents-text p{
    color: #b01561;
    font-size: 1.3em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
    text-align: center;
  }
  .about-mi-cafe-contents-photo{
    width: 50%;
    padding: 3%;
    display: table-cell;
  }
  .about-mi-cafe-contents-photo img{
    width: 100%;
  }
  .map-area{
    width: 100%;
    margin-top: 5vh
  }
  .map-area-inner{
    width: 90%;
    margin: 0 auto;
  }
  .sns-area{
    width: 100%;
    height: 100vh;
    background: url("../img/diagonal_rogo.png");
    background-repeat: repeat;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .sns-area-wall{
    width: 100%;
    height: 100vh;
    background-color: rgba(130,195,197,0.9);
    position: relative;
    top: 0;
    left: 0;
    z-index: 200;
  }
  .sns-area-contents{
    width: 90%;
  }
  .sns-banner-area{
    width: 100%;
  }
  .sns-banner-area-inner{
    width: 80%;
    padding: 5% 0;
    margin: 0 auto;
    display: table;
  }
  .sns-banner-instagram{
    width: 48%;
    padding: 10%;
    display: table-cell;
  }
  .sns-banner-instagram img{
    width: 100%;
  }
  .sns-banner-space{
    width: 4%;
    display: table-cell;
  }
  .sns-banner-text{
    width: 55%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
  }
  .sns-banner-text p{
    display: inline;
    color: #b01561;
    font-family: fantasy;
    font-size: 3vw;
  }

  .sns-banner-text-link{
    color: #b01561;
    font-family: fantasy;
    font-size: 3vw;
  }
  .sns-banner-text-link2{
    color: #4064ac;
    font-family: fantasy;
    font-size: 3vw;
  }

  .footer-area{
    width: 100%;
    background: #395697;
  }
  .footer-area-inner{
    width: 70%;
    margin: 0 auto;
  }
  .footer-area-navi{
    width: 100%;
    margin-top: 2%;
  }
  .footer-area-navi a{
    text-decoration: none;
    color: #fff;
  }
  .footer-area-navi a:hover{
    color: red;
  }
  .footer-area-navi a:active{
    color: #fff;
  }
  .footer-area-navi ul{
    width: 100%;
    display: block;
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    display: flex;
    justify-content: space-between;
}

.footer-area-navi li{
  display: inline;
  color: #fff;
  font-family: fantasy;
  font-size: 2vw;
  margin-right: 5%;
}
.footer-contents{
  width: 100%;
  margin-top: 3%;
  display: table;
}
.footer-contents-inner{
  width: 100%;
  margin-top: 3%;
  display: table-cell;
  text-align: center;
}
.footer-contents-inner p{
  font-family: fantasy;
  font-size: 1.5vw;
  color: #fff;
}
.copyright-area{
  width: 100%;
  margin-top: 1%;
  text-align: center;
}
.copyright-area p{
  font-size: 1.5vw;
  color: #fff;
  margin: 0;
  line-height: 1.5em;
}
}
/*-----------------------
min 481px-max 896px終了
-----------------------*/

/*-----------------------
min 897px-max 1024px開始
-----------------------*/
@media screen and (min-width: 897px) and (max-width: 1024px) {
  .menu-trigger-wrapper{
    display: none;
  }
  .topimage-area{
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .topimage-area-inner{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
  }
  .topimage-bgarea{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/t_top_bg_image.jpg");
    background-size: cover;
    z-index: 100;
  }
  .topimage-bgarea img{
  width: 100%;
  }
  .topimage-area-drink-left{
    width: 40%;
    position: absolute;
    top: 45vh;
    left: 5%;
    transform: rotate(10deg);
    z-index: 200;
  }
  .topimage-area-drink-left img{
    width: 100%;
  }
  .topimage-area-drink-right{
    width: 40%;
    position: absolute;
    top: 45vh;
    right: 5%;
    transform: rotate(-10deg);
    z-index: 200;
  }
  .topimage-area-drink-right img{
    width: 100%;
  }
  .rogo{
    width: 40%;
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 200;
  }
  .rogo img{
    width: 100%;
  }
  .top-navi-area{
    width: 70%;
    position: absolute;
    bottom: 5%;
    left: 15%;
    background: rgba(226,99,41,1);
    border-radius: 5px;
    z-index: 2000;
  }
  .top-navi-area-inner{
  }
  .top-navi-area-navi{
  }
  .top-navi-area-navi a{
    text-decoration: none;
    color: #fff;
  }
  .top-navi-area-navi a:hover{
    color: #e2c841;
  }
  .top-navi-area-navi a:active{
    color: #fff;
  }
  .top-navi-area-navi ul{
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    display: flex;
    justify-content: space-between;
  }
  .top-navi-area-navi li{
    display: inline;
    color: #fff;
    font-family: fantasy;
    font-size: 3vw;
    margin-right: 5%;
  }
  .top-sns-banner-area{
    width: 30%;
    position: absolute;
    top: 80%;
    right: 35%;
    border-radius: 5px;
    z-index: 2000;
  }
  .top-sns-banner-area-inner{
    width: 100%;
    display: flex;
  }
  .top-sns-banner-left{
    width: 50%;
  }
  .top-sns-banner-left img{
    width: 100%;
    padding: 20%;
  }
  .top-sns-banner-right{
    width: 50%;
  }
  .top-sns-banner-right img{
    width: 100%;
    padding: 20%;
  }
  .v-space5{
    height: 5vh;
  }
  .main-area{
    width: 100%;
  }
  .main-area-wrapper{
    width: 100%;
    position: relative;
    left: 0;
    display: flex;
    flex-direction: column;
  }
  .menu-title-area{
    width: 100%;
    margin: 5vh 0;
    position: relative;
    top: 0;
    left: 0;
  }
  .menu-title-area-inner{
    width: 50%;
    margin: 0 auto;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menu-title-area-inner-left{
    width: 15%;
    margin-left: 5%;
  }
  .menu-title-area-inner-left img{
    width: 100%;
  }
  .menu-title-area-inner-center{
    width: 60%;
    display: flex;
    flex-direction: column;
  }
  .menu-title-top{
    width: 100%;
  }
  .menu-title-top img{
    width: 100%;
  }
  .menu-title-bottom{
    width: 100%;
  }
  .menu-title-bottom img{
    width: 100%;
  }
  .menu-title-area-inner-right{
    width: 15%;
    margin-right: 5%;
  }
  .menu-title-area-inner-right img{
    width: 100%;
  }
  .drink-title-area{
    width: 100%;
    height: 10vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .drink-title-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .drink-title-line{
    width: 25%;
    display: table-cell;
    vertical-align: middle;
  }
  .drink-title-line img{
    width: 100%;
  }
  .drink-title{
    width: 50%;
    display: table-cell;
    vertical-align: middle;
  }
  .drink-title img{
    width: 100%;
  }
  .menu-contents-area{
    width: 100%;
  }
  .menu-contents-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .menu-contents-area-text{
    width: 45%;
    padding: 3%;
    display: table-cell;
    vertical-align: middle;
  }
  .menu-contents-area-text p{
    color: #b01561;
    font-size: 2.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  .menu-contents-area-text span{
    color: #d78107;
    font-size: 2.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  span.anko{
    color: #000;
    font-size: 2vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  span.menu-contents-area-text-note{
    color: #b01561;
    font-size: 1.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
    display: table;
  }
  .menu-contents-area-photo{
    width: 55%;
    padding-right: 3%;
    display: table-cell;
  }
  .menu-contents-area-photo img{
    width: 100%;
  }
  .menu-border-area{
    width: 100%;
  }
  .menu-border-area-inner{
    width: 90%;
    margin: 0 auto;
  }
  .menu-border-area-inner img{
    width: 100%;
  }

  .sweets-title-area{
    width: 100%;
    height: 10vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .sweets-title-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .sweets-title-line{
    width: 25%;
    display: table-cell;
    vertical-align: middle;
  }
  .sweets-title-line img{
    width: 100%;
  }
  .sweets-title{
    width: 50%;
    display: table-cell;
    vertical-align: middle;
  }
  .sweets-title img{
    width: 100%;
  }

  .sweet-potato-period{
    width: 100%;
  }

  .sweet-potato-period-inner{
    width: 100%;
    text-align: center;
  }

  .sweet-potato-period-inner p{
    color: #d78107;
    font-size: 2em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }

  .period-area{
    width: 100%;
  }

  .period-area-inner{
    width: 100%;
    text-align: center;
  }

  .period-area-inner p{
    color: #d78107;
    font-size: 2em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }

  .about-mi-cafe-title-area{
    width: 100%;
    margin-top: 5vh;
  }
  .about-mi-cafe-title-inner{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .about-mi-cafe-title-top{
    width: 70%;
    margin: 0 auto;
    display: table;
  }
  .about-mi-cafe-title-top-left{
    width: 15%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-left img{
    width: 100%;
  }
  .about-mi-cafe-title-top-center{
    width: 70%;
    padding: 0 2%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-center img{
    width: 100%;
  }
  .about-mi-cafe-title-top-right{
    width: 15%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-right img{
    width: 100%;
  }
  .about-mi-cafe-title-bottom{
    width: 100%;
    position: relative;
  }
  .about-mi-cafe-title-bottom-wavy-line{
    width: 100%;
    overflow: hidden;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 100;
  }
  .about-mi-cafe-title-bottom-wavy-line img{
    width: 100%;
  }
  .about-mi-cafe-title-turtle{
    width: 10%;
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 200;
  }
  .about-mi-cafe-title-turtle img{
    width: 100%;
  }
  .about-mi-cafe-contents-area{
    width: 100%;
  }
  .about-mi-cafe-contents-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .about-mi-cafe-contents-text{
    width: 100%;
    padding: 3%;
    display: table-cell;
    vertical-align: middle;
  }
  .about-mi-cafe-contents-text p{
    color: #b01561;
    font-size: 1.7em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
    text-align: center;
  }
  .about-mi-cafe-contents-photo{
    width: 50%;
    padding: 3%;
    display: table-cell;
  }
  .about-mi-cafe-contents-photo img{
    width: 100%;
  }
  .map-area{
    width: 100%;
  }
  .map-area-inner{
    width: 90%;
    margin: 0 auto;
  }
  .sns-area{
    width: 100%;
    height: 100vh;
    background: url("../img/diagonal_rogo.png");
    background-repeat: repeat;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .sns-area-wall{
    width: 100%;
    height: 100vh;
    background-color: rgba(130,195,197,0.9);
    position: relative;
    top: 0;
    left: 0;
    z-index: 200;
  }
  .sns-area-contents{
    width: 90%;
  }
  .sns-banner-area{
    width: 100%;
  }
  .sns-banner-area-inner{
    width: 80%;
    padding: 5% 0;
    margin: 0 auto;
    display: table;
  }
  .sns-banner-instagram{
    width: 48%;
    padding: 10%;
    display: table-cell;
  }
  .sns-banner-instagram img{
    width: 100%;
  }
  .sns-banner-space{
    width: 4%;
    display: table-cell;
  }
  .sns-banner-text{
    width: 55%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
  }
  .sns-banner-text p{
    display: inline;
    color: #b01561;
    font-family: fantasy;
    font-size: 3vw;
  }

  .sns-banner-text-link{
    color: #b01561;
    font-family: fantasy;
    font-size: 3vw;
  }
  .sns-banner-text-link2{
    color: #4064ac;
    font-family: fantasy;
    font-size: 3vw;
  }

  .footer-area{
    width: 100%;
    background: #395697;
  }
  .footer-area-inner{
    width: 70%;
    margin: 0 auto;
  }
  .footer-area-navi{
    width: 100%;
    margin-top: 2%;
  }
  .footer-area-navi a{
    text-decoration: none;
    color: #fff;
  }
  .footer-area-navi a:hover{
    color: red;
  }
  .footer-area-navi a:active{
    color: #fff;
  }
  .footer-area-navi ul{
    width: 100%;
    display: block;
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    display: flex;
    justify-content: space-between;
}

.footer-area-navi li{
  display: inline;
  color: #fff;
  font-family: fantasy;
  font-size: 2vw;
  margin-right: 5%;
}
.footer-contents{
  width: 100%;
  margin-top: 3%;
  display: table;
}
.footer-contents-inner{
  width: 100%;
  margin-top: 3%;
  display: table-cell;
  text-align: center;
}
.footer-contents-inner p{
  font-family: fantasy;
  font-size: 2vw;
  margin-right: 5%;
  color: #fff;
}
.copyright-area{
  width: 100%;
  margin-top: 3%;
  text-align: center;
}
.copyright-area p{
  font-size: 1.5vw;
  color: #fff;
  margin: 0;
  line-height: 1.5em;
}
}
  /*-----------------------
min 897px-max 1024px終了
-----------------------*/


/*-----------------------
min 1025px開始
-----------------------*/
@media all and (min-width: 1025px){
  .menu-trigger-wrapper{
    display: none;
  }
  .topimage-area{
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .topimage-area-inner{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
  }
  .topimage-bgarea{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/top_bg_image.jpg");
    background-size: cover;
    z-index: 100;
  }
  .topimage-bgarea img{
  width: 100%;
  }
  .topimage-area-drink-left{
    width: 25%;
    position: absolute;
    top: 25vh;
    left: 5%;
    transform: rotate(10deg);
    z-index: 200;
  }
  .topimage-area-drink-left img{
    width: 100%;
  }
  .topimage-area-drink-right{
    width: 25%;
    position: absolute;
    top: 25vh;
    left: 37%;
    transform: rotate(-10deg);
    z-index: 200;
  }
  .topimage-area-drink-right img{
    width: 100%;
  }
  .rogo{
    width: 25%;
    position: absolute;
    top: 5vh;
    right: 5%;
    z-index: 200;
  }
  .rogo img{
    width: 100%;
  }
  .top-navi-area{
    width: 30%;
    position: absolute;
    top: 60%;
    right: 2.5%;
    background: rgba(226,99,41,1);
    border-radius: 5px;
    z-index: 2000;
  }
  .top-navi-area-inner{
  }
  .top-navi-area-navi{
  }
  .top-navi-area-navi a{
    text-decoration: none;
    color: #fff;
  }
  .top-navi-area-navi a:hover{
    color: #e2c841;
  }
  .top-navi-area-navi a:active{
    color: #fff;
  }
  .top-navi-area-navi ul{
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    display: flex;
    justify-content: space-between;
  }
  .top-navi-area-navi li{
    display: inline;
    color: #fff;
    font-family: fantasy;
    font-size: 1.5vw;
    margin-right: 5%;
  }
  .top-navi-area{
    width: 30%;
    position: absolute;
    top: 60%;
    right: 2.5%;
    background: rgba(226,99,41,1);
    border-radius: 5px;
    z-index: 2000;
  }
  .top-navi-area-inner{
  }
  .top-navi-area-navi{
  }
  .top-navi-area-navi a{
    text-decoration: none;
    color: #fff;
  }
  .top-navi-area-navi a:hover{
    color: #e2c841;
  }
  .top-navi-area-navi a:active{
    color: #fff;
  }
  .top-navi-area-navi ul{
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    display: flex;
    justify-content: space-between;
  }
  .top-navi-area-navi li{
    display: inline;
    color: #fff;
    font-family: fantasy;
    font-size: 1.5vw;
    margin-right: 5%;
  }
  .top-sns-banner-area{
    width: 30%;
    position: absolute;
    top: 70%;
    right: 2.5%;
    border-radius: 5px;
    z-index: 2000;
  }
  .top-sns-banner-area-inner{
    width: 100%;
    display: flex;
  }
  .top-sns-banner-left{
    width: 50%;
  }
  .top-sns-banner-left img{
    width: 100%;
    padding: 20%;
  }
  .top-sns-banner-right{
    width: 50%;
  }
  .top-sns-banner-right img{
    width: 100%;
    padding: 20%;
  }
  .v-space5{
    height: 5vh;
  }
  .main-area{
    width: 100%;
  }
  .main-area-wrapper{
    width: 100%;
    position: relative;
    left: 0;
    display: flex;
    flex-direction: column;
  }
  .menu-title-area{
    width: 100%;
    height: 20vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .menu-title-area-inner{
    width: 30%;
    margin: 0 auto;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menu-title-area-inner-left{
    width: 15%;
    margin-left: 5%;
  }
  .menu-title-area-inner-left img{
    width: 100%;
  }
  .menu-title-area-inner-center{
    width: 60%;
    display: flex;
    flex-direction: column;
  }
  .menu-title-top{
    width: 100%;
  }
  .menu-title-top img{
    width: 100%;
  }
  .menu-title-bottom{
    width: 100%;
  }
  .menu-title-bottom img{
    width: 100%;
  }
  .menu-title-area-inner-right{
    width: 15%;
    margin-right: 5%;
  }
  .menu-title-area-inner-right img{
    width: 100%;
  }
  .drink-title-area{
    width: 100%;
    height: 10vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .drink-title-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .drink-title-line{
    width: 35%;
    display: table-cell;
    vertical-align: middle;
  }
  .drink-title-line img{
    width: 100%;
  }
  .drink-title{
    width: 30%;
    display: table-cell;
    vertical-align: middle;
  }
  .drink-title img{
    width: 100%;
  }
  .menu-contents-area{
    width: 100%;
  }
  .menu-contents-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .menu-contents-area-text{
    width: 45%;
    padding: 3%;
    display: table-cell;
    vertical-align: middle;
  }
  .menu-contents-area-text p{
    color: #b01561;
    font-size: 2.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  .menu-contents-area-text span{
    color: #d78107;
    font-size: 2.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  span.anko{
    color: #000;
    font-size: 2vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  span.menu-contents-area-text-note{
    color: #b01561;
    font-size: 1.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
    display: table;
  }
  .menu-contents-area-photo{
    width: 55%;
    padding-right: 3%;
    display: table-cell;
  }
  .menu-contents-area-photo img{
    width: 100%;
  }
  .menu-border-area{
    width: 100%;
  }
  .menu-border-area-inner{
    width: 90%;
    margin: 0 auto;
  }
  .menu-border-area-inner img{
    width: 100%;
  }

  .sweets-title-area{
    width: 100%;
    height: 10vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .sweets-title-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .sweets-title-line{
    width: 35%;
    display: table-cell;
    vertical-align: middle;
  }
  .sweets-title-line img{
    width: 100%;
  }
  .sweets-title{
    width: 30%;
    display: table-cell;
    vertical-align: middle;
  }
  .sweets-title img{
    width: 100%;
  }

  .sweet-potato-period{
    width: 100%;
    margin: 3% 0;
  }

  .sweet-potato-period-inner{
    width: 100%;
    text-align: center;
  }

  .sweet-potato-period-inner p{
    color: #d78107;
    font-size: 2em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }

  .period-area{
    width: 100%;
    margin: 3% 0;
  }

  .period-area-inner{
    width: 100%;
    text-align: center;
  }

  .period-area-inner p{
    color: #d78107;
    font-size: 2em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }

  .about-mi-cafe-title-area{
    width: 100%;
    margin-top: 3%;
  }
  .about-mi-cafe-title-inner{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .about-mi-cafe-title-top{
    width: 50%;
    margin: 0 auto;
    display: table;
  }
  .about-mi-cafe-title-top-left{
    width: 15%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-left img{
    width: 100%;
  }
  .about-mi-cafe-title-top-center{
    width: 70%;
    padding: 0 2%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-center img{
    width: 100%;
  }
  .about-mi-cafe-title-top-right{
    width: 15%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-right img{
    width: 100%;
  }
  .about-mi-cafe-title-bottom{
    width: 100%;
    position: relative;
  }
  .about-mi-cafe-title-bottom-wavy-line{
    width: 100%;
    overflow: hidden;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 100;
  }
  .about-mi-cafe-title-bottom-wavy-line img{
    width: 100%;
  }
  .about-mi-cafe-title-turtle{
    width: 10%;
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 200;
  }
  .about-mi-cafe-title-turtle img{
    width: 100%;
  }
  .about-mi-cafe-contents-area{
    width: 100%;
  }
  .about-mi-cafe-contents-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .about-mi-cafe-contents-text{
    width: 100%;
    padding: 3%;
    display: table-cell;
    vertical-align: middle;
  }
  .about-mi-cafe-contents-text p{
    color: #b01561;
    font-size: 2em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
    text-align: center;
  }
  .about-mi-cafe-contents-photo{
    width: 50%;
    padding: 3%;
    display: table-cell;
  }
  .about-mi-cafe-contents-photo img{
    width: 100%;
  }
  .map-area{
    width: 100%;
  }
  .map-area-inner{
    width: 90%;
    margin: 0 auto;
  }
  .sns-area{
    width: 100%;
    height: 100vh;
    background: url("../img/diagonal_rogo.png");
    background-repeat: repeat;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .sns-area-wall{
    width: 100%;
    height: 100vh;
    background-color: rgba(130,195,197,0.9);
    position: relative;
    top: 0;
    left: 0;
    z-index: 200;
  }
  .sns-area-contents{
    width: 90%;
  }
  .sns-banner-area{
    width: 100%;
  }
  .sns-banner-area-inner{
    width: 80%;
    padding: 5% 0;
    margin: 0 auto;
    display: table;
  }
  .sns-banner-instagram{
    width: 40%;
    padding: 5%;
    display: table-cell;
  }
  .sns-banner-instagram img{
    width: 100%;
  }
  .sns-banner-space{
    width: 5%;
    display: table-cell;
  }
  .sns-banner-text{
    width: 55%;
    display: table-cell;
    text-align: center;
  }
  .sns-banner-text p{
    margin: 0;
    color: #b01561;
    font-family: fantasy;
    font-size: 3vw;
  }

  .sns-banner-text-link{
    color: #b01561;
    font-family: fantasy;
    font-size: 3vw;
  }
  .sns-banner-text-link2{
    color: #4064ac;
    font-family: fantasy;
    font-size: 3vw;
  }

  .footer-area{
    width: 100%;
    background: #395697;
  }
  .footer-area-inner{
    width: 70%;
    margin: 0 auto;
  }
  .footer-area-navi{
    width: 100%;
    margin-top: 2%;
  }
  .footer-area-navi a{
    text-decoration: none;
    color: #fff;
  }
  .footer-area-navi a:hover{
    color: red;
  }
  .footer-area-navi a:active{
    color: #fff;
  }
  .footer-area-navi ul{
    width: 100%;
    display: block;
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    display: flex;
    justify-content: space-between;
}

.footer-area-navi li{
  display: inline;
  color: #fff;
  font-family: fantasy;
  font-size: 2vw;
  margin-right: 5%;
}
.footer-contents{
  width: 100%;
  margin-top: 8%;
  display: table;
}
.footer-contents-inner{
  width: 100%;
  display: table-cell;
  text-align: center;
}
.footer-contents-inner p{
  font-family: fantasy;
  font-size: 1.8vw;
  color: #fff;
  margin: 0;
  line-height: 1.5em;
}
.copyright-area{
  width: 100%;
  margin-top: 3%;
  text-align: center;
}
.copyright-area p{
  font-size: 1.5vw;
  color: #fff;
  margin: 0;
  line-height: 1.5em;
}
}
/*-----------------------
min 1025px終了
-----------------------*/

/*----------------------------
プリンターCSS　開始
----------------------------*/
@media print{
  .menu-trigger-wrapper{
    display: none;
  }
  .topimage-area{
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .topimage-area-inner{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
  }
  .topimage-bgarea{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/top_bg_image.jpg");
    background-size: cover;
    z-index: 100;
  }
  .topimage-bgarea img{
  width: 100%;
  }
  .topimage-area-drink-left{
    width: 25%;
    position: absolute;
    top: 25vh;
    left: 5%;
    transform: rotate(10deg);
    z-index: 200;
  }
  .topimage-area-drink-left img{
    width: 100%;
  }
  .topimage-area-drink-right{
    width: 25%;
    position: absolute;
    top: 25vh;
    left: 37%;
    transform: rotate(-10deg);
    z-index: 200;
  }
  .topimage-area-drink-right img{
    width: 100%;
  }
  .rogo{
    width: 25%;
    position: absolute;
    top: 5vh;
    right: 5%;
    z-index: 200;
  }
  .rogo img{
    width: 100%;
  }
  .top-navi-area{
    width: 30%;
    position: absolute;
    top: 60%;
    right: 2.5%;
    background: rgba(226,99,41,1);
    border-radius: 5px;
    z-index: 2000;
  }
  .top-navi-area-inner{
  }
  .top-navi-area-navi{
  }
  .top-navi-area-navi a{
    text-decoration: none;
    color: #fff;
  }
  .top-navi-area-navi a:hover{
    color: #e2c841;
  }
  .top-navi-area-navi a:active{
    color: #fff;
  }
  .top-navi-area-navi ul{
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    display: flex;
    justify-content: space-between;
  }
  .top-navi-area-navi li{
    display: inline;
    color: #fff;
    font-family: fantasy;
    font-size: 1.5vw;
    margin-right: 5%;
  }
  .top-sns-banner-area{
    width: 30%;
    position: absolute;
    top: 70%;
    right: 2.5%;
    border-radius: 5px;
    z-index: 2000;
  }
  .top-sns-banner-area-inner{
    width: 100%;
    display: flex;
  }
  .top-sns-banner-left{
    width: 50%;
  }
  .top-sns-banner-left img{
    width: 100%;
    padding: 20%;
  }
  .top-sns-banner-right{
    width: 50%;
  }
  .top-sns-banner-right img{
    width: 100%;
    padding: 20%;
  }
  .v-space5{
    height: 5vh;
  }
  .main-area{
    width: 100%;
  }
  .main-area-wrapper{
    width: 100%;
    position: relative;
    left: 0;
    display: flex;
    flex-direction: column;
  }
  .menu-title-area{
    width: 100%;
    height: 20vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .menu-title-area-inner{
    width: 30%;
    margin: 0 auto;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menu-title-area-inner-left{
    width: 15%;
    margin-left: 5%;
  }
  .menu-title-area-inner-left img{
    width: 100%;
  }
  .menu-title-area-inner-center{
    width: 60%;
    display: flex;
    flex-direction: column;
  }
  .menu-title-top{
    width: 100%;
  }
  .menu-title-top img{
    width: 100%;
  }
  .menu-title-bottom{
    width: 100%;
  }
  .menu-title-bottom img{
    width: 100%;
  }
  .menu-title-area-inner-right{
    width: 15%;
    margin-right: 5%;
  }
  .menu-title-area-inner-right img{
    width: 100%;
  }
  .drink-title-area{
    width: 100%;
    height: 10vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .drink-title-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .drink-title-line{
    width: 35%;
    display: table-cell;
    vertical-align: middle;
  }
  .drink-title-line img{
    width: 100%;
  }
  .drink-title{
    width: 30%;
    display: table-cell;
    vertical-align: middle;
  }
  .drink-title img{
    width: 100%;
  }
  .menu-contents-area{
    width: 100%;
  }
  .menu-contents-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .menu-contents-area-text{
    width: 45%;
    padding: 3%;
    display: table-cell;
    vertical-align: middle;
  }
  .menu-contents-area-text p{
    color: #b01561;
    font-size: 2.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  .menu-contents-area-text span{
    color: #d78107;
    font-size: 2.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  span.anko{
    color: #000;
    font-size: 2vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
  }
  span.menu-contents-area-text-note{
    color: #b01561;
    font-size: 1.5vw;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
    display: table;
  }
  .menu-contents-area-photo{
    width: 55%;
    padding-right: 3%;
    display: table-cell;
  }
  .menu-contents-area-photo img{
    width: 100%;
  }
  .menu-border-area{
    width: 100%;
  }
  .menu-border-area-inner{
    width: 90%;
    margin: 0 auto;
  }
  .menu-border-area-inner img{
    width: 100%;
  }

  .sweets-title-area{
    width: 100%;
    height: 10vh;
    position: relative;
    top: 0;
    left: 0;
  }
  .sweets-title-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .sweets-title-line{
    width: 35%;
    display: table-cell;
    vertical-align: middle;
  }
  .sweets-title-line img{
    width: 100%;
  }
  .sweets-title{
    width: 30%;
    display: table-cell;
    vertical-align: middle;
  }
  .sweets-title img{
    width: 100%;
  }

  .about-mi-cafe-title-area{
    width: 100%;
  }
  .about-mi-cafe-title-inner{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .about-mi-cafe-title-top{
    width: 50%;
    margin: 0 auto;
    display: table;
  }
  .about-mi-cafe-title-top-left{
    width: 15%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-left img{
    width: 100%;
  }
  .about-mi-cafe-title-top-center{
    width: 70%;
    padding: 0 2%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-center img{
    width: 100%;
  }
  .about-mi-cafe-title-top-right{
    width: 15%;
    display: table-cell;
  }
  .about-mi-cafe-title-top-right img{
    width: 100%;
  }
  .about-mi-cafe-title-bottom{
    width: 100%;
    position: relative;
  }
  .about-mi-cafe-title-bottom-wavy-line{
    width: 100%;
    overflow: hidden;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 100;
  }
  .about-mi-cafe-title-bottom-wavy-line img{
    width: 100%;
  }
  .about-mi-cafe-title-turtle{
    width: 10%;
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 200;
  }
  .about-mi-cafe-title-turtle img{
    width: 100%;
  }
  .about-mi-cafe-contents-area{
    width: 100%;
  }
  .about-mi-cafe-contents-area-inner{
    width: 90%;
    margin: 0 auto;
    display: table;
  }
  .about-mi-cafe-contents-text{
    width: 100%;
    padding: 3%;
    display: table-cell;
    vertical-align: middle;
  }
  .about-mi-cafe-contents-text p{
    color: #b01561;
    font-size: 2em;
    font-family: fantasy;
    margin: 0;
    line-height: 1.8em;
    text-align: center;
  }
  .about-mi-cafe-contents-photo{
    width: 50%;
    padding: 3%;
    display: table-cell;
  }
  .about-mi-cafe-contents-photo img{
    width: 100%;
  }
  .map-area{
    width: 100%;
  }
  .map-area-inner{
    width: 90%;
    margin: 0 auto;
  }
  .sns-area{
    width: 100%;
    height: 100vh;
    background: url("../img/diagonal_rogo.png");
    background-repeat: repeat;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .sns-area-wall{
    width: 100%;
    height: 100vh;
    background-color: rgba(130,195,197,0.9);
    position: relative;
    top: 0;
    left: 0;
    z-index: 200;
  }
  .sns-area-contents{
    width: 90%;
  }
  .sns-banner-area{
    width: 100%;
  }
  .sns-banner-area-inner{
    width: 80%;
    padding: 5% 0;
    margin: 0 auto;
    display: table;
  }
  .sns-banner-instagram{
    width: 40%;
    padding: 5%;
    display: table-cell;
  }
  .sns-banner-instagram img{
    width: 100%;
  }
  .sns-banner-space{
    width: 5%;
    display: table-cell;
  }
  .sns-banner-text{
    width: 55%;
    display: table-cell;
    text-align: center;
  }
  .sns-banner-text p{
    margin: 0;
    color: #b01561;
    font-family: fantasy;
    font-size: 3vw;
  }

  .sns-banner-text-link{
    color: #b01561;
    font-family: fantasy;
    font-size: 3vw;
  }
  .sns-banner-text-link2{
    color: #4064ac;
    font-family: fantasy;
    font-size: 3vw;
  }

  .footer-area{
    width: 100%;
    height: 50vh;
    background: #395697;
  }
  .footer-area-inner{
    width: 70%;
    margin: 0 auto;
  }
  .footer-area-navi{
    width: 100%;
    margin-top: 2%;
  }
  .footer-area-navi a{
    text-decoration: none;
    color: #fff;
  }
  .footer-area-navi a:hover{
    color: red;
  }
  .footer-area-navi a:active{
    color: #fff;
  }
  .footer-area-navi ul{
    width: 100%;
    display: block;
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    display: flex;
    justify-content: space-between;
}

.footer-area-navi li{
  display: inline;
  color: #fff;
  font-family: fantasy;
  font-size: 2vw;
  margin-right: 5%;
}
.footer-contents{
  width: 100%;
  margin-top: 3%;
  display: table;
}
.footer-contents-inner{
  width: 100%;
  margin-top: 3%;
  display: table-cell;
  text-align: center;
}
.footer-contents-inner p{
  font-family: fantasy;
  font-size: 1.8vw;
  margin-right: 5%;
  color: #fff;
}
.copyright-area{
  width: 100%;
  margin-top: 3%;
  text-align: center;
}
.copyright-area p{
  font-size: 1.5vw;
  color: #fff;
  margin: 0;
  line-height: 1.5em;
}
}
/*----------------------------
プリンターCSS　開始
----------------------------*/
