@charset "UTF-8";
/*

normalize.css + common.css + style.css

ページごとの記述はstyle.css
共通項目はcommon.css

bodyにpageのidを付与
ページidごとに記述していく

汎用クラスは接頭語 m-
ページ全体を横割りに跨ぐ区切り sct-
sctの中でのグループ分け grp-

クラス名に汎用語を使う場合は、ある程度の詳細度を持つこと

予約クラス一覧
container
sp pc tab sp-tab pc-tab


*/
.container {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 1019px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  .container img {
    max-width: 100%;
  }
}

.wrap {
  position: relative;
}

#header {
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  z-index: 100;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  height: 60px;
  background: linear-gradient(to right, #8cd2ff, #009cff);
}
#header .container {
  height: 60px;
}
#header .logo {
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  position: absolute;
  top: 20px;
  left: 0;
  width: 160px;
  opacity: 0;
}
#header .logo img {
  width: 100%;
}
@media screen and (max-width: 1019px) {
  #header .logo {
    left: 20px;
  }
}
@media screen and (max-width: 320px) {
  #header .logo {
    width: 130px;
    top: 20px;
  }
}
#header .navi {
  position: absolute;
  right: 120px;
  top: 15px;
}
#header .navi ul {
  text-align: left;
}
#header .navi ul li {
  font-family: 'Quicksand', sans-serif;
  display: inline-block;
  margin-right: 20px;
}
#header .navi ul li a {
  color: #FFF;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #header .navi {
    display: none;
  }
}
#header .cart {
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 20px;
  background-color: #FFF;
  border-radius: 20px;
}
#header .cart i {
  margin-right: 8px;
}
#header .cart a {
  width: 100%;
  height: 100%;
  display: block;
  color: #009cff;
  text-decoration: none;
  padding: 2px 20px;
}
@media screen and (max-width: 767px) {
  #header .cart {
    right: 70px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1019px) {
  #header .cart {
    right: 20px;
  }
}
#header .navibutton {
  display: none;
  position: absolute;
  width: 30px;
  height: 40px;
  top: 10px;
  right: 20px;
}
#header .navibutton:hover {
  cursor: pointer;
}
#header .navibutton span {
  display: block;
  position: absolute;
  background-color: #FFF;
  height: 2px;
  width: 100%;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#header .navibutton .l1 {
  top: 7px;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  -webkit-transform-origin: top right;
  transform-origin: top right;
}
#header .navibutton .l2 {
  top: 14px;
}
#header .navibutton .l3 {
  top: 21px;
  -moz-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}
#header .navibutton .menu {
  width: 100%;
  position: absolute;
  top: 27px;
  display: block;
  font-size: 10px;
  text-align: center;
  color: #FFF;
}
#header .navibutton.active .l1 {
  -moz-transform: translateX(-4px) translateY(-4px) rotate(-45deg);
  -ms-transform: translateX(-4px) translateY(-4px) rotate(-45deg);
  -webkit-transform: translateX(-4px) translateY(-4px) rotate(-45deg);
  transform: translateX(-4px) translateY(-4px) rotate(-45deg);
}
#header .navibutton.active .l2 {
  opacity: 0;
}
#header .navibutton.active .l3 {
  -moz-transform: translateX(-4px) translateY(3px) rotate(45deg);
  -ms-transform: translateX(-4px) translateY(3px) rotate(45deg);
  -webkit-transform: translateX(-4px) translateY(3px) rotate(45deg);
  transform: translateX(-4px) translateY(3px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  #header .navibutton {
    display: block;
  }
}

#navi {
  z-index: 99;
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to right, #8cd2ff, #009cff);
  padding-top: 100px;
}
#navi ul {
  text-align: center;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  margin-top: -60px;
}
#navi ul li {
  margin-bottom: 15px;
}
#navi ul li a {
  font-family: 'Quicksand', sans-serif;
  color: #FFF;
  font-size: 20px;
  text-decoration: none;
}
#navi ul li a span {
  display: block;
  font-size: 10px;
  margin-top: -5px;
}
#navi ul li.small a {
  font-size: 13px;
}

