@charset "UTF-8";
/*reset*/
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;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
body {
line-height: 1;
font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
-webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}
ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none;
}
a {
margin: 0;
padding: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
text-decoration: none;
}
/* change colours to suit your needs */
ins {
background-color: #ff9;
color: #000;
text-decoration: none;
}
/* change colours to suit your needs */
mark {
background-color: #ff9;
color: #000;
font-style: italic;
font-weight: bold;
}
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;
border: 0;
border-top: 1px solid #cccccc;
margin: 1em 0;
padding: 0;
}
input, select {
vertical-align: middle;
}
*, *::before, *::after {
box-sizing: border-box;
}
button {
border: none;
background: none;
outline: none;
}
a:hover, a img:hover, label img:hover {
opacity: 0.8;
}

/*loading*/
.loading{
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 99999;
}
.animation{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: lodanimetion 1500ms ease-out forwards infinite;
  animation: lodanimetion 1500ms ease-out forwards infinite;
}
@keyframes lodanimetion {
  from,to {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
}
/*header*/
header{
height: 80px;
display: block;
}
/*ハンバーガーメニュー*/
.menu, .menu span {
display: inline-block;
-webkit-transition: all .4s;
transition: all .4s;
box-sizing: border-box;
}
.menu {
position: fixed;
top: 25px;
right: 25px;
width: 25px;
height: 22px;
z-index: 1100;
}
.menu span {
position: absolute;
left: 0;
width: 100%;
height: 1px;
background-color: #000;
z-index: 10;
}
.menu span:nth-of-type(1) {
top: 0px;
}
.menu span:nth-of-type(2) {
top: 10px;
width: 50%;
}
.menu span:nth-of-type(3) {
bottom: 0px;
}
.menu.active span:nth-of-type(1) {
-webkit-transform: translateY(10px) rotate(45deg);
transform: translateY(10px) rotate(45deg);
}
.menu.active span:nth-of-type(2) {
opacity: 0;
}
.menu.active span:nth-of-type(3) {
-webkit-transform: translateY(-10px) rotate(-45deg);
transform: translateY(-10px) rotate(-45deg);
}
#nav {
position: fixed;
top: 0;
right: 0;
z-index: 1100;
width: 100%;
height: 100vh;
opacity: 0;
background-color: #fff;
transition: all 0.3s ease-in-out;
visibility: hidden;
font-family: 'Courgette', cursive;
font-size: x-large;
}
#nav.active {
right: 0;
opacity: 1;
-moz-transform: translateX(0);
-webkit-transform: translateX(0);
transform: translateX(0);
visibility: visible;
}
#nav ul {
margin: 20px 0;
padding: 20px 0;
}
#nav ul li {
list-style-type: none;
}
#nav ul li a {
display: block;
padding: 20px 0;
transition: all 0.2s ease-in-out;
text-align: center;
color: #333;
}
#nav ul li a:hover {
color: #89c156;
}
h1{
width:90px;
margin: auto;
padding-top: 20px;
}
.tel-pc{
display: none;
}
.tel-sp {
display: block;
position: fixed;
bottom: 0;
z-index: 100;
width: 100%;
}
.tel-sp a {
height: 60px;
line-height: 60px;
color: white;
text-align: center;
font-weight: 700;
width: 100%;
display: block;
background: #89c156;
}
.tel-sp object {
width: 20px;
margin-right: 10px;
vertical-align: middle;
}

/*MV*/
.container {
margin-right: 6.4vw;
margin-left: 6.4vw;
}
.swiper-container {
height: calc(var(--vh,1vh)*100 - 5.5rem - 14.4vh);
margin-bottom: 10%;
}
:root {
--swiper-theme-color: #ffffff;
}
.slide-img{
height: 100%;
position: relative;
}
.swiper-container img {
height: 100%;
position: absolute;
top: 0;
/*left: -50%;*/
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
animation: zoomUp 10s linear 0s 1 normal both;  
}
.slide-img img{
display: block;
}

