@charset "UTF-8";


body {
    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}
}
h1 {
  margin-left: auto;
  margin-right: auto;
}
.lazy-loaded{
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "alpha(opacity=0)";
  transform: translate(0, -5px);
  -moz-transform: translate(0, -5px);
  -webkit-transform: translate(0, -5px);
  -o-transform: translate(0, -5px);
  -ms-transform: translate(0, -5px);
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}
.lazy-hidden, .entry img.lazy-hidden, img.thumbnail.lazy-hidden{
  height: 512px !important;
}
.fadeIn{
  opacity: 1.0;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}


/*header*/
header{
  width: 100%;
}
h1{
  position: relative;
  width: 321px;
  margin: 0 auto;
  line-height: 1;
}
body.home h1{
  cursor: pointer;
}

/*ハンバーガーメニュー*/
#toggle {
  display: block;
  background: rgba(239, 239, 239, 0.88);
  color: #fff;
  text-align: center;
  width: 80px;
  height: 80px;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  transition: 0.3s;
}
#toggle:hover{
  opacity: 0.5;
}


.trigger,
.trigger span {
  display: inline-block;
  -webkit-transition: all .4s;
          transition: all .4s;
}
.trigger {
  position: relative;
  width: 31px;
  height: 19px;
}
.trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.trigger span:nth-of-type(1) {
  top: 0;
}
.trigger span:nth-of-type(2) {
  top: 9px;
}
.trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #000000;
  -webkit-transition: all .4s;
          transition: all .4s;
}
.trigger span:nth-of-type(3) {
  bottom: 0;
}
#toggle.active .trigger span:nth-of-type(1) {
  -webkit-transform: translateY(8px) scale(0);
          transform: translateY(8px) scale(0);
}
#toggle.active .trigger span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#toggle.active .trigger span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#toggle.active .trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) scale(0);
          transform: translateY(-8px) scale(0);
}

