@charset "UTF-8";
/* Space Design gallery CSS Document */
/******************************************************************
	変数設定
*******************************************************************/
/*色設定*/
/*フォント*/
/*flex設定*/
/******************************************************************
    基本設定
******************************************************************/
* {
  margin: 0px;
  padding: 0px;
}

html {
  margin: 0px;
  padding: 0px;
}

body, table, tr, th, td, p {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  vertical-align: top;
}

img {
  border: 0px;
}

ul {
  list-style: none;
}

.clear {
  clear: both;
  width: 0px;
  height: 0px;
  margin: 0px;
  padding: 0px;
  font-size: 1%;
  visibility: hidden;
  line-height: 1%;
}

a {
  cursor: pointer;
  color: #0033cc;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  word-wrap: break-word;
}

a:hover {
  color: #ff5757;
}

hr {
  margin: 10px 0px;
  border: none;
  border-top: #999999 1px solid;
}

.red {
  color: #FF0000;
}

.bold {
  font-weight: bold;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*floatの解除*/
/******************************************************************
　汎用クラス
*******************************************************************/
/*float解除*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*要素の内側にボーダーつけたい時に使用*/
.inborder {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*PC表示・スマホ非表示設定*/
.smart-on {
  display: none;
}

.smart-off {
  display: inline;
}

.tablet-on {
  display: none;
}

.tablet-off {
  display: inline;
}

@media only screen and (max-width: 959px) {
  .tablet-on {
    display: inline;
  }

  .tablet-off {
    display: none;
  }
}
@media only screen and (max-width: 519px) {
  .smart-on {
    display: inline;
  }

  .smart-off {
    display: none;
  }
}
/******************************************************************
    枠組み
******************************************************************/
body {
  margin: 0;
  padding: 0;
  background: #FFFFFF;
}

.wrapper {
  position: relative;
}

/******************************************************************
    共通
******************************************************************/
header {
  width: 100%;
  background: #fff;
  height: 60px;
  z-index: 99;
  position: fixed;
  top: 0;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}
header div.mainhead {
  height: inherit;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
header div.mainhead h1 {
  width: 30%;
  margin: 0 0 0 50px;
}
header div.mainhead h1 img {
  height: 40px;
  width: auto;
}
header div.mainhead .bt_head-contact {
  width: 150px;
  height: inherit;
  display: table;
}
header div.mainhead .bt_head-contact a {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  text-decoration: none;
  text-align: center;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
}
header div.mainhead .bt_head-contact a:hover {
  background: #2255a6;
}
header div.mainhead .bt_head-contact a i {
  margin-right: 5px;
}

main {
  margin-top: 60px;
}

@media screen and (max-width: 519px) {
  header div.mainhead h1 {
    margin: 0 0 0 20px;
  }
  header div.mainhead .bt_head-contact {
    width: 60px;
  }
  header div.mainhead .bt_head-contact a span {
    display: none;
  }
  header div.mainhead .bt_head-contact a i {
    font-size: 22px;
    margin: 0;
  }
}
/******************************************************************
    トップページ
******************************************************************/
div.mainvisual {
  width: 100%;
  height: 100%;
  background: #fff;
}
div.mainvisual .visual {
  height: inherit;
  position: relative;
  overflow: hidden;
}
div.mainvisual .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  left: 0;
  position: absolute;
}
div.mainvisual .visual img:first-child {
  z-index: 1;
  opacity: 1;
}
div.mainvisual .title {
  width: 100%;
  height: inherit;
  position: absolute;
  z-index: 3;
  top: 10px;
}
div.mainvisual .title h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 1000px;
  transform: translate(-50%, -50%);
}
div.mainvisual .title img {
  width: 100%;
}

.slider {
  height: inherit;
  margin-inline: auto;
  overflow: hidden;
  /* 画像がはみ出ないようにする */
  width: 100%;
}

.slide-img img {
  width: 100%;
  text-align: center;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
    /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 12s linear 0s normal both;
}

.contents {
  width: 100%;
  margin: 0 auto;
  padding: 0px 50px;
  box-sizing: border-box;
}

.slider {
  width: 100%;
  height: 20%;
}

.index-text {
  margin: 40px 0;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.8;
  width: 80%;
  max-width: 1100px;
}
.index-text span {
  font-weight: bold;
  color: #4a80ff;
}

.index-menu {
  width: 100%;
  margin: 0px 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.index-menu div {
  margin-bottom: 30px;
  width: calc(100% / 3 - 4px);
  margin: 0 2px 15px 0;
}
.index-menu div:nth-child(3n) {
  margin: 0 0 15px 0;
}
.index-menu div a {
  color: #222;
  text-decoration: none;
}
.index-menu div p {
  display: block;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.index-menu div p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.index-menu div p.bt_image {
  width: 100%;
  overflow: hidden;
}
.index-menu div p.bt_text {
  margin: 5px 0 0 0;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
}
.index-menu div:hover img {
  transform: scale(103%);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0.7;
}
.index-menu div:hover p {
  color: #666;
}

.index-contact {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 40px;
}
.index-contact p {
  text-align: center;
}
.index-contact a {
  text-decoration: none;
}
.index-contact_contact a {
  width: 100%;
  height: 100%;
  display: block;
  background: #222222;
  border-radius: 5px;
  box-sizing: border-box;
  line-height: 60px;
  font-weight: bold;
  padding: 0 10px;
  font-size: 19px;
  color: #fff;
}
.index-contact_contact a:hover {
  background: #2255a6;
}
.index-contact_contact i {
  margin-right: 8px;
}

@media screen and (max-width: 959px) {
  .index-text {
    width: 100%;
  }

  .index-menu div {
    width: calc(100% / 2 - 2px);
  }
  .index-menu div:nth-child(2n) {
    margin: 0 0 10px 0;
  }
  .index-menu div:nth-child(3n) {
    margin: 0 2px 10px 0;
  }
}
@media screen and (max-width: 519px) {
  .contents {
    padding: 0 20px;
  }

  div.base-visual {
    width: 100%;
    height: 400px;
    overflow: hidden;
  }

  .index-text {
    font-size: 16px;
    padding: 0;
    margin: 30px auto;
  }

  .index-menu div {
    width: calc(100% / 2 - 8px);
  }
  .index-menu div p.bt_text {
    font-size: 13px;
  }
}
/******************************************************************
    商品ページ
******************************************************************/
.gallery-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 80px auto 0;
  padding: 0 50px;
  box-sizing: border-box;
}
.gallery-contents-photo {
  width: 58%;
}
.gallery-contents-detail {
  width: 40%;
  position: relative;
  margin-left: 2%;
}

@media screen and (max-width: 1199px) {
  .gallery-contents-detail {
    height: auto;
  }
}
.slider-container {
  width: 100%;
  margin: 0 auto;
}
.slider-container .slick-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  height: 58%;
}
.slider-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-container .slider-gallery, .slider-container .thumbs {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.slider-container .thumbs {
  margin-top: 4px;
}
.slider-container .thumbs img {
  padding: 0 2px;
  box-sizing: border-box;
}
.slider-container .thumbs .slick-track {
  transform: unset !important;
}
.slider-container .thumbs .slick-slide {
  opacity: .3;
  transition: opacity .3s linear;
}
.slider-container .thumbs .slick-current {
  opacity: 1;
}

.slick-prev, .slick-next {
  z-index: 2;
}

.slick-prev {
  left: 0 !important;
}

.slick-next {
  right: 0 !important;
}

@media screen and (max-width: 959px) {
  .slider-container .thumbs .slick-slide {
    width: 23% !important;
    margin-bottom: 4px;
  }
  .slider-container .thumbs .slick-track {
    width: 100vw !important;
  }
}
.case {
  margin-top: 10px;
}
.case .case-title {
  font-size: 20px;
  font-weight: bold;
}
.case .case-text {
  margin: 10px 0 0 0;
  width: 80%;
}
.case dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}
.case dl dt, .case dl dd {
  margin-bottom: 20px;
  font-size: 15px;
}
.case dl dt {
  width: 25%;
  max-width: 230px;
  min-width: 100px;
}
.case dl dd {
  width: 70%;
}
.case dl span {
  text-indent: 3em;
  display: block;
}

.product {
  margin: 20px 0 0 0;
}
.product h3 {
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 2px;
  margin-bottom: 5px;
}
.product ul li {
  font-size: 15px;
}
.product ul li:before {
  content: "・";
}

.action-link {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0);
}
.action-link p {
  text-align: center;
}
.action-link a {
  text-decoration: none;
}
.action-link_contact a {
  width: 100%;
  height: 100%;
  display: block;
  background: #222222;
  border-radius: 5px;
  box-sizing: border-box;
  line-height: 60px;
  font-weight: bold;
  padding: 0 10px;
  font-size: 19px;
  color: #fff;
}
.action-link_contact a:hover {
  background: #2255a6;
}
.action-link_contact i {
  margin-right: 8px;
}