#index .sct-products {
  position: relative;
  background: linear-gradient(to right, #8cd2ff, #009cff);
}
#index .sct-products .container {
  height: 1199px;
  overflow: visible;
  padding: 100px 20px;
}
@media screen and (max-width: 767px) {
  #index .sct-products .container {
    width: 100%;
    height: 799px;
    padding: 60px 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1019px) {
  #index .sct-products .container {
    width: 100%;
    height: 899px;
    padding: 60px 20px;
  }
}
#index .sct-products .mod-title {
  font-size: 20px;
  color: #FFF;
}
#index .sct-products .mod-title span {
  color: #FFF;
}
#index .sct-products .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 1200px;
  background: url(../images/top_bg.svg);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #index .sct-products .bg {
    height: 800px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1019px) {
  #index .sct-products .bg {
    height: 900px;
  }
}
#index .sct-products .shop_slider {
  *zoom: 1;
  width: calc(100% + 20px);
  margin: 0 -10px 60px;
}
#index .sct-products .shop_slider:before, #index .sct-products .shop_slider:after {
  content: "";
  display: table;
}
#index .sct-products .shop_slider:after {
  clear: both;
}
#index .sct-products .shop_slider li {
  width: 33.333%;
  float: left;
  padding: 0 10px;
}
#index .sct-products .shop_slider li a {
  width: 100%;
  height: 100%;
  display: block;
}
#index .sct-products .shop_slider li a span {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 100%;
}
@media screen and (max-width: 767px) {
  #index .sct-products .shop_slider {
    width: calc(100% + 6px);
    margin: 0 -3px 60px;
  }
  #index .sct-products .shop_slider li {
    padding: 0 3px;
  }
}
#index .sct-products .shop_slider .slick-next, #index .sct-products .shop_slider .slick-prev {
  width: 60px;
  height: 60px;
  top: 50%;
  background: #00d7f0;
  border-radius: 50%;
  z-index: 50;
}
#index .sct-products .shop_slider .slick-next:before, #index .sct-products .shop_slider .slick-prev:before {
  font-family: FontAwesome;
  font-size: 34px;
}
@media screen and (max-width: 767px) {
  #index .sct-products .shop_slider .slick-next, #index .sct-products .shop_slider .slick-prev {
    width: 50px;
    height: 50px;
    opacity: .8;
  }
  #index .sct-products .shop_slider .slick-next:before, #index .sct-products .shop_slider .slick-prev:before {
    font-size: 22px;
  }
}
#index .sct-products .shop_slider .slick-prev {
  left: -94px;
}
#index .sct-products .shop_slider .slick-prev:before {
  content: "\f053";
  padding-right: 5px;
}
@media screen and (max-width: 1019px) {
  #index .sct-products .shop_slider .slick-prev {
    left: 25px;
  }
  #index .sct-products .shop_slider .slick-prev:before {
    padding: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1225px) {
  #index .sct-products .shop_slider .slick-prev {
    left: 20px;
  }
}
#index .sct-products .shop_slider .slick-next {
  right: -94px;
}
#index .sct-products .shop_slider .slick-next:before {
  content: "\f054";
  padding-left: 5px;
}
@media screen and (max-width: 1019px) {
  #index .sct-products .shop_slider .slick-next {
    right: 25px;
  }
  #index .sct-products .shop_slider .slick-next:before {
    padding: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1225px) {
  #index .sct-products .shop_slider .slick-next {
    right: 20px;
  }
}
#index .sct-products .shop_slider .slick-arrow {
  z-index: 50;
}
#index .sct-products .mod-bt {
  display: inline-block;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  #index .sct-products .mod-bt {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
}
#index .sct-news .container {
  padding: 100px 0;
  width: 750px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  #index .sct-news .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #index .sct-news .container {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1019px) {
  #index .sct-news .container {
    padding: 60px 20px;
  }
}
#index .sct-news ul {
  border-top: 1px solid #d6d6d6;
  margin-bottom: 60px;
}
#index .sct-news ul li {
  *zoom: 1;
  text-align: left;
  border-bottom: 1px solid #d6d6d6;
  padding: 30px 0;
}
#index .sct-news ul li:before, #index .sct-news ul li:after {
  content: "";
  display: table;
}
#index .sct-news ul li:after {
  clear: both;
}
#index .sct-news ul li .date {
  width: 20%;
  float: left;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  color: #AAA;
}
#index .sct-news ul li .title {
  width: 80%;
  float: left;
}
#index .sct-news ul li .title a {
  position: relative;
  width: 100%;
  display: block;
  color: #333;
  text-decoration: none;
  padding-right: 30px;
}
#index .sct-news ul li .title a:after {
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
#index .sct-news ul li .title a:hover:after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f0da";
  font-family: FontAwesome;
  font-size: 40px;
  color: #00d7f0;
}
@media screen and (max-width: 767px) {
  #index .sct-news ul li .title a:hover:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #index .sct-news ul li {
    font-size: 14px;
    padding: 10px 0;
  }
  #index .sct-news ul li .date {
    width: 100%;
    float: none;
  }
  #index .sct-news ul li .title {
    width: 100%;
    float: none;
  }
  #index .sct-news ul li .title:hover:after {
    font-size: 20px;
  }
}
#index .sct-news .box1, #index .sct-news .box2, #index .sct-news .box3 {
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
#index .sct-news .box1 {
  -moz-animation: arrowthrow 3.5s infinite ease-in-out;
  -webkit-animation: arrowthrow 3.5s infinite ease-in-out;
  animation: arrowthrow 3.5s infinite ease-in-out;
  top: 30px;
  left: -55px;
  width: 131px;
  height: 140px;
  background-image: url(../images/index_products_box1.png);
}
@media screen and (max-width: 1019px) {
  #index .sct-news .box1 {
    width: 100px;
    top: 50px;
    left: 10px;
  }
}
#index .sct-news .box2 {
  -moz-animation: arrowthrow 3s infinite ease-in-out;
  -webkit-animation: arrowthrow 3s infinite ease-in-out;
  animation: arrowthrow 3s infinite ease-in-out;
  top: 360px;
  left: -248px;
  width: 197px;
  height: 178px;
  background-image: url(../images/index_products_box2.png);
}
@media screen and (max-width: 1019px) {
  #index .sct-news .box2 {
    width: 130px;
    top: 400px;
    left: 10px;
  }
}
@media screen and (min-width: 1020px) and (max-width: 1225px) {
  #index .sct-news .box2 {
    left: -100px;
  }
}
#index .sct-news .box3 {
  -moz-animation: arrowthrow 2.5s infinite ease-in-out;
  -webkit-animation: arrowthrow 2.5s infinite ease-in-out;
  animation: arrowthrow 2.5s infinite ease-in-out;
  top: 117px;
  right: -228px;
  width: 197px;
  height: 248px;
  background-image: url(../images/index_products_box3.png);
}
@media screen and (max-width: 1019px) {
  #index .sct-news .box3 {
    width: 150px;
    top: 200px;
    right: 10px;
  }
}
@media screen and (min-width: 1020px) and (max-width: 1225px) {
  #index .sct-news .box3 {
    right: -100px;
  }
}
@-moz-keyframes arrowthrow {
  0% {
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -moz-transform: translate(0, -15px);
    transform: translate(0, -15px);
  }
  100% {
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes arrowthrow {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -15px);
    transform: translate(0, -15px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes arrowthrow {
  0% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -moz-transform: translate(0, -15px);
    -ms-transform: translate(0, -15px);
    -webkit-transform: translate(0, -15px);
    transform: translate(0, -15px);
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
#index .sct-mainimg {
  background-image: url(../images/index_products_bg.png);
}
#index .sct-mainimg .container {
  overflow: visible;
  padding: 150px 20px;
}
@media screen and (max-width: 1019px) {
  #index .sct-mainimg .container {
    width: 100%;
  }
}
#index .sct-mainimg .logo img {
  width: 376px;
  height: auto;
}
@media screen and (max-width: 1019px) {
  #index .sct-mainimg .logo img {
    width: 250px;
  }
}
#index .sct-mainimg .logo p {
  font-size: 20px;
  letter-spacing: -1.5px;
  text-align: center;
  margin-top: 50px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#index .sct-contact .container {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  #index .sct-contact .container {
    padding: 60px 20px;
  }
}
#index .sct-contact p {
  font-size: 20px;
  text-align: center;
  margin-bottom: 64px;
}