/*ナビ*/
.toggleWrap {
  background: rgba(250, 250, 250, 0.90);
  padding: 50px 15px 10px 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.mainNav {
position: absolute;
top: 55px;
right: 115px;
}

.mainNav li {
  list-style-type: none;
  text-align: right;
}

.navItem {
  display: block;
  text-decoration: none;
  color: #000;
  padding: 4px 0;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
}
.mainNav li:first-of-type .navItem {
  letter-spacing: 0.15em;
}

.mainNav li:first-of-type::after {
  content: "";
  width: 117px;
  border-bottom: 1px solid #666;
  margin: 23px 0 12px;
  display: inline-block;
}
.mainNav li:nth-of-type(7)::after {
  content: "";
  width: 117px;
  border-bottom: 1px solid #666;
  margin: 33px 0 12px;
  display: inline-block;
}
.mainNav li:nth-of-type(8) a,
.mainNav li:nth-of-type(9) a {
  line-height: 2.5em;
}
.mainNav li:last-child {
  margin-top: 25px;
  margin-right: 5px;
}
.navItem:hover {
  text-decoration: none;
}
.navItem img:hover {
  opacity: 0.3;
}
.navItem-small {
  font-size: 14px;
}
span.navItem {
  color: #b3b3b3;
}
.en{
  font-weight: 400;
}

.hide {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.animation {
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}
.no-scroll {
  overflow: hidden;
}

.fadein {
    opacity : 0;
    transform:translateY(1rem);
    transition : 1s;
}
.fadein.scrollin {
    opacity : 1;
    transform:translateY(0);
}



@media print, screen and (max-width: 767px) {
h1{
  width: 50%;
}
.mainNav{
  left: 50%;
  top: 50px;
  transform: translate(-50%,0);
  width: 100%;
  text-align: center;
}
.mainNav li:first-of-type::after, .mainNav li:nth-of-type(8)::after{
  display: inline-block;
  width: 8rem;
  margin: 1rem;
}
  .navItem{
    text-align: center;
    font-size: 1.6rem;
    padding: 0.4em;
  }
.mainNav li:nth-of-type(8)::after{
  margin: 2.5rem 0 1rem;
}
#toggle{
  width:58px;
  height:57px;
}
.trigger {
    width: 19.5px;
    height: 11px;
}
.trigger span:nth-of-type(2) {
    top: 5px;
}
}


/*----------------main----------------*/
main{
  background: #fafafa;
  padding: 3.43rem 0;
  position: relative;
  width: 100%;
}
.w_wrapper{
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
article{
  position: relative;
  width: 100%;
}
h2{
  font-size: 1.75rem;
  border-bottom: 1px solid #666666;
  text-align: center;
  display: inline-block;
  margin-bottom: 6.25rem;
  letter-spacing: 0.1em;
  padding-bottom: 5px;
}

@media print, screen and (max-width: 767px) {
main{
  padding:20px 6.25%;
}
h2{
  border-color: #999;
}
}


/*----------------home----------------*/
body.home header{
  width: 100%;
  height: 100vh;
}
body.home header h1{
  margin: 0;
  position: relative;
  width: 331px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
body.home main{
  padding-bottom: 8rem;
}
body.home main h2 {
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  margin: 2rem 0 3rem;
  /*text-indent: 0.8em;*/
  padding-bottom: 5px;
  margin-bottom: 3rem;
  border: none;
  margin-top: 0;
}
body.home h2 span.br-pc {
  display: inline-block;
  padding-left: 0.5em;
}
body.home main p.font18{
  font-size: 1.125rem;
  margin-bottom: 8.8rem;
}

body.home article{
  width: 380px;
  float: left;
  margin-bottom: 40px;
}

body.home article:nth-of-type(2),
body.home article:nth-of-type(5),
body.home article:nth-of-type(8),
body.home article:nth-of-type(11),
body.home article:nth-of-type(14),
body.home article:nth-of-type(17),
body.home article:nth-of-type(20){
  margin: 0 40px 40px;
}

body.home article h4{
  font-size:0.9em;
  margin-top: 0.5em;
}

@media print, screen and (max-width: 1200px) {
body.home .w_wrapper{
  width: 800px;
}

body.home article a:hover{
  opacity: 1;
}


body.home article:nth-of-type(2),
body.home article:nth-of-type(5),
body.home article:nth-of-type(8),
body.home article:nth-of-type(11),
body.home article:nth-of-type(14),
body.home article:nth-of-type(17),
body.home article:nth-of-type(20){
  margin: 0 0 40px;
}
body.home article:nth-of-type(odd){
  margin-right: 40px;
}
}

@media print, screen and (max-width: 767px) {
body.home header h1{
  width: 63%;
  top: 45%;
}
body.home .w_wrapper{
  width: 100%;
}
body.home main h2{
  margin-top: 4rem;
  line-height: 1.7;
}
body.home main h2 span.br-pc {
    display: none;
}

body.home main p.font18{
  font-size: 1.2rem;
  line-height: 2.5;
  margin-bottom: 5.5rem;
}

body.home article{
  width: 100%;
  margin-bottom: 30px;
}
body.home article:nth-of-type(odd){
  margin-right: 0;
}
body.home article h4{
  font-size: 1em;
}
}


/*body.home article a{
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 50px;
}

body.home article:nth-of-type(1) a img,
body.home article:nth-of-type(2) a img,
body.home article:nth-of-type(3) a img{
  opacity:1;
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}


body.home article a:hover{
  opacity: 1;
}
body.home article ul.overlay{
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0,0,0,0.5);
  top:0;
  left:0;
  opacity: 0;
  -webkit-transition: opacity .3s linear;
  -moz-transition: opacity .3s linear;
  -o-transition: opacity .3s linear;
  transition: opacity .3s linear;
  filter: alpha(opacity=0);
}
body.home article ul.overlay li{
  font-size: 1.5rem;
  color: #FFF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}
body.home article ul.overlay:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
body.home #arcv_wrapper{
  background: #fafafa;
  margin: 9.375rem 0 6rem;

}
body.home #arcv_wrapper ul li{
  border-bottom: 1px solid #666666;
  line-height: 1;
  position: relative;
  font-size: 1.125rem;
  text-align: left;
}
body.home #arcv_wrapper ul li:first-of-type{
  border-top: 1px solid #666666;
}
body.home #arcv_wrapper ul li a{
  color:#000;
  padding: 1.93rem 0;
  display: block;
  background: url(../images/common/ic-arrow-arcv.png) no-repeat 97.5% 50%;
}

body.home #arcv_wrapper ul li a:visited{
  color: #a3a3a3;
}

@media print, screen and (max-width: 767px) {
body.home header h1{
  width: 63%;
  top: 45%;
}
body.home #logo_top{
  width: 57.1%;
  margin: 0 auto 6.7rem;
}
body.home h2{
  margin-bottom: 3.5rem;
  margin-bottom: 5rem;
}
body.home article a{
  margin-bottom: 20px;
}
body.home #arcv_wrapper{
  margin-top: 7rem;
}
body.home #arcv_wrapper ul li:first-of-type,
body.home #arcv_wrapper ul li{
  border-color: #999;
}
body.home #arcv_wrapper ul li a{
    background-size: 8px;
    padding: 1.7rem 0;
}
}*/



/*reservation*/
#reservation{
  margin-top: 6.25rem;
  padding-bottom: 12rem;
  background: #fafafa;
  padding:9rem 0;
  text-align: center;
}
#reservation h2{
  margin-top: 0;
  margin-bottom: 5.5rem;
}
#reservation p.font20{
  font-size: 1.25rem;
}
#reservation p.font14{
  font-size: 0.875rem;
}
#reservation a{
  font-size: 1.125rem;
  color: #000;
}

