@charset "UTF-8";


/***********************************
transition
************************************/
header,
h1,
h2,
p,
a,
strong,
span,
article {
  transition: all 1s ease-out;
}


/***********************************
html&body
************************************/
html {
  overflow-y: scroll;
  font-size: calc(100vw / 37.5);
}

html,
body {
  height: auto;
  line-height: 1.5;
  /*文字詰め*/
  font-feature-settings: "palt";
  /*スマホの文字サイズ自動変更無効*/
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (min-width: 768px) {

  html {
    font-size: 62.5%;
  }

  body {
    font-size: 1.6rem;
  }

}

@media screen and (max-width:767px) {

  body {
    font-size: 1.4rem;
  }

}


/***********************************
Link Setting
************************************/
a:link,
a:visited,
a:active {}

/*ページトップコントローラー*/
#topcontrol {
  display: block;
  background-image: url("../images/scrollTopControl_arrow.svg");
  background-position: center center;
  background-size: 40% auto;
  background-repeat: no-repeat;
  background-color: #e84091;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  height: 60px;
  width: 60px;
  position: relative;
  transition: all 1s ease-out;
}

@media print,
screen and (min-width:768px) {


  footer a:hover {
    opacity: .5;
  }

  /*ページトップコントローラー*/
  #topcontrol:hover {
    opacity: .5 !important;
  }

}

@media screen and (max-width:767px) {

  footer a:hover {
    opacity: 1;
  }


  /*ページトップコントローラー*/
  #topcontrol {
    height: 45px;
    width: 45px;
  }

}


/***********************************
main container
************************************/


.in-box {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 95%;
}

@media print,
screen and (min-width:768px) {

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

}

@media screen and (max-width:767px) {

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

}


/***********************************
header
************************************/
header {
  position: relative;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

header .in-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

header h1,
header h2 {
  display: block;
}

header h1 {
  /* float: left; */
  width: 70px;
}

header h2 {
  /* float: right; */
  width: 250px;
}

@media print,
screen and (min-width:768px) {

  header {
    padding: 1.5% 0;
  }

}


@media screen and (max-width:767px) {

  header {
    height: 50px;
  }

  /* header h1,
  header h2 {
    margin-top: 15px;
  } */

  header h1 {
    width: 46px;
  }

  header h2 {
    width: 140px;
  }

}


/***********************************
main
************************************/
main {
  display: block;
  margin-bottom: 5%;
}

article {}

@media screen and (max-width:768px) {

  main {
    margin-bottom: 15%;
  }

}


/***********************************
footer
************************************/
footer {
  display: block;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 60;
}

footer ul {
  display: flex;
  width: 100%;
}

footer ul li {
  display: block;
  width: 33.33%;
  text-align: center;
}

footer ul li a {
  display: block;
  text-decoration: none;
  background-color: #00574b;
  color: #fff;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1;
  border-right: 1px solid #fff;
  padding: 20px 0;
  white-space: nowrap;
}

footer ul li:last-child a {
  border-right: none;
}

footer ul li a span {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
  padding-left: 35px;
}

footer ul li.store a span {
  background-image: url("../images/icon_store.png");
}

/* footer ul li.catalog a span {
  background-image: url("../images/icon_catalog.png");
} */

footer ul li.reservation a span {
  background-image: url("../images/icon_reservation.png");
}

footer ul li.purchase a span {
  background-image: url("../images/icon_purchase.png");
}

@media screen and (max-width:767px) {

  footer ul li a {
    font-size: 1rem;
    line-height: 1;
    border-right: 1px solid #fff;
    padding: 10px 0;
  }

}

@media screen and (max-width: 767px) {

  footer ul li a {
    line-height: 1;
  }

  footer ul li a span {
    padding-left: 17px;
  }

}



#topcontrol {
  bottom: 8% !important;
  z-index: 1000;
}