.sct-pagetitle {
  position: relative;
  height: 320px;
  text-align: center;
  color: #FFF;
  background: linear-gradient(to right, #8cd2ff, #009cff);
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .sct-pagetitle {
    height: 160px;
  }
}
.sct-pagetitle .title {
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  font-family: 'Quicksand', sans-serif;
  font-size: 24px;
}
.sct-pagetitle .title .e {
  font-size: 32px;
  margin-bottom: 5px;
}
.sct-pagetitle .title .j {
  font-size: 14px;
}

.sct-breadcrumb {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .sct-breadcrumb {
    display: none;
  }
}
.sct-breadcrumb .container {
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
}
.sct-breadcrumb ul {
  font-size: 0;
}
.sct-breadcrumb ul li {
  display: inline-block;
  font-size: 14px;
}
.sct-breadcrumb ul li a {
  color: #333;
}
.sct-breadcrumb ul li:after {
  content: '＞';
  display: inline-block;
  margin: 0 8px;
}
.sct-breadcrumb ul li:last-child:after {
  display: none;
}

#news .sct-newslist .container {
  padding: 100px 0;
  width: 750px;
}
@media screen and (max-width: 767px) {
  #news .sct-newslist .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #news .sct-newslist .container {
    width: 100%;
  }
}
#news .sct-newslist ul {
  border-top: 1px solid #d6d6d6;
  margin-bottom: 20px;
}
#news .sct-newslist ul li {
  *zoom: 1;
  text-align: left;
  border-bottom: 1px solid #d6d6d6;
  padding: 30px 0;
}
#news .sct-newslist ul li:before, #news .sct-newslist ul li:after {
  content: "";
  display: table;
}
#news .sct-newslist ul li:after {
  clear: both;
}
#news .sct-newslist ul li .date {
  width: 20%;
  float: left;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  color: #AAA;
}
#news .sct-newslist ul li .title {
  width: 80%;
  float: left;
}
#news .sct-newslist ul li .title a {
  position: relative;
  width: 100%;
  display: block;
  color: #333;
  text-decoration: none;
  padding-right: 30px;
}
#news .sct-newslist ul li .title a:after {
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
#news .sct-newslist ul li .title a:hover:after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f0da";
  font-family: FontAwesome;
  font-size: 40px;
  color: #00d7f0;
}
@media screen and (max-width: 767px) {
  #news .sct-newslist ul li .title a:hover:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #news .sct-newslist ul li {
    font-size: 14px;
    padding: 10px 0;
  }
  #news .sct-newslist ul li .date {
    width: 100%;
    float: none;
  }
  #news .sct-newslist ul li .title {
    width: 100%;
    float: none;
  }
  #news .sct-newslist ul li .title:hover:after {
    font-size: 20px;
  }
}
#news .sct-newslist .paging {
  *zoom: 1;
}
#news .sct-newslist .paging:before, #news .sct-newslist .paging:after {
  content: "";
  display: table;
}
#news .sct-newslist .paging:after {
  clear: both;
}
#news .sct-newslist .paging a {
  color: #00d7f0;
  text-decoration: none;
}
#news .sct-newslist .paging .previous {
  width: 50%;
  float: left;
  text-align: left;
}
#news .sct-newslist .paging .next {
  width: 50%;
  float: right;
  text-align: right;
}
#news .sct-newssingle .container {
  padding: 100px 0;
  width: 750px;
}
@media screen and (max-width: 767px) {
  #news .sct-newssingle .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #news .sct-newssingle .container {
    width: 100%;
  }
}
#news .sct-newssingle .single {
  margin-bottom: 60px;
}
#news .sct-newssingle .single .title {
  font-size: 26px;
  text-align: left;
  color: #00d7f0;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #news .sct-newssingle .single .title {
    font-size: 20px;
  }
}
#news .sct-newssingle .single .date {
  font-size: 16px;
  text-align: right;
  margin-bottom: 5px;
}
#news .sct-newssingle .single .txt {
  text-align: justify;
  text-justify: inter-ideograph;
  border: 1px solid #CCC;
  padding: 40px;
}
#news .sct-newssingle .single .txt a {
  color: #00d7f0;
  word-break: break-all;
  text-decoration: underline;
}

