@charset "UTF-8";
/* CSS Document */
/* Fonts
------------------------------------------------------------*/
@font-face {
  font-family: "Gotham";
  src: url("font/GOTHAM-MEDIUM.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("font/GOTHAM-MEDIUMITALIC.TTF") format("truetype");
  font-weight: normal;
  font-style: italic;
}
html {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 13px;
  background: #FFF;
}

body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
  position: relative;
  line-height: 2;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  color: #111111;
}
body a {
  color: #666666;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
body a:hover {
  text-decoration: underline;
}
body a img {
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
body a img:hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}
body img {
  max-width: 100%;
  height: auto;
}
body .wrap {
  width: 1060px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
body ::selection {
  background: rgba(33, 150, 243, 0.2);
  /* Safari */
}
body ::-moz-selection {
  background: rgba(33, 150, 243, 0.2);
  /* Firefox */
}

/* header
------------------------------------------------------------*/
header {
  display: -webkit-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: space-between;
  /* Android 2~4 */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 25px 0 40px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 85px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #FFF;
}
header.top {
  background-color: transparent;
}
header.top #logo {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
}
header.top nav ul li a {
  color: #FFF;
}
header.top nav ul li a:after, header.top nav ul li a:before {
  background-color: #FFF;
}
header.top .right p a {
  border-color: #FFF;
  color: #FFF;
}
header.top .right p a:hover {
  background-color: #111111;
  color: #FFF;
  border-color: #111111;
  text-decoration: none;
}
header.top .right p.fb a {
  background-image: url(../img/icon-fb.png);
}
header.top .right p.in a {
  background-image: url(../img/icon-in.png);
}

header #logo {
  line-height: 0;
  -moz-flex-basis: 200px;
  -webkit-flex-basis: 200px;
  flex-basis: 200px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

header nav ul{
    margin-left:60px;
  }

header nav ul li {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  font-family: 'Gotham', sans-serif;
  margin: 0 23px;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-size: 0.9230769231rem;
}
header nav ul li a {
  display: block;
  color: #222222;
  line-height: 1;
  padding: 5px 0;
  position: relative;
}
header nav ul li a:hover {
  text-decoration: none;
}
header nav ul li a:hover:before {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
header nav ul li a:hover:after {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
}
header nav ul li a:after, header nav ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  height: 1px;
  background-color: #D3D3D3;
  bottom: 0;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header nav ul li a:before {
  height: 3px;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
}
header nav ul li.current a:after {
  background-color: #4E4E4E;
  height: 3px;
}
header .right {
  -moz-flex-basis: 265px;
  -webkit-flex-basis: 265px;
  flex-basis: 265px;
  text-align: right;
  letter-spacing: -.4em;
}
header .right p {
  letter-spacing: normal;
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
header .right p a {
  display: block;
  border: 1px solid #999999;
  text-align: center;
  line-height: 30px;
  padding-top: 2px;
  color: #111111;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-family: 'Gotham', sans-serif;
}
header .right p a:hover {
  background-color: #111111;
  color: #FFF;
  border-color: #111111;
  text-decoration: none;
}
header .right p.fb a {
  font-size: 0;
  width: 30px;
  background: url(../img/icon-fb-black.png) no-repeat center center;
}
header .right p.in a {
  font-size: 0;
  width: 30px;
  background: url(../img/icon-in-black.png) no-repeat center center;
}

header .right p.fb a:hover {
  background-color: #111111;
  background-image: url(../img/icon-fb.png);
}

header .right p.in a:hover {
  background-color: #111111;
  background-image: url(../img/icon-in.png);
}

header .right p.btn {
  font-size: 12px;
  font-size: 0.9230769231rem;
  letter-spacing: 0.12em;
}
header .right p.btn a {
  width: 130px;
}
header .right #menu {
  display: none;
}
header .sp-nav {
  display: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* mainimg
------------------------------------------------------------*/
#mainimg {
  width: 100%;
  background: no-repeat center center;
  background-size: cover;
  position: relative;
}
#mainimg.top {
  height: 880px;
}
#mainimg.top p {
  position: absolute;
  z-index: 6;
}
#mainimg.top p.catch {
  left: 36px;
  top: 32px;
  z-index: 10;
}
#mainimg.top p.logo {
  top: 50%;
  left: 50%;
  margin: -162px 0 0 -116px;
  line-height: 0;
}
#mainimg.top p.arrow {
  left: 50%;
  margin-left: -30px;
  bottom: 60px;
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
#mainimg.top .slides {
  margin-bottom: 0;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#mainimg.top .slides .slick-list {
  width: 100%;
  height: 100%;
}
#mainimg.top .slides li {
  background: no-repeat center center;
  background-size: cover;
  height: 880px;
}
#mainimg.top .slides li:before {
  content: "";
  display: black;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-slide.png);
  z-index: 1;
}
#mainimg.top .slides li.li1 {
  background-image: url(../img/01.jpg);
}
#mainimg.top .slides li.li2 {
  background-image: url(../img/02.jpg);
}
#mainimg.top .slides li.li3 {
  background-image: url(../img/03.jpg);
}
#mainimg.top .slides li.li4 {
  background-image: url(../img/04.jpg);
}
#mainimg.next {
  margin-top: 85px;
  height: 280px;
}
#mainimg.next h1 {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #FFF;
  font-weight: normal;
  letter-spacing: 0.1em;
  font-size: 28px;
  font-size: 2.1538461538rem;
  font-family: 'Gotham', sans-serif;
}
#mainimg.next.products {
  background-image: url(../img/bg-products.jpg);
}
#mainimg.next.products:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
#mainimg.next.news {
  background-image: url(../img/bg-news.jpg);
}
#mainimg.next.island {
  background-image: url(../img/bg-island.jpg);
}