#reservation a[href^="/contact/"]{
  font-size: 0.875rem;
  color: #0099FF;
}

#reservation a.bnr{
  display: block;
  max-width: 800px;
  border: 1px solid #808080;
  padding: 1.8rem 0;
  margin: 2.5rem auto;
  transition: 0.2s;
}

#reservation a.bnr:hover{
  border: 1px solid #E6E6E6;
  background-color:#E6E6E6;
  opacity: 1;
  transition: 0s;
}


@media print, screen and (max-width: 767px) {
#reservation{
  padding: 7rem 6%;
  margin-top: 3rem;
}
#reservation h2{
  border-color: #999;
}
#reservation p.font20,
#reservation p.font14{
  font-size: 1.1rem;
}
#reservation p.font14 a{
  font-size: 1em;
  color: #0099FF;
}
}

/*----------------footer----------------*/
footer{
  background: #4d4d4d;
  padding: 6.75rem 0 7.45rem;
  text-align: center;
  color: #fff;
  position: relative;
}
footer a.toTop{
  position: absolute;
  top: 30px;
  right: 2%;
}

footer ul.nav{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
footer ul.nav li{
color: white;
font-size: 14px;
line-height: 2.142em;
}
footer ul.nav li a{
  color: white;
  font-size: 14px;
  line-height: 2.142em;
  letter-spacing: 0.12em;
}
footer ul.nav li+ li {
  border-left: 1px solid #FFFFFF;
  padding-left: 0.8rem;
}
/* footer ul.nav li:nth-of-type(9),
footer ul.nav li:nth-of-type(13){
  display: none;
}
footer ul.nav li:nth-of-type(10){
  margin-top: 1.8rem;
  border-left: none;
  padding-left: 0;
} */

@media all and (min-width: 751px) {
  .footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
  }
  .footer-nav > li {
    color: white;
    font-size: 14px;
    line-height: 2.142em;
  }
  .footer-nav > li:after {
    content: "｜";
    padding: 0 5px;
  }
  .footer-nav > li:last-child:after {
    content: none;
  }
  .footer-nav > li > a {
    color: white;
    font-size: 14px;
    line-height: 2.142em;
    letter-spacing: 0.12em;
  }
}
@media all and (max-width: 750px) {
  .footer-nav {
    margin: 25px auto;
  }

  .footer-nav > li {
    color: white;
    font-size: 14px;
    line-height: 2.142em;
  }
  .footer-nav > li > a {
    color: white;
    font-size: 14px;
    line-height: 2.5em;
  }
  .footer-nav > li.has-line-top:before {
    content: "";
    display: block;
    background: white;
    width: 24px;
    height: 1px;
    margin: 15px 0;
  }
  .footer-nav > li.has-line-bottom:after {
    content: "";
    display: block;
    background: white;
    width: 24px;
    height: 1px;
    margin: 15px 0;
  }
}
.footer-sns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 60px auto 30px;
}
.footer-sns > li {
  width: 34px;
  margin: 0 5px;
}
footer p{
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.625rem;
  letter-spacing: 0;
  font-family: "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro";
}
footer p:first-of-type{
    margin: 5rem auto 1.5rem;
}