#shop .sct-itemlist .container {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  #shop .sct-itemlist .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #shop .sct-itemlist .container {
    width: 100%;
  }
}
#shop .sct-itemlist ul {
  width: calc(100% + 20px);
  margin: 0 -10px;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  flex-wrap: -webkit-wrap;
}
#shop .sct-itemlist ul li {
  position: relative;
  width: calc(25% - 20px);
  display: flex;
  border: 1px solid #CCC;
  padding: 20px 20px 50px;
  margin: 0 10px 20px;
}
@media screen and (max-width: 767px) {
  #shop .sct-itemlist ul li {
    padding: 10px 10px 50px;
  }
}
#shop .sct-itemlist ul li .image span {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 100%;
}
#shop .sct-itemlist ul li .name {
  margin-top: 10px;
}
#shop .sct-itemlist ul li .price {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-weight: bold;
}
#shop .sct-itemlist ul li a {
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: #333;
}
@media screen and (max-width: 767px) {
  #shop .sct-itemlist ul {
    width: calc(100% + 8px);
    margin: 0 -4px;
  }
  #shop .sct-itemlist ul li {
    width: calc(50% - 8px);
    margin: 0 4px 8px;
  }
}
#shop .sct-itemlist .paging {
  *zoom: 1;
}
#shop .sct-itemlist .paging:before, #shop .sct-itemlist .paging:after {
  content: "";
  display: table;
}
#shop .sct-itemlist .paging:after {
  clear: both;
}
#shop .sct-itemlist .paging a {
  color: #00d7f0;
  text-decoration: none;
}
#shop .sct-itemlist .paging .previous {
  width: 50%;
  float: left;
  text-align: left;
}
#shop .sct-itemlist .paging .next {
  width: 50%;
  float: right;
  text-align: right;
}
#shop .sct-itemdetail .container {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  #shop .sct-itemdetail .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #shop .sct-itemdetail .container {
    width: 100%;
  }
}
#shop .sct-itemdetail .item {
  *zoom: 1;
}
#shop .sct-itemdetail .item:before, #shop .sct-itemdetail .item:after {
  content: "";
  display: table;
}
#shop .sct-itemdetail .item:after {
  clear: both;
}
#shop .sct-itemdetail .item .name {
  font-size: 30px;
  text-align: left;
  color: #00d7f0;
  margin-bottom: 20px;
}
#shop .sct-itemdetail .item .image {
  width: 40%;
  float: left;
}
#shop .sct-itemdetail .item .image .slider_item li {
  display: block;
}
#shop .sct-itemdetail .item .image .slider_item li span {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 100%;
}
#shop .sct-itemdetail .item .image .slider_nav {
  *zoom: 1;
  width: calc(100% + 4px);
  margin: 0 -2px;
}
#shop .sct-itemdetail .item .image .slider_nav:before, #shop .sct-itemdetail .item .image .slider_nav:after {
  content: "";
  display: table;
}
#shop .sct-itemdetail .item .image .slider_nav:after {
  clear: both;
}
#shop .sct-itemdetail .item .image .slider_nav li {
  width: 33.333%;
  float: left;
  cursor: pointer;
  padding: 4px 2px 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