/* container
------------------------------------------------------------*/
#container {
  z-index: 2;
  position: relative;
  background-color: #FFF;
}
#container section {
  padding: 70px 0 50px;
}
#container section:last-child {
  padding-bottom: 120px;
}
#container .title1 {
  background: url(../img/icon-logo.png) no-repeat center top;
  padding-top: 100px;
  text-align: center;
  line-height: 0;
  margin-bottom: 70px;
}
#container .title1 .sp {
  display: none;
}
#container .btn {
  text-align: center;
}
#container .btn a {
  display: -moz-inline-box;
  display: inline-block;
  position: relative;
  width: 350px;
  text-align: center;
  border: 1px solid #7F7F7F;
  font-size: 15px;
  font-size: 1.1538461538rem;
  color: #111111;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#container .btn a:hover {
  color: #FFF;
  background-color: #111111;
  text-decoration: none;
}
#container .btn a:hover:after {
  right: 10px;
  background-image: url(../img/arrow-link-white.png);
}
#container .btn a:after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -2px;
  background: url(../img/arrow-link.png);
  width: 12px;
  height: 5px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#container .btns {
  padding-top: 80px;
  text-align: center;
  letter-spacing: -.4em;
}
#container .btns .btn {
  letter-spacing: normal;
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
}
#container #about > .title {
  text-align: center;
  font-family: 'Gotham', sans-serif;
  font-size: 18px;
  font-size: 1.3846153846rem;
  font-weight: bold;
  padding-bottom: 60px;
}
#container #about .abouts {
  width: 1060px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}
#container #about .abouts li {
  display: -webkit-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: space-between;
  /* Android 2~4 */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 25px;
}
#container #about .abouts li:last-child {
  padding-bottom: 0;
}
#container #about .abouts li .text {
  -moz-flex-basis: 100px;
  -webkit-flex-basis: 100px;
  flex-basis: 100px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  margin-right: 60px;
}
#container #about .abouts li .img {
  line-height: 0;
  -moz-flex-basis: 500px;
  -webkit-flex-basis: 500px;
  flex-basis: 500px;
}

/* footer
------------------------------------------------------------*/
footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid #EEEEEE;
}
footer #pagetop {
  line-height: 0;
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: none;
}
footer .inside {
  width: 1160px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: space-between;
  /* Android 2~4 */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  height: 80px;
  letter-spacing: 0.05em;
}
footer .inside ul li {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  font-size: 11px;
  font-size: 0.8461538462rem;
  margin-right: 20px;
}
footer .inside ul li a {
  color: #111111;
}
footer .inside address {
  font-family: 'Gotham', sans-serif;
  font-size: 10px;
  font-size: 0.7692307692rem;
}