footer ul.sns{
  margin-top: 88px;
}

footer ul.sns li{
  display: inline-block;
  width: 38px;
  margin: 0 12px;
}
}


/*footer-3*/
footer#ft03 ul{
  width: 710px;
}
footer#ft03 ul li:nth-of-type(8){
  display: none;
}




@media print, screen and (max-width: 767px) {
footer{
  text-align: left;
  padding-top: 26.5%;
  padding-bottom: 14%;
}
footer a.toTop{
  width: 100%;
  text-align: center;
  right: 0;
  padding: 20px 0;
  top:10px;
/*  left: 50%;
  transform: translateX(-50%);
*/}
  footer a.toTop img{
     width: 6.25%;
  }

footer #ft-container{
  width: 80%;
  margin: 0 auto;
}
footer ul.nav,
footer#ft03 ul{
  width: 100%;
}
footer ul.nav li{
  display: block;
  margin-bottom: 7%;
  font-size: 1.1rem;
}
footer ul.nav li+ li{
  border: none;
  padding-left: 0;
}
footer ul.nav li:nth-of-type(7){
  margin-bottom: 7.8%
}
footer ul.nav li:nth-of-type(9),
footer ul.nav li:nth-of-type(13){
  display: block;
  width: 2rem;
  height: 1px;
  border-top: 1px white solid;
  text-indent: -999px;
  overflow: hidden;
  margin-bottom: 7.8%;
}
footer ul.nav li:nth-of-type(10){
  margin-top: 0;
}


footer ul.sns li{
  width: 30px;
}
footer ul.sns{
  margin-top: 4rem;
}
footer ul.sns li:first-of-type{
  margin-left: 0;
}

footer p{
  font-size: 1rem;
}
footer p:first-of-type {
    margin: 4rem auto 1.5rem;
}
}




/*----------------Slide Show----------------*/
.cb-slideshow,
.cb-slideshow:after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.cb-slideshow:after {
    content: '';
    /*background: transparent url(../images/pattern.png) repeat top left;*/
}

.cb-slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 30s linear infinite 0s;
}


.cb-slideshow li.bg1 span {
    background-image: url(../images/top/slide1.jpg)
}
.cb-slideshow li.bg2 span {
    background-image: url(../images/top/slide2.jpg);
}
.cb-slideshow li.bg3 span {
    background-image: url(../images/top/slide3.jpg);
}
.cb-slideshow li.bg4 span {
    background-image: url(../images/top/slide4.jpg)
}
.cb-slideshow li.bg5 span {
    background-image: url(../images/top/slide5.jpg);
}


.cb-slideshow li:nth-child(2) span {
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) span {
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) span {
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) span {
    animation-delay: 24s;
}

.cb-slideshow li:nth-child(2) div {
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) div {
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) div {
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) div {
    animation-delay: 24s;
}

/*シャッフル後*/
.cb-slideshow li.suffleTop span{
  opacity: 1;
}