#shop .sct-itemdetail .item .image .slider_nav li:last-child {
  padding-right: 0;
}
#shop .sct-itemdetail .item .image .slider_nav li span {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 100%;
}
#shop .sct-itemdetail .item .detail {
  width: 60%;
  float: left;
  padding-left: 40px;
}
#shop .sct-itemdetail .item .detail .txt {
  text-align: justify;
  text-justify: inter-ideograph;
  margin-bottom: 40px;
}
#shop .sct-itemdetail .item .detail .price {
  font-size: 40px;
  font-weight: bold;
  text-align: right;
}
#shop .sct-itemdetail .item .detail .price input {
  width: 100px;
}
#shop .sct-itemdetail .item .detail .num {
  text-align: right;
  margin-bottom: 40px;
}
#shop .sct-itemdetail .item .detail .num input {
  width: 100px;
}
@media screen and (max-width: 767px) {
  #shop .sct-itemdetail .item .name {
    font-size: 20px;
  }
  #shop .sct-itemdetail .item .image {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  #shop .sct-itemdetail .item .detail {
    width: 100%;
    float: none;
    padding-left: 0;
  }
}
#shop .sct-shoppingcart .container {
  padding: 100px 0;
  width: 750px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  #shop .sct-shoppingcart .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #shop .sct-shoppingcart .container {
    width: 100%;
  }
}
#shop .sct-shoppingcart .bt a, #shop .sct-shoppingcart .bt span {
  display: inline-block;
  font-size: 14px;
  float: right;
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  background-color: #00d7f0;
  border-bottom: solid 2px #00aec2;
  border-right: solid 2px #00aec2;
  padding: 2px 10px;
  margin: 0 0 5px 15px;
  cursor: pointer;
}
#shop .sct-shoppingcart ul {
  border-top: 1px solid #CCC;
  margin-bottom: 20px;
  clear: both;
}
#shop .sct-shoppingcart ul li {
  *zoom: 1;
  border-bottom: 1px solid #CCC;
  padding: 5px 0;
}
#shop .sct-shoppingcart ul li:before, #shop .sct-shoppingcart ul li:after {
  content: "";
  display: table;
}
#shop .sct-shoppingcart ul li:after {
  clear: both;
}
#shop .sct-shoppingcart ul li .name {
  width: 75%;
  float: left;
  text-align: left;
}
#shop .sct-shoppingcart ul li .num {
  width: 10%;
  float: left;
}
#shop .sct-shoppingcart ul li .price {
  width: 15%;
  float: left;
  text-align: right;
}
#shop .sct-shoppingcart ul li .reload {
  width: 10%;
  float: left;
}
#shop .sct-shoppingcart ul li .reload span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  background: #00d7f0;
  border-bottom: solid 2px #00aec2;
  border-right: solid 2px #00aec2;
  padding: 2px 5px;
  cursor: pointer;
}
#shop .sct-shoppingcart ul li .reload span:before {
  position: absolute;
  bottom: -5px;
  left: -1px;
  content: "";
  width: 0;
  height: 0;
  border-width: 0 3px 3px 0px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #FFF;
}
#shop .sct-shoppingcart ul li:first-child .name, #shop .sct-shoppingcart ul li:first-child .num, #shop .sct-shoppingcart ul li:first-child .price, #shop .sct-shoppingcart ul li:first-child .reload {
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #shop .sct-shoppingcart ul li .name {
    width: 50%;
  }
  #shop .sct-shoppingcart ul li .num {
    width: 30%;
  }
  #shop .sct-shoppingcart ul li .price {
    width: 20%;
  }
}
#shop .sct-shoppingcart .total {
  *zoom: 1;
  text-align: right;
}
#shop .sct-shoppingcart .total:before, #shop .sct-shoppingcart .total:after {
  content: "";
  display: table;
}
#shop .sct-shoppingcart .total:after {
  clear: both;
}
#shop .sct-shoppingcart .total span {
  margin-right: 20px;
}
#shop .sct-shoppingcart .total table {
  float: right;
}
#shop .sct-shoppingcart .total table th {
  padding-right: 20px;
}