/* container top
------------------------------------------------------------*/
#container.top {
  overflow: hidden;
}
#container.top #about {
  padding-top: 155px;
  margin-top: -85px;
}

/* container next
------------------------------------------------------------*/
#container.next #product {
  width: 1060px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#container.next #product .text1 {
  text-align: center;
}
#container.next #product ul {
  padding-top: 80px;
  display: -webkit-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: space-between;
  /* Android 2~4 */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#container.next #product ul li {
  text-align: center;
  -moz-flex-basis: 500px;
  -webkit-flex-basis: 500px;
  flex-basis: 500px;
}
#container.next #product ul li .img {
  line-height: 0;
}
#container.next #product ul li .title {
  font-size: 18px;
  font-size: 1.3846153846rem;
  padding: 20px 0;
}
#container.next #product ul li .text {
  text-align: left;
}
#container.next #shop dl {
  text-align: center;
}
#container.next #shop dl dt {
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 5px;
}
#container.next #shop dl dd {
  padding-bottom: 30px;
}
#container.next #shop dl dd:last-child {
  padding-bottom: 0;
}
#container.next #shop .text {
  text-align: center;
  padding-top: 50px;
}
#container.next #news .news-area {
  width: 1060px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: space-between;
  /* Android 2~4 */
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 40px;
}
#container.next #news .news-area ul {
  -moz-flex-basis: 500px;
  -webkit-flex-basis: 500px;
  flex-basis: 500px;
}
#container.next #news .news-area ul li {
  border-bottom: 1px dotted #111111;
  padding: 35px 0;
}
#container.next #news .news-area ul li:first-child {
  padding-top: 0;
}
#container.next #news .news-area ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
#container.next #news .news-area ul li .date {
  color: #535353;
  font-size: 11px;
  font-size: 0.8461538462rem;
}
#container.next #news .news-area ul li .title {
  font-size: 16px;
  font-size: 1.2307692308rem;
  line-height: 1.3;
  padding-bottom: 12px;
}
#container.next #news .news-area ul li .title a {
  color: #111111;
}
#container.next #news .news-area ul li .text {
  line-height: 1.6;
  font-size: 12px;
  font-size: 0.9230769231rem;
}
#container.next #news .news-area .fb {
  -moz-flex-basis: 500px;
  -webkit-flex-basis: 500px;
  flex-basis: 500px;
}
#container.next #picts .text {
  text-align: center;
  padding-bottom: 75px;
}
#container.next #picts .photo-box {
  position: relative;
}
#container.next #picts .photo-box .slides {
  margin-bottom: 0;
  width: 960px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#container.next #picts .photo-box .slides-nav {
  position: relative;
  z-index: 100;
  top: -100px;
  left: 0;
  width: 100%;
  margin-bottom: 0;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#container.next #picts .photo-box .slides-nav li {
  margin-left: 2px;
  margin-right: 2px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#container.next #picts .photo-box .slides-nav li.slick-center, #container.next #picts .photo-box .slides-nav li:hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=50);
  opacity: 0.5;
}
#container.next #picts .photo-box .slides-nav.hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}
#container.next #access-map {
  padding-bottom: 0;
  padding-top: 0;
  margin-top: 70px;
  position: relative;
}
#container.next #access-map #map {
  position: relative;
  height: 600px;
}
#container.next #access-map .btns {
  padding-top: 0;
  position: absolute;
  right: 16px;
  top: 18px;
  z-index: 2;
}
#container.next #access-map .btns p {
  line-height: 0;
  margin-bottom: 8px;
  cursor: pointer;
  position: relative;
}
#container.next #access-map .btns p:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: 30px auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
}
#container.next #access-map .btns p.plus:after {
  background-image: url(../img/btn-plus-white.png);
}
#container.next #access-map .btns p.minus:after {
  background-image: url(../img/btn-minus-white.png);
}
#container.next #access-map .btns p:hover:after {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}