/*common*/
section{
line-height: 1.8;
padding-top:20px; 
clear: both;
}
section img{
width: 100%;
}
h2{
font-family: 'Courgette', cursive;
font-size: 35px;
line-height: 1.5;
}
.tit object{
width: 45px;
}
.tit {
margin-bottom: 20px;
}
/*about us*/
#aboutus {
max-width: 850px;
margin-right: 6.4vw;
margin-left: 6.4vw;
margin-bottom: 5%;
}
#aboutus .l {
margin-bottom: 15px;
}
/*bg*/
#bg{
background: url(../images/bg.jpg) no-repeat center top;
background-size: cover;
background-attachment: fixed;
height: 250px;
margin-bottom: 30px;
}
/*menu & news（枠のみ）*/
#menu , #news{
max-width: 1000px;
margin-right: 6.4vw;
margin-left: 6.4vw;
margin-bottom: 5%;
}
#menu-price{
max-width: 850px;
}
#menu-price h3{
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}
#menu-price h3 span {
font-size: 14px;
}
#menu-price .price-box {
margin-bottom: 5%;
width: 100%;
float: left;
}
#menu-price .price-box .menu-box{
width: 100%;
float: left;
border-bottom: 1px solid #ddd;
padding: 10px 2px;
}
#menu-price .price-box .noboder{
border-bottom: none;
}
#menu-price .menu-box .l {
text-align: left;
width: 65%;
float: left;
}
#menu-price .menu-box .r {
text-align: right;
width: 35%;
float: right;
padding-top: 7px;
}
#menu-price .menu-box .l span {
font-size: 14px;
background: #fafafa;
display: inline-block;
line-height: 1.5;
padding: 7px 15px;
border: 1px solid #e5e9eb;
border-radius: 100px;
box-sizing: border-box;
}
#menu-price .menu-box .txt{
clear: both;
padding-top: 10px;
}
#menu-price .menu-box .txt-s{
font-size: 13px;
}

/*access*/
#access .map-tit {
text-align: center;
position: relative;
z-index: 5;
}
#access .map-box{
margin-top: -40px;
position: relative;
z-index: 4;
}
#access iframe{
width: 100%;
height: 300px;
margin-bottom: 5%;
}
#access .fresco-info{
max-width: 850px;
margin-right: 6.4vw;
margin-left: 6.4vw;
margin-bottom: 5%;
}
#access .fresco-info .r , #access table {
margin-bottom: 15px;
}
#access table tr{
text-align: left;
}
#access table th {
width: 100px;
padding: 5px 2px;
}

/*news*/
#news-box{
max-width: 850px;
}
#news .amemore{
width: 280px;
text-align: center;
margin: auto;
}
#news .amemore a {
display: block;
border-bottom: solid 1px #ddd;
color: #000;
padding: 15px 1px;
}
.blog_date{
font-size: 13px;
}
.blog_title{
text-decoration: underline;
}
.blog_title a {
color: #000;
}
#news-box dd{
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid #ddd;
}
#news-box dd:last-child{
border-bottom: none;
}
#news-box .tit{
margin-bottom: 10px;
font-weight: bold;
}

/*instagram*/
.insta-tit{
text-align: center;
}

/*footer*/
footer{
background: #333;
text-align: center;
padding: 20px 6.4vw;
color: #fff;
margin-bottom: 60px;
font-family: 'Courgette', cursive;
font-size: 14px;
line-height: 1.8;
}
footer ul {
margin-top: 20px;
margin-bottom: 20px;
}
footer .copyright {
font-size: 12px;
}
footer h2{
width:90px;
margin: auto;
}
footer ul object {
width: 20px;
margin-right: 10px;
vertical-align: middle;
}
footer li {
padding: 3px 1px;
}
footer li a {
color: #fff;
}

@media (min-width:768px){
/*header*/
header{
height: 120px;
}
.menu {
position: fixed;
top: 43px;
right: 45px;
width: 25px;
height: 22px;
z-index: 1200;
}
.tel-pc{
display: block;
font-family: 'Josefin Sans', sans-serif;
font-size: 30px;
position: absolute;
top: 43px;
left: 45px;
}
.tel-pc object {
width: 20px;
margin-right: 10px;
}
.tel-sp {
display:none;
}
h1{
width: 120px;
padding-top: 40px;
}
/*common*/
h2{
font-size: 60px;
}
.clear{
clear: both;
}
.tit {
margin-bottom: 40px;
}
/*about us*/
#aboutus .l {
width: 50%;
float: left;
}
#aboutus .r {
width: 45%;
float: right;
}	
/*bg*/
#bg{
height: 480px;
margin-bottom: 130px;
}
/*memu*/
#menu-price h3 {
font-size: 25px;
}
#menu-price .price-box .menu-box {
padding: 15px 2px;
}
#menu-price .menu-box .l span {
font-size: 16px;
}
/*access*/
#access .map-box {
margin-top: -80px;
}
#access iframe{
height: 450px;
}
#access .fresco-info .l {
width: 45%;
float: left;
}
#access .fresco-info .r {
width: 50%;
float: right;
}
/*footer*/
footer{
margin-bottom: 0;
padding: 40px 6.4vw 80px 6.4vw;
}
footer h2{
width:120px;
}
}
@media (min-width:900px){
/*about us & access（枠のみ）*/
#aboutus , #access .fresco-info{
max-width: 850px;
margin: auto auto 150px auto;
}
/*menu & news（枠のみ）*/
#menu , #news {
margin: auto auto 150px auto;
}
#menu-price , #news-box{
margin: auto;
}
}
@media (min-width:1200px){
.swiper-container {
height: calc(var(--vh, 1vh)*100 - 12.625rem);
margin-bottom: 10%;
}
.swiper-container img {
width: 100% !important;
height: auto;
position: unset;
}	
}