#purchase .sct-shoppingcart .container {
  padding: 100px 0;
  width: 750px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  #purchase .sct-shoppingcart .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #purchase .sct-shoppingcart .container {
    width: 100%;
  }
}
#purchase .sct-shoppingcart .bt a, #purchase .sct-shoppingcart .bt span {
  display: inline-block;
  font-size: 14px;
  float: right;
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  background-color: #00d7f0;
  border-bottom: solid 2px #00aec2;
  border-right: solid 2px #00aec2;
  padding: 2px 10px;
  margin: 0 0 5px 15px;
  cursor: pointer;
}
#purchase .sct-shoppingcart ul {
  border-top: 1px solid #CCC;
  margin-bottom: 20px;
  clear: both;
}
#purchase .sct-shoppingcart ul li {
  *zoom: 1;
  border-bottom: 1px solid #CCC;
  padding: 5px 0;
}
#purchase .sct-shoppingcart ul li:before, #purchase .sct-shoppingcart ul li:after {
  content: "";
  display: table;
}
#purchase .sct-shoppingcart ul li:after {
  clear: both;
}
#purchase .sct-shoppingcart ul li .name {
  width: 75%;
  float: left;
  text-align: left;
}
#purchase .sct-shoppingcart ul li .num {
  width: 10%;
  float: left;
}
#purchase .sct-shoppingcart ul li .price {
  width: 15%;
  float: left;
  text-align: right;
}
#purchase .sct-shoppingcart ul li .reload {
  width: 10%;
  float: left;
}
#purchase .sct-shoppingcart ul li .reload span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  background: #00d7f0;
  border-bottom: solid 2px #00aec2;
  border-right: solid 2px #00aec2;
  padding: 2px 5px;
  cursor: pointer;
}
#purchase .sct-shoppingcart ul li .reload span:before {
  position: absolute;
  bottom: -5px;
  left: -1px;
  content: "";
  width: 0;
  height: 0;
  border-width: 0 3px 3px 0px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #FFF;
}
#purchase .sct-shoppingcart ul li:first-child .name, #purchase .sct-shoppingcart ul li:first-child .num, #purchase .sct-shoppingcart ul li:first-child .price, #purchase .sct-shoppingcart ul li:first-child .reload {
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #purchase .sct-shoppingcart ul li .name {
    width: 50%;
  }
  #purchase .sct-shoppingcart ul li .num {
    width: 30%;
  }
  #purchase .sct-shoppingcart ul li .price {
    width: 20%;
  }
}
#purchase .sct-shoppingcart .total {
  *zoom: 1;
  text-align: right;
}
#purchase .sct-shoppingcart .total:before, #purchase .sct-shoppingcart .total:after {
  content: "";
  display: table;
}
#purchase .sct-shoppingcart .total:after {
  clear: both;
}
#purchase .sct-shoppingcart .total span {
  margin-right: 20px;
}
#purchase .sct-shoppingcart .total table {
  float: right;
}
#purchase .sct-shoppingcart .total table th {
  padding-right: 20px;
}
#purchase .sct-main .container {
  padding: 100px 0;
  width: 750px;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  #purchase .sct-main .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #purchase .sct-main .container {
    width: 100%;
  }
}
#purchase .sct-main .grp {
  width: 750px;
  margin: 0 auto;
}
#purchase .sct-main .grp p {
  margin-bottom: 40px;
}
@media screen and (max-width: 1019px) {
  #purchase .sct-main .grp {
    width: 100%;
  }
}
@media screen and (max-width: 1019px) {
  #purchase .sct-main .row .col {
    width: 100%;
  }
}
#purchase .sct-main .submit {
  margin-top: 60px;
  font-size: 0;
}
#purchase .sct-main .submit .button {
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  display: inline-block;
  border: 2px solid #00d7f0;
  padding: 10px 60px;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 20px 10px;
  color: #00d7f0;
}
#purchase .sct-main .submit .button:hover {
  cursor: pointer;
  color: #FFF;
  background-color: #00d7f0;
}
#purchase .sct-main .submit a.button {
  color: #00d7f0;
  text-decoration: none;
}
#purchase .sct-confirm dl {
  text-align: left;
}
#purchase .sct-confirm dl dt {
  display: block;
  font-size: 1.2rem;
  color: #999999;
}
#purchase .sct-confirm dl dd {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #ccc;
}
#purchase .sct-submit em {
  display: block;
  text-align: center;
  padding: 100px 0;
  font-style: normal;
  font-size: 2rem;
}
#purchase .sct-submit p {
  text-align: center;
}