/*retina*/
@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  header.top .right p.fb a {
    background-image: url(../img/icon-fb@2x.png);
  }
  header .right p.fb a {
    background-image: url(../img/icon-fb-black@2x.png);
    background-size: 7px auto;
  }
  header .right p.fb a:hover {
    background-image: url(../img/icon-fb@2x.png);
  }
	
  header.top .right p.in a {
    background-image: url(../img/icon-in@2x.png);
  }
  header .right p.in a {
    background-image: url(../img/icon-in-black@2x.png);
    background-size: 14px auto;
  }
  header .right p.in a:hover {
    background-image: url(../img/icon-in@2x.png);
  }
	

  #container .title1 {
    background-image: url(../img/icon-logo@2x.png);
    background-size: 44px auto;
  }
  #container .btn a:hover:after {
    background-image: url(../img/arrow-link-white@2x.png);
  }
  #container .btn a:after {
    background-image: url(../img/arrow-link@2x.png);
    background-size: 12px auto;
  }
}
/*tablet*/
@media screen and (min-width: 701px) and (max-width: 1060px) {
  /* header
  ------------------------------------------------------------*/
  header {
    padding: 0 10px 0 10px;
    height: 70px;
  }
  header #logo {
    line-height: 0;
    -moz-flex-basis: 150px;
    -webkit-flex-basis: 150px;
    flex-basis: 150px;
  }
	header nav ul{
    margin-left:60px;
  }
  header nav ul li {
    margin: 0 5px;
  }
  header nav ul li a {
    font-size: 10px;
    font-size: 0.8230769231rem;
  }
  header .right {
    -moz-flex-basis: 190px;
    -webkit-flex-basis: 190px;
    flex-basis: 190px;
  }
  header .right p:first-child {
    margin-left: 0;
  }
  header .right p.btn a {
    width: 100px;
  }
}
@media screen and (min-width: 701px) and (max-width: 1060px) and (min-width: 701px) and (max-width: 800px) {
  header #logo {
    -moz-flex-basis: 130px;
    -webkit-flex-basis: 130px;
    flex-basis: 130px;
  }
  header nav ul{
    margin-left:60px;
  }
	header nav ul li {
    margin: 0 5px;
		font-size: 10px;
  font-size: 0.8230769231rem;
  }
  header .right {
    -moz-flex-basis: 180px;
    -webkit-flex-basis: 180px;
    flex-basis: 180px;
  }
  header .right p.btn a {
    width: 80px;
  }
}
@media screen and (min-width: 701px) and (max-width: 1060px) {
  /* mainimg
  ------------------------------------------------------------*/
  #mainimg.next {
    margin-top: 70px;
    height: 240px;
  }

  /* container
  ------------------------------------------------------------*/
  #container section {
    padding: 70px 15px 50px;
  }
  #container .btn a {
    width: 280px;
  }
  #container .btns .btn {
    margin: 0 15px;
  }
  #container #about .abouts li .text {
    margin-right: 30px;
  }
  #container #about .abouts li .img {
    line-height: 0;
    -moz-flex-basis: 40%;
    -webkit-flex-basis: 40%;
    flex-basis: 40%;
  }

  /* footer
  ------------------------------------------------------------*/
  footer .inside {
    padding-right: 15px;
    padding-left: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* container top
  ------------------------------------------------------------*/
  #container.top #about {
    padding-top: 140px;
    margin-top: -70px;
  }

  /* container next
  ------------------------------------------------------------*/
  #container.next #product {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  #container.next #product ul li {
    -moz-flex-basis: 49%;
    -webkit-flex-basis: 49%;
    flex-basis: 49%;
  }
  #container.next #news .news-area ul {
    -moz-flex-basis: 200px;
    -webkit-flex-basis: 200px;
    flex-basis: 200px;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    margin-right: 30px;
  }
  #container.next #news .news-area .fb {
    -moz-flex-basis: 400px;
    -webkit-flex-basis: 400px;
    flex-basis: 400px;
  }
  #container.next #picts {
    padding-left: 0;
    padding-right: 0;
  }
  #container.next #picts .photo-box .slides {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 15px;
    padding-left: 15px;
  }
  #container.next #access-map {
    padding-left: 0;
    padding-right: 0;
  }
  #container.next #access-map #map {
    height: 500px;
  }
}
/*sp*/
@media screen and (max-width: 700px) {
  /* header
  ------------------------------------------------------------*/
  header {
    padding: 0 15px;
    height: 55px;
  }
  header.top .right #menu {
    border-color: #FFF;
    color: #FFF;
  }
  header #logo {
    -moz-flex-basis: 100px;
    -webkit-flex-basis: 100px;
    flex-basis: 100px;
  }
  header nav {
    display: none;
  }
  header .right p {
    display: none;
  }
  header .right #menu {
    cursor: pointer;
    display: -moz-inline-box;
    display: inline-block;
    color: #111111;
    font-family: 'Gotham', sans-serif;
    border: 1px solid #111111;
    width: 60px;
    line-height: 20px;
    padding-top: 3px;
    text-align: center;
    letter-spacing: 0.12em;
    margin-top: 1px;
  }
  header .sp-nav {
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    color: #FFF;
    left: 0;
    top: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    visibility: hidden;
  }
  header .sp-nav.active {
    visibility: visible;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=100);
    opacity: 1;
  }
  header .sp-nav a {
    color: #FFF;
    display: block;
  }
  header .sp-nav ul {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 15px;
    font-size: 1.1538461538rem;
    letter-spacing: 0.08em;
  }
  header .sp-nav ul li {
    padding-bottom: 20px;
  }
  header .sp-nav ul li:last-child {
    padding-bottom: 0;
  }
  header .sp-nav .close {
    cursor: pointer;
    position: absolute;
    line-height: 0;
    padding: 15px;
    right: 0;
    top: 0;
  }

  /* mainimg
  ------------------------------------------------------------*/
  #mainimg.top p.catch {
    left: 15px;
    top: 15px;
    width: 60px;
  }
  #mainimg.top p.logo {
    width: 120px;
    margin: -83px 0 0 -60px;
  }
  #mainimg.top p.arrow {
    width: 40px;
    margin-left: -20px;
    bottom: 30px;
    line-height: 0;
  }
  #mainimg.top .slides {
    margin-bottom: 0;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  #mainimg.top .slides .slick-list {
    width: 100%;
    height: 100%;
  }
  #mainimg.top .slides li {
    background: no-repeat center center;
    background-size: cover;
    height: 880px;
  }
  #mainimg.top .slides li.li1 {
    background-image: url(../img/01.jpg);
  }
  #mainimg.top .slides li.li2 {
    background-image: url(../img/02.jpg);
  }
  #mainimg.top .slides li.li3 {
    background-image: url(../img/03.jpg);
  }
  #mainimg.top .slides li.li4 {
    background-image: url(../img/04.jpg);
  }
  #mainimg.next {
    margin-top: 55px;
    height: 180px;
  }
  #mainimg.next h1 {
    padding-top: 13px;
    font-size: 20px;
    font-size: 1.5384615385rem;
  }

  /* footer
  ------------------------------------------------------------*/
  footer {
    position: relative;
    z-index: 3;
    border-top: 1px solid #EEEEEE;
  }
  footer #pagetop {
    position: absolute !important;
    right: 20px;
    bottom: auto !important;
    top: -57px;
    width: 35px;
  }
  footer .inside {
    display: -webkit-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    /* Android 2~4 */
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    height: auto;
    padding: 35px 0;
  }
  footer .inside ul li {
    font-size: 10px;
    font-size: 0.7692307692rem;
    margin-right: 10px;
    margin-left: 10px;
  }
  footer .inside ul li a {
    color: #111111;
  }
  footer .inside address {
    -moz-flex-basis: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    text-align: center;
    padding-top: 20px;
  }

  /* container
  ------------------------------------------------------------*/
  #container section {
    padding: 40px 15px 80px;
  }
  #container .title1 {
    background-size: 35px auto;
    padding-top: 60px;
    margin-bottom: 40px;
  }
  #container .title1 .sp {
    display: inline;
  }
  #container .title1 .pc {
    display: none;
  }
  #container .btn a {
    width: 270px;
    font-size: 14px;
    font-size: 1.0769230769rem;
  }
  #container .btns {
    padding-top: 40px;
  }
  #container .btns .btn {
    display: block;
    vertical-align: middle;
    margin: 0 auto 20px;
  }
  #container .btns .btn:last-child {
    margin-bottom: 0;
  }
  #container #about > .title {
    font-size: 14px;
    font-size: 1.0769230769rem;
    font-weight: bold;
    padding-bottom: 30px;
  }
  #container #about .abouts {
    width: 500px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0px;
  }
  #container #about .abouts li {
    display: -webkit-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: space-between;
    /* Android 2~4 */
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 40px;
  }
  #container #about .abouts li:last-child {
    padding-bottom: 0;
  }
  #container #about .abouts li .text {
    -moz-flex-basis: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-order: 2;
    order: 2;
    margin-right: 0px;
    font-size: 11px;
    font-size: 0.8461538462rem;
  }
  #container #about .abouts li .img {
    -moz-flex-basis: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    -webkit-order: 1;
    order: 1;
    margin-bottom: 30px;
  }

  /* container top
  ------------------------------------------------------------*/
  #container.top #about {
    padding-top: 95px;
    margin-top: -55px;
  }

  /* container next
  ------------------------------------------------------------*/
  #container.next #product {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  #container.next #product .text1 {
    font-size: 11px;
    font-size: 0.8461538462rem;
  }
  #container.next #product ul {
    padding-top: 40px;
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 500px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #container.next #product ul li {
    text-align: center;
    -moz-flex-basis: 500px;
    -webkit-flex-basis: 500px;
    flex-basis: 500px;
    margin-bottom: 60px;
  }
  #container.next #product ul li:last-child {
    margin-bottom: 0;
  }
  #container.next #product ul li .img {
    width: 350px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #container.next #product ul li .title {
    font-size: 15px;
    font-size: 1.1538461538rem;
    padding: 15px 0;
  }
  #container.next #product ul li .text {
    font-size: 11px;
    font-size: 0.8461538462rem;
  }
  #container.next #shop dl {
    font-size: 11px;
    font-size: 0.8461538462rem;
  }
  #container.next #shop dl dd {
    padding-bottom: 25px;
  }
  #container.next #shop dl dd:last-child {
    padding-bottom: 0;
  }
  #container.next #shop .text {
    font-size: 11px;
    font-size: 0.8461538462rem;
  }
  #container.next #news .news-area {
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 0;
    width: 500px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #container.next #news .news-area ul {
    margin-bottom: 70px;
    -moz-flex-basis: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  #container.next #news .news-area ul li {
    padding: 30px 0;
  }
  #container.next #news .news-area ul li:first-child {
    padding-top: 0;
  }
  #container.next #news .news-area ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  #container.next #news .news-area ul li .date {
    font-size: 10px;
    font-size: 0.7692307692rem;
  }
  #container.next #news .news-area ul li .title {
    font-size: 14px;
    font-size: 1.0769230769rem;
  }
  #container.next #news .news-area ul li .text {
    font-size: 11px;
    font-size: 0.8461538462rem;
  }
  #container.next #news .news-area .fb {
    -moz-flex-basis: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  #container.next #picts {
    padding-left: 0;
    padding-right: 0;
  }
  #container.next #picts .text {
    font-size: 11px;
    font-size: 0.8461538462rem;
    padding: 0 15px 40px;
  }
  #container.next #picts .photo-box .slides {
    margin-bottom: 0;
    width: 500px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  #container.next #picts .photo-box .slides .slick-next {
    right: 5px;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
  }
  #container.next #picts .photo-box .slides .slick-prev {
    left: 5px;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
  }
  #container.next #picts .photo-box .slides-nav {
    top: 0px;
    margin-top: 20px;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=100);
    opacity: 1;
  }
  #container.next #picts .photo-box .slides-nav li {
    width: 35px;
  }
  #container.next #access-map {
    margin-top: 0px;
    padding-right: 0;
    padding-left: 0;
  }
  #container.next #access-map #map {
    height: 370px;
  }
}