.page-link {
  margin: 70px 0 0;
}
.page-link h4 {
  width: 100%;
  padding: 20px 0;
  background: #eee;
  text-align: center;
  font-size: 25px;
  font-weight: normal;
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
}
.page-link-button {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.2%;
  box-sizing: border-box;
}
.page-link-button div {
  width: calc(100% / 4);
  height: calc(100vw / 6);
  overflow: hidden;
}
.page-link-button div img {
  width: 98%;
  height: 97%;
  margin: auto;
  display: block;
}
.page-link-button div a {
  opacity: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.page-link-button div a:hover img {
  transform: scale(95%);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0.7;
}
.page-link-button .return {
  text-align: center;
}
.page-link-button .return p {
  width: 100%;
  height: 100%;
  display: table;
  margin: auto;
  padding: 1% 1.5%;
  box-sizing: border-box;
}
.page-link-button .return a {
  font-weight: normal;
  font-size: 16px;
  text-decoration: none;
  background: #eee;
  color: #222;
  display: table-cell;
  vertical-align: middle;
}
.page-link-button .return a:hover {
  opacity: 1;
  background: #222;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .gallery-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .gallery-contents-photo {
    width: 100%;
    margin: 0 auto;
  }
  .gallery-contents-detail {
    width: 100%;
    margin: 30px auto 0;
    min-height: auto;
  }

  .product span {
    display: block;
    text-indent: 1em;
  }

  .action-link {
    position: static;
    transform: none;
    margin: 80px auto 0;
  }

  .page-link-button {
    padding: 0.3%;
  }
}
@media screen and (max-width: 959px) {
  .page-link-button {
    padding: 0.1%;
  }
  .page-link-button div {
    width: calc(100% / 3);
    height: calc(100vw / 4);
  }
}
@media screen and (max-width: 519px) {
  .gallery-contents {
    padding: 0 20px;
  }

  .page-link-button {
    padding: 0.5%;
  }
  .page-link-button div {
    width: calc(100% / 2);
    height: calc(100vw / 3);
  }

  .case .case-text {
    width: 100%;
  }

  .action-link {
    margin: 40px 0 40px;
  }
}
/******************************************************************
	フッター
******************************************************************/
.footer-back {
  width: 100%;
  background: #1a4a95;
}

.footer {
  padding: 10px 0;
  margin: 0 auto;
}
.footer p.caution {
  color: #ccc;
  text-align: center;
}
.footer p.copyright {
  font-size: 11px;
  color: #ddd;
  text-align: center;
}

@media screen and (max-width: 896px) {
  #footer-back {
    margin-top: 0px !important;
  }
}
@media screen and (max-width: 480px) {
  #footer p.copyright {
    font-size: 9px;
  }
}