#guide .sct-guide .container {
  padding: 100px 0;
  width: 750px;
}
@media screen and (max-width: 767px) {
  #guide .sct-guide .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #guide .sct-guide .container {
    width: 100%;
  }
}
#guide .sct-guide .flow li {
  position: relative;
  text-align: left;
  padding-left: 100px;
  margin-bottom: 20px;
}
#guide .sct-guide .flow li p {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #FFF;
  background-color: #00d7f0;
  padding: 2px 10px;
}
#guide .sct-guide .flow li:after {
  position: absolute;
  top: 50px;
  left: 35px;
  content: "\f107";
  font-family: FontAwesome;
  font-size: 22px;
  color: #00d7f0;
}
#guide .sct-guide .flow li:last-child:after {
  display: none;
}
@media screen and (max-width: 767px) {
  #guide .sct-guide .flow li {
    padding-left: 80px;
  }
  #guide .sct-guide .flow li:after {
    left: 22px;
  }
}
#guide .sct-guide .txt {
  text-align: justify;
  text-justify: inter-ideograph;
}
#guide .sct-guide .txt p {
  font-weight: bold;
  margin: 30px 0 5px;
}
#guide .sct-box .container {
  padding: 100px 0;
  width: 750px;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  #guide .sct-box .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #guide .sct-box .container {
    width: 100%;
  }
}
#guide .sct-box .txt {
  text-align: justify;
  text-justify: inter-ideograph;
}
#guide .sct-box .txt p {
  font-weight: bold;
  margin: 30px 0 5px;
}
#guide .sct-pay .container {
  padding: 100px 0;
  width: 750px;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  #guide .sct-pay .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #guide .sct-pay .container {
    width: 100%;
  }
}
#guide .sct-pay .txt {
  text-align: justify;
  text-justify: inter-ideograph;
}
#guide .sct-pay .txt p {
  font-weight: bold;
  margin: 30px 0 5px;
}
#guide .sct-delivery .container {
  padding: 100px 0;
  width: 750px;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  #guide .sct-delivery .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #guide .sct-delivery .container {
    width: 100%;
  }
}
#guide .sct-delivery .txt {
  text-align: justify;
  text-justify: inter-ideograph;
}
#guide .sct-delivery .txt p {
  font-weight: bold;
  margin: 30px 0 5px;
}
#guide .sct-delivery table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 40px;
}
#guide .sct-delivery table tr {
  border: 1px solid #CCC;
}
#guide .sct-delivery table tr.center th {
  font-weight: bold;
  text-align: center;
}
#guide .sct-delivery table tr th {
  width: 80%;
  font-weight: normal;
  border-right: 1px solid #CCC;
  padding: 5px 20px;
}
#guide .sct-delivery table tr td {
  width: 20%;
  text-align: right;
  padding: 5px 20px;
}
#guide .sct-return .container {
  padding: 100px 0;
  width: 750px;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  #guide .sct-return .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #guide .sct-return .container {
    width: 100%;
  }
}
#guide .sct-return .txt {
  text-align: justify;
  text-justify: inter-ideograph;
}
#guide .sct-return .txt p {
  font-weight: bold;
  margin: 30px 0 5px;
}

#company .sct-info .container {
  padding: 100px 0;
  width: 750px;
}
@media screen and (max-width: 767px) {
  #company .sct-info .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #company .sct-info .container {
    width: 100%;
  }
}
#company .sct-info p {
  font-weight: bold;
  margin-bottom: 20px;
}
#company .sct-info table {
  width: 100%;
  border-collapse: collapse;
}
#company .sct-info table tr {
  text-align: left;
}
#company .sct-info table tr th {
  width: 20%;
  vertical-align: top;
  border: 1px solid #CCC;
  padding: 10px;
}
#company .sct-info table tr td {
  width: 80%;
  border: 1px solid #CCC;
  padding: 10px;
}
#company .sct-info table tr a {
  color: #333;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #company .sct-info table tr th {
    width: 30%;
  }
  #company .sct-info table tr td {
    width: 70%;
  }
}