/* Animation for the slideshow images */
/*@-webkit-keyframes imageAnimation {
  0% {
      opacity: 0;
      animation-timing-function: ease-in;
  }
  8% {
      opacity: 1;
      transform: scale(1.01);
  }
  33% {
      opacity: 1;
      transform: scale(1.08);
  }
  41% {
      opacity: 0;
      transform: scale(1.11);
  }
  48% {
      opacity: 0;
      transform: scale(1.18);
  }
  58% {
      opacity: 0;
  }
  100% { opacity: 0;}
}
@-moz-keyframes imageAnimation {
  0% {
      opacity: 0;
      animation-timing-function: ease-in;
  }
  8% {
      opacity: 1;
      transform: scale(1.01);
  }
  33% {
      opacity: 1;
      transform: scale(1.08);
  }
  41% {
      opacity: 0;
      transform: scale(1.11);
  }
  48% {
      opacity: 0;
      transform: scale(1.18);
  }
  58% {
      opacity: 0;
  }
  100% { opacity: 0;}
}
@-o-keyframes imageAnimation {
  0% {
      opacity: 0;
      animation-timing-function: ease-in;
  }
  8% {
      opacity: 1;
      transform: scale(1.01);
  }
  33% {
      opacity: 1;
      transform: scale(1.08);
  }
  41% {
      opacity: 0;
      transform: scale(1.11);
  }
  48% {
      opacity: 0;
      transform: scale(1.18);
  }
  58% {
      opacity: 0;
  }
  100% { opacity: 0;}
}
@-ms-keyframes imageAnimation {
  0% {
      opacity: 0;
      animation-timing-function: ease-in;
  }
  8% {
      opacity: 1;
      transform: scale(1.01);
  }
  33% {
      opacity: 1;
      transform: scale(1.08);
  }
  41% {
      opacity: 0;
      transform: scale(1.11);
  }
  48% {
      opacity: 0;
      transform: scale(1.18);
  }
  58% {
      opacity: 0;
  }
  100% { opacity: 0;}
}*/
@keyframes imageAnimation {
  0% {
      opacity: 0;
      animation-timing-function: ease-in;
  }
  4% {
      opacity: 1;
      transform: scale(1.01);
  }
  20% {
      opacity: 1;
      transform: scale(1.08);
  }
  24% {
      opacity: 0;
      transform: scale(1.11);
  }
  29% {
      opacity: 0;
      transform: scale(1.18);
  }
  35% {
      opacity: 0;
  }
  100% { opacity: 0;}
}
/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
  opacity: 1;
}
@media screen and (max-width: 1140px) {
  .cb-slideshow li div h3 { font-size: 100px }
}
@media screen and (max-width: 600px) {
  .cb-slideshow li div h3 { font-size: 50px }
}


p.font18{
  font-size: 1.125rem;
}
p.font20{
  font-size:1.25rem;
  line-height: 2.44;
}
p.font14{font-size: 0.875rem;}
p.font12{font-size: 0.75rem;}

@media screen and (max-width: 750px) {
.mainNav li {
  list-style-type: none;
  line-height: 2;
  text-align: center;
}

.navItem {
  display: block;
  text-decoration: none;
  color: #000;
  padding: 0.2em 0;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
}
.mainNav li:nth-child(8) .navItem,
.mainNav li:nth-child(9) .navItem {
  font-size: 14px;
}
.mainNav li:nth-child(10) {
  margin-top: 15px;
}
.mainNav li:nth-child(10):hover {
  opacity: 0.5;
}
.navItem:hover {
  text-decoration: none;
}
.mainNav li:first-of-type .navItem {

}

.mainNav li:first-of-type::after,
.mainNav li:nth-of-type(7)::after {
  content: "";
  width: 117px;
  border-bottom: 1px solid #666;
  margin: 0.9em 0;
  display: inline-block;
}

span.navItem {
  color: #b3b3b3;
}


}