#policy .sct-policy .container {
  padding: 100px 0;
  width: 750px;
}
@media screen and (max-width: 767px) {
  #policy .sct-policy .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #policy .sct-policy .container {
    width: 100%;
  }
}
#policy .sct-policy .txt {
  text-align: justify;
  text-justify: inter-ideograph;
}
#policy .sct-policy .txt p {
  font-weight: bold;
  margin: 30px 0 5px;
}

#law .sct-law .container {
  padding: 100px 0;
  width: 750px;
}
@media screen and (max-width: 767px) {
  #law .sct-law .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1019px) {
  #law .sct-law .container {
    width: 100%;
  }
}
#law .sct-law p {
  font-weight: bold;
  margin-bottom: 20px;
}
#law .sct-law table {
  width: 100%;
  border-collapse: collapse;
}
#law .sct-law table tr {
  text-align: left;
}
#law .sct-law table tr th {
  width: 20%;
  vertical-align: top;
  border: 1px solid #CCC;
  padding: 10px;
}
#law .sct-law table tr td {
  width: 80%;
  border: 1px solid #CCC;
  padding: 10px;
}
#law .sct-law table tr a {
  color: #333;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #law .sct-law table tr th {
    width: 30%;
  }
  #law .sct-law table tr td {
    width: 70%;
  }
}

#contact .sct-main .container {
  padding-top: 60px;
  padding-bottom: 80px;
}
#contact .sct-main .grp {
  width: 750px;
  margin: 0 auto;
}
#contact .sct-main .grp p {
  margin-bottom: 40px;
}
@media screen and (max-width: 1019px) {
  #contact .sct-main .grp {
    width: 100%;
  }
}
@media screen and (max-width: 1019px) {
  #contact .sct-main .row .col {
    width: 100%;
  }
}
#contact .sct-main .submit {
  margin-top: 60px;
  font-size: 0;
}
#contact .sct-main .submit .button {
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  display: inline-block;
  border: 2px solid #00d7f0;
  padding: 10px 60px;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 20px 10px;
  color: #00d7f0;
}
#contact .sct-main .submit .button:hover {
  cursor: pointer;
  color: #FFF;
  background-color: #00d7f0;
}
#contact .sct-main .submit a.button {
  color: #00d7f0;
  text-decoration: none;
}
#contact .sct-confirm dl {
  text-align: left;
}
#contact .sct-confirm dl dt {
  display: block;
  font-size: 1.2rem;
  color: #999999;
}
#contact .sct-confirm dl dd {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #ccc;
}
#contact .sct-submit em {
  display: block;
  text-align: center;
  padding: 60px 0 100px;
  font-style: normal;
  font-size: 2rem;
}
#contact .sct-submit p {
  text-align: center;
}

#footer {
  position: relative;
  background: linear-gradient(to right, #8cd2ff, #009cff);
}
#footer .sct-main {
  background-image: url(../images/bottom_bg.png);
  background-position: center top -5px;
  background-size: cover;
  background-repeat: no-repeat;
}
#footer .sct-main .container {
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  #footer .sct-main .container {
    padding: 60px 0 80px;
  }
}
#footer .sct-main .navi {
  text-align: center;
}
#footer .sct-main .navi ul li {
  display: inline-block;
}
#footer .sct-main .navi ul li a {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}
#footer .sct-main .navi ul li:after {
  content: '｜';
  margin: 0 15px;
}
#footer .sct-main .navi ul li:last-child:after {
  display: none;
}
@media screen and (max-width: 767px) {
  #footer .sct-main .navi ul li a {
    font-size: 11px;
  }
  #footer .sct-main .navi ul li:after {
    margin: 0 2px;
  }
}
#footer .sct-copy {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  color: #FFF;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  #footer .sct-copy {
    font-size: 12px;
    padding: 10px 0;
  }
}

#pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 80;
}
#pagetop a {
  display: block;
  width: 80px;
  height: 80px;
  color: #FFF;
  text-align: center;
  font-size: 22px;
  text-decoration: none;
  line-height: 80px;
  background: #004096;
  border-radius: 50%;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
#pagetop a:hover {
  opacity: .6;
}
#pagetop a .svg-inline--fa.fa-w-14 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #pagetop a {
    width: 60px;
    height: 60px;
    font-size: 14px;
    line-height: 60px;
  }